[O] [PATCH 4/5] Skip invisible headlines when mapping over headlines in active region

2011-08-24 Thread David Maus
* org.el (org-deadline, org-schedule): Skip invisible headlines when mapping over headlines in active region. --- lisp/org.el |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index d15c946..03c4c13 100644 --- a/lisp/org.el +++ b/lisp/org.el @@

Re: [O] org-paste-subtree and org-refile broken

2011-08-20 Thread David Maus
At Sat, 13 Aug 2011 09:03:40 -0500, Matt Lundin wrote: David Maus dm...@ictsoc.de writes: At Sat, 13 Aug 2011 09:25:19 +0200, David Maus wrote: Hi Matt, Hi Sebastien, I pushed a temporary workaround to master that should fix the problem with refile and capture. Both depend

Re: [O] [PATCH 1/7] New macro: Execute BODY in enviroment with uninterned SYMBOLS

2011-08-16 Thread David Maus
At Tue, 16 Aug 2011 18:34:04 +0200, Bastien wrote: Hi David, David Maus dm...@ictsoc.de writes: Thanks for the feedback on org-with-uninterned. I'm preparing the patches for master and decided to use the 'add-noise' approach suggested by Štěpán but renamed the macro to `org

Re: [O] Keeping an eye on byte-compilation warnings

2011-08-14 Thread David Maus
At Sat, 13 Aug 2011 16:49:50 -0500, John Wiegley wrote: Maybe we're all using different versions of Emacs, but I find that byte-compilation warnings keep increasing as time goes by. I'd like to ask people to compile their code before committing, to keep the build log clean. It looks messy

Re: [O] org-paste-subtree and org-refile broken

2011-08-13 Thread David Maus
Hi Matt, Hi Sebastien, I pushed a temporary workaround to master that should fix the problem with refile and capture. Both depend on a buggy behavior of org-paste-subtree, i.e. pasting a subtree *above* the target headline when called with point at the beginning of the target headline. A fix for

Re: [O] org-paste-subtree and org-refile broken

2011-08-13 Thread David Maus
At Sat, 13 Aug 2011 09:25:19 +0200, David Maus wrote: Hi Matt, Hi Sebastien, I pushed a temporary workaround to master that should fix the problem with refile and capture. Both depend on a buggy behavior of org-paste-subtree, i.e. pasting a subtree *above* the target headline when called

[O] More on macros: Defined edebug-spec

2011-08-12 Thread David Maus
I just pushed a commit to master that adds edebug specifications to all macros defined by Org mode. With these specifications in place it is now possible to step through macros with edebug like a normal function call. Information about instrumenting macro calls can be found here:

Re: [O] New feature: loop over siblings for some commands

2011-08-12 Thread David Maus
At Wed, 10 Aug 2011 10:34:14 +0200, David Maus wrote: Whats next: Handle folded subtrees. Currently org-schedule w/ active region schedules hidden subtrees, too. Using a tags/prop/todo query seems suboptimal because you would have to know the characteristics of the region beforehand. To me

Re: [O] [PATCH 1/7] New macro: Execute BODY in enviroment with uninterned SYMBOLS

2011-08-10 Thread David Maus
Hi Samuel, Hi Štěpán, Thanks for the feedback on org-with-uninterned. I'm preparing the patches for master and decided to use the 'add-noise' approach suggested by Štěpán but renamed the macro to `org-with-gensyms'. Thus we can change the implementation. Best, -- David -- OpenPGP...

Re: [O] New feature: loop over siblings for some commands

2011-08-10 Thread David Maus
Hi Bastien, I've created a dedicated topic branch on Github git://github.com/dmj/dmj-org-mode.git feat/org-loop-over-headlines And implemented looping over headlines in active region for org-schedule und org-deadline. Differences between this branch and your proposed patch: 1/ Extend the

Re: [O] [bug] killing and yanking _sometimes_ doesn`t indent correctly

2011-08-10 Thread David Maus
Hi Detlef, At Tue, 9 Aug 2011 16:19:26 +0200, Detlef Steuer wrote: Hi! Using the following files I can reproduced a bug I encountered. [...] Thanks for reporting. I pushed a fix for both problems, the wrong level and eating the existing headline. However: Should be --- ** Subheading 1

Re: [O] Bug: Refile sometimes loses the last line [7.7 (release_7.7.15.gc363)]

2011-08-04 Thread David Maus
At Wed, 03 Aug 2011 21:35:40 -0400, Bernt Hansen wrote: Jason Dunsmore emacs-orgm...@deathroller.dunsmor.com writes: Hi Bernt, Can you see if this patch fixes the problem? diff --git a/lisp/org.el b/lisp/org.el index c7b28dd..41ac8c6 100644 --- a/lisp/org.el +++ b/lisp/org.el

Re: [O] Bug: Refile sometimes loses the last line [7.7 (release_7.7.15.gc363)]

2011-08-04 Thread David Maus
At Thu, 04 Aug 2011 09:35:24 -0500, Jason Dunsmore wrote: Hi David, I just pushed a simplified version of the solution: No need to count lines, just check if point is at end of buffer. I just tried out your patch. The logic in your patch is slightly different - it checks if the point is

[O] [PATCH 0/8] Org mode macros, refactored

2011-08-02 Thread David Maus
for a program to be part of Emacs core. David Maus (8): New macro: Execute BODY in enviroment with uninterned SYMBOLS. Use new macro org-with-uninterned New macro: Evaluate BODY in ENVIRONMENT New function: Substitute posix classes in regular expression Use macro org-with-uninterned New

[O] [PATCH 1/7] New macro: Execute BODY in enviroment with uninterned SYMBOLS

2011-08-02 Thread David Maus
* org-macs.el (org-with-uninterned): New macro. Execute BODY in enviroment with uninterned SYMBOLS. --- lisp/org-macs.el |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/lisp/org-macs.el b/lisp/org-macs.el index 906be61..53c60e5 100644 --- a/lisp/org-macs.el +++

[O] [PATCH 3/7] Use new macro org-with-uninterned

2011-08-02 Thread David Maus
* org-macs.el (org-preserve-lc, org-with-point-at) (org-with-remote-undo, org-save-outline-visibility): Use new macro org-with-uninterned. --- lisp/org-macs.el | 90 -- 1 files changed, 47 insertions(+), 43 deletions(-) diff --git

[O] [PATCH 7/7] Make org-batch-store-agenda-views a fun, use org-eval-in-environment

2011-08-02 Thread David Maus
* org-agenda.el (org-batch-store-agenda-views): Make it a function, use org-eval-in-environment. --- lisp/org-agenda.el | 20 +--- 1 files changed, 9 insertions(+), 11 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 6079377..9215d2a 100644 ---

[O] [PATCH 2/7] New macro: Evaluate FORM in ENVIRONMENT

2011-08-02 Thread David Maus
* org-macs.el (org-eval-in-environment): New macro. Evaluate FORM in ENVIRONMENT. (org-with-uninterned): Move to top of file. --- lisp/org-macs.el | 23 ++- 1 files changed, 18 insertions(+), 5 deletions(-) diff --git a/lisp/org-macs.el b/lisp/org-macs.el index

[O] [PATCH 4/7] New function: Substitute posix classes in regular expression

2011-08-02 Thread David Maus
* org-macs.el (org-substitute-posix-classes): New function. Substitute posix classes in regular expression. (org-re): Rewritten to use new function. --- lisp/org-macs.el | 28 +++- 1 files changed, 15 insertions(+), 13 deletions(-) diff --git a/lisp/org-macs.el

[O] [PATCH 5/7] Use macro org-with-uninterned

2011-08-02 Thread David Maus
* org-agenda.el (org-agenda-with-point-at-orig-entry): Use macro org-with-uninterned. --- lisp/org-agenda.el | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index d47013b..25a556e 100644 --- a/lisp/org-agenda.el +++

[O] [PATCH 6/7] Use org-eval-in-environment, make macros functions

2011-08-02 Thread David Maus
* org-agenda.el (org-batch-agenda, org-batch-agenda-csv): Make a function, use org-eval-in-environment. --- lisp/org-agenda.el | 59 ++- 1 files changed, 26 insertions(+), 33 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index

Re: [O] [PATCH 0/8] Org mode macros, refactored

2011-08-02 Thread David Maus
*sigh* These patches should apply to current master but I somehow messed up my development tree. Two separate commits where squashed to 2/7 -- will post a follow up this afternoon. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber dmj...@jabber.org Email. dm...@ictsoc.de

Re: [O] [PATCH 2/7] New macro: Evaluate FORM in ENVIRONMENT

2011-08-02 Thread David Maus
At Tue, 02 Aug 2011 12:50:05 +0200, Štěpán Němec wrote: On Tue, 02 Aug 2011 11:23:35 +0200 David Maus wrote: * org-macs.el (org-eval-in-environment): New macro. Evaluate FORM in ENVIRONMENT. (org-with-uninterned): Move to top of file. --- lisp/org-macs.el | 23

Re: [O] [PATCH 1/7] New macro: Execute BODY in enviroment with uninterned SYMBOLS

2011-08-02 Thread David Maus
Supersedes 1/7: Define macro at top of the file. From 3a97836940b18ea2f50d53218e51fa81d617e788 Mon Sep 17 00:00:00 2001 From: David Maus dm...@ictsoc.de Date: Tue, 2 Aug 2011 15:39:49 +0200 Subject: [PATCH] New macro: Execute BODY in enviroment with uninterned SYMBOLS * org-macs.el (org

Re: [O] [PATCH 2/7] New macro: Evaluate FORM in ENVIRONMENT

2011-08-02 Thread David Maus
Fix smashed up commits: these two replace 2/7 From d55980b50dea594912b38bd7d9b96989c6a54129 Mon Sep 17 00:00:00 2001 From: David Maus dm...@ictsoc.de Date: Tue, 2 Aug 2011 15:41:36 +0200 Subject: [PATCH] New macro: Evaluate FORM in ENVIRONMENT * org-macs.el (org-eval-in-environment): New macro

Re: [O] New feature: loop over siblings for some commands

2011-07-27 Thread David Maus
Hi Bastien, At Wed, 27 Jul 2011 17:28:36 +0200, Bastien wrote: Hi David, David Maus dm...@ictsoc.de writes: I highly recommend to not use this macro but to build the intended functionality with separate building blocks: Factor out the flesh of the respective functions (e.g. org

Re: [O] New feature: loop over siblings for some commands

2011-07-21 Thread David Maus
After a first look at the macro and its usage I have the feeling that the macro would be wrong and/or a bad design choice. It conditionally implements a mapping of body to a headline's siblings. Thus it is a specialized case of applying a function to zero or more headlines based on a selection

Re: [O] Scheduling calling debugger

2011-07-19 Thread David Maus
At Tue, 19 Jul 2011 13:22:10 +0200, Suvayu Ali wrote: Hi Orgers, Scheduling or rescheduling seems to be invoking the debugger for me (I run emacs with debug-on-error set to t). Although it doesn't seem to do anything wrong to the scheduled entry. Strange! The error at the end was generated

Re: [O] New feature: loop over siblings for some commands

2011-07-19 Thread David Maus
At Mon, 18 Jul 2011 10:32:11 +0200, Bastien wrote: Dear all, from latest git repo: (setq org-loop-over-siblings-within-active-region-p t) will allow you to run some commands on several siblings in the active region. For example: start active region * Item 1 * Item 2 * Item 3 end

Re: [O] Scheduling calling debugger

2011-07-19 Thread David Maus
At Tue, 19 Jul 2011 20:23:40 +0200, suvayu ali wrote: Hi David and Memnon, Thank you for looking at this. On Tue, Jul 19, 2011 at 7:53 PM, David Maus dm...@ictsoc.de wrote: Debugger entered--Lisp error: (invalid-function org-loop-over-siblings-in-active-region)   org-loop-over

Re: [O] org-mode debian squeeze problem

2011-07-05 Thread David Maus
At Tue, 5 Jul 2011 21:13:47 -0400 (EDT), Jude DaShiell wrote: a git clone of org-mode in /home/jude prouces /home/jude/org-mode/org-mode/ and puts content in the fourth level directory which breaks the Makefile's ability to make all. I don't know how or why this happens. I cannot reproduce

Re: [O] Typo in 'org-without-partial-completion'

2011-07-02 Thread David Maus
At Thu, 30 Jun 2011 21:28:08 +0200, David Maus wrote: At Thu, 30 Jun 2011 11:12:15 +0200, Bastien wrote: Hi Paul, Paul Sexton psex...@xnet.co.nz writes: I think there's an error in 'org-without-partial-completion' in org-macs.el. The variable pc-mode gets bound

Re: [O] Typo in 'org-without-partial-completion'

2011-07-02 Thread David Maus
At Sat, 02 Jul 2011 11:26:59 +0200, Bastien wrote: Hi David and Paul, David Maus dm...@ictsoc.de writes: #+begin_src emacs-lisp (defmacro org-without-partial-completion (rest body) `(when (and (boundp 'partial-completion-mode) (fboundp 'partial-completion-mode

Re: [O] Bugs and patches hunt before tomorrow

2011-07-02 Thread David Maus
preprocessor. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber dmj...@jabber.org Email. dm...@ictsoc.de From ef2ebd1e72ee3b96ffb82acf61e99255dbf712b7 Mon Sep 17 00:00:00 2001 From: David Maus dm...@ictsoc.de Date: Sat, 2 Jul 2011 16:15:14 +0200 Subject: [PATCH 1/3] Call kill-buffer

Re: [O] Bugs and patches hunt before tomorrow

2011-07-02 Thread David Maus
6ad9f33ccb2d8702dd1d4375dd82998f72078e60 Mon Sep 17 00:00:00 2001 From: David Maus dm...@ictsoc.de Date: Sun, 26 Jun 2011 20:02:42 +0200 Subject: [PATCH] Properly handle relative symlinks when publishing * org-publish.el (org-publish-cache-ctime-of-src): Properly handle relative symlinks. At Thu, 07 Apr 2011 01:11:00 -0400

Re: [O] Typo in 'org-without-partial-completion'

2011-07-02 Thread David Maus
At Sat, 02 Jul 2011 10:40:31 -0400, Nick Dokos wrote: David Maus dm...@ictsoc.de wrote: #+begin_src emacs-lisp (defmacro org-without-partial-completion (rest body) `(when (and (boundp 'partial-completion-mode) (fboundp 'partial-completion-mode)) (unwind

Re: [O] Typo in 'org-without-partial-completion'

2011-06-30 Thread David Maus
At Thu, 30 Jun 2011 11:12:15 +0200, Bastien wrote: Hi Paul, Paul Sexton psex...@xnet.co.nz writes: I think there's an error in 'org-without-partial-completion' in org-macs.el. The variable pc-mode gets bound to the value of partial-completion-mode - but this is a VARIABLE (t if

Re: [O] Email - Org-mode: charset problem

2011-06-27 Thread David Maus
At Mon, 27 Jun 2011 10:30:06 +0200, Karl Voit wrote: Hi! Is there somebody who managed to develop an email to Org-mode bridge without having charset problems? (No, I do not use Emacs as a MUA[4]) Disclaimer: This is not directly related to Org-mode but I guess there are people

Re: [O] [BUG] bug in org-publish and a (wrong) patch

2011-06-26 Thread David Maus
because I assume you already started the release process for Org 7.6. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber dmj...@jabber.org Email. dm...@ictsoc.de From f6ed4d5707995f34a627886d0607dd7e6343144b Mon Sep 17 00:00:00 2001 From: David Maus dm...@ictsoc.de Date: Sun, 26 Jun 2011 20

Re: [O] xml statement in html and apache error

2011-06-26 Thread David Maus
At Thu, 07 Apr 2011 11:18:27 +0200, Richard Riley wrote: Nick Dokos nicholas.do...@hp.com writes: Richard Riley rile...@googlemail.com wrote: I cant really give too many details or suggestions as to why it failed, but the default xml string at the top of export to html files was

Re: [O] Time zone support for agenda item timestamps

2011-06-26 Thread David Maus
At Sat, 9 Apr 2011 20:23:38 +1000, Matt Curtis wrote: Hello, I would like agenda timestamps to support time zones somehow, and I'm after some guidance from org-mode developers. Nothing Org mode specific but with regards to the problem of representing time I recently stumbled across Erik

Re: [O] Bug: Backtrace [7.5 (release_7.5.135.g7021f.dirty)]

2011-06-26 Thread David Maus
At Wed, 13 Apr 2011 18:38:38 -0400, Dave Abrahams wrote: At Thu, 14 Apr 2011 00:17:46 +0200, Carsten Dominik wrote: I think I have fixed this bug - along with a few more issues in this bulk command. Please try the latest git version. Thanks; I will! Did Carsten's patches fix the

Re: [O] Automatic title generation for capture mode

2011-06-26 Thread David Maus
At Tue, 12 Apr 2011 22:25:53 +0200, Jae Hee Lee wrote: Hi all, the default remember-mode generates a title automatically from the text input. For example, if I enter the command M-x org-remember and input the content of this e-mail followed by C-c C-c, the title (Hi all) is automatically

Re: [O] Bug: symbol function's definition is null : signum [7.5]

2011-06-26 Thread David Maus
At Fri, 15 Apr 2011 18:40:51 -0400, Nick Dokos wrote: Sylvain Beucler b...@beuc.net wrote: When using S-up to modify a date with an our range in Org 7.5, I get symbol function's definition is null : signum. E.g. 2011-03-10 jeu. 10:30-11:30 It appears that (org-modify-ts-extra) is

Re: [O] [BUG] bug in org-publish and a (wrong) patch

2011-06-26 Thread David Maus
At Mon, 27 Jun 2011 00:12:11 -0400, Nick Dokos wrote: David Maus dm...@ictsoc.de wrote: At Fri, 08 Apr 2011 12:58:06 -0400, Nick Dokos wrote: Carsten Dominik carsten.domi...@gmail.com wrote: Hi Nick, I have not looked closely, but maybe you can use (expand

Re: [O] Unwanted percent-encoding capturing data from Firefox

2011-06-20 Thread David Maus
At Mon, 20 Jun 2011 07:17:30 -0500, Bill Jacobson wrote: I'm looking into this issue, but this caught my eyes: Org-mode version 7.4 (release_7.5.409.g4f3a3) == latest This looks like a mixed up Org mode install, doesn't it? It would explain the problem you

Re: [O] Unwanted percent-encoding capturing data from Firefox

2011-06-20 Thread David Maus
At Mon, 20 Jun 2011 07:17:30 -0500, Bill Jacobson wrote: I'm looking into this issue, but this caught my eyes: Org-mode version 7.4 (release_7.5.409.g4f3a3) == latest This looks like a mixed up Org mode install, doesn't it? It would explain the problem you

Re: [O] Unwanted percent-encoding capturing data from Firefox

2011-06-19 Thread David Maus
At Sun, 19 Jun 2011 11:43:49 -0500, Bill Jacobson wrote: For some months now, I've been successfully capturing Firefox data as explained here: http://orgmode.org/worg/org-contrib/org-protocol.html But the results below demonstrate a problem. The 2nd and 3rd represent what was captured into

Re: [O] makeinfo removed from debian squeeze

2011-06-18 Thread David Maus
At Sat, 18 Jun 2011 08:08:55 +0100, Ian Barton wrote: On 18/06/11 07:58, Jude DaShiell wrote: What should be used to replace the makeinfo program in the makefile for org-mode? It appears to be missing from debian squeeze. Try installing texinfo, that's where it's packaged in Ubuntu.

Re: [O] org-feed-update doesn't understand the file name of a target Org-file when it is not a constant

2011-06-18 Thread David Maus
At Fri, 17 Jun 2011 21:30:51 +0400, Евгений Курбатов wrote: Hello! I do some elisp code to download the latest RSS feeds from some resource: (setq debug-on-error t) (org-mode) (org-feed-update '(arxiv http://export.arxiv.org/rss/astro-ph; (concat ~/org/arxiv-

Re: [O] How to change the face of =code= and ~verbatim~ ?

2011-06-13 Thread David Maus
At Wed, 27 Apr 2011 09:51:00 +0800, Huang Tao wrote: [1 text/plain; ISO-8859-1 (7bit)] [2 text/html; ISO-8859-1 (7bit)] It seems that the default color of =code= and ~verbatim~ cannot stick out itself on black bg color with gray fg color. How can I change it? PS =code= and ~verbatim~

Re: [O] Define capture template with dynamic id target

2011-06-09 Thread David Maus
At Thu, 09 Jun 2011 15:18:00 -0300, Darlan Cavalcante Moreira wrote: Hello List, I'm trying to create a few templates for org capture and I have found a weird behavior with the ID target type. It works OK if I use the ID directly like below #+begin_src emacs-lisp (id Junho2011Contas)

Re: [O] [Orgmode] Automatic screenshot insertion

2011-06-06 Thread David Maus
At Tue, 29 Mar 2011 09:43:27 -0500, Russell Adams wrote: I made a minor change. File names are now generated by using the current org buffer filename, plus the date and time, and a unique number. This allows me to sort out the images better. (defun org-screenshot ()

Re: [O] Bug: Bug in editing table.el tables [7.5 (release_7.5.36.g4e24)]

2011-06-06 Thread David Maus
At Thu, 31 Mar 2011 12:13:59 +0100, Shaun Johnson wrote: Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to

Re: [O] Bug: build problems [7.5 (release_7.5.343.ge05a)]

2011-06-02 Thread David Maus
At Wed, 01 Jun 2011 08:00:20 -0400, Dave Abrahams wrote: Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to

Re: [O] [bug, babel] export corruption bug and 3 more bugs

2011-06-01 Thread David Maus
At Fri, 27 May 2011 07:15:10 -0700, Samuel Wales wrote: Hi David, Thank you. I am unable to debug this further so I appreciate it. I've just pushed a fix for compatibility with Emacs22 and the `activate-mark' function. Were you able to reproduce the corruption bug? Did anybody else?

Re: [O] [bug, babel] export corruption bug and 3 more bugs

2011-05-26 Thread David Maus
At Wed, 25 May 2011 09:58:03 -0700, Samuel Wales wrote: Minimal .emacs and test case for export corruption bug. Okay, I can reproduce the args out of range with Emacs 22. Turns out that `regexp-opt` behaves different when creating `org-babel-result-regexp'. (regexp-opt org-babel-data-names)

Re: [O] [bug] corrupted export

2011-05-25 Thread David Maus
At Wed, 25 May 2011 08:45:13 +0200, Christian Moe wrote: I can't reproduce these. Me neither. And I don't have a commit 2f5f9 (indicated by release_7.5.304.g-2f5f9-) dmaus@x60s ~/.emacs.d/site-lisp.d/org-mode (git)-[master] % git show 2f5f9 fatal: ambiguous argument '2f5f9': unknown revision

Re: [O] [bug] corrupted export

2011-05-25 Thread David Maus
At Wed, 25 May 2011 11:57:17 -0700, Samuel Wales wrote: There are local unrelated small modifications. I tested without them and it still breaks in the 2 ways described. bd91803d0d1d88e94a059f28b5cccb7e969d0042 breaks. Did you use Emacs 22? No, I just tried your test file with Emacs23 and

Re: [O] Bug: The org-entry-put add extra space after each invoking [7.5 (release_7.5.260.geb2a)]

2011-05-24 Thread David Maus
At Sun, 8 May 2011 23:02:30 +0800, wujun zhou wrote: Each time I invoke the org-entry-put, I will get an extra space before the value, like this: before :prop: 1 after (org-entry-put pom prop 2) :prop: 2 and after invoking servel times: :prop:3

Re: [O] [PATCH] Allow inactive timestamps in org-expiry (copy of lost patch)

2011-05-24 Thread David Maus
At Mon, 28 Mar 2011 14:55:13 -0400, Nick Dokos wrote: Marcel van der Boom mar...@hsdev.com wrote: This patch is what is attached to the message displayed at [1]. I have been using this patch for a while and it works fine. From searching it looks like this patch was 'forgotten', but I may

Re: [O] [PATCH] Wash output of org-encrypt-entry, take 3

2011-04-10 Thread David Maus
At Mon, 21 Mar 2011 14:54:09 +0100, Julien Danjou wrote: [1 text/plain; utf-8 (quoted-printable)] On Fri, Mar 18 2011, Óscar Fuentes wrote: The first line (Version:...) can change from machine to machine and over time (as gpg is updated with a new version.) This is problematic when

Re: [O] create new files from capture

2011-04-04 Thread David Maus
At Fri, 1 Apr 2011 13:43:06 -0400, Buck Brody wrote: Is there a way to use capture to create new files? Can I fill out the name of the file, and add a date stamp, from within the capture template? Prompting in the templates happens after the template is placed in the target buffer. So AFAIK

Re: [O] Bug: org-export-html-protect-char-alist type def [7.5]

2011-04-04 Thread David Maus
At Thu, 31 Mar 2011 00:06:52 +0200, Michael Heerdegen wrote: Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted

Re: [O] [REGRESSION] Html Export

2011-03-20 Thread David Maus
At Thu, 17 Mar 2011 21:57:40 +0530, Jambunathan K wrote: Can someone fix this regression in the HTML exporter - 294dcb. The problem is with hyperlink whose description is an image. So have unicorn logo on the dir where you save this file. Would appreciate if the whole document exports fine

Re: [O] Re: Another HTML Export Problem

2011-03-20 Thread David Maus
At Thu, 17 Mar 2011 14:34:52 +, Eric S Fraga wrote: I don't know if this is the same problem but exporting, to HTML, the Yes, this was a symptom of the broken HTML export. Should be fixed now. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber dmj...@jabber.org Email.

Re: [O] Bug when publishing images

2011-03-20 Thread David Maus
At Wed, 16 Mar 2011 10:17:41 +0100, Francesco Pizzolante wrote: Hi David, There's still a little problem though when adding a caption: --8---cut here---start-8--- #+CAPTION: toto [[file:toto.png]] --8---cut

Re: [O] org-publish not publishing changed files

2011-03-20 Thread David Maus
At Fri, 18 Mar 2011 19:19:50 -0700, Suvayu Ali wrote: On Fri, 18 Mar 2011 21:33:04 -0400 Nick Dokos nicholas.do...@hp.com wrote: If you can figure out *why* they got out of sync, that would be a bonus and worth a post here, particularly if you can identify a bug in the code. I think

Re: [O] Re: [Orgmode] Headlines export problem

2011-03-20 Thread David Maus
At Thu, 3 Mar 2011 10:10:16 +0100, PASZTOR Miklos wrote: Hello, Thanks for keeping an eye on this. Sorry for being silent. On Wed, Mar 02, 2011 at 06:48:56PM +0100, Bastien wrote: Hi, PASZTOR Miklos pasz...@iszt.hu writes: I'm using org-mode version 7.4. When I export org

Re: [O] regexp link on windows problem

2011-03-20 Thread David Maus
At Fri, 11 Mar 2011 13:41:45 + (UTC), Rafal wrote: Bastien bzg at altern.org writes: Hi Bastien, Can you give an example? So I'm trying to write a custom function to set regexp search string for c/c++ code by writing org-create-file-search-functions hook. (code #1 below ) After

Re: [O] fill-region and list items

2011-03-20 Thread David Maus
At Tue, 08 Mar 2011 13:48:30 -0800, Michael Hohn wrote: Hi all, after upgrading to the current git head (version 7.xx, previously 6.36), fill-region produces wrong indentation for my lists. Starting with - one - very, very, very, very, very, very, very, very, very, very, very, very,

Re: [O] fill-region and list items

2011-03-20 Thread David Maus
At Sun, 20 Mar 2011 18:14:26 +0100, David Maus wrote: Has anybody seen this? Erm.. To me the two lists look identical? What is the expected output? Forget this message, an artefact of scanning the list for bugs/issues forward in time starting om March, 6th. Best, -- David -- OpenPGP

[O] Re: Another HTML Export Problem

2011-03-20 Thread David Maus
Hi Bernt, At Sun, 20 Mar 2011 21:46:19 -0400, Bernt Hansen wrote: David Maus maus.da...@gmail.com writes: At Thu, 17 Mar 2011 14:34:52 +, Eric S Fraga wrote: I don't know if this is the same problem but exporting, to HTML, the Yes, this was a symptom of the broken HTML export

[O] Re: Another HTML Export Problem

2011-03-17 Thread David Maus
Hi, Bastien's patch looks good and/but introduces a regression: The commit that started all this trobule -- 163cd58ffd6461c98a96b1b63a3cf082b2825a52 -- fixed a problem with exporting links with a description that contained an ISO Date. The current problem can be located in `org-html-do-expand'

Re: [O] Re: [Orgmode] bug: invalid export key in export visible region

2011-03-15 Thread David Maus
At Sun, 13 Mar 2011 20:11:03 -0700, Samuel Wales wrote: On 2011-03-06, Bastien b...@altern.org wrote: David Maus dm...@ictsoc.de writes: Samuel Wales wrote: c-c c-e v H c-c c-e v R Emacs 22, latest org git master. Thanks for the report, should be fixed by now. Thanks, David

Re: [O] Bug when publishing images

2011-03-15 Thread David Maus
At Mon, 14 Mar 2011 10:09:37 +0100, Francesco Pizzolante wrote: Since this morning, I have problems exporting (inline) images. ... Could someone fix this as soon as possible? The joys of bleeding edget. Should be fixed by now. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber

Re: [O] Bug when publishing images

2011-03-15 Thread David Maus
Hi Francesco, At Tue, 15 Mar 2011 07:47:59 +0100, Francesco Pizzolante wrote: Thanks for the fix. It works better now. There's still a little problem though when adding a caption: --8---cut here---start-8--- #+CAPTION: toto [[file:toto.png]]

[O] Re: [Orgmode] org export not working

2011-03-13 Thread David Maus
Hi John, At Sun, 27 Feb 2011 22:48:03 -0500, John Rakestraw wrote: --8---cut here---end---8--- So far as I know, I've changed nothing in my set-up since last week, when I successfully exported the exam that I just finished grading. I have, however,

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

2011-03-13 Thread David Maus
At Fri, 11 Mar 2011 10:10:08 +0100, Daniel Clemente wrote: I tracked down this problem to this commit: 163cd58ffd6461c98a96b1b63a3cf082b2825a52 is the first bad commit commit 163cd58ffd6461c98a96b1b63a3cf082b2825a52 Author: David Maus dm...@ictsoc.de Date: Fri Jan 14 06:37:52 2011

Re: [O] Version 7.5: C-c C-t anything fails with args out of range

2011-03-08 Thread David Maus
At Tue, 8 Mar 2011 15:08:57 -0800, Josh Berry wrote: Hi list, I just upgraded from org-mode 7.4 to 7.5, and I can't set or change TODO states at all with C-c C-t now; an args-out-of-range error gets raised. I've tried doing a make clean in my org-mode checkout, to no avail. I'm running

Re: [O] org-with-wide-buffer error

2011-03-07 Thread David Maus
At Mon, 07 Mar 2011 17:06:53 +0100, Bastien wrote: Hi Kiwon, Kiwon Um um.ki...@gmail.com writes: This is a bug report for the latest (git) orgmode. When I call org-todo or org-agenda-todo it reports the following: Debugger entered--Lisp error: (invalid-function org-with-wide-buffer)

[O] Re: [Orgmode] Using org-protocol to (org-)capture files for read/review?

2011-03-06 Thread David Maus
At Thu, 24 Feb 2011 10:27:59 +0100, Albin Stjerna wrote: Hello, notmuch-org! I'm using org-mode to structure most of my life, but I haven't been able to incorporate my list of PDFs (or other documents) to read/review in org-mode, so currently I'm just putting them in ~/read-review.

[O] Re: [Orgmode] bug: invalid export key in export visible region

2011-03-06 Thread David Maus
At Thu, 24 Feb 2011 11:17:48 -0700, Samuel Wales wrote: The following commands error out, seeming to say that the keys are wrong. c-c c-e v H c-c c-e v R Emacs 22, latest org git master. Thanks for the report, should be fixed by now. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6

[O] Re: [Orgmode] Bug: Missing prompt label in capture template expansion

2011-03-06 Thread David Maus
At Fri, 25 Feb 2011 12:41:34 +0530, Aankhen wrote: STEPS TO REPRODUCE: 1. Add this to the list of capture templates: (t Test entry (file z:/Temp/t.org) *** TODO %^{Foo} [[bar:%^{Bar}][Bar]]) 2. Run org-capture. 3. Fill in a value for “Foo” when prompted and press Enter.

Re: [Orgmode] Re: org-clock-idle-time resolving dialogues seem to stack up for each passed idle time period

2011-02-27 Thread David Maus
Hi Rainer, At Mon, 24 Jan 2011 14:41:15 +0100, Rainer Stengele wrote: this still bugs me. After leaving idle my emacs for some time longer than the configured idle time I have to apply answers to the idle-time dialogue several times. I cannot simply press j to jump to the open clock

Re: [Orgmode] $0 replaced with ampersand () when invoking `org-edit-special'

2011-02-27 Thread David Maus
At Fri, 11 Feb 2011 10:52:29 +0100, Bastien wrote: Hi Niels, niels giesen niels.gie...@gmail.com writes: According to [ (info (org) Formula syntax for Calc) ], $0 references the current cell. Pressing C-c C-c on the #+TBLFM line below does indeed work, but C-c ' (`org-edit-special')

Re: [Orgmode] Export issue of URL when the text begins with a date‏

2011-02-27 Thread David Maus
At Mon, 31 Jan 2011 19:45:29 +0100, Bastien wrote: David Maus dm...@ictsoc.de writes: Attached patch factors out the link handling part of `org-export-as-html' in a separat function which takes the processed line and the exporting options as arguments and returns the possibly modified

[Orgmode] IMPORTANT Modified link escaping in Org mode

2011-02-17 Thread David Maus
Hello everybody, I've just pushed a series of commits to current master that modifies Org modes link escaping functions. Percent escaping is used in Org mode to escape certain characters in links that would either break the parser (e.g. square brackets in link target oder description) or are not

Re: [Orgmode] Improve percent escaping links in Org mode (pull request / OK to push)

2011-02-13 Thread David Maus
Hi Bastien, Wow... how could I missed this email? Thanks for the thorough details about this change, which is most than welcome (I read Vincent's emails about this.) I hope you can rebase this on current head without too much headache, and provide a set of patches. I'd rather read

[Orgmode] [PATCH 01/16] Decode single byte sequence if decoding unicode failed.

2011-02-13 Thread David Maus
From: Sebastian Rose sebastian_r...@gmx.de * org-protocol.el (org-protocol-unhex-single-byte-sequence): New function. Decode hex-encoded singly byte sequences. (org-protocol-unhex-compound): Use new function if decoding sequence as unicode character failed. --- lisp/org-protocol.el | 26

[Orgmode] [PATCH 02/16] New unicode aware percent encoding algorithm

2011-02-13 Thread David Maus
* org.el (org-link-escape): New unicode aware percent encoding algorithm. --- lisp/org.el | 19 --- 1 files changed, 8 insertions(+), 11 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 0c46eec..9aeeeda 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8576,17 +8576,14 @@

[Orgmode] [PATCH 03/16] New format of percent escape table

2011-02-13 Thread David Maus
* org.el (org-link-escape-chars, org-link-escape-chars-browser): New format of percent escape table. (org-link-escape): Use new table format. Just a plain list with the chars that should be escaped. --- lisp/org.el | 27 +-- 1 files changed, 5 insertions(+), 22

[Orgmode] [PATCH 04/16] Fixup doc string

2011-02-13 Thread David Maus
* org.el (org-link-escape): Fixup doc string. --- lisp/org.el |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 7d38907..cafb673 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8555,7 +8555,10 @@ This is the list that is used for internal

[Orgmode] [PATCH 05/16] New optional argument: Merge user table with default table

2011-02-13 Thread David Maus
* org.el (org-link-escape): New optional argument. Merge user table with default table. --- lisp/org.el | 14 +++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index cafb673..a29d429 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8554,14

[Orgmode] [PATCH 07/16] Unescape functions moved and renamed from org-protocol.el

2011-02-13 Thread David Maus
* org.el (org-link-unescape, org-link-unescape-compound) (org-link-unescape-single-byte-sequence): Functions moved and renamed from org-protocol.el. --- lisp/org.el | 90 -- 1 files changed, 74 insertions(+), 16 deletions(-) diff --git

[Orgmode] [PATCH 12/16] Rename lambda argument

2011-02-13 Thread David Maus
* org.el (org-link-escape): Rename lambda argument. --- lisp/org.el |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 1b5c3a8..8d49c05 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8576,8 +8576,8 @@ If optional argument MERGE is set,

[Orgmode] [PATCH 06/16] Inline function to properly decode utf8 characters in Emacs 22

2011-02-13 Thread David Maus
* org-macs.el (org-char-to-string): Inline function to properly decode utf8 characters in Emacs 22. Moved and renamed from org-protocol.el. * org-protocol.el (org-protocol-unhex-compound): Use renamed inline function. --- lisp/org-macs.el |9 - lisp/org-protocol.el | 13

[Orgmode] [PATCH 08/16] Declare obsolete alias to respective org-link-unescape-* functions

2011-02-13 Thread David Maus
* org-protocol.el (org-protocol-unhex-string) (org-protocol-unhex-compound) (org-protocol-unhex-single-byte-sequence): Declare obsolete and alias to respective org-link-unescape-* functions. --- lisp/org-protocol.el | 88 +++--- 1 files changed, 12

[Orgmode] [PATCH 14/16] Always percent escape the percent sign

2011-02-13 Thread David Maus
* lisp/org.el (org-link-escape, org-link-escape-chars-browser) (org-link-escape-chars): Always percent escape the percent sign. --- lisp/org.el |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 8fcb9c4..1415eb1 100644 --- a/lisp/org.el

[Orgmode] [PATCH 09/16] Remove obsolete argument in call to org-link-unescape

2011-02-13 Thread David Maus
* org-mobile.el (org-mobile-locate-entry): Remove obsolete argument in call to org-link-unescape. `org-link-unescape' always unescapes all percent escaped sequences. --- lisp/org-mobile.el |7 +++ 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/org-mobile.el

<    1   2   3   4   5   6   7   >