Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-12-30 Thread James TD Smith
and a very happy new year! And to you as well. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs

Re: [Orgmode] Setting PROPERTIES in remember templates automatically

2009-11-27 Thread James TD Smith
, there are lots of other changes, and probably a few bugs, and there isn't much in the way of documentation yet :). Let me know how you get on. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Please use `Reply All' to send

Re: [Orgmode] Re: Bug with time summary in column view?

2009-11-25 Thread James TD Smith
(using org ids or similar), the summary calculation code for the agenda could skip entries it had already seen, though I'm not sure it's the right thing to do for all summary types. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode

Re: [Orgmode] Bug with time summary in column view?

2009-11-24 Thread James TD Smith
){:} Each column definition should start with a '%'. Try #+COLUMNS: %TODO %Effort(Estimate){:} Using version 6.32b, the effort estimate is shown for each day in column view. Using the 6.33 versions I tried, no such summary is shown. Is this a bug or a feature? James -- |-James TD Smith-email

[Orgmode] Re: Bug with time summary in column view?

2009-11-24 Thread James TD Smith
Hi Matt and Norbert, On 2009-11-24 19:00:18(-0500), Matt Lundin wrote: James TD Smith ahktenz...@mohorovi.cc writes: On 2009-11-24 16:56:27(-0400), Norbert Zeh wrote: I just tried the latest org-mode version 6.33f, and I've run into the following problem that is not there with version

Re: [Orgmode] Org-mode version 6.32trans (release_6.32b.127.g471c2); Tasks with blank effort show up as 0:00

2009-11-11 Thread James TD Smith
work properly with the new summary operators. I'm working on a patch. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

[Orgmode] [PATCH 2/2] Make org-agenda-columns-summarize work properly with the new summary types.

2009-11-11 Thread James TD Smith
It was assuming the values should be summarised by adding them together. It's now updated to use the summary functions in org-columns-compile-map, and also handles summary types with calculated values properly. --- lisp/org-colview.el | 62 +++--- 1

[Orgmode] [PATCH 1/2] Fix a bug in org-link-display-format.

2009-11-11 Thread James TD Smith
@@ -72,6 +72,10 @@ * org-docbook.el (org-export-as-docbook): Protect targets in verbatim emphasis. +2009-11-07 James TD Smith ahktenz...@mohorovi.cc + + * org.el (org-link-display-format): Should be literal replacement. + 2009-11-06 Carsten Dominik carsten.domi...@gmail.com

[Orgmode] Re: [PATCH 2/2] Make org-agenda-columns-summarize work properly with the new summary types.

2009-11-11 Thread James TD Smith
Both patches are in the bugfixes branch on my repo. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman

Re: [Orgmode] Org-mode version 6.32trans (release_6.32b.127.g471c2); Tasks with blank effort show up as 0:00

2009-11-10 Thread James TD Smith
Hi Bernt, On 2009-11-10 07:09:28(-0500), Bernt Hansen wrote: James TD Smith ahktenz...@mohorovi.cc writes: On 2009-11-09 10:52:55(-0500), Bernt Hansen wrote: As part of my weekly review I look for NEXT tasks with no effort defined. A recent change to org-mode now displays entries

Re: [Orgmode] Org-mode version 6.32trans (release_6.32b.127.g471c2); Tasks with blank effort show up as 0:00

2009-11-09 Thread James TD Smith
? That should fix it. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ 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] [PATCH] Add min/max/mean age operators to column view.

2009-11-01 Thread James TD Smith
know when it's done. P.S. What needs to be added to the manual? I have added the new summary types to the column attributes section. I have also menetioned the limitation that you can only have one summary type for any property in the column view.. James -- |-James TD Smith-email/ahktenz

Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-29 Thread James TD Smith
probably the patch. Thanks for testing this, and also for the improvements you made to column view which made this possible. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send

Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-29 Thread James TD Smith
having and pushed it to my repo, and fixed another bug which stopped the new operators working in column view in the agenda. Let me know if you have any more problems with the patch.. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs

Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-28 Thread James TD Smith
Hi Carsten, On 2009-10-28 18:01:44(+0100), Carsten Dominik wrote: this is a reasonably complex patch - could we get some volunteers putting this to the test? If anyone wants to test this, please pull from my git repo; there's a couple of missing brackets in this patch. James -- |-James TD

Re: [Orgmode] Setting org-remember-store-without-prompt specifically for certain templates?

2009-10-25 Thread James TD Smith
-set-local 'org-remember-store-without-prompt nil) (remove-hook 'post-command-hook 'org-no-store-without-prompt)) --8---cut here---end---8--- And putting %(progn (add-hook 'post-command-hook 'org-no-store-without-prompt) ) in your template. -- |-James TD

[Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-25 Thread James TD Smith
|4 +- 3 files changed, 156 insertions(+), 84 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1b5848e..5677058 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,27 @@ +2009-10-25 James TD Smith ahktenz...@mohorovi.cc + + * org-colview.el (org-format-time-period

Re: [Orgmode] directory tree size browsing with column view

2009-10-24 Thread James TD Smith
. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ 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] Remember put new item in the top of the list

2009-10-24 Thread James TD Smith
bugs as I find them. I'll try and write up a summary of the changes I've made (and which ones are working properly) and post it to the list later so you can decide what you want to do with the code. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc

Re: [Orgmode] directory tree size browsing with column view

2009-10-24 Thread James TD Smith
Hi Michael, On 2009-10-24 16:51:17(+0100), James TD Smith wrote: On 2009-10-24 15:45:32(+0200), Michael Brand wrote: I would like to use the column view for browsing a hierarchical tree with a summed up property like e. g. the directory sizes (inclusive cluster waste and subdirectories

Re: [Orgmode] [PATCH 0/2] Soem more minor patches

2009-10-22 Thread James TD Smith
Hi Carsten, On 2009-10-22 07:38:04(+0200), Carsten Dominik wrote: On Oct 21, 2009, at 11:52 AM, James TD Smith wrote: I found the changes John Wiegley made to org-repeat-re stopped it from matching repeaters with just a '+' at the start. I have fixed this. Hi James, can you please

[Orgmode] [PATCH 1/2] Add an X11 equivalent to org-mac-idle-seconds.

2009-10-21 Thread James TD Smith
100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-21 James TD Smith ahktenz...@mohorovi.cc + + * UTILITIES/x11idle.c: Add a small C program which outputs the X11 + idle time + 2009-09-16 Carsten Dominik carsten.domi...@gmail.com * Makefile: Add dependencies

[Orgmode] [PATCH 2/2] org-repeat-re was no longer matching simple +2d type repeaters. Fix.

2009-10-21 Thread James TD Smith
--- lisp/ChangeLog |3 +++ lisp/org.el|2 +- 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 75bdc38..9bd532d 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -39,6 +39,9 @@ 2009-10-21 James TD Smith ahktenz...@mohorovi.cc

Re: [Orgmode] use todo-keyword to assign category

2009-10-19 Thread James TD Smith
need to either change the property directly (with C-c C-x p CATEGORY RET) or set the todo keyword to CATEGORY again after editing the headline. -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All

[Orgmode] [PATCH 2/3] Add a way to display names for tag groups in fast tag selection.

2009-10-19 Thread James TD Smith
/ChangeLog index 47b44cd..83af7a4 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -29,6 +29,12 @@ (org-mobile-create-index-file): Sort the files to be listed in index.org. +2009-10-17 James TD Smith ahktenz...@mohorovi.cc + + * org.el (org-fast-tag-selection): Add a way

[Orgmode] [PATCH 3/3] Some small fixes in org-registry.

2009-10-19 Thread James TD Smith
James TD Smith ahktenz...@mohorovi.cc + + * lisp/org-registry.el (org-registry-assoc-all): Stop this from + deleting the links it finds from the registry. + (org-registry-find-all): Add a new function which returns all + registry entries which satisfy a test function

[Orgmode] A few small patches

2009-10-19 Thread James TD Smith
A few small patches for org-mode. -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ 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

[Orgmode] [PATCH 1/3] Add a missing entry, and fix some formatting in the changelog.

2009-10-19 Thread James TD Smith
buffer-modified messages. +2009-08-06 James TD Smith ahktenz...@mohorovi.cc - - - - - - - - - - - - - - + * org-plot.el (org-plot/gnuplot): Stop datafile from being deleted + before gnuplot can read it. 2009-08-05 Carsten Dominik carsten.domi...@gmail.com @@ -5455,7

Re: [Orgmode] use todo-keyword to assign category

2009-10-18 Thread James TD Smith
-to-heading) (org-set-property CATEGORY (nth 4 (org-heading-components))) --8---cut here---end---8--- When you set the todo state of an entry to CATEGORY, it will copy the headline text to the CATEGORY property. James -- |-James TD

[Orgmode] org-protocol firefox keybinding

2009-10-17 Thread James TD Smith
with your chosen keys. I've added a section to the Worg page for org-protocol with the instructions. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs

[Orgmode] org-fstree

2009-10-17 Thread James TD Smith
in and for parsing the options. I did had a look at the code you wrote to integrate org-registry, but I haven't managed to integrate it with my changes. I'll James -- No fortunes found |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode

[Orgmode] [PATCH] Various improvements to org-fstree.

2009-10-17 Thread James TD Smith
a filesystem subtree into an org file -;; Copyright 2009 Andreas Burtzlaff +;; Copyright 2009 Andreas Burtzlaff, James TD Smith ;; ;; Author: Andreas Burtzlaff andreas at burtz[REMOVE]laff dot de +;;James TD Smith ahktenzero at mohorovi dot cc +;; ;; Version: 0.4 ;; Keywords

Re: [Orgmode] [misc-new-features 1/5] Add two new special properties, SINCE and SINCE_IA.

2009-08-28 Thread James TD Smith
working. -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ 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] [misc-new-features 2/5] Bugfixes, documentation and custom options for org-checklist.

2009-08-03 Thread James TD Smith
. Please let me know if this was not the right thing to do. Yes, that's fine. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

Re: [Orgmode] Re: Orgmodeorg-export-generic gives an error

2009-07-23 Thread James TD Smith
into the head | of the alist (with value nil if value is nil or not supplied). ` James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

Re: [Orgmode] [misc-new-features 1/5] Add two new special properties, SINCE and SINCE_IA.

2009-07-17 Thread James TD Smith
) and a column for the last time I worked on the entry. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ 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

Re: [Orgmode] [misc-new-features 2/5] Bugfixes, documentation and custom options for org-checklist.

2009-07-14 Thread James TD Smith
. The changelog is fixed in the version in my git repo. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman

Re: [Orgmode] [misc-new-features 3/5] Add an option to sort tags automatically.

2009-07-14 Thread James TD Smith
and putting those in a consistent order would make it easier to pick out the relevant information quickly. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs

Re: [Orgmode] [misc-new-features 1/5] Add two new special properties, SINCE and SINCE_IA.

2009-07-14 Thread James TD Smith
interested in any more, or to remind me that I haven't worked on a task for a while and ought to do so. I used to use the TIMESTAMP and TIMESTAMP_IA properties for this, and the new properties work in more or less the same way but display the results differently. James -- |-James TD Smith-email

[Orgmode] Working on org again

2009-07-13 Thread James TD Smith
. James -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ 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

[Orgmode] [misc-new-features 5/5] Fix a problem I was having with plots using a script. Org-plot was deleting the data file before gnuplot read it in. I've moved the deletion of the temporary data fil

2009-07-13 Thread James TD Smith
--- lisp/org-plot.el | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lisp/org-plot.el b/lisp/org-plot.el index 0e8f5a2..c9d61b3 100644 --- a/lisp/org-plot.el +++ b/lisp/org-plot.el @@ -333,12 +333,12 @@ line directly before or after the table.

[Orgmode] [misc-new-features 3/5] Add an option to sort tags automatically.

2009-07-13 Thread James TD Smith
--- lisp/ChangeLog |3 +++ lisp/org.el| 17 - 2 files changed, 19 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 348ade3..9ce7a17 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -11,6 +11,9 @@ SINCE_IA. These give the time

[Orgmode] [misc-new-features 4/5] Allow org-insert-link to check the X clipboard and the Emacs kill-ring for links, as well as the stored links. This makes getting URLs into org from a browser much ea

2009-07-13 Thread James TD Smith
You can customise `org-link-check-clipboards' to check either the X clipboards or kill-ring only, or both, or none. If you have the interprogram-cut/paste functions set, you probably only want to use the kill-ring only. --- lisp/ChangeLog |5 lisp/org.el| 66

[Orgmode] [misc-new-features 2/5] Bugfixes, documentation and custom options for org-checklist.

2009-07-13 Thread James TD Smith
/ChangeLog index 7e62df0..6a5c2a2 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,19 @@ +2009-07-12 James TD Smith ahktenz...@mohorovi.cc + + * lisp/org-checklist.el (org-checklist): Add a custom group for + org-checklist. The options are all for the unchecked items

[Orgmode] [misc-new-features 1/5] Add two new special properties, SINCE and SINCE_IA.

2009-07-13 Thread James TD Smith
-07-12 James TD Smith ahktenz...@mohorovi.cc + + * org-colview.el (org-format-time-period): Formats a time in + fractional days as days, hours, mins, seconds. + (org-columns-display-here): Add special handling for SINCE and + SINCE_IA to format for display

[Orgmode] Re: [misc-new-features 4/5] extra long subject lines

2009-07-13 Thread James TD Smith
Hi Bernt, On 2009-07-13 07:55:04(-0400), Bernt Hansen wrote: James TD Smith ahktenz...@mohorovi.cc writes: You can customise `org-link-check-clipboards' to check either the X clipboards or kill-ring only, or both, or none. If you have the interprogram-cut/paste functions set, you

Re: [Orgmode] Re: Advice sought on managing decision alternatives.

2009-02-01 Thread James TD Smith
available? James [1] http://article.gmane.org/gmane.emacs.orgmode/8817 -- |-James TD Smith-email/ahktenz...@mohorovi.cc-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org

Re: [Orgmode] Broken plain list check boxes?

2009-01-29 Thread James TD Smith
your daily task like so: ,[ test.org ] | * TODO test | SCHEDULED: 2009-01-29 Thu + 1d | :PROPERTIES: | :RESET_CHECKBOXES: t | :END: | - [ ] Task 1 | - [ ] Task 2 | - [ ] Task 3 ` and when you mark it done all the checkboxes will be cleared. James -- |-James TD Smith-email

[Orgmode] Re: Suggestion with bad patch for org-remember-templates

2009-01-06 Thread James TD Smith
computer codes which where done in the old days when dynamic allocation was not possible and computer memory was small, so people would write programs where the same vector was used for different purposes, in different locations of the program... :-) Agreed. -- |-James TD Smith-email/ahktenz

Re: [Orgmode] template specific commit functions.

2008-12-03 Thread James TD Smith
that item would be a record of some sort and the function called could well be, for example, an interface to twitter or blorg or etc. I've already seen this and will be implementing it. James -- |-James TD Smith-email/[EMAIL PROTECTED

Re: [Orgmode] RFC: Improvements to org-remember

2008-11-29 Thread James TD Smith
no template. 2. Enter your idea. 3. C-c m to run org-remember again. 4. Select the appropriate template. 5. Fill in any prompts for todo keywords and tags, or leave blank as appropriate. 6. C-c C-c to file the note. Would that be suitable? James -- |-James TD Smith-email/[EMAIL PROTECTED

Re: [Orgmode] RFC: Improvements to org-remember

2008-11-29 Thread James TD Smith
worth promoting it to a headline. -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ 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] RFC: Improvements to org-remember

2008-11-29 Thread James TD Smith
Hi Carsten, On 2008-11-25 20:27:31(+0100), Carsten Dominik wrote: On Nov 25, 2008, at 12:46 PM, James TD Smith wrote: On 2008-11-24 09:58:49(+0100), Carsten Dominik wrote: On Nov 24, 2008, at 12:25 AM, James TD Smith wrote: I think it would make sense to move the code to get values

Re: [Orgmode] RFC: Improvements to org-remember

2008-11-25 Thread James TD Smith
Hi Carsten, On 2008-11-24 09:58:49(+0100), Carsten Dominik wrote: Hi James, I do like all this. A few comments: On Nov 24, 2008, at 12:25 AM, James TD Smith wrote: I think it would make sense to move the code to get values for remember expansions out of `org-remember-apply-template

Re: [Orgmode] RFC: Improvements to org-remember

2008-11-24 Thread James TD Smith
are most welcome. James -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ 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

[Orgmode] RFC: Improvements to org-remember

2008-11-23 Thread James TD Smith
in a separate git branch which can be merged into the master branch when it's finished and properly tested. I'll post an update to the list when each feature is ready for testing. James -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ Emacs-orgmode

[Orgmode] [PATCH] Fix a bug in the remember properties escape

2008-11-17 Thread James TD Smith
deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 53a21fd..3690659 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2008-11-17 James TD Smith [EMAIL PROTECTED] + + * org-remember.el (org-remember-apply-template): The call to + `org-property-get-allowed

[Orgmode] [PATCH 2/3] Add clock resuming.

2008-10-23 Thread James TD Smith
--git a/lisp/ChangeLog b/lisp/ChangeLog index e4ffc88..438296d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -3,6 +3,14 @@ * org.el (org-insert-todo-heading): Fix bug with force-heading argument. +2008-10-23 James TD Smith [EMAIL PROTECTED] + + * org-clock.el (org

[Orgmode] [PATCH 0/3] Split my clock resume/clock persistence patch

2008-10-23 Thread James TD Smith
I've split this patch out into three parts, as requested. James TD Smith (3): Fix some typos and duplication in the ChangeLog Add clock resuming. Add clock persistence. lisp/ChangeLog| 46 - lisp/org-clock.el | 118

[Orgmode] [PATCH 2/3] Add clock resuming.

2008-10-23 Thread James TD Smith
--git a/lisp/ChangeLog b/lisp/ChangeLog index e4ffc88..438296d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -3,6 +3,14 @@ * org.el (org-insert-todo-heading): Fix bug with force-heading argument. +2008-10-23 James TD Smith [EMAIL PROTECTED] + + * org-clock.el (org

[Orgmode] [PATCH 1/3] Fix some typos and duplication in the ChangeLog

2008-10-23 Thread James TD Smith
+74,15 @@ * org.el (org-clock-update-time-maybe): Compute negative clock intervals correctly. -2008-10-15 James TD Smith [EMAIL PROTECTED] +2008-10-16 Carsten Dominik [EMAIL PROTECTED] + + * org.el (org-add-log-setup): Respect + `org-log-state-notes-insert-after

[Orgmode] [PATCH 3/3] Add clock persistence.

2008-10-23 Thread James TD Smith
Clock-related data are saved when exiting emacs ands restored when emacs is restarted. The data saved include the contents of `org-clock-history', and the running clock, if there is one. To use this, you will need to add (require 'org-clock) (org-clock-persistence-insinuate) to your .emacs and

Re: [Orgmode] [PATCH] Allow storing clock status between emacs sessions.

2008-10-22 Thread James TD Smith
TD Smith-email/[EMAIL PROTECTED]-| ___ 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

[Orgmode] Timestamps and `org-table-copy-down'

2008-10-22 Thread James TD Smith
-- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ 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

[Orgmode] [PATCH] Allow storing clock status between emacs sessions.

2008-10-19 Thread James TD Smith
/lisp/ChangeLog old mode 100755 new mode 100644 index ad7c9fe..8b836eb --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,27 @@ 2008-10-19 James TD Smith [EMAIL PROTECTED] + * org-clock.el (org-clock-persist): Add a custom option to toggle + clock persistence. + (org-clock

[Orgmode] [PATCH] Bugfix in org-add-log-setup.

2008-10-19 Thread James TD Smith
--- lisp/ChangeLog |6 ++ lisp/org.el|3 ++- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 35ce9c3..ad7c9fe 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2008-10-19 James TD Smith [EMAIL PROTECTED

Re: [Orgmode] Incompatible change in latest push

2008-10-16 Thread James TD Smith
their drawers appear to vanish. It confused me and I've been using org for quite a while. I have no problem with keeping this a configurable option so anyone who wants the old behaviour can have it, but I think the default should be t. James -- |-James TD Smith-email/[EMAIL PROTECTED

Re: [Orgmode] [PATCH 0/9] Update my last patchset

2008-09-21 Thread James TD Smith
/article.php?story=20060706201156481 Hope this helps James -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ 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] [PATCH 0/9] Update my last patchset

2008-09-20 Thread James TD Smith
I've updated my last patchset so it applies to the current version, and added a few more patches I have written since then. The following series implements... --- James TD Smith (9): Some bugfixes for org-plot. Add a % expansion for inserting properties in remember buffers

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

2008-09-20 Thread James TD Smith
/ChangeLog @@ -1,3 +1,13 @@ +2008-09-20 James TD Smith [EMAIL PROTECTED] + + * lisp/org-clock.el (org-update-mode-line): Support limiting the + modeline clock string, and display the full todo value in the + tooltip. Set a local keymap so mouse-3 on the clock string goes

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

2008-09-20 Thread James TD Smith
/org.el |2 +- 4 files changed, 28 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5eb535f..bcefdab 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,14 @@ 2008-09-20 James TD Smith [EMAIL PROTECTED] + * org-compat.el (org-get-x

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

2008-09-20 Thread James TD Smith
--- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2008-09-20 James TD Smith [EMAIL PROTECTED] + * org.el (org-get-refile-targets): Replace links with their + descriptions + (org-imenu-get-tree): Replace links with their descriptions + * org-agenda.el (org-agenda

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

2008-09-20 Thread James TD Smith
contrib/lisp/org-checklist.el diff --git a/contrib/ChangeLog b/contrib/ChangeLog index c49e4b4..195f2b3 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2008-09-20 James TD Smith [EMAIL PROTECTED] + + * lisp/org-checklist.el: Add various checklist handling functions

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

2008-09-20 Thread James TD Smith
..0b40a6e 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2008-09-20 James TD Smith [EMAIL PROTECTED] + * org-remember.el (org-remember-apply-template): Add new + expansions: %k, %K for currently clocked task and a link to the + currently clocked task

[Orgmode] [PATCH 8/9] Add a % expansion for inserting properties in remember buffers.

2008-09-20 Thread James TD Smith
--- lisp/ChangeLog |3 +++ lisp/org-remember.el | 19 +-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b40a6e..07872eb 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-09-20 James TD

[Orgmode] [PATCH 9/9] Some bugfixes for org-plot.

2008-09-20 Thread James TD Smith
* Handle tables where the first line is an hline. * Put commas at the end of the line in generated scripts --- lisp/org-plot.el | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lisp/org-plot.el b/lisp/org-plot.el index 874790c..f8e268d 100644 ---

Re: [Orgmode] Displaying images inline

2008-08-24 Thread James TD Smith
-toggle-iimage-in-org) -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ 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] Displaying images inline

2008-08-22 Thread James TD Smith
)) (define-key org-mode-map [(control c) ?i] 'iimage-mode) You can then toggle inline display of images in an org buffer using C-c i. -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies

Re: [Orgmode] graphing from org-tables

2008-07-25 Thread James TD Smith
. -- |-James TD Smith-email/[EMAIL PROTECTED]-| ___ 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

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

2008-07-24 Thread James TD Smith
/org.el |2 +- 4 files changed, 28 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 903aa8c..c81a049 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,14 @@ 2008-07-25 James TD Smith [EMAIL PROTECTED] + * org-compat.el (org-get-x

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

2008-07-24 Thread James TD Smith
+1,13 @@ +2008-07-25 James TD Smith [EMAIL PROTECTED] + + * lisp/org-clock.el (org-update-mode-line): Support limiting the + modeline clock string, and display the full todo value in the + tooltip. Set a local keymap so mouse-3 on the clock string goes to + the currently

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

2008-07-24 Thread James TD Smith
..e63503a 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-07-25 James TD Smith [EMAIL PROTECTED] + * org-agenda.el (org-agenda-get-closed): show durations of clocked + items as well as the start and end times. + * org-compat.el (org-get-x-clipboard-compat

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

2008-07-24 Thread James TD Smith
--- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2008-07-25 James TD Smith [EMAIL PROTECTED] + * org.el (org-get-refile-targets): Replace links with their + descriptions + (org-imenu-get-tree): Replace links with their descriptions + * org-agenda.el (org-agenda

[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 6/7] Add some functions for handling checklists.

2008-07-24 Thread James TD Smith
contrib/lisp/org-checklist.el diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 66d379c..1d94fa0 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2008-07-05 James TD Smith [EMAIL PROTECTED] + + * lisp/org-checklist.el: Add various checklist handling functions

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

2008-07-24 Thread James TD Smith
..b591f32 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,10 @@ 2008-07-25 James TD Smith [EMAIL PROTECTED] + * org-remember.el (org-remember-apply-template): Add new + expansions: %k, %K for currently clocked task and a link to the + currently clocked task

Re: [Orgmode] Problem with remember and org-mode 6.01d

2008-04-23 Thread James TD Smith
On 2008-04-23 18:31:01(+0200), Jurgen Defurne wrote: On Tue, 22 Apr 2008 23:52:20 +0200 Carsten Dominik [EMAIL PROTECTED] wrote: So does this problem hapen under xemacs, or emacs? xemacs would be very strange, because there this function should not be called. Emacs 21 may not have

Re: [Orgmode] [PATCH 5/5] clipboard handling in remember templats

2008-04-09 Thread James TD Smith
On 2008-04-09 17:32:22(+0200), Carsten Dominik wrote: Hi James, I am going to accept this patch, but I do have a question about it: On Mar 16, 2008, at 5:31 PM, James TD Smith wrote: From: James TD Smith [EMAIL PROTECTED] org.el | 56

[Orgmode] [PATCH 1/5] Hide drawers after displaying an entry using org-clock-goto.

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] --- org.el |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/org.el b/org.el index 4fe79d7..8fe8edd 100644 --- a/org.el +++ b/org.el @@ -18715,6 +18715,7 @@ If there is no running clock, throw an error, unless FAIL-QUIETLY is set

[Orgmode] [PATCH 0/5] Various patches

2008-03-16 Thread James TD Smith
The following series implements... --- James TD Smith (5): Fix the X clipboard handling so it works properly, and so it works in XEmacs. Add some new % expansions for remember templates for inserting clipboard values, and for inserting links using the clipboard contents

[Orgmode] [PATCH 2/5] Add a way to set a user-defined function to generate descriptions for links.

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] Below is an example which uses w3m to retrieve the titles of web pages to use as link descriptions. (require 'w3m) (defun make-link-description (link desc) Link description generator for orgmode (cond ((string-match https?: link) (with-temp

[Orgmode] [PATCH 3/5] Some improvements to org-table-export

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] Specify the file to export to as parameter or property Use the export mechanisms from orgtbl instead of the simple export. Specify the table output format in property. --- org.el | 91 +--- 1

[Orgmode] [PATCH 5/5] clipboard handling in remember templats

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] Fix the X clipboard handling so it works properly, and so it works in XEmacs,and add a new % expansion for adding links. This patch reverts the %c expansion to its original function (head of kill ring), and adds three new % expansions as follows: %x

Re: [Orgmode] [PATCH 4/5] Various patches

2008-03-16 Thread James TD Smith
One of my patches [4/5] appears to have gone missing. I've attatched it to this email. James Add a new sort option, which sorts items by todo keyword in the order of the From: James TD Smith [EMAIL PROTECTED] todo sequence. This is a somewhat simple implementation which just uses the position

[Orgmode] [PATCH 4/5] Add a new sort option, which sorts items by todo keyword

2008-03-16 Thread James TD Smith
This is a somewhat simple implementation which just uses the position of the keyword in org-todo-keywords-1, so if you have multiple sequences containing the same todo keyword you may not get the ordering you expect. --- org.el |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-)

Re: [Orgmode] Org-mode version 5.15

2007-11-28 Thread James TD Smith
Thanks to Carsten for another org-mode release. I have found and fixed a few bugs in 5.15: The code for the %c escape in org-remember-apply-templates caused remember to stop working if the kill-ring was empty (current-kill raises an error if the kill ring is empty). It also didn't check the X