[Orgmode] Recursive org-agenda-files

2008-10-31 Thread Matthew Lundin
Is it possible to set the org-agenda-files variable to include all org files within a directory recursively? I currently use: (set org-agenda files (file-expand-wildcards "~/org/*.org")) This, of course, includes all org files in ~/org. But how would I include all org files in both ~/org and

Re: [Orgmode] How you can help

2008-10-31 Thread Rick Moynihan
Avdi Grimm wrote: A few points, from someone with a decent amount of testing background: * As someone who has contributed to OS projects, the lack of a pre-existing set of regression tests in org-mode is actually *the* most significant blocker to my getting involved in org-mode development. I d

[Orgmode] Problem with org-toggle-timestamp-type

2008-10-31 Thread Ben Alexander
Hi! I'm cannot figure out how to use version control in general, and git in particular. However, I think there is a mistake with org-toggle- timestamp-type. Currently, the message always returns "Timestamp is now active" regardless of wether it is or not. I think this is because the me

RE: [Orgmode] Recursive org-agenda-files

2008-10-31 Thread Sullivan, Gregory (US SSA)
The function find-lisp-find-files seems to work. To see it, do M-x find-function find-lisp-find-files To use it, you'll probably have to do (load-library "find-lisp") (find-lisp-find-files "~/org" "\.org") HTH. --Greg -- Gregory T. Sullivan, Ph.D. BAE Systems Advanced Information Techno

Re: [Orgmode] Recursive org-agenda-files

2008-10-31 Thread mclundin
"Sullivan, Gregory (US SSA)" <[EMAIL PROTECTED]> writes: > The function find-lisp-find-files seems to work. > To see it, do >M-x find-function >find-lisp-find-files > > To use it, you'll probably have to do > > (load-library "find-lisp") > (find-lisp-find-files "~/org" "\.org") Works pe

Re: [Orgmode] Including state-changed headings in the agenda

2008-10-31 Thread Matthew Lundin
Hsiu-Khuern Tang <[EMAIL PROTECTED]> writes: > Hi, > > Let's say I have a repeating task like this: > > ** TODO Do this >SCHEDULED: <2008-10-29 Wed +1w> > > Cycling to a done state will track the done time and increment the scheduled > time according to the repeater: > > ** TODO Do this >

[Orgmode] Re: Including state-changed headings in the agenda

2008-10-31 Thread Bernt Hansen
Matthew Lundin <[EMAIL PROTECTED]> writes: > Hsiu-Khuern Tang <[EMAIL PROTECTED]> writes: > >> Hi, >> >> Let's say I have a repeating task like this: >> >> ** TODO Do this >>SCHEDULED: <2008-10-29 Wed +1w> >> >> Cycling to a done state will track the done time and increment the scheduled >> ti

[Orgmode] Re: Including state-changed headings in the agenda

2008-10-31 Thread mdl
Bernt Hansen <[EMAIL PROTECTED]> writes: > > However I think what Hsiu-Khuern Tang is asking is that _completed_ logs > show up in the agenda (ie the fact that it was marked DONE yesterday). > > As far as I know you can't do that. When you mark a repeating task done > it just reschedules to the fu

[Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
Hi, I'm currently writing a fulltext search engine for Org's XHTML export. Export is not valid XHTML: 1.) CDATA: styles should be: Fix appended: - patch-missing-cdata-style.patch (org-exp.el) 2.) Missing quotes:

[Orgmode] Patch org-jsinfo.js

2008-10-31 Thread Sebastian Rose
Hi, I fear I have introduced this error: lsitemap.html:41: element script: validity error : No declaration for attribute language of element script Document sitemap.html does not validate against http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd says there is no attribute 'language' in h

[Orgmode] STill errorneous Treestyle sitemap

2008-10-31 Thread Sebastian Rose
Hi, mea culpa: The treestyle sitemap is still wrong. This tree pub | +--A | | | +-- B | | | | | +-- file1 | | | +-- C | | | +-- file2 _looks_ great in the sitemap, but _is_ wrong. The link to C looks like this: C instead of C Two different ways to fix th

Re: [Orgmode] Re: Including state-changed headings in the agenda

2008-10-31 Thread Hsiu-Khuern Tang
* On Fri 07:29PM +, 31 Oct 2008, [EMAIL PROTECTED] ([EMAIL PROTECTED]) wrote: > Bernt Hansen <[EMAIL PROTECTED]> writes: > > > > However I think what Hsiu-Khuern Tang is asking is that _completed_ logs > > show up in the agenda (ie the fact that it was marked DONE yesterday). > > > > As far as

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
The entities errors go away, if the rest of the file is valid. Sebastian Rose wrote: Last but not least, a general question: * Problem with xmllint: Not defined entities: - … - — - mayby more Not shure, how to fix this. http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
I Hope this is the rest of all possible errors :-) index.html:583: element p: validity error : Element pre is not declared in p list of possible children index.html:583: element p: validity error : Element pre is not declared in p list of possible children index.html:826: element p: validity

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
No element in XHTML strict. Would this fix it? I couldn't find somwhere else, so I think this should work. But it might be the wrong place to fix it... diff --git a/lisp/org.el b/lisp/org.el index 00d635b..6b17562 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -2264,7 +2264,7 @@ Use customize

Re: [Orgmode] Where to define functions for use with org

2008-10-31 Thread Eric Schulte
Daniel Clemente <[EMAIL PROTECTED]> writes: > Hi, I'd like some suggestions about storing (defun)s in .org-files. > > Sometimes Org must use ELisp functions, for instance: > - a dynamic table uses a function org-dblock-write:some_name to create its > contents > - a table uses a formula like $

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
Hi, 1.) ERR SSTOOOP!!! Sebastian Rose wrote: x.php?a=b&c=d ^^ urlencoded' entities--' Sorry, that's bullsh... This is one of the errors, that goes away, if x.php?a=b&c=d ^

Re: [Orgmode] feature request: org-yank to call org-paste-subtree

2008-10-31 Thread Samuel Wales
Thanks, Carsten, I look forward to trying it in the next release. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
OK, works here for XHTML and LaTeX. Regards, Sebastian Sebastian Rose wrote: No element in XHTML strict. Would this fix it? I couldn't find somwhere else, so I think this should work. But it might be the wrong place to fix it... diff --git a/lisp/org.el b/lisp/org.el index 00d635b.

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
The appended patch fixes the parsing-error for the index-file. sh> xmllint --dtdvalid http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd sitemap.html no erros diff --git a/lisp/org-publish.el b/lisp/org-publish.el index c46aedb..58df822 100644 --- a/lisp/org-publish.el +++ b/lisp/org-publish.

[Orgmode] Re: Strange behavior of C-RET and C-S-RET

2008-10-31 Thread Sergey A.
Hello. I didn't think that the bug will be so difficult to reproduce. In my case, the bug always happens with the following file: *** foo * bar Below is the steps to reproduce that 100% works to me: 1) File is opened, headline is folded, cursor is on the second asterisk: *[*]* foo... 2)

Re: [Orgmode] Valid XHTML

2008-10-31 Thread Sebastian Rose
OK. Investigated a little more about valid links in XHTML. This here xy.php?a=b&c=d should be xy.php?a=b&c=d !!! These way the links work in browsers AND parsers. We need entities in link-URLs AND description to have valid XHTML! Regards, Sebastian __

Re: [Orgmode] Org-publish - too many index.org files

2008-10-31 Thread Ethan Blanton
Matthew Lundin spake unto us the following wisdom: > A problem arises when I invoke org-publish (or org-agenda). All of the > org files in the project are loaded into buffers resulting in too many > index.org files in my buffer list. [snip] > 2) Alternatively, is there an easy way to rename the buf

Re: [Orgmode] Org-publish - too many index.org files

2008-10-31 Thread Matthew Lundin
Ethan Blanton <[EMAIL PROTECTED]> writes: > Matthew Lundin spake unto us the following wisdom: >> A problem arises when I invoke org-publish (or org-agenda). All of the >> org files in the project are loaded into buffers resulting in too many >> index.org files in my buffer list. [snip] > While th

[Orgmode] anybody have regexps for sentence-end in org?

2008-10-31 Thread Samuel Wales
I write headlines and bullet lines without periods, so commands that navigate sentences skip over them. Has anybody solved this problem with an appropriate set of settings for sentence-end-* variables in emacs? I don't know if xemacs is the same or not. Thanks.