Re: [O] Google Summer of Code -- 3 Org projects for our first participation!

2012-05-05 Thread Nicolas Goaziou
Hello, Neil Smithline emacs-orgm...@neilsmithline.com writes: I've looked at org-element.el and don't really see how it will make writing other Org Mode to HTML converter easier. org-element.el is, well it's elisp. Very elispy. No surprise but I'm not sure that it can easily be converted to

Re: [O] Google Summer of Code -- 3 Org projects for our first participation!

2012-05-05 Thread Bernt Hansen
Bastien b...@gnu.org writes: 1. There is already a new OrgHTML exporter, written by Jambunathan. Try adding contrib/lisp/ to your load path, then (require 'org-export) (require 'org-e-html) then M-x org-export-dispatch RET h See the result. There are a bunch of

Re: [O] Hiding the braces when org-pretty-entities is enabled

2012-05-05 Thread Bastien
Hi Mark, Mark E. Shoulson m...@kli.org writes: It's a very tiny patch, but one that probably should have happened before. Yes. Surprised nobody reported this already. I applied the patch, but I had to add a ChangeLog myself. Please provide it next time. Thanks! -- Bastien

Re: [O] Touching :noexport: regions

2012-05-05 Thread Bastien
Hi François, François Pinard pin...@iro.umontreal.ca writes: There is some machinery on my side involved into publication, which I would rather avoid if not necessary. My little problem is that Org checks the file time stamp, and Emacs does not distinguish, of course, if I modify a part

Re: [O] orgstuct++ does not lurk silently in the shadow

2012-05-05 Thread Bastien
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Further, with orgstuct++-mode, trying to add a new line (i.e. my response), I get the following error message: , | org-indent-line-function: Lisp nesting exceeds `max-lisp-eval-depth' [3 times] ` I confirm the problem with

Re: [O] Auto-fill-mode with code sections

2012-05-05 Thread Bastien
Hi Charles, cbe...@tajo.ucsd.edu writes: It fills normal text, but leaves src blocks alone. Maybe add something to one of the org-mode hooks ? `org-auto-fill-function' already exists in the code, adding a new function with the same name would confuse things. I patched the current

Re: [O] fill-paragraph: wrong behaviour after latex-environments

2012-05-05 Thread Bastien
Hi Benjamin, Benjamin Motz b.m...@uni-muenster.de writes: invoking fill-paragraph on the following org-code will delete the newline after \end{equation}: The relation \begin{equation} E=mc^2 \end{equation} won't be further discussed here. This behaviour is undesirable because it makes

Re: [O] Org Clock Timer in Frame Title bug

2012-05-05 Thread Bastien
Hi George, George Kettleborough g.kettleboro...@uea.ac.uk writes: On Sun, Apr 29 2012, Bastien wrote: `global-mode-string' and ̀frame-title-format' are list by default and they cannot be customized. They can be manually set to a string, but that's a mistake (okay, `global-mode-string' is a

Re: [O] orgstuct++ does not lurk silently in the shadow

2012-05-05 Thread Nicolas Goaziou
Hello, Bastien b...@gnu.org writes: I pushed a fix -- can you test and confirm? I get the following error every time I try to indent: org-between-regexps-p: Variable binding depth exceeds max-specpdl-size Regards, -- Nicolas Goaziou

Re: [O] Touching :noexport: regions

2012-05-05 Thread François Pinard
Bastien b...@gnu.org writes: Hi François, Bonjour chez vous! :-) François Pinard pin...@iro.umontreal.ca writes: There is some machinery on my side involved into publication, which I would rather avoid if not necessary. Please don't hesitate to share it you think other people could find

Re: [O] fill-paragraph: wrong behaviour after latex-environments

2012-05-05 Thread Nicolas Goaziou
Hello, Bastien b...@gnu.org writes: Benjamin Motz b.m...@uni-muenster.de writes: invoking fill-paragraph on the following org-code will delete the newline after \end{equation}: The relation \begin{equation} E=mc^2 \end{equation} won't be further discussed here. This behaviour is

Re: [O] orgstuct++ does not lurk silently in the shadow

2012-05-05 Thread Bastien
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: I pushed a fix -- can you test and confirm? I get the following error every time I try to indent: In org-mode or in message-mode? org-between-regexps-p: Variable binding depth exceeds max-specpdl-size Does (setq max-specpdl-size

Re: [O] orgstuct++ does not lurk silently in the shadow

2012-05-05 Thread Bastien
Nicolas Goaziou n.goaz...@gmail.com writes: Bastien b...@gnu.org writes: I pushed a fix -- can you test and confirm? I get the following error every time I try to indent: org-between-regexps-p: Variable binding depth exceeds max-specpdl-size If you are in message-mode, please also

Re: [O] orgstuct++ does not lurk silently in the shadow

2012-05-05 Thread Nicolas Goaziou
Bastien b...@gnu.org writes: Nicolas Goaziou n.goaz...@gmail.com writes: I get the following error every time I try to indent: In org-mode or in message-mode? I meant in Message mode. org-between-regexps-p: Variable binding depth exceeds max-specpdl-size Does (setq max-specpdl-size

Re: [O] orgstuct++ does not lurk silently in the shadow

2012-05-05 Thread Nicolas Goaziou
Bastien b...@gnu.org writes: Nicolas Goaziou n.goaz...@gmail.com writes: Bastien b...@gnu.org writes: I pushed a fix -- can you test and confirm? I get the following error every time I try to indent: org-between-regexps-p: Variable binding depth exceeds max-specpdl-size If you

[O] [PATCH] Don't call org-footnote-unique label if using random labels

2012-05-05 Thread Matt Lundin
* lisp/org-footnote.el (org-footnote-new): Don't call org-footnote-unique-label if org-footnote-auto-label is set to random. Calling org-footnote-unique-label calls org-footnote-all-labels, which can dramatically slow down footnote creation in a buffer with many footnotes. This is unecessary

[O] How to make ECM for new exporter?

2012-05-05 Thread Thomas S. Dye
Aloha all, I've been tinkering with Karl Voit's ACM-SIG export project and have almost met the project goal using the old exporter. The old LaTeX exporter is able to produce a file that is close to the example provided by ACM and which LaTeX is able to compile without error. (The main problem

Re: [O] How to make ECM for new exporter?

2012-05-05 Thread Nicolas Goaziou
Hello, t...@tsdye.com (Thomas S. Dye) writes: I'm starting now to work out the port to the new exporter. I first tried the new LaTeX exporter, which stops with this error: Symbol's value as variable is void: value It should be fixed in master. The new html exporter exports the file

Re: [O] How to make ECM for new exporter?

2012-05-05 Thread Thomas S. Dye
Aloha Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Hello, t...@tsdye.com (Thomas S. Dye) writes: I'm starting now to work out the port to the new exporter. I first tried the new LaTeX exporter, which stops with this error: Symbol's value as variable is void: value It should be

[O] org-agenda-custom-commands with org-agenda-clockreport-mode somewhat broken?

2012-05-05 Thread Gaizka
Hi there! I have these custom agendas in my org-agenda-custom-commands variable: (w . Work Related) (w1 Test ok report ((agenda ( (org-agenda-clockreport-mode t) (w2 Test

Re: [O] [bug] Assigning 0:00 to cell gives an error

2012-05-05 Thread Bastien
Hi Sébastien, Sebastien Vauban wxhgmqzgwmuf-genee64ty+gs+fvcfc7...@public.gmane.org writes: Let's come back to time values: @2$2=1:23;t means, for me, that: - the value 1:23 should be assigned to the cell - that value should be formatted as a fraction. Hence, I'd expect to see

[O] New LaTeX exporter and source code blocks

2012-05-05 Thread Thomas S. Dye
Aloha, The new LaTeX exporter doesn't properly handle source code blocks with :exports results. The following snippet exports correctly with the old exporter. Org-mode source #+name: ACM-categories #+header: :var c=categories #+header: :results latex #+header: :exports results

Re: [O] New LaTeX exporter and source code blocks

2012-05-05 Thread Nicolas Goaziou
t...@tsdye.com (Thomas S. Dye) writes: The new LaTeX exporter doesn't properly handle source code blocks with :exports results. The following snippet exports correctly with the old exporter. Org-mode source #+name: ACM-categories #+header: :var c=categories #+header: :results

Re: [O] New LaTeX exporter and source code blocks

2012-05-05 Thread Thomas S. Dye
Nicolas Goaziou n.goaz...@gmail.com writes: t...@tsdye.com (Thomas S. Dye) writes: The new LaTeX exporter doesn't properly handle source code blocks with :exports results. The following snippet exports correctly with the old exporter. Org-mode source #+name: ACM-categories

Re: [O] New LaTeX exporter and source code blocks

2012-05-05 Thread Nicolas Goaziou
t...@tsdye.com (Thomas S. Dye) writes: Here is a problem with CAPTION and ATTR_LaTeX lines. Note that the \table{} environment wasn't established. Org-mode #+CAPTION: Frequency of Special Characters #+ATTR_LaTeX: align=|c|c|l|

Re: [O] Display/print text only for export

2012-05-05 Thread François Pinard
Bastien b...@gnu.org writes: Does #+INCLUDE: suits your needs? Oh! I never used a colon after #+INCLUDE. Checking the Org manual, the colon is systematically there, except within the last paragraph of node /Updating files/. Maybe it could be added for consistency? I did not notice my error

Re: [O] Display/print text only for export

2012-05-05 Thread Bastien
Hi François, François Pinard pin...@iro.umontreal.ca writes: Bastien b...@gnu.org writes: Does #+INCLUDE: suits your needs? Oh! I never used a colon after #+INCLUDE. Checking the Org manual, the colon is systematically there, except within the last paragraph of node /Updating files/.

Re: [O] New LaTeX exporter and source code blocks

2012-05-05 Thread Thomas S. Dye
Nicolas Goaziou n.goaz...@gmail.com writes: t...@tsdye.com (Thomas S. Dye) writes: Here is a problem with CAPTION and ATTR_LaTeX lines. Note that the \table{} environment wasn't established. Org-mode #+CAPTION: Frequency of Special Characters #+ATTR_LaTeX: align=|c|c|l|

Re: [O] Touching :noexport: regions

2012-05-05 Thread François Pinard
François Pinard pin...@iro.umontreal.ca writes: Our dear Bastien writes: We could have a #+PUBLISH: option allowing to tell whether a file should be published or not. If we had this, we could then check whether a section without the :noexport: tag has been modified... and dynamically set

[O] Commented internal links bad in new export

2012-05-05 Thread Rafael
The manual says, in section 4.2 Internal links: Targets may be located anywhere; sometimes it is convenient to put them into a comment line. For example # My Target But if I use such commented targets, then the new exporter does not see them, neither the one to LaTeX nor the