[O] [PATCH] fix bug: org-ascii--unique-links don't call org-element-map with correct number of arguments

2013-10-14 Thread Ryo TAKAISHI
* lisp/ox-ascii.el: org-ascii--unique-links call org-element-map with correct number of arguments. --- lisp/ox-ascii.el |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el index e0a3fa9..7ad0ee1 100644 --- a/lisp/ox-ascii.el +++ b/lisp/ox-as

[O] [PATCH] fix bug: org-babel-tangle-file can't limit collected source code block by argument.

2013-03-04 Thread Ryo TAKAISHI
* lisp/ob-tangle.el (org-babel-tangle-collect-blocks): Change argument name collid org-babel-map-src-blocks's variable 'lang'. --- lisp/ob-tangle.el |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el index ef14f22..95433ee 100644 --- a

Re: [O] [PATCH] org-protocol: Pass optional value using query in url to capture from protocol.

2013-03-03 Thread Ryo TAKAISHI
* lisp/org-protocol.el: (org-protocol-convert-query-to-plist): New function. (org-protocol-do-capture): Use new function. (org-protocol-data-separator): Change default separator. When org-protocol's url has query, org-capture get query using plist-get from store-link. For example: Url is "org-pro

Re: [O] [PATCH] org-protocol: Pass optional value using query in url to capture from protocol.

2013-03-02 Thread Ryo Takaishi
o apply this patch but since you already submitted "tiny > changes" we would need to have you sign the FSF copyright assignment. > > See > http://orgmode.org/cgit.cgi/org-mode.git/plain/request-assign-future.txt > > Let me know if you are willing to assign your copyright to the FSF. > > Thanks! > > -- > Bastien > -- Ryo Takaishi

Re: [O] [PATCH] org-protocol: Pass optional value using query in url to capture from protocol.

2013-01-01 Thread Ryo TAKAISHI
Hello, Bastien I will to assign my copyright to the FSF. I sent request-assign-future.txt to ass...@gnu.org now. Regards, Ryo Bastien writes: > Hi Ryo, > > I'm willing to apply this patch but since you already submitted "tiny > changes" we would need to have you sign the FSF copyright assignme

[O] [PATCH] org-protocol: Pass optional value using query in url to capture from protocol.

2012-12-30 Thread Ryo TAKAISHI
* lisp/org-protocol.el: (org-protocol-convert-query-to-plist): New function. (org-protocol-do-capture): Use new function. When org-protocol's url has query, org-capture get query using plist-get from store-link. For example: Url is "org-protocol:/capture:/URL/TITLE/BODY?key=value" org-capture can

Re: [O] [PATCH] Capture: Expand keyword within %(SEXP) in template

2012-11-05 Thread Ryo TAKAISHI
Hello, Nicolas Goaziou writes: > Hello, > > Ryo TAKAISHI writes: > >> I create a complete patch for current commit. > > I've pushed your patch on master (with some documentation tweaks). Thank > you for your work. Thank you very much. But, I had forgot to esca

Re: [O] [PATCH] Capture: Expand keyword within %(SEXP) in template

2012-11-04 Thread Ryo TAKAISHI
Nicolas Goaziou writes: > Otherwise the code is fine. Would you provide a complete patch, i.e. > with `git format-patch'? The changelog entry may be: I create a complete patch for current commit. Regards, Ryo >From d82c99bb643e2c61e1f5b598a687160340a1558f Mon Sep 17 00:00:00

Re: [O] [PATCH] Capture: Expand keyword within %(SEXP) in template

2012-11-04 Thread Ryo TAKAISHI
Nicolas Goaziou writes: > The code looks good, although I would have moved the external `mapcar' > within the worker function in order to make its purpose clearer. > > Also, would you mind to provide a docstring for the function? Something > along the lines of: > > "Recursively replace captur

Re: [O] [PATCH] Capture: Expand keyword within %(SEXP) in template

2012-11-02 Thread Ryo TAKAISHI
Nicolas Goaziou writes: > Ryo TAKAISHI writes: > >> I did'nt come up with to use it. >> But "%(func %:description)" or "%(func (plist-get >> org-store-link-plist :description))", I think the former is readble >> template than the latter

Re: [O] [PATCH] Capture: Expand keyword within %(SEXP) in template

2012-11-02 Thread Ryo TAKAISHI
Nicolas Goaziou writes: > Hello, > > Thanks for your patch. Here are a few comments about it. > > Ryo TAKAISHI writes: > >> * lisp/org-capture.el: If %(SEXP) has %:keyword, expand it using >> org-store-link-plist. >> >> I want to expand %:descrip

[O] [PATCH] Capture: Expand keyword within %(SEXP) in template

2012-11-02 Thread Ryo TAKAISHI
is patch expand %:keyword within %(SEXP), so funcsion is taken %:keyword's value. For example, when capture template is "%(func %:description)" and a keyword :description is "foobar", func is taken string "foobar". Modified from a patch proposal by Ryo TAKAISH