Re: [O] Ever used org-mode contrib packages?

2012-04-11 Thread Christian Moe
On 4/11/12 10:46 PM, Martyn Jago wrote: suvayu ali writes: Hi François, On Wed, Apr 11, 2012 at 21:22, François Allisson wrote: I'm curious to know what you are using from org-contrib... - org-contacts - org-collector (for some projects) Yours, Christian

Re: [O] multiple date_tree values possible in a single file

2012-04-11 Thread Nick Dokos
Stuart McLean wrote: > Hello, everyone > > I really like the date tree hierarchy. I was wondering whether it was > possible to use > multiple date_tree hierarchies in a single file, or how one would go > about setting it up. > > For example > > * Items TODO > ** tree 1 >:PROPERTIES: >:

[O] multiple date_tree values possible in a single file

2012-04-11 Thread Stuart McLean
Hello, everyone I really like the date tree hierarchy. I was wondering whether it was possible to use multiple date_tree hierarchies in a single file, or how one would go about setting it up. For example * Items TODO ** tree 1 :PROPERTIES: :DATE_TREE: t :END: ** tree 2 :PROPERTIES:

Re: [O] Ever used org-mode contrib packages?

2012-04-11 Thread Martyn Jago
suvayu ali writes: > Hi François, > > On Wed, Apr 11, 2012 at 21:22, François Allisson wrote: >> I'm curious >> to know what you are using from org-contrib... > > - I use org-notmuch to link to emails from org files. > - I also use org-occur-goto for easier navigation. > - I also use org-google-

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Thomas S. Dye
Eric Schulte writes: > Rainer M Krug writes: > >> On 11/04/12 03:40, Eric Schulte wrote: >>> t...@tsdye.com (Thomas S. Dye) writes: >>> Eric Schulte writes: > Torsten Wagner writes: > >> Hi, >> >> for me the biggest "trouble" with babel is to remember the poss

Re: [O] Ever used org-mode contrib packages?

2012-04-11 Thread suvayu ali
Hi François, On Wed, Apr 11, 2012 at 21:22, François Allisson wrote: > I'm curious > to know what you are using from org-contrib... - I use org-notmuch to link to emails from org files. - I also use org-occur-goto for easier navigation. - I also use org-google-weather to display weather informat

[O] Agenda: Don't widen narrowed subtrees

2012-04-11 Thread Moritz Ulrich
When a file used in the org-agenda is in a narrowed state (org-narrow-to-subtree or similar) and you refresh the agenda buffer via `g', it becomes un-narrowed. This is a very annoying behavior as I tend to narrow to subtrees while editing their contents. Is this a bug or desired behavior? If the l

[O] Ever used org-mode contrib packages?

2012-04-11 Thread François Allisson
Hello, I've just updated the index of contributed packages on Worg [1]. Have a look, it is full of treasures... Out of the 61 listed contributions: - 43 are hosted on Org-mode's contrib/lisp/ directory - 9 are hosted elsewhere - 9 are already incorporated into the core of org-mode, but remain

Re: [O] table of contents and numbers

2012-04-11 Thread John Hendy
On Wed, Apr 11, 2012 at 12:12 PM, Nick Dokos wrote: > Julian Burgos wrote: > >> Dear list, >> >> My apologies for another very basic question.  I'm wondering why I do >> not get a table of contents when exporting the following file as pdf >> >> ---start org file --- >> #+TITLE: Test >> #+

[O] [PATCH] org-latex.el: append final newline to export buffer

2012-04-11 Thread Jérémie Courrèges-Anglas
Hi. org-export-as-latex (sometimes?) doesn't add a final newline to the exported buffer. It's getting in my way as I set require-final-newline to 'query. Opinions? -- Jérémie Courrèges-Anglas GPG fingerprint: 61DB D9A0 00A4 67CF 2A90 8961 6191 8FBF 06A1 1494 From 2cf51a01885071c948d20c641d2d2fd

Re: [O] Disable links in Latex export

2012-04-11 Thread Nick Dokos
SW wrote: > I'm exporting a structured document to Latex/PDF. The table of contents > contains > hyperlinks for each section which I would like to disable. I tried setting > "org-export-latex-href" and "org-export-latex-hyperref" to empty strings, but > this did not help. Thanks. > > There ar

[O] Disable links in Latex export

2012-04-11 Thread SW
I'm exporting a structured document to Latex/PDF. The table of contents contains hyperlinks for each section which I would like to disable. I tried setting "org-export-latex-href" and "org-export-latex-hyperref" to empty strings, but this did not help. Thanks.

Re: [O] table of contents and numbers

2012-04-11 Thread Nick Dokos
Julian Burgos wrote: > Dear list, > > My apologies for another very basic question. I'm wondering why I do > not get a table of contents when exporting the following file as pdf > > ---start org file --- > #+TITLE: Test > #+OPTIONS: toc:t num:nil > > * Part 1 > Some text > > * Part

Re: [O] Running "org-babel-tangle" and/or "org-export-as-pdf" in Emacs batch mode

2012-04-11 Thread Eric Schulte
Bernd Weiss writes: > Dear all, > > I am not sure if this an orgmode-, an ESS- or an Emacs-related question. > > I am working on an orgmode-file with embedded R code. Since I am using a > build tool called waf, I would like to call Emacs from command line like > this: > > emacs --batch --load "e:

Re: [O] var expansion on tangling only once per file

2012-04-11 Thread Eric Schulte
This is not currently possible, and any conceivable implementation would be necessarily complex requiring a good deal of cross-buffer coordination. Would it be possible to simply only declare the variable in a header argument applying to the first code block? Using a session would keep that varia

[O] table of contents and numbers

2012-04-11 Thread Julian Burgos
Dear list, My apologies for another very basic question. I'm wondering why I do not get a table of contents when exporting the following file as pdf ---start org file --- #+TITLE: Test #+OPTIONS: toc:t num:nil * Part 1 Some text * Part 2 Some more text ---end org file ---

Re: [O] send org subtree as e-mail?

2012-04-11 Thread Peter Salazar
Wow, that worked perfectly. Thank you! On Tue, Apr 3, 2012 at 7:09 AM, Eric Schulte wrote: > Peter Salazar writes: > > > I frequently compose e-mails as subtrees of my org files. I'd like to be > > able to e-mail the contents of these subtrees, maybe by first viewing the > > subtree in an indi

Re: [O] [babel] keep source code buffer open

2012-04-11 Thread Christopher Witte
Here is a keyboard macro I used with some success (fset 'org-execute-from-indirect   (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("C-c ' C-c C-c C-'" 0 "%d")) arg))) basically it just exits the source code buffer, compiles and then reopens the source

Re: [O] [babel] hide inline source code blocks by results

2012-04-11 Thread Eric Schulte
Currently inline blocks like don't associate themselves with their results, they are only expected to be evaluated on export, so the functionality you suggest below would require first changing how results are associated with inline code blocks. Another option would be to hide everything but the b

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Eric Schulte
Bastien writes: > Hi Rainer, > > Rainer M Krug writes: > >> Thanks Bastien - here is my suggestion and if no objections are raised, I >> would suggest to >> implement it: > > I don't understand the "..." parts in your example. > I agree, I think explicitly spelling out all options would make t

Re: [O] [babel] keep source code buffer open

2012-04-11 Thread Eric Schulte
Hi Torsten, You could keep the buffer open but just save it with C-x C-s which will propagate changes back to the original Org-mode buffer. If you want to wrap the save->switch-to-org->export actions into a single keystroke then I think an Emacs Macro or writing a simple personal elisp function w

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Eric Schulte
Rainer M Krug writes: > On 11/04/12 03:40, Eric Schulte wrote: >> t...@tsdye.com (Thomas S. Dye) writes: >> >>> Eric Schulte writes: >>> Torsten Wagner writes: > Hi, > > for me the biggest "trouble" with babel is to remember the possible > keywords in the > he

[O] bug#11160: Acknowledgement (24.0.95; (org) outline-style cycling + outline-mode)

2012-04-11 Thread Bastien
Jambunathan K writes: > http://orgmode.org/worg/org-faq.html#use-visibility-cycling-in-outline-mode. > > which specifically notes that org-style cycling is "written in a way > that they are independent of the outline setup." This bug is now fixed in emacs-24 branch. Thanks, -- Bastien

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Eric Schulte
Rainer M Krug writes: > On Wed 11 Apr 2012 10:11:01 CEST, Bastien wrote: >> Hi Rainer, >> >> Rainer M Krug writes: >> >>> Thanks Bastien - here is my suggestion and if no objections are raised, I >>> would suggest to >>> implement it: >> >> I don't understand the "..." parts in your example. >

Re: [O] org-mime-htmlize: visual representation (thunderbird)

2012-04-11 Thread Eric Schulte
Hi Uwe, Uwe Brauer writes: >>> On Wed, 11 Apr 2012 00:23:54 -0400, Eric Schulte >>> wrote: > >> Uwe Brauer writes: >>> >>> Uwe >>> > >> Hi Uwe, > >> Thanks for sending along this helpful review. I've just pushed two >> changes to org-mime so that it now (1) wra

Re: [O] [babel] Literate Programming for publication

2012-04-11 Thread Thomas S. Dye
Torsten Wagner writes: > Hi, > > I just try (again) to use org-mode and babel for literate programming > finally resulting in a camera ready manuscript for publication. > > I noticed that there are different ways of achieving this and wonder > what others use or what others think might be the bes

[O] [babel] hide inline source code blocks by results

2012-04-11 Thread Torsten Wagner
Hi, I guess we had such a discussion some time ago already. I just started again to use inline source code blocks e.g. text text text src_python[:session]{print((U[0]-U[1])*1000)} mV text text text if you have a lot of these in a text its rather hard to read. I was thinking of something similar

[O] [babel] Literate Programming for publication

2012-04-11 Thread Torsten Wagner
Hi, I just try (again) to use org-mode and babel for literate programming finally resulting in a camera ready manuscript for publication. I noticed that there are different ways of achieving this and wonder what others use or what others think might be the best. What I want do Ideally, I would l

Re: [O] [PATCH] Skip uninteresting lines when navigating the agenda

2012-04-11 Thread Bernt Hansen
Bernt Hansen writes: > * lisp/org-agenda.el (org-agenda-next-line): Skip lines without markers > * lisp/org-agenda.el (org-agenda-previous-line): Skip lines without markers > > Next and previous line functions now only visit agenda lines > which have a marker defined. This skips all of the > uni

Re: [O] View inherited DEADLINEs in agenda

2012-04-11 Thread Vedang
Hi All, I had asked a similar question on StackOverflow a long time ago (http://stackoverflow.com/questions/4872088/is-there-any-way-for-subtasks-to-inherit-deadlines-in-org-mode) and one of the answers was useful to me - namely, http://stackoverflow.com/a/8920418/137430. Adding the answer here f

Re: [O] latex to org converter

2012-04-11 Thread Mirko Vukovic
Charles Philip Chan bell.net> writes: > > Marvin Doyley gmail.com> writes: > > > Does anybody has a script that convert latex files to org mode ? > > > > I wrote one in Matlab, but it is a little clunky - I wrote it in matlab > > because I am still learning lisp > > Not exactly a script, but

Re: [O] org-yank improvement?

2012-04-11 Thread Bastien
Bernt Hansen writes: > Carsten Dominik writes: > >> On 11.4.2012, at 08:38, Bastien wrote: >> >>> I must confess I'm not a user of org-indent. I have been testing it a >>> few times and always had the feeling it goes against Org's "What You See >>> is What You Have" core principle. But let's f

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-11 Thread Mike McLean
And c) with :startgroup and :endgroup in the alist :) On Wednesday, April 11, 2012, Mike McLean wrote: > Yes, there is still the original bug (re-occurring after the reverts). > Matt's comment was accurate but related to the implementation of the fix > not th concept of the bug. If you switch two

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-11 Thread Mike McLean
Yes, there is still the original bug (re-occurring after the reverts). Matt's comment was accurate but related to the implementation of the fix not th concept of the bug. If you switch two free-tag entry mode from fast tag selection, the tags listed in the alist are not available for completion. T

Re: [O] org-yank improvement?

2012-04-11 Thread Bernt Hansen
Carsten Dominik writes: > On 11.4.2012, at 08:38, Bastien wrote: > >> I must confess I'm not a user of org-indent. I have been testing it a >> few times and always had the feeling it goes against Org's "What You See >> is What You Have" core principle. But let's fix bugs in it anyway. > > For w

[O] Bug: table formula editor: readable elisp [7.8.03]

2012-04-11 Thread Arne Babenhauserheide
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. -

Re: [O] 24.0.95; (org) outline-style cycling + outline-mode

2012-04-11 Thread Bastien
Jambunathan K writes: > Thanks for the fix and it addresses the problem I reported. Feel free > to close this bug once you commit the changes to bzr repo. Thanks for confirming. This in now in Emacs, I closed the bug there. -- Bastien

[O] Org release 7.8.09 (BUGFIX-only release)

2012-04-11 Thread Bastien
Hi all, I released Org 7.8.09, a bugfix release. This version is in the Emacs branch from which Emacs 24.1 will be released. http://orgmode.org/org-7.8.09.zip http://orgmode.org/org-7.8.09.tar.gz http://orgmode.org/org-mode-download.html Enjoy! -- Bastien

Re: [O] orgweb/Changes: broken formatting of code blocks

2012-04-11 Thread Julian Gehring
Hi Bastien, thanks, the formatting of the code block example looks fine now. Best Julian On 04/11/2012 12:19 PM, Bastien wrote: Hi Julian, Julian Gehring writes: at the changes page of the orgmode website, some of the code block formatting seems to be broken (see http://orgmode.org/Chang

[O] several sub-TODOs with shifted date possible with a single custom-command?

2012-04-11 Thread Markus Hetzmannseder
Hallo, I started a few weeks ago to use org-mode for my special usecase, so iam still very new to all of the features of org-mode. After a steep learningcurve to the very beginning its working for me rather well. (thx to all the docu and tutorials) Iam a farmer, and my intention of the use of o

Re: [O] orgweb/Changes: broken formatting of code blocks

2012-04-11 Thread Bastien
Hi Julian, Julian Gehring writes: > at the changes page of the orgmode website, some of the code block > formatting seems to be broken (see > http://orgmode.org/Changes.html#sec-3). I recently pushed a fix for this. It looks okay to me know. Can you check again? > Can anyone please check if

Re: [O] org-mime-htmlize: visual representation (thunderbird)

2012-04-11 Thread Uwe Brauer
>> On Wed, 11 Apr 2012 00:23:54 -0400, Eric Schulte >> wrote: > Uwe Brauer writes: >> >> Uwe >> > Hi Uwe, > Thanks for sending along this helpful review. I've just pushed two > changes to org-mime so that it now (1) wraps html and images in a > multipart/related mi

[O] Updating BibTex file

2012-04-11 Thread Julian Burgos
Dear list, How can I made org mode / reftex to recognize changes in my BibTex file? Here is the scenario. I have my default BibTex file defined with the reftex-default-bibliography variable. While working on my org mode document I am adding references and everything is working fine. The p

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed 11 Apr 2012 10:11:01 CEST, Bastien wrote: > Hi Rainer, > > Rainer M Krug writes: > >> Thanks Bastien - here is my suggestion and if no objections are raised, I >> would suggest to >> implement it: > > I don't understand the "..." parts in your

Re: [O] ATTR_HTML for a clickable image, howto?

2012-04-11 Thread Christian Moe
Hi again, On 4/11/12 1:53 AM, Samuel Wales wrote: Will CSS solutions described in this thread work if you always export subtrees (not entire .org files) and never include style files? Yes, CSS styles apply to exported subtrees as well, whether from the default stylesheet, linked external style

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Bastien
Hi Rainer, Rainer M Krug writes: > Thanks Bastien - here is my suggestion and if no objections are raised, I > would suggest to > implement it: I don't understand the "..." parts in your example. > I think that is it for the moment - the header arguments section, > specifically the language

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Bastien
Yagnesh Raghava Yakkala writes: > Rainer M Krug writes: > >> On 10/04/12 22:35, Bastien wrote: >>> Guys, >>> >>> let me know when you have a first stable draft for the structure of the >>> Babel menu and I'll >>> implement it. >> >> Thanks Bastien - here is my suggestion and if no objections a

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-11 Thread Bastien
Hi Mike, Mike McLean writes: > The "bug" was after shifting to free tag selection mode, the > tags defined in org-tag-alist are not available for completion.  Not sure I understand. Do you suggest there is still a bug, considering that we want to skip to Matt's quote about "historical behavio

Re: [O] Worg = Ikiwiki + Org? (was Re: Usage of disqus instead of mailinglist considered harmful)

2012-04-11 Thread Bastien
Hi Sam, thanks for the feedback. sam kleinman writes: > Therefore, if having Worg built using org-mode syntax/files is > important to you, the current solution or some variant thereon is > probably the best bet... Yes, having Worg built using org-mode files *is* important. Best, -- Bastien

Re: [O] Scientific papers related to Org-mode

2012-04-11 Thread Bastien
Rainer M Krug writes: > I would actually suggest: > * How can I cite org when I am using it for a publication? > > Yes. Please cite the manual. Evaluate this function and run =M-x > org-insert-manual-bitex-citation-at-point RET=. Please submit a patch for this. (Clone Worg, edit it, then `C-x

Re: [O] Scientific papers related to Org-mode

2012-04-11 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/04/12 22:34, Bastien wrote: > Hi Rainer, > > Rainer M Krug writes: > >> It just returns the citation. > > Okay. I've added this to the Worg FAQ: > > * Is there a bibtex entry for the Org manual? I would actually suggest: * How can I cite o

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 11/04/12 03:40, Eric Schulte wrote: > t...@tsdye.com (Thomas S. Dye) writes: > >> Eric Schulte writes: >> >>> Torsten Wagner writes: >>> Hi, for me the biggest "trouble" with babel is to remember the possible keywords in t

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Yagnesh Raghava Yakkala
Rainer M Krug writes: > On 10/04/12 22:35, Bastien wrote: >> Guys, >> >> let me know when you have a first stable draft for the structure of the >> Babel menu and I'll >> implement it. > > Thanks Bastien - here is my suggestion and if no objections are raised, I > would suggest to > implement

Re: [O] layout org-babel menu WAS: About org-babel menu

2012-04-11 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/04/12 22:35, Bastien wrote: > Guys, > > let me know when you have a first stable draft for the structure of the Babel > menu and I'll > implement it. Thanks Bastien - here is my suggestion and if no objections are raised, I would suggest to i

Re: [O] org-yank improvement?

2012-04-11 Thread Carsten Dominik
On 11.4.2012, at 08:38, Bastien wrote: > Hi Thorsten, > > Thorsten writes: > >> Memnon Anon writes: >> >>> pin...@iro.umontreal.ca (François Pinard) writes: >> However, by mistake, it happens that the cursor is on the only visible bullet star of the next heading instead of really