[Orgmode] Re: column view can't display correctly when add (org-agenda-to-appt) into .emacs

2008-07-24 Thread anhnmncb
Carsten Dominik <[EMAIL PROTECTED]> writes: > Thanks for this information. A recent CVS of Emacs? of Ubuntu? of Org? I meant emacs from cvs: GNU Emacs 23.0.60.1 (i686-pc-linux-gnu) of 2008-07-25 on gentoo > On Jul 24, 2008, at 4:56 PM, anhnmncb wrote: > >> anhnmncb <[EMAIL PROTECTED]> writes:

[Orgmode] Fix for emacs 23 bug on inserting diary entries

2008-07-24 Thread Andrew Hyatt
I remember seeing an emacs 23 git branch at some point, but I looked around and cannot locate it anymore. At any rate, this may be a dup, but in emacs 23 inserting diary entries in the agenda does not work. Here's the patch to fix it: diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 23

Re: [Orgmode] Bug? creator-info

2008-07-24 Thread Carsten Dominik
On Jul 24, 2008, at 12:33 PM, Wanrong Lin wrote: Hi, I just upgraded to org-6.06a. It seems that the per-file "creator- info:nil" option does not work, but variable "org-export-creator- info" works. Thanks if someone can confirm/look at it. Wanrong It does work now, with "creator:nil" -

Re: [Orgmode] Re: Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Carsten Dominik
Great, thanks. - Carsten On Jul 24, 2008, at 5:20 PM, Peter Jones wrote: Carsten Dominik <[EMAIL PROTECTED]> writes: Still, I believe that some people will be interested in more details of your setup. So why not making an appendix to the document that shows at least the column view format yo

[Orgmode] Re: Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Peter Jones
Carsten Dominik <[EMAIL PROTECTED]> writes: > Still, I believe that some people will be interested in more details > of your setup. So why not making an appendix to the document that > shows at least the column view format you are using and some more > technical details. Would be a good compromis

[Orgmode] Re: Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Peter Jones
Cezar Halmagean <[EMAIL PROTECTED]> writes: > What Emacs version and color theme are you using ? That looks really > good. Also can you share your rails/muse integration cause it looks like > it's working pretty nice for ya. I'm using Emacs 22.2.1, with a home-brewed color theme. If you're really

Re: [Orgmode] Re: column view can't display correctly when add (org-agenda-to-appt) into .emacs

2008-07-24 Thread Carsten Dominik
Thanks for this information. A recent CVS of Emacs? of Ubuntu? of Org? - Carsten On Jul 24, 2008, at 4:56 PM, anhnmncb wrote: anhnmncb <[EMAIL PROTECTED]> writes: Is it a bug of org-mode? When enabled (org-agenda-to-appt) in .emacs, when I use the colum view in client, every column got too

[Orgmode] Re: column view can't display correctly when add (org-agenda-to-appt) into .emacs

2008-07-24 Thread anhnmncb
anhnmncb <[EMAIL PROTECTED]> writes: > Is it a bug of org-mode? When enabled (org-agenda-to-appt) in .emacs, > when I use the colum view in client, every column got too long to show, > but in emacs server, display is ok. > screenshot is here: >http://paste.ubuntu.org.cn/i8055 <= emac

[Orgmode] How to convert org file to such a plain text

2008-07-24 Thread anhnmncb
I want to export org to plan text, which pattern is: |level 1 |level 2 |- item |level 3 instead of |* level 1 |** level 2 |- item |*** level 3 -- Regards, anhnmncb gpg key: 44A31344 _

Re: [Orgmode] Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Carsten Dominik
Hi Peter, looks great! I can see why you do it the way you do, you are showing your work flow, and not the details of the setup. And I can see why you want to keep the details out, I actually do think it makes the article better. Still, I believe that some people will be interested in mor

[Orgmode] [PATCH 7/7] Add some new interaction between remember and clocked tasks

2008-07-24 Thread James TD Smith
Add %< expansion. This tells org-remember to add the item to the currently clocked task. Often while I'm working on something I find other related things which need to be done and this makes it possible to use a remember template to add a TODO item in the right place. Add %l expansion for the curr

[Orgmode] [PATCH 6/7] Add some functions for handling checklists.

2008-07-24 Thread James TD Smith
Add a module to contrib for handling repeated tasks which require checking off a list of items. --- contrib/ChangeLog |5 ++ contrib/lisp/org-checklist.el | 110 + 2 files changed, 115 insertions(+), 0 deletions(-) create mode 100644 contr

[Orgmode] [PATCH 5/7] Fix note insertion in entries with drawers.

2008-07-24 Thread James TD Smith
The code to find the insertion point after a heading for notes was not skipping over drawers, resulting in notes being added inbetween the scheduling keywords and the first drawer. Notes are now inserted after any drawers in an item. --- lisp/ChangeLog |2 ++ lisp/org.el| 43 +++

[Orgmode] [PATCH 4/7] Fix link display in imenus and the refile interface

2008-07-24 Thread James TD Smith
Replace links with their descriptions in when generating the items for imenus and the refile interface. --- lisp/ChangeLog |4 lisp/org.el|8 +++- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e63503a..ea6e60e 100755 ---

[Orgmode] [PATCH 3/7] Show durations of clocked times in timeline

2008-07-24 Thread James TD Smith
In the timeline display in the agenda, show the length of time clocked as well as the start and end times. --- lisp/ChangeLog |3 +++ lisp/org-agenda.el | 14 -- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c81a049..e6

[Orgmode] [PATCH 1/7] Some improvements to the modeline clock display

2008-07-24 Thread James TD Smith
Allow users to specify a maximum length for the modeline clock. Add an option to limit the length of the clock string in the modeline. When the limit is in effect, the full item text is included in the tooltip on the clock string. Make clicking on the clock string now goes to the currently clocked

[Orgmode] [PATCH 2/7] Fix X clipboard handling in emacs21

2008-07-24 Thread James TD Smith
Add a new function to org-compat to fetch clipboard values in emacs21 and xemacs. Use this function to fetch the clipboard when x-selection-value is unavailable. --- lisp/ChangeLog |9 + lisp/org-compat.el | 13 - lisp/org-remember.el | 12 ++-- lisp/o

[Orgmode] Re: Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Cezar Halmagean
Peter Jones <[EMAIL PROTECTED]> writes: > Manish <[EMAIL PROTECTED]> writes: >> It's titillating. I mean it piques interest but it does not talk of >> specifics (setup, functions, key bindings). A good starter to using >> Org for planning/estimation nonetheless. > > Thanks Manish. > > As I was e

[Orgmode] Re: Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Peter Jones
Manish <[EMAIL PROTECTED]> writes: > It's titillating. I mean it piques interest but it does not talk of > specifics (setup, functions, key bindings). A good starter to using > Org for planning/estimation nonetheless. Thanks Manish. As I was editing the article I worried that it didn't have eno

[Orgmode] Re: Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Peter Jones
Richard G Riley <[EMAIL PROTECTED]> writes: > The other thing which would be nice would be to use org-mode > itself to publish your tutorial. org-mode really is a great tool! I actually use Emacs Muse for my site. I love org-mode, and spend at least 90% of my workday in org files, but I think mus

Re: [Orgmode] Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Manish
On Fri, Jul 25, 2008 at 2:29 AM, Peter Jones wrote: > (shameless-self-promotion-mode t) > > I just wrote a tutorial on how to use org-mode to plan and estimate a > project. > > http://pmade.com/articles/2008/project-planning It's titillating. I mean it piques interest but it does not talk of spec

Re: [Orgmode] Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Richard G Riley
Peter Jones <[EMAIL PROTECTED]> writes: > (shameless-self-promotion-mode t) > > I just wrote a tutorial on how to use org-mode to plan and estimate a > project. > > http://pmade.com/articles/2008/project-planning > > Feedback is encouraged. If you use org-mode for stuff like this, > please post a

Re: [Orgmode] Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Russell Adams
On Thu, Jul 24, 2008 at 02:59:14PM -0600, Peter Jones wrote: > (shameless-self-promotion-mode t) > > I just wrote a tutorial on how to use org-mode to plan and estimate a > project. > > http://pmade.com/articles/2008/project-planning > > Feedback is encouraged. If you use org-mode for stuff lik

[Orgmode] Project Planning Tutorial Using Org-Mode

2008-07-24 Thread Peter Jones
(shameless-self-promotion-mode t) I just wrote a tutorial on how to use org-mode to plan and estimate a project. http://pmade.com/articles/2008/project-planning Feedback is encouraged. If you use org-mode for stuff like this, please post a comment on how you do things differently. Thanks. --

Re: [Orgmode] Bug? creator-info

2008-07-24 Thread Carsten Dominik
What makes you think this should work? - Carsten On Jul 24, 2008, at 12:33 PM, Wanrong Lin wrote: Hi, I just upgraded to org-6.06a. It seems that the per-file "creator- info:nil" option does not work, but variable "org-export-creator- info" works. Thanks if someone can confirm/look at it.

[Orgmode] Bug? creator-info

2008-07-24 Thread Wanrong Lin
Hi, I just upgraded to org-6.06a. It seems that the per-file "creator-info:nil" option does not work, but variable "org-export-creator-info" works. Thanks if someone can confirm/look at it. Wanrong ___ Emacs-orgmode mailing list Remember: use `Rep

Re: [Orgmode] Re: Suggest changing git repo on website to refer to git protocol

2008-07-24 Thread Carsten Dominik
In fact, we have problems with the Worg publishing process. I don't understand it well enough, and Bastien does not seem to find time to fix it... :-( - Carsten On Jul 24, 2008, at 11:40 AM, Manish wrote: Carsten> If a volunteer writes this up, I'd be happy to include it Carsten> on the o

Re: [Orgmode] Re: Suggest changing git repo on website to refer to git protocol

2008-07-24 Thread Manish
Carsten> If a volunteer writes this up, I'd be happy to include it Carsten> on the org-mode pages. Manish> I have just added "How do I keep current with Org mode Manish> developement?" to Org FAQ via Worg. Request a review Manish> for language (English is not my first language.) and Manish> corr

Re: [Orgmode] Re: Suggest changing git repo on website to refer to git protocol

2008-07-24 Thread Carsten Dominik
I believe every hour. - Carsten On Jul 24, 2008, at 11:24 AM, Manish wrote: On Thu, Jul 24, 2008 at 1:31 AM, Manish wrote: On Wed, Jul 23, 2008 at 11:01 PM, Carsten Dominik wrote: Hi If a volunteer writes this up, I'd be happy to include it on the org-mode pages. I have just added "How d

Re: [Orgmode] Re: Suggest changing git repo on website to refer to git protocol

2008-07-24 Thread Manish
On Thu, Jul 24, 2008 at 1:31 AM, Manish wrote: > On Wed, Jul 23, 2008 at 11:01 PM, Carsten Dominik wrote: > > Hi > > > > If a volunteer writes this up, I'd be happy to include it on the > > org-mode pages. > > I have just added "How do I keep current with Org mode developement?

Re: [Orgmode] "read only buffer" message in orgmode

2008-07-24 Thread Carsten Dominik
On Jul 23, 2008, at 3:30 AM, [EMAIL PROTECTED] wrote: Hello, I'm running emacs 22.2 with orgmode v. 4.67 on Windows XP, and I'm just starting to use orgmode. However, I seem to cannot go beyond a (probably) trivial problem: [...] (custom-set-variables ;; custom-set-variables was adde

Re: [Orgmode] [PATCH] Auto-load org-colview when updating a dynamic colview block

2008-07-24 Thread Carsten Dominik
Fixed, thanks. - Carsten On Jul 24, 2008, at 10:05 AM, Peter Jones wrote: If you try to update a dynamic colview block before org-colview has been auto-loaded, you get an error message about an undefined function org-dblock-write:columnview. Adding this function name to the list of auto-load

[Orgmode] [PATCH] Auto-load org-colview when updating a dynamic colview block

2008-07-24 Thread Peter Jones
If you try to update a dynamic colview block before org-colview has been auto-loaded, you get an error message about an undefined function org-dblock-write:columnview. Adding this function name to the list of auto-load functions that are in org-colview to the auto-load list in org.el fixes the pro

Re: [Orgmode] Feature Request - Customisable chars for table drawing

2008-07-24 Thread Carsten Dominik
On Jul 24, 2008, at 8:48 AM, Phil Jackson wrote: Carsten Dominik <[EMAIL PROTECTED]> writes: http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt That page looks really terrible in my Browser. Am I missing something? It could be the fault of the font you're rendering it with...

Re: [Orgmode] Feature Request - Customisable chars for table drawing

2008-07-24 Thread Phil Jackson
Carsten Dominik <[EMAIL PROTECTED]> writes: >> http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt > > That page looks really terrible in my Browser. Am I missing > something? It could be the fault of the font you're rendering it with... maybe. Cheers, Phil -- Philip Jackson http

Re: [Orgmode] How to produce an agenda that filters on both todo keyword and tag?

2008-07-24 Thread Jose Robins
Richard G Riley wrote: Giovanni Ridolfi <[EMAIL PROTECTED]> writes: --- Gio 24/7/08, Manish <[EMAIL PROTECTED]> ha scritto: Da: Manish <[EMAIL PROTECTED]> On Thu, Jul 24, 2008 at 3:55 AM, Carsten Dominik wrote: The "Tags view" is really called the tags view for historical rea

Re: [Orgmode] Feature Request - Customisable chars for table drawing

2008-07-24 Thread Jose Robins
+1. I was actually thinking along the same lines the other day. It would also be cool especially in the clock report tables. Jose Phil Jackson wrote: Hey, It would be really cool if the chars used to draw the various bits of the table were configurable. This way we could use the pretty looki

Re: [Orgmode] How to produce an agenda that filters on both todo keyword and tag?

2008-07-24 Thread Richard G Riley
Giovanni Ridolfi <[EMAIL PROTECTED]> writes: > --- Gio 24/7/08, Manish <[EMAIL PROTECTED]> ha scritto: >> Da: Manish <[EMAIL PROTECTED]> >> On Thu, Jul 24, 2008 at 3:55 AM, Carsten Dominik wrote: >> > The "Tags view" is really called the tags >> > view for historical reasons. >> > It is really f

RE: [Orgmode] How to produce an agenda that filters on both todokeyword and tag?

2008-07-24 Thread Parker, Matthew
Thanks for the help/info. All is working. "Match" view sounds good to me also. Probably too wordy a description: m Match a Tags, Properties, and/or TODO query Thanks again -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Giovanni Ridolfi Sent: Thursda

[Orgmode] Feature Request - Customisable chars for table drawing

2008-07-24 Thread Phil Jackson
Hey, It would be really cool if the chars used to draw the various bits of the table were configurable. This way we could use the pretty looking multibyte chars like the ones at the bottom of this page: http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt Cheers, Phil -- Philip Jackson

[Orgmode] Org-mode release 6.06a

2008-07-24 Thread Carsten Dominik
Hi here are the changes in the latest release. Enjoy! - Carsten Changes in Version 6.06 === Overview - New, more CSS-like setup for HTML style information - Attributes in hyperlinks, for example alt and title for images - Simplified way to specify file

Re: [Orgmode] Re: Suggest changing git repo on website to refer to git protocol

2008-07-24 Thread Sebastian Rose
Hi Dan, I know, this is of topic, but I love another software besides Orgmode ;-) Dan Davison <[EMAIL PROTECTED]> writes: > Well I've started reading that pdf, and it looks like it's going to be > a good read... But before I go to far, seeing as we're on this topic, > would someone mind saying a

Re: [Orgmode] Re: Suggest changing git repo on website to refer to git protocol

2008-07-24 Thread Giovanni Ridolfi
--- Mer 23/7/08, Dan Davison <[EMAIL PROTECTED]> ha scritto: > would someone mind saying a few words about git versus > other version control systems? you can watch the video of Linus explaining git: http://www.youtube.com/watch?v=4XpnKHJAok8 cheers Giovanni Posta, news, sport, orosco

Re: [Orgmode] How to produce an agenda that filters on both todo keyword and tag?

2008-07-24 Thread Giovanni Ridolfi
--- Gio 24/7/08, Manish <[EMAIL PROTECTED]> ha scritto: > Da: Manish <[EMAIL PROTECTED]> > On Thu, Jul 24, 2008 at 3:55 AM, Carsten Dominik wrote: > > The "Tags view" is really called the tags > > view for historical reasons. > > It is really for matching tags, properties, > > and TODO entries a