Re: How do you manage complex project with Org-mode

2022-02-28 Thread Eric Abrahamsen
Sébastien Gendre writes: > Hello, > > I don't know if it's the correct place to ask it. If not, sorry to ask in > the wrong place. > > How do you manage complex project with Org-mode ? > > I used Org-mode for several periods of time in recent years. It worked > very well for short and day to day

Re: How do you manage complex project with Org-mode

2022-02-28 Thread Matt
On Mon, 28 Feb 2022 20:43:47 -0500 Sébastien Gendre wrote > And I don't know how to manage this kind of projects with Org-mode. How > to do it, without failing a 6 days project because I spent to much time > on something else and I have only 3 days left with 3 half-day important

How do you manage complex project with Org-mode

2022-02-28 Thread Sébastien Gendre
Hello, I don't know if it's the correct place to ask it. If not, sorry to ask in the wrong place. How do you manage complex project with Org-mode ? I used Org-mode for several periods of time in recent years. It worked very well for short and day to day tasks. When only a few of theme have

Re: quotation marks in table cell vs. org-babel-ref-resolve

2022-02-28 Thread Greg Minshall
i have a problem similar to this from a few months ago. in this case, it seems to be when trying to pass a column with a quoted-string inside of it. (this is on the "bugfix" branch.) my e-lisp code seems to get just the initial part of the string from the cell with "odd" contents. #+name:

Re: Inconsistent handling of multi-line properties

2022-02-28 Thread Greg Sullivan
Thank you very much for that suggestion. Unfortunately, that does not seem to work for org-export-taskjuggler. An exported taskjuggler file has extremely simple syntax. For a report, for example, there is the header, "textreport id name {" then a series of "attribute_name", "value" pairs such as

Re: including one double quote in an anonymous footnote?

2022-02-28 Thread Juan Manuel Macías
Hi Greg and Nicolas, Greg Minshall writes: > Nicolas and Juan Manuel, > > thanks very much. the bugfix branch seems to work for my case. Thank you very much Nicolas. In my case it also works fine. Best regards, Juan Manuel

Re: Inconsistent handling of multi-line properties

2022-02-28 Thread Kaushal Modi
On Mon, Feb 28, 2022 at 3:34 PM Kaushal Modi wrote: > > On Sat, Oct 2, 2021 at 11:03 AM Hanno Perrey wrote: > > > > Hej, > > > > I have noticed that properties that stretch over multiple lines using > > the :value+: syntax are ignored by org-element-property and therefore > > also by e.g.

Re: Inconsistent handling of multi-line properties

2022-02-28 Thread Kaushal Modi
On Sat, Oct 2, 2021 at 11:03 AM Hanno Perrey wrote: > > Hej, > > I have noticed that properties that stretch over multiple lines using > the :value+: syntax are ignored by org-element-property and therefore > also by e.g. org-export-get-node-property when exporting to ics via > ox-icalendar.el

Re: Inconsistent handling of multi-line properties

2022-02-28 Thread Greg Sullivan
I would really like the ability to use the ":myProperty+: " to create multi-line properties for the org-export-taskjuggler exporter. However, the mentioned patch is quite large and mostly focused on headline caching, as far as I can tell. @Ihor or @Hanno, Is there a patch just to get the

Re: including one double quote in an anonymous footnote?

2022-02-28 Thread Greg Minshall
Nicolas and Juan Manuel, thanks very much. the bugfix branch seems to work for my case. cheers, Greg

Re: Links to javascript-based websites from orgmode.org: Paypal and Github

2022-02-28 Thread Michael Powe
On 2/28/2022 00:41, Richard Stallman wrote: [[[ To any NSA and FBI agents reading my email: please consider > ]]] [[[ whether defending the US Constitution against all enemies, > ]]] [[[ foreign or domestic, requires you to follow Snowden's > example. ]]] > > The FSF accepts credit card

Re: including one double quote in an anonymous footnote?

2022-02-28 Thread Nicolas Goaziou
Hello, Juan Manuel Macías writes: > Greg Minshall writes: > In any case, I don't know if that behavior should be considered a bug. I > say this because other constructions with an unbalanced element, > although org does not fontify them well, they are exported correctly: > > this is a

[PATCH] ox: Prevent auto-formatting in export buffers

2022-02-28 Thread David Lukes
* ox.el (org-export-to-file): `write-region' instead of `write-file'. * ox-odt.el (org-odt-template, org-odt--export-wrap): `write-region' instead of `save-buffer'. `write-file' and `save-buffer' trigger major mode changes, which leads to various mode-related hooks being run. This is

Re: Communication problems and possible problems with the website

2022-02-28 Thread c.buhtz
On 2022-02-27 18:17 Bastien Guerry wrote: > My gut feeling is that we should focus on making the mailing list more > accessible for beginners, more useful for everyone before considering > setting up another communication channel. I totally agree with that.

Re: Protect Org export from auto-formatting hooks

2022-02-28 Thread David Lukeš
Great, will do :) I realized at the last minute that some `save-buffer' calls in `ox-odt.el' also need to be amended separately (I was mostly testing these tweaks with HTML export, as it's faster / simpler). If it's problematic, we can have that discussion over the patch once I've submitted it.

[BUG] Propertized space in Agenda's mode-name [9.5.2 (release_9.5.2-3-geb9f34 @ /usr/local/share/emacs/28.0.91/lisp/org/)]

2022-02-28 Thread Gustavo Barros
Hi All, I'm trying out the pre-release this week, and in thus doing, I met a particularly strange issue related to Org Agenda's `mode-name'. And one space in particular, the one that is added before `org-agenda-current-span'. The `mode-name' for the Agenda is set by

Re: Protect Org export from auto-formatting hooks

2022-02-28 Thread Nicolas Goaziou
Hello, David Lukeš writes: > Thanks, that's indeed a much better way of doing it :) One can even > avoid the temp buffer altogether and write the `output' string > directly with `(write-region output nil file)`. Yup, even better. > Shall I prepare a patch? Or would you rather do it yourself,

Re: Protect Org export from auto-formatting hooks

2022-02-28 Thread David Lukeš
> What about using `write-region' instead of `write-file' and not touching > `set-auto-mode' function? Thanks, that's indeed a much better way of doing it :) One can even avoid the temp buffer altogether and write the `output' string directly with `(write-region output nil file)`. Shall I