[O] Understanding org-agenda-todo-list-sublevels

2012-02-19 Thread lbmlist
If I have something like: (setq org-agenda-custom-commands '((Q Q-Who todo IMPLEMENT ((org-agenda-todo-list-sublevels t))) )) in my .emacs and I have *** IMPLEMENT explore slash type [1/3] - [X] Explore checkbox list - [ ] Look at the export - [ ] And so on *** IMPLEMENT

Re: [O] Understanding org-agenda-todo-list-sublevels

2012-02-19 Thread lbmlist
On Sun, 19 Feb 2012, Bernt Hansen wrote: lbml...@hethcote.com writes: If I have something like: (setq org-agenda-custom-commands '((Q Q-Who todo IMPLEMENT ((org-agenda-todo-list-sublevels t))) )) Hi Louis, I think we need more information. In a todo agenda view you should

[O] Archiving old instances of repeating todos

2012-02-14 Thread lbmlist
How do you archive old instances of repeating todos, C-c C-x C-s archives the whole thing. I'd like to have something that would take the following: ** TODO Mutter an oath DEADLINE: 2012-02-13 Mon ++1d -0d - State DONE from TODO [2012-02-12 Sun 16:25] - State DONE

Re: [O] ATTRLIST-x in agenda exported to html

2012-02-08 Thread lbmlist
Ok, so what I did was define a face: (org-copy-face 'modeline 'lbm-org-mode-pack-keyword Face used to show items ready to pack, but not yet to ship :background #cc) add it to the org-todo-keyword-faces (setq org-todo-keyword-faces (quote ( (PACK .

[O] ATTRLIST-x in agenda exported to html

2012-02-07 Thread lbmlist
Greetings, I use a number of To Do states. When I export my agenda views to html, the various To Do's get dropped into spans that are not consistent. For example, in one view: span class=ATTRLIST-1TODO/spanspan class=org-warning ... span class=ATTRLISTDESIGN/spanspan class=org-warning ...

[O] batch publish all, forcing. how?

2011-04-07 Thread lbmlist
I've been experimenting with: emacs23 --batch -l ~/.emacs -f org-publish-all to publish a total fresh version of my project, but it misses some files (an unchanging .css for example) I suspect the optional force (defun org-publish-all (optional force)... might help, but I don't know lisp

Re: [O] batch publish all, forcing. how?

2011-04-07 Thread lbmlist
On Thu, 7 Apr 2011, Nick Dokos wrote: Add a function to your .emacs --8---cut here---start-8--- (defun org-publish-all-force () (interactive) (org-publish-all t)) --8---cut here---end---8--- and call it instead of

Re: [O] sitemap seems to cache old #+TITLE

2011-03-19 Thread lbmlist
On Sat, 19 Mar 2011, Carsten Dominik wrote: On 19.3.2011, at 04:13, lbml...@hethcote.com wrote: Have you tried forcing republishing of all files by using a C-u prefix to your publishing command? I have now, and there is no change in result. C-u C-c C-e P does cause a longer

Re: [O] sitemap seems to cache old #+TITLE

2011-03-19 Thread lbmlist
I see that the old title is cached in ~/.org-timestamps, I'll try clearing that and see what happens. L On Sat, 19 Mar 2011, lbml...@hethcote.com wrote: On Sat, 19 Mar 2011, Carsten Dominik wrote: On 19.3.2011, at 04:13, lbml...@hethcote.com wrote: Have you tried forcing

Re: [O] sitemap seems to cache old #+TITLE

2011-03-18 Thread lbmlist
That didn't seem to do it. This is GNU Emacs 23.2.1 on a debian squeeze system. Org-mode is 7.4. I created a short file newb.org which reads in total: -- #+TITLE: A Newb Title * and that's it -- I

Re: [O] sitemap seems to cache old #+TITLE

2011-03-18 Thread lbmlist
On Fri, 18 Mar 2011, Nick Dokos wrote: Do you have a :sitemap-title entry in your config? Better yet, if there are no privacy concernts, why don't you post your publishing configuration? Nick From my .emacs: (setq org-publish-project-alist '((org-notes :base-directory

[O] sitemap seems to cache old #+TITLE

2011-03-17 Thread lbmlist
At one point in the recent past I had a file org.org with #+TITLE: LBM TCH KB Org Eventually I changed it to be #+TITLE: KBorg no matter what I do, the generated sitemap pick up the old title. Is this cached somewhere? and how do I get it to change? Thanks in advance, Louis

[O] Set the beginning section number

2011-03-13 Thread lbmlist
Greetings, 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 example 1.1.1 that I play