Re: [O] Re: can't export custom time stamps

2011-03-14 Thread Daniel Clemente
Thanks, this solves the timestamp exporting issue. -- Greetings, Daniel

[O] Re: Set the beginning section number

2011-03-14 Thread Nicolas
Hello, lbml...@hethcote.com writes: I may have not read sufficiently, but I have not yet found how to set the beginning number when exporting to HTML and I'm desiring to start with a number other than 1. * This ** is the example *** that I play *** with Exports to: 1 This 1.1 is the

[O] org-crypt Error: org-crypt-use-before-save-magic

2011-03-14 Thread Ian Barton
I am investigating using org-crypt in some of my files. In my .emacs I have: #+BEGIN_SRC emacs-lisp (require 'org-crypt) (org-crypt-use-before-save-magic) (setq org-tags-exclude-from-inheritance (quote (crypt))) ; GPG key to use for encryption (setq org-crypt-key MyKey) #+END_SRC When I start

Re: [O] dates before 1970

2011-03-14 Thread Carsten Dominik
Hi Bastien, please let me know if you want this patch installed. - Carsten On 13.3.2011, at 21:08, Eric S Fraga wrote: Carsten Dominik carsten.domi...@gmail.com writes: [...] I am attaching a patch which tries to implement some kind of a solution for this problem. The patch introduces

Re: [O] [dev] org-indent-mode patch

2011-03-14 Thread Carsten Dominik
Hi Nicolas, On 13.3.2011, at 17:21, Nicolas wrote: Hello, I'd like to submit the following org-indent-mode patch for testing. git://github.com/ngz/org-mode-lists.git indent-patch-no-timer It implements two things: 1. It indents correctly text when using visual-line-mode; 2. It

[O] Bug when publishing images

2011-03-14 Thread Francesco Pizzolante
Hi, Since this morning, I have problems exporting (inline) images. Here's an example. Such content in my Org buffer: --8---cut here---start-8--- [[file:toto.png]] --8---cut here---end---8--- is exported to this HTML code:

Re: [O] org-crypt Error: org-crypt-use-before-save-magic

2011-03-14 Thread Julien Danjou
On Mon, Mar 14 2011, Ian Barton wrote: I notice that org-crypt isn't documented in the manual and there is an old message from Carsten asking for someone to document it. If I can get it working I'll promise to document it:) Also I'll write something about using ssh agent with org an Emacs,

Re: [O] Bug when publishing images

2011-03-14 Thread Giovanni Ridolfi
Francesco Pizzolante f...@missioncriticalit.com writes: Since this morning, I have problems exporting (inline) images. [...] Could someone fix this as soon as possible? err... this is pretty rude phrasing for a volunteer project, isn't it? DIY soutions: 1. You can write a function that,

Re: [O] dates before 1970

2011-03-14 Thread Bastien
Hi Carsten, Carsten Dominik carsten.domi...@gmail.com writes: please let me know if you want this patch installed. I won't have time to have a close look at this before tomorrow morning, as I'm still out on a week-end. But please go ahead if you think it's okay. Best, -- Bastien

Re: [O] Bug when publishing images

2011-03-14 Thread Francesco Pizzolante
Bastien, Since this morning, I have problems exporting (inline) images. Here's an example. Such content in my Org buffer: [[file:toto.png]] is exported to this HTML code: lt;img src=toto.png alt=toto.png /gt; Yes, this is a problem with last commit. Simply do this: ~$ git

Re: [O] dates before 1970

2011-03-14 Thread Carsten Dominik
On Mar 11, 2011, at 5:30 PM, Nick Dokos wrote: Carsten Dominik carsten.domi...@gmail.com wrote: THis is exactly the point, that it depends on how Emacs was compiled, and what kind of integer is used in the date representation. Signed or unsigend, 32 or 64 bits (I think). For

[O] Re: Automatically clocking into parent items

2011-03-14 Thread Aankhen
On Sun, Mar 13, 2011 at 01:30, Aankhen aank...@gmail.com wrote: I’ve been working on getting org-mode to automatically clock into an item’s ancestor when clocking out of that item.  The way I have it set up now, it walks up the tree looking for an item that has a particular property set.  If

Re: [O] [BUG] Did COMMENT break?

2011-03-14 Thread Rasmus
Hi Thanks, Indeed. It seems that one of the hair-raising regexps that Carsten manages to come up with is not quite right. Try this patch for now: Hmm, it still does not seem to work for me, but I might not have changed the files correctly. --Rasmus

[O] bug killing regions with links

2011-03-14 Thread Richard Riley
If I have an org entry with a line containing only an org file: link, if I C-space at the start of the line to set mark, down arrow or C-n and then kill-region with C-w I would expect the entire line and link text to be copied to the clipboard and the line deleted (transient mode enabled). As it

[O] Re: Section between #+latex: declarations not converted during export

2011-03-14 Thread Matt Lundin
Nick Dokos nicholas.do...@hp.com writes: Matt Lundin m...@imapmail.org wrote: In the following example... * Testing #+latex: \custommacro{% [[http:www.google.com][Google]] /The quick brown fox./ #+latex: } ...the lines between the latex declarations are not exported: The opening

[O] Re: [Patch] HTML export -- Allow to change the name of the global DIV

2011-03-14 Thread Matt Lundin
Bastien b...@altern.org writes: Are there other hardcoded HTML classes/ids that the user might want to customize? If so, can we think about a simple way to define all of them at once? The id/class values are hardcoded in several different places and generated in different ways in

[O] Hiding Properties and Log drawers from export.

2011-03-14 Thread John Tarbotton
I have some headings with notes following. I would like to use the settings. '(org-agenda-add-entry-text-maxlines 5) '(org-agenda-entry-text-maxlines 5) The issue I have is that I get all the property drawers cluttering up the file. Is there a way to prevent the Property and Logfile Drawers

[O] Invoicing using a template from org-mode?

2011-03-14 Thread Richard Riley
I'm wondering if anyone out there has already implemented an invoicing system from org-mode which takes a last invoice id property, increments it or possibly next invoice date and produces an invoice document? And then produce a TODO to check the payment and another to reissue a year or two down

[O][Babel] tangle - kind of macro expansion inside src blocks?

2011-03-14 Thread Olaf.Hamann
Hello all, is there a way to do so or are there plans to integrate a macro expansion mechanism into org-babel-tangle like that one org-mode already provides? #+MACRO: name replacement {{{name}}} I would like to replace config parameter in begin_src...end_src blocks. Change at one place in

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton jtarbot...@gmail.com wrote: I have some headings with notes following. I would like to use the settings. '(org-agenda-add-entry-text-maxlines 5) '(org-agenda-entry-text-maxlines 5) The issue I have is that I get all the property drawers cluttering up the file. Is there a

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton jtarbot...@gmail.com wrote: I have some headings with notes following. I would like to use the settings. '(org-agenda-add-entry-text-maxlines 5) '(org-agenda-entry-text-maxlines 5) The issue I have is that I get all the property drawers cluttering up the file. Is there a

Re: [O] Re: [Patch] HTML export -- Allow to change the name of the global DIV

2011-03-14 Thread Jambunathan K
(On a related note) As part of my odt exporter, I have factored out a generic exporter to which org-html.el and org-odt.el plugs in. The generic exporter is callback driven. I have included the typical callback that the odt exporter registers down below. The generic infrastructure is in

Re: [O] Re: [Patch] HTML export -- Allow to change the name of the global DIV

2011-03-14 Thread Jambunathan K
For more info checkout out my `staging' branch. Forgot the link. Here it is: http://repo.or.cz/w/org-mode/org-jambu.git/tree/staging Jambunathan K.

[O][Babel] Deep interest in LP feature of org-mode

2011-03-14 Thread Olaf.Hamann
Hello all, this starts with kind of an introduction to the list as I will post more in future and leads to a few concept questions concerning org-babel-detangle at the end. First of all many thanks to the authors of the babel package! Integrating babel into core orgmode made me discovering

Re: [O][Babel] tangle - kind of macro expansion inside src blocks?

2011-03-14 Thread Eric Schulte
Hello Olaf, I've just added a new hook through which you will be able to expand regular Org-mode style macros in code block bodies during export. The following org-mode snippet demonstrates its use. First, add macro expansion to the new `org-babel-tangle-body-hook'. #+begin_src emacs-lisp

Re: [O] [BUG] Did COMMENT break?

2011-03-14 Thread Rasmus
It seems that one of the hair-raising regexps that Carsten manages to come up with is not quite right. Try this patch for now: Hmm, it still does not seem to work for me, but I might not have changed the files correctly. Please ignore the above. Nicholas' patch works as described. I'd just

Re: [O][Babel] Deep interest in LP feature of org-mode

2011-03-14 Thread Eric Schulte
Hi Olaf, It is great to hear that you are enjoying LP with Org-mode. I have some comments/answers inline below. Best -- Eric Olaf.Hamann o.ham...@gmx.net writes: Hello all, this starts with kind of an introduction to the list as I will post more in future and leads to a few concept

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread John Tarbotton
Nick Dokos nicholas.dokos at hp.com writes: John Tarbotton jtarbotton at gmail.com wrote: Is there a way to prevent the Property and Logfile Drawers from being exported? Check the value of the following variable (with C-h v org-export-with-drawers RET): Nick Thanks for the

Re: [O] org-crypt Error: org-crypt-use-before-save-magic

2011-03-14 Thread Ian Barton
On 14/03/11 09:36, Julien Danjou wrote: On Mon, Mar 14 2011, Ian Barton wrote: I notice that org-crypt isn't documented in the manual and there is an old message from Carsten asking for someone to document it. If I can get it working I'll promise to document it:) Also I'll write something

RE: [O] broken latex export of footnote from a table cell?

2011-03-14 Thread Mikhail Titov
Thank you, Nicholas! That explains everything. I wonder how I didn't come across the link you mentioned before. I should have tried that simply in LaTeX. Mikhail -Original Message- From: emacs-orgmode-bounces+mlt=gmx...@gnu.org [mailto:emacs-orgmode-bounces+mlt=gmx...@gnu.org] On

Re: [O][Babel] Deep interest in LP feature of org-mode

2011-03-14 Thread Olaf.Hamann
Thank you for your quick reply and the precise answers, Eric. Comparing org-export vs. org-tangle I've mixed up how I used text processing: * for myself I often use it simply for creating codefiles (tangling) - org-export would be sufficient * for tasks in office there is need for creating a

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread John Tarbotton
John Tarbotton jtarbotton at gmail.com writes: Check the value of the following variable (with C-h v org-export-with-drawers RET): Thanks for the reply that would seem to be what I need. In fact it got me half way there. I set it nil using the menu. The LOGFILE drawers are gone but

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton jtarbot...@gmail.com wrote: Nick Dokos nicholas.dokos at hp.com writes: John Tarbotton jtarbotton at gmail.com wrote: Is there a way to prevent the Property and Logfile Drawers from being exported? Check the value of the following variable (with C-h v

Re: [O] Hiding Properties and Log drawers from export.

2011-03-14 Thread Nick Dokos
John Tarbotton jtarbot...@gmail.com wrote: John Tarbotton jtarbotton at gmail.com writes: Check the value of the following variable (with C-h v org-export-with-drawers RET): Thanks for the reply that would seem to be what I need. In fact it got me half way there. I set it nil

Re: [O] dates before 1970

2011-03-14 Thread Carsten Dominik
On Mar 14, 2011, at 4:11 PM, Nick Dokos wrote: Carsten Dominik carsten.domi...@gmail.com wrote: On Mar 11, 2011, at 5:30 PM, Nick Dokos wrote: Carsten Dominik carsten.domi...@gmail.com wrote: THis is exactly the point, that it depends on how Emacs was compiled, and what kind of

Re: [O] dates before 1970

2011-03-14 Thread Nick Dokos
Carsten Dominik carsten.domi...@gmail.com wrote: Ah, OK - thanks! I looked in current-time, saw the 0x mask and I thought that the extra bits are truncated, but apparently not: I need to go back and look at the C rules again. I have no idea what you are talking about :) You think

[O] [Bug?] org-crypt warning and --daemon

2011-03-14 Thread Memnon Anon
Hi, ,[ org-crypt.el ] | ;; FIXME Find a better way to encrypt Org auto-saved buffers? | ;; When `auto-save-default' is non-nil, make sure entries are | ;; encrypted before auto-saving | ;; (when auto-save-default | ;;(add-hook | ;; 'org-mode-hook | ;; (lambda () (add-hook

[O] Recurring items don't always show up in timeline

2011-03-14 Thread Mark S
I have a very simple calendar ORG file set up. A couple of the items have recurring days set to 90d. Like ** Do something periodically 2011-01-15 Sat +90d When I activate the agenda timeline, I see the first one of these (in January) but none of the other scheduled events show up. (I have

Re: [O][Babel] tangle - kind of macro expansion inside src blocks?

2011-03-14 Thread Olaf.Hamann
Hi Eric, thank you very much, it works as announced. I have probs with replacing/overlaying the built-in org-mode in my Emacs (w32-binary), but that's not issue here. After an eval-buffer of ob-tangle.el I can reproduce the expected result. Exporting the buffer first is necessary, but that

Re: [O] dates before 1970

2011-03-14 Thread Achim Gratz
Nick Dokos nicholas.do...@hp.com writes: I was referring to the C code implementing current-time (which, btw, has been changed in latest): , | DEFUN (current-time, Fcurrent_time, Scurrent_time, 0, 0, 0, |doc: /* Return the current time, as the number of seconds since 1970-01-01

[O] OrgCamp in India -- Interested?

2011-03-14 Thread Puneeth Chaganti
Hi, Inspired by the OrgCamps being conducted in Paris [1] [2], I would like to propose an OrgCamp somewhere in India. I'm not sure, how many people from India are on this list, but I do know that there are a few. Would any of you be interested in such a meet-up? What would be a good place and

[O] CATEGORY in clock report?

2011-03-14 Thread Markus Heller
Hello *, a quick question: is it possible to include the CATEGORY of (sub)trees in the clock report? I've read that tags can be included, but I'd like to get CATEGORY in there ... Thanks and Cheers Markus

Re: [O] OrgCamp in India -- Interested?

2011-03-14 Thread Jambunathan K
I am from Madras. I can be present if the meetup is within or just slightly outside the city. Jambunathan K. Puneeth Chaganti puncha...@gmail.com writes: Hi, Inspired by the OrgCamps being conducted in Paris [1] [2], I would like to propose an OrgCamp somewhere in India. I'm not sure, how

[O] Custom Agenda View for Projects

2011-03-14 Thread Christian Zang
Dear all, I might be overlooking something very obvious, but I cannot find the solution: I have various org files, in which projects (anything requiring more than one action step...) are first level headings marked using the TODO kwd PROJ. If I tell my agenda to list all items with kwd PROJ

[O] [Babel][Bug] results silent ignored in #+call

2011-03-14 Thread Andreas Leha
Hi everyone, Just pulled the latest HEAD and found that there is a regression in babel. When a source block is evaluated via #+call the :results silent header arguement is ignored during export =test file * Test1 #+srcname: test #+begin_src R :session

[O] [babel] C-' not robust

2011-03-14 Thread Andreas Leha
Hi, there are two rather new add-ons to ess that -- when activated -- break the connection between the org document and a R-src-buffer: auto-complete-mode for R: http://www.emacswiki.org/emacs/AutoCompleteSources#toc2 yasnippet for R: http://www.svenhartenstein.de/Software/R-autoyas As

Re: [O] Recurring items don't always show up in timeline

2011-03-14 Thread Chris Randle
Hi Mark On 2011-03-14 19:02, Mark S wrote: Has anyone else seen this? Working OK here. I get entries in 2011 for: 2011-01-15 2011-04-15 2011-07-14 2011-10-12 and switching to +1w, I see an entry every Saturday. I'm running the same s/w as you, I think Windows XP Pro SP3 GNU Emacs 23.2.1

[O] documentary filmmaking and reproducible research?

2011-03-14 Thread David O'Toole
Greetings, org community. A while back I made two short (less than 10 minute) amateur documentary films. I used org-mode to outline everything, structure my notes and the many public domain texts/images I used, and coordinate the recording process for the voiceovers. I've also separately

[O] Re: [Orgmode] [babel] maxima support?

2011-03-14 Thread Eric Schulte
Hi Eric, I've gone through your ob-maxima.el, and tried to re-work it to the point where it can be included into Org-mode -- mainly just switching to a couple of Babel best practices, and replacing some shell script munging with elisp munging. Please try out the attached version (packaged as a

Re: [O] [Babel][Bug] results silent ignored in #+call

2011-03-14 Thread Eric Schulte
Hi Andreas, The :exports results header argument is overriding the :results silent header argument, which IMO is desired behavior. Thanks to your example I see this is not the case for regular code blocks. I would think that the behavior should be changed for regular code blocks, s.t. both of

[O] Re: Recurring items don't always show up in timeline

2011-03-14 Thread Mark S
Hi Chris, Are there any other dates in your calendar? Have you tried it with +90d? Thanks, Mark Emacs 23.2.1 | Win XP | Org-mode 7.5 On Mon, 14 Mar 2011 11:02:14 -0800, Mark S throa...@yahoo.com wrote: --- On Mon, 3/14/11, Chris Randle ch...@amlog.co.uk wrote: From:

[O] Re: Recurring items don't always show up in timeline

2011-03-14 Thread Mark S
Here's a version of the calendar I'm using. There are two date ranges as well as regular dates. It might be that recurring events that occur on days that are inside of a date range do not show up. On mine, Bath for dog doesn't show up on April 14th, for instance which happens to be inside

[O] Macro expansion in included files

2011-03-14 Thread Benny Simonsen
Hi Some time ago I was posting about a problem with macros in included files - they will not expand. Example with two files top.org and sub.org: macro in the included file sub.org isn't expanded during export. See the content of the example files below. The patch fixes this so that the macro is

Re: [O] Re: Recurring items don't always show up in timeline

2011-03-14 Thread Nick Dokos
Mark S throa...@yahoo.com wrote: Here's a version of the calendar I'm using. There are two date ranges as well as regular dates. It might be that recurring events that occur on days that are inside of a date range do not show up. On mine, Bath for dog doesn't show up on April 14th, for

Re: [O] Publishing notes to a website

2011-03-14 Thread Thomas Herbert
Kyle Sexton ks at mocker.org writes: I'm looking for advice on ways people are publishing their org notes to a website. So far I've looked at blorgit and it's really nice, but the dependency for a backend emacs session and running through sinatra makes me wary of putting it out on my server

[O] Slow movement in large buffers

2011-03-14 Thread Matt Lundin
I've been navigating the org-issues file (14000+ lines) and have found movement within the file to be fairly slow. Sometimes Emacs will lock up for several seconds. For instance, to move from the level one heading * Other to * Closed issues when the outline is folded takes over three seconds:

[O] Having problem with latex export of image file

2011-03-14 Thread Robert Goldman
I have the following in my org file: #+CAPTION: Sample (partial) plan graph. #+LABEL: fig:sampleGraph #+ATTR_LaTeX: width=.9\textwidth [[plan-with-tc-start.pdf]] which I believe should give me a figure. However, when I run this through the latex export I get the following instead:

[O] quick question about face names

2011-03-14 Thread Filippo A. Salustri
I'm trying to find the face of plain text (not headlines or checklist items). Does it have a name that distinguishes it from other faces? Cheers. Fil -- Filippo A. Salustri, Ph.D., P.Eng. Mechanical and Industrial Engineering Ryerson University 350 Victoria St, Toronto, ON M5B 2K3, Canada Tel:

Re: [O] OrgCamp in India -- Interested?

2011-03-14 Thread Rustom Mody
I am in Pune. I would come if its near about there (or Bombay).

[O] another (possibly) noob question

2011-03-14 Thread Filippo A. Salustri
So, I've set org-provide-todo-statistics to t and org-hierarchical-todo-statistics to nil. I use a TODO sequence to identify projects. That is, (setq org-todo-keywords '((sequence REVIEW(r) TODO(t) ACTIVE(a!) WAIT(w@) SOMEDAY(s) | DONE(d) CANCELED(c@))

Re: [O] OrgCamp in India -- Interested?

2011-03-14 Thread Manish
On Mon, Mar 14, 2011 at 11:47 PM, Puneeth Chaganti wrote: Hi, Inspired by the OrgCamps being conducted in Paris [1] [2], I would like to propose an OrgCamp somewhere in India. +1  I'm not sure, how many people from India are on this list, but I do know that there are a few. I am in

[O] HTML Export Broken

2011-03-14 Thread Scott Randby
I just upgraded to org-mode 7.5 and I'm encountering a weird problem. Suppose I have the following text in a file. This is a @btest@/b of tags. This is a @banother test of tags. If I do C-c C-e h on this file, I get the following HTML code. pThis is a @lt;btest/b of tags. /p p This

Re: [O] Custom Agenda View for Projects

2011-03-14 Thread Manish
On Tue, Mar 15, 2011 at 12:54 AM, Christian Zang wrote: Dear all, I might be overlooking something very obvious, but I cannot find the solution: I have various org files, in which projects (anything requiring more than one action step...) are first level headings marked using the TODO kwd

Re: [O] OrgCamp in India -- Interested?

2011-03-14 Thread Richard Riley
Rustom Mody rustompm...@gmail.com writes: I am in Pune. I would come if its near about there (or Bombay). Mumbai, surely ... ;)

[O] Another HTML Export Question

2011-03-14 Thread Scott Randby
The org files I export to HTML contain the following: * COMMENT Setup #+OPTIONS: H:3 num:nil skip:nil toc:t author:t With org-mode 7.4, this setup would give me the following postamble: div id=postamble p class=date Date: 2011-03-12 16:09:53 EST/p p class=creatorHTML generated by org-mode 7.4

Re: [O] Slow movement in large buffers

2011-03-14 Thread Carsten Dominik
DO you have flyspell turned on? - Carsten On 15.3.2011, at 04:25, Matt Lundin wrote: I've been navigating the org-issues file (14000+ lines) and have found movement within the file to be fairly slow. Sometimes Emacs will lock up for several seconds. For instance, to move from the level

Re: [O] Having problem with latex export of image file

2011-03-14 Thread Nick Dokos
Robert Goldman rpgold...@sift.info wrote: I have the following in my org file: #+CAPTION: Sample (partial) plan graph. #+LABEL: fig:sampleGraph #+ATTR_LaTeX: width=.9\textwidth [[plan-with-tc-start.pdf]] which I believe should give me a figure. However, when I run this through the

Re: [O] quick question about face names

2011-03-14 Thread Nick Dokos
Filippo A. Salustri salus...@ryerson.ca wrote: --20cf301e2f2d785e83049e7d5fab Content-Type: text/plain; charset=ISO-8859-1 I'm trying to find the face of plain text (not headlines or checklist items). Does it have a name that distinguishes it from other faces? Cheers. Fil I don't think

[O] An HTML Export Observation

2011-03-14 Thread Scott Randby
When I look at the Org Export HTML Group for customization, I get the following: Org Export Html Validation Link: Show Value State: UNINITIALIZED, you should not see this. Link to HTML validation service. Org Export Html With Timestamp: Hide Value Toggle off (nil) State: UNINITIALIZED,

Re: [O] An HTML Export Observation

2011-03-14 Thread Nick Dokos
Scott Randby sran...@gmail.com wrote: When I look at the Org Export HTML Group for customization, I get the following: Org Export Html Validation Link: Show Value State: UNINITIALIZED, you should not see this. Link to HTML validation service. Org Export Html With Timestamp: Hide