Re: [O] Bug: Babel: haskell code evaluation inconsistency [7.7 (release_7.7.160.g3e33)]

2011-08-23 Thread András Major
Hi Eric, I personally don't have time to make these changes right now, but I'd be happy to provide guidance and answer questions to anyone who wanted to try to submit a patch. Also, there are a number of files which can serve as examples of how to compile and execute code with Babel e.g.,

[O] talk about org-mode

2011-08-23 Thread Joost Helberg
Hi, is anyone interested in giving a blistering talk about org-mode at the Snow headquarters in the Netherlands (the town of Geldermalsen)? Our original plan to have someone talk about hacking DECT and other protocols had to be postponed. The public consists of about 80 Unix and Security

Re: [O] indenting nested TODOs in agenda views

2011-08-23 Thread Eric Abrahamsen
On Mon, Aug 22 2011, Sebastien Vauban wrote: Hi Eric, Eric Abrahamsen wrote: On Mon, Aug 22 2011, Bernt Hansen wrote: Eric Abrahamsen e...@ericabrahamsen.net writes: What would it take to get an Agenda tags view that indented nested TODOs? I've always been bothered by the fact that

[O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi, here is an example that delivers an error reference 'table1' not found in this buffer when trying to export to HTML (others not tried yet): #+tblname: table1 :noexport: | n | x | y1 | y2 | |---+---+-+--| | 0 | 1 | 2.0 | 3.0 | | 1 | 2 | 2.1 | 2.0 | | 2 | 3 | 2.0

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Sebastien Vauban
Hi András al., András Major wrote: here is an example that delivers an error reference 'table1' not found in this buffer when trying to export to HTML (others not tried yet): #+tblname: table1 :noexport: | n | x | y1 | y2 | |---+---+-+--| | 0 | 1 | 2.0 | 3.0 |

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi Sebastian, I will let answer the ones who decide on such things. Though, I am amazed you put a tag on the table itself. I'd have expected the noexport tag to be on a section containing the table. I forgot to mention in the report that of course I tried that too: if I place the table and

[O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread András Major
Hi, Yet another one I just stumbled across: if I create a table and use ! in the first column to assign names to the columns, I can only reference those columns by name in #+TBLFM: if the names don't contain a _ character. This isn't mentioned in the docs and shouldn't be so, IMHO. I haven't

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Nick Dokos
András Major andras.g.ma...@gmail.com wrote: Yet another one I just stumbled across: if I create a table and use ! in the first column to assign names to the columns, I can only reference those columns by name in #+TBLFM: if the names don't contain a _ character. This isn't mentioned in the

Re: [O] Bug: named columns in tables not working if name contains

2011-08-23 Thread András Major
Try adding an underscore to the regexp on line 2179 of org-table.el - something like this (untested): ... (if (string-match ^[a-zA-Z][a-zA-Z0-9_]*$ name) (push (cons name (int-to-string cnt)) org-table-column-names The only characters permitted are

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Carsten Dominik
On Aug 23, 2011, at 3:53 PM, Nick Dokos wrote: András Major andras.g.ma...@gmail.com wrote: Yet another one I just stumbled across: if I create a table and use ! in the first column to assign names to the columns, I can only reference those columns by name in #+TBLFM: if the names don't

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Nick Dokos
Carsten Dominik carsten.domi...@gmail.com wrote: On Aug 23, 2011, at 3:53 PM, Nick Dokos wrote: András Major andras.g.ma...@gmail.com wrote: Yet another one I just stumbled across: if I create a table and use ! in the first column to assign names to the columns, I can only

[O] [odt] equation labels

2011-08-23 Thread Myles English
Hello, I am using the excellent org-odt, so thanks to Jambunathan K, and everyone who has ever contributed to orgmode. This may be quite simple so I am asking before making an minimal example. Does anyone know how to cause a label such as Figure 1. in the odt (for the resulting png), and set

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Eric Schulte
András Major andras.g.ma...@gmail.com writes: Hi, here is an example that delivers an error reference 'table1' not found in this buffer when trying to export to HTML (others not tried yet): #+tblname: table1 :noexport: | n | x | y1 | y2 | |---+---+-+--| | 0 | 1

Re: [O] Bug: Babel: haskell code evaluation inconsistency [7.7 (release_7.7.160.g3e33)]

2011-08-23 Thread Eric Schulte
András Major andras.g.ma...@gmail.com writes: Hi Eric, I personally don't have time to make these changes right now, but I'd be happy to provide guidance and answer questions to anyone who wanted to try to submit a patch. Also, there are a number of files which can serve as examples of how

Re: [O] git repository over http?

2011-08-23 Thread Jason Dunsmore
Bastien b...@altern.org writes: Hi Jason, Jason Dunsmore emacs-orgm...@dunsmor.com writes: I ran some tests and found that the download speed is proportional to the size of the repo: Good to know, thanks. If you clone via git://, it does some optimizations during the transfer, whereas

Re: [O] Blog-like sitemap for org-publish

2011-08-23 Thread Jon Anders Skorpen
On Thu 2011-08-18 at 19:09, Bastien wrote: Hi Jon, Jon Anders Skorpen jasko...@mindmutation.net writes: I have made a function which creates a blog-like sitemap. It works as an alternative sitemap function to org-publish. This looks very interesting -- do you have a webpage we can

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Carsten Dominik
On Aug 23, 2011, at 4:32 PM, Nick Dokos wrote: Carsten Dominik carsten.domi...@gmail.com wrote: On Aug 23, 2011, at 3:53 PM, Nick Dokos wrote: András Major andras.g.ma...@gmail.com wrote: Yet another one I just stumbled across: if I create a table and use ! in the first column to

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi Eric, This is the first time I've seen a tag applied to a table. I've updated the results regular expression so that it will now admit examples like yours above. Please let me know if this doesn't work with the latest Org-mode. That's good news! Well, the bad news is that it doesn't

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Eric Schulte
András Major andras.g.ma...@gmail.com writes: Hi Eric, This is the first time I've seen a tag applied to a table. I've updated the results regular expression so that it will now admit examples like yours above. Please let me know if this doesn't work with the latest Org-mode. That's

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi Eric, That's good news! Well, the bad news is that it doesn't work. I've just pulled the current version (release_7.7.174.g63fae) and now the behaviour is different: - :noexport: in the #+tblname: has no effect. I'm not sure that it is legal to apply tags to tables, so I'm not

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Bastien
Hi András, András Major andras.g.ma...@gmail.com writes: here is an example that delivers an error reference 'table1' not found in this buffer when trying to export to HTML (others not tried yet): #+tblname: table1 :noexport: | n | x | y1 | y2 | |---+---+-+--| |

Re: [O] Bug: named columns in tables not working if name contains

2011-08-23 Thread Bastien
Hi András, András Major andras.g.ma...@gmail.com writes: Thanks Nick. It would be nice if the documentation reflected such an arbitrary choice of characters you can use... I added a footnote. -- Bastien

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Bastien
Hi András, András Major andras.g.ma...@gmail.com writes: I'd have expected the noexport tag to be on a section containing the table. I forgot to mention in the report that of course I tried that too: if I place the table and the code in two sections and tag the section containing the table

Re: [O] Bug: Toggle descriptive and literal links [7.4]

2011-08-23 Thread Bastien
Hi Thomas, t...@tsdye.com (Thomas S. Dye) writes: Thanks for adding this. I work with literal links and this potentially saves time and effort. I wonder if I'm using it correctly? In .emacs I set org-link-display-descriptive nil and have: org-link-display-descriptive is a

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Bastien
Hi Nick, Nick Dokos nicholas.do...@hp.com writes: Try adding an underscore to the regexp on line 2179 of org-table.el - something like this (untested): ... (if (string-match ^[a-zA-Z][a-zA-Z0-9_]*$ name) (push (cons name (int-to-string cnt))

Re: [O] Error because org-refile calls org-back-to-heading

2011-08-23 Thread Bastien
Matt Lundin m...@imapmail.org writes: Matt Lundin m...@imapmail.org writes: Since the commit c25165c25dc9fdb5b57b3c66b2e0ec0efdbeb7ad on August 18, I can only call this function when I am beneath the first level heading of an org-mode file. Otherwise I receive the following error: Here's a

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Bastien
Hi Eric, Eric Schulte schulte.e...@gmail.com writes: I'm not sure that it is legal to apply tags to tables, so I'm not sure if this is a bug. I confirm tags are for headlines only. If we want to add more export options to tables, let's use the usual #+[option] syntax -- like #+caption

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Bastien
Hi András, András Major andras.g.ma...@gmail.com writes: I think that anything that works despite being designed and documented otherwise is confusing to the user and should be considered a bug. I'm happy that it no longer works and hope that it stays that way. I think tags are clearly

Re: [O] Bug: babel: results switch (output vs. value) has no or wrong effect for sh source block [7.7 (release_7.7.107.g7a82)]

2011-08-23 Thread Achim Gratz
Michael Brand michael.ch.br...@gmail.com writes: If the shell is a special case for babel anyway, why not something like the following? Ehm, no. But I think that it would be generally useful (not just for shell blocks) to be able to capture stderr, either together with stdout or separately

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Bastien
Hi Carsten, Carsten Dominik carsten.domi...@gmail.com writes: The only characters permitted are alphanumerics. That can probably be easily relaxed. Hi Nick, I don't think it can be easily relaxed. Many other characters are operators in Calc and would lead to confusion. So perhaps my

Re: [O] Problem with shift-up [solved]

2011-08-23 Thread Bastien
Hi Peter, Peter Frings peter.fri...@agfa.com writes: Yes, I did. I did find the offending command. Hooray! Great -- thanks for sharing! (setq org-replace-disputed-keys t) Was set in the init.el file of the starter-kit. Now, is it just me or is the relation between this variable and

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Achim Gratz
Nick Dokos nicholas.do...@hp.com writes: The only characters permitted are alphanumerics. That can probably be easily relaxed. Only if you don't want to have _underlined_ still working and perhaps never use calc on that table. The problem with simple syntax is that the quoting rules become

Re: [O] [babel] [bug] inline src_R breaks downstream src block

2011-08-23 Thread Bastien
Eric Schulte schulte.e...@gmail.com writes: It will probably be a couple of days before I have sufficient time to address these issues, but rest assured it is only my TODO list. Thanks for your persistence in fixing this! -- Bastien

Re: [O] git repository over http?

2011-08-23 Thread Bastien
Jason Dunsmore emacs-orgm...@dunsmor.com writes: Okay -- can you git gc on the server? Okay, done: Great -- thanks a lot! -- Bastien

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Carsten Dominik
On 23.8.2011, at 18:20, Bastien wrote: Hi Carsten, Carsten Dominik carsten.domi...@gmail.com writes: The only characters permitted are alphanumerics. That can probably be easily relaxed. Hi Nick, I don't think it can be easily relaxed. Many other characters are operators in Calc and

Re: [O] Bug: Toggle descriptive and literal links [7.4]

2011-08-23 Thread Thomas S. Dye
Bastien b...@altern.org writes: Hi Thomas, t...@tsdye.com (Thomas S. Dye) writes: Thanks for adding this. I work with literal links and this potentially saves time and effort. I wonder if I'm using it correctly? In .emacs I set org-link-display-descriptive nil and have:

Re: [O] Bug: babel: results switch (output vs. value) has no or wrong effect for sh source block [7.7 (release_7.7.107.g7a82)]

2011-08-23 Thread Eric Schulte
Achim Gratz strom...@nexgo.de writes: Michael Brand michael.ch.br...@gmail.com writes: If the shell is a special case for babel anyway, why not something like the following? Ehm, no. But I think that it would be generally useful (not just for shell blocks) to be able to capture stderr,

Re: [O] Bug: babel: results switch (output vs. value) has no or wrong effect for sh source block [7.7 (release_7.7.107.g7a82)]

2011-08-23 Thread Eric Schulte
Michael Brand michael.ch.br...@gmail.com writes: Hi Eric 2011/8/20 Eric Schulte schulte.e...@gmail.com: [...] I would lean towards thinking that passing along error messages is more important than returning error codes, but if the community thinks differently I'm happy to change the ob-sh

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Eric Schulte
Your file uses #+data: where I use #+tblname: -- which one is the official one? I have the impression that it's #+data:, but I haven't come across that in the manual or elsewhere before. If #+tblname: isn't supposed to be used as a target for a variable in the code block, then we should

[O] how to add font-lock keywords

2011-08-23 Thread Le Wang
Hi all, I wasn't able to google a clear examples of how to do this. For example, I'd like to highlight all text between double-quotes. -- Le

Re: [O] org-odt numbering (Applying custom templates)

2011-08-23 Thread Matt Price
sort of hijacking this thread with a quick note: In order to remove numbering from the headings produced by org-odt, simply export a file, go to Tools - Outline Numbering in libreoffice/openoffice, and turn numbering off for levels 1-10 (probalby you only need about 4 levels anyway). Then save

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Carsten Dominik
On 23.8.2011, at 18:20, Bastien wrote: Hi Carsten, Carsten Dominik carsten.domi...@gmail.com writes: The only characters permitted are alphanumerics. That can probably be easily relaxed. Hi Nick, I don't think it can be easily relaxed. Many other characters are operators in Calc and

[O] Dimming ancestors in the agenda (relevant to indenting nested TODOs in agenda views)

2011-08-23 Thread Samuel Wales
Here is a different solution. It is from my notes from long ago. To me, one issue with indenting is that you expect the previous line to be a direct parent, analogously with the outline. This conflicts with sorting and non-child descendents. If you sort, you can't take advantage of the feature

Re: [O] Bug: named columns in tables not working if name contains _

2011-08-23 Thread Bastien
Carsten Dominik carsten.domi...@gmail.com writes: I have checked, underscore is aceptable, calc allows it in variables names. However, I would not recommend adding any more characters to this regexp. Thanks for the quick feedback! -- Bastien

Re: [O] ebib configuration for org-bibtex

2011-08-23 Thread Bastien
Hi Eric, Bastien b...@altern.org writes: I think this fix is causing some mischief. I reverted this commit -- let's wait Eric is back and can fix this with a better solution. Eric -- just making sure this is under your radar. I reverted your fix because it was not answering Thomas'

Re: [O] ebib configuration for org-bibtex

2011-08-23 Thread Eric Schulte
Bastien b...@altern.org writes: Hi Eric, Bastien b...@altern.org writes: I think this fix is causing some mischief. I reverted this commit -- let's wait Eric is back and can fix this with a better solution. Eric -- just making sure this is under your radar. Thanks, I had lost track

Re: [O] ebib configuration for org-bibtex

2011-08-23 Thread Eric Schulte
t...@tsdye.com (Thomas S. Dye) writes: Eric Schulte schulte.e...@gmail.com writes: t...@tsdye.com (Thomas S. Dye) writes: Aloha all, I'm trying, partially successfully, to configure org-bibtex so it mimics some useful features of ebib. In particular, I'm wanting to add several optional

[O] Bug: typo in org-list - point-maker

2011-08-23 Thread Matt Lundin
Commit 08ca5be491f5704cc0c6cb87013a5e8537218488 causes an error because of typo: i.e., point-maker instead of point-marker Best, Matt

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi Bastien, I'm not sure I understand -- does it mean that C-cC-c on #+begin_src fails in the example below? No, it means that exporting to HTML fails with that error message. It should actually evaluate the code and include the resulting PNG in the output (and that's what it does when

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi Bastien, I think that anything that works despite being designed and documented otherwise is confusing to the user and should be considered a bug. I'm happy that it no longer works and hope that it stays that way. I think tags are clearly documented as being properties of the

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread András Major
Hi Eric, Your file uses #+data: where I use #+tblname: -- which one is the official one? I have the impression that it's #+data:, but I haven't come across that in the manual or elsewhere before. If #+tblname: isn't supposed to be used as a target for a variable in the code block,

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Nick Dokos
András Major andras.g.ma...@gmail.com wrote: Hi Eric, Your file uses #+data: where I use #+tblname: -- which one is the official one? I have the impression that it's #+data:, but I haven't come across that in the manual or elsewhere before. If #+tblname: isn't supposed to be used

Re: [O] ebib configuration for org-bibtex

2011-08-23 Thread Thomas S. Dye
Eric Schulte schulte.e...@gmail.com writes: t...@tsdye.com (Thomas S. Dye) writes: Eric Schulte schulte.e...@gmail.com writes: t...@tsdye.com (Thomas S. Dye) writes: Aloha all, I'm trying, partially successfully, to configure org-bibtex so it mimics some useful features of ebib. In

Re: [O] org-odt numbering (Applying custom templates)

2011-08-23 Thread Jambunathan K
Matt sort of hijacking this thread with a quick note: In order to remove numbering from the headings produced by org-odt, simply export a file, go to Tools - Outline Numbering in libreoffice/openoffice, and turn numbering off for levels 1-10 (probalby you only need about 4 levels anyway).

Re: [O] Not merging org-lparse, org-xhtml org-odt to the core

2011-08-23 Thread Jambunathan K
Detlef Will you take care of org-odt working in orgmode for the foreseeable future or don`t you care about orgmode anymore? I pushed a commit just a few minutes ago. So things are back to normal. Jambunathan K.

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Thomas S. Dye
András Major andras.g.ma...@gmail.com writes: Hi Bastien, I think that anything that works despite being designed and documented otherwise is confusing to the user and should be considered a bug. I'm happy that it no longer works and hope that it stays that way. I think tags are

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Eric Schulte
Nick Dokos nicholas.do...@hp.com writes: András Major andras.g.ma...@gmail.com wrote: Hi Eric, Your file uses #+data: where I use #+tblname: -- which one is the official one? I have the impression that it's #+data:, but I haven't come across that in the manual or elsewhere before.

[O] [PATCH] Implement history facility for org-occur searches

2011-08-23 Thread Suvayu Ali
Hi Bastien and everyone, I wanted to implement a history facility for sparse trees. Since sparse trees use org-occur and org-scan-tags any such facility would need to be aware of both functions. My lisp foo proved to be too weak to understand org-scan-tags, so I implemented this only for

Re: [O] Bug: typo in org-list - point-maker

2011-08-23 Thread Nicolas Goaziou
Hello, Matt Lundin m...@imapmail.org writes: Commit 08ca5be491f5704cc0c6cb87013a5e8537218488 causes an error because of typo: i.e., point-maker instead of point-marker Fixed, thanks. -- Nicolas Goaziou

Re: [O] Bug: :noexport: tag prevents table functioning as babel code block input [7.7 (release_7.7.167.gfceb)]

2011-08-23 Thread Thomas S. Dye
Eric Schulte schulte.e...@gmail.com writes: Nick Dokos nicholas.do...@hp.com writes: András Major andras.g.ma...@gmail.com wrote: Hi Eric, Your file uses #+data: where I use #+tblname: -- which one is the official one? I have the impression that it's #+data:, but I haven't come

Re: [O] Not merging org-lparse, org-xhtml org-odt to the core

2011-08-23 Thread Jambunathan K
I personally would really like to see important contribution such as yours become more and more integrated into the 'standard' Org ditribution - and not pushed further away. Precisely my point. Bastien's idea of merge is to make it into a long drawn affair. I disagree. Jambunathan K. --

Re: [O] how to add font-lock keywords

2011-08-23 Thread John Wiegley
Le Wang l26w...@gmail.com writes: I wasn't able to google a clear examples of how to do this. For example, I'd like to highlight all text between double-quotes. Typically it looks something like this: (font-lock-add-keywords org-mode (list (list (concat

Re: [O] Not merging org-lparse, org-xhtml org-odt to the core

2011-08-23 Thread Vikas Rawal
Precisely my point. Bastien's idea of merge is to make it into a long drawn affair. I disagree. It would help if you or Bastien could explain what is going on. As is clear, everyone is hoping that the issues will be resolved and your valuable contributions will remain a part of org-mode. It

Re: [O] how to add font-lock keywords

2011-08-23 Thread John Wiegley
John Wiegley jwieg...@gmail.com writes: Le Wang l26w...@gmail.com writes: I wasn't able to google a clear examples of how to do this. For example, I'd like to highlight all text between double-quotes. Typically it looks something like this: (font-lock-add-keywords org-mode [...]

Re: [O] how to add font-lock keywords

2011-08-23 Thread Le Wang
Thanks for the hint, I tried this, but all my beautiful salad bowl colours went away. (font-lock-add-keywords 'org-mode '((\\\(\\(?:.\\|\n\\)*?[^\\]\\)\ 0 font-lock-string-face))) Notice that I made a bad attempt to handle escaped quotation mark in the string. Does anyone know a better solution