* #+header keywords for #+call keyword?
@ 2013-07-24 12:11 Dieter Wilhelm, H.
2013-07-24 20:27 ` Torsten Wagner
2013-07-24 22:35 ` Eric Schulte
0 siblings, 2 replies; 5+ messages in thread
From: Dieter Wilhelm, H. @ 2013-07-24 12:11 UTC (permalink / raw)
To: Emacs-orgmode@gnu.org
Dear (),
I've got a rather long argument list and it doesn't look good to
supply all the arguments in one line, could somebody please implement
#+header arguments for #+call like in the following example?
#+header: :var NO=(org-entry-get nil "Report_Dir")
#+header: :var DIR=(org-attach-dir)
#+call: ProvideReport()[:results silent]
By the way, is it still true that the number of #+header keywords for
code blocks is restricted to 5 #+header lines? I think this is also
an unnecessary restriction.
Thank you very much
Dieter
--
Best wishes
H. Dieter Wilhelm
Darmstadt
Germany
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: #+header keywords for #+call keyword?
2013-07-24 12:11 #+header keywords for #+call keyword? Dieter Wilhelm, H.
@ 2013-07-24 20:27 ` Torsten Wagner
2013-07-24 22:35 ` Eric Schulte
1 sibling, 0 replies; 5+ messages in thread
From: Torsten Wagner @ 2013-07-24 20:27 UTC (permalink / raw)
To: dieter; +Cc: Emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 1515 bytes --]
Dear Dieter Wilhelm,
I do not know a way to change the standard properties for a #+CALL
construct.
However, we recently discussed a problems with tables and source code calls.
Sebastien pointed to the following variables.
org-babel-default-header-args
((:session . "none") (:results . "replace") (:exports . "code") (:cache .
"no") (:noweb . "no") (:hlines . "no") (:tangle . "no") (:padnewline .
"yes"))
org-babel-default-lob-header-args ((:exports .
"results"))
org-babel-default-inline-header-args ((:session . "none")(:results .
"replace")(:exports . "results"))
You might want to change org-babel-default-lob-header-args to your needs.
That could be done in a small eslip code block within an org-file and might
at least helps as a intermediate solution
All the best
Torsten
On 24 July 2013 14:11, Dieter Wilhelm, H. <dieter@duenenhof-wilhelm.de>wrote:
> Dear (),
>
> I've got a rather long argument list and it doesn't look good to
> supply all the arguments in one line, could somebody please implement
> #+header arguments for #+call like in the following example?
>
> #+header: :var NO=(org-entry-get nil "Report_Dir")
> #+header: :var DIR=(org-attach-dir)
> #+call: ProvideReport()[:results silent]
>
> By the way, is it still true that the number of #+header keywords for
> code blocks is restricted to 5 #+header lines? I think this is also
> an unnecessary restriction.
>
> Thank you very much
>
> Dieter
> --
> Best wishes
>
> H. Dieter Wilhelm
>
> Darmstadt
> Germany
>
>
[-- Attachment #2: Type: text/html, Size: 2323 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: #+header keywords for #+call keyword?
2013-07-24 12:11 #+header keywords for #+call keyword? Dieter Wilhelm, H.
2013-07-24 20:27 ` Torsten Wagner
@ 2013-07-24 22:35 ` Eric Schulte
2013-07-25 6:31 ` Dieter Wilhelm
1 sibling, 1 reply; 5+ messages in thread
From: Eric Schulte @ 2013-07-24 22:35 UTC (permalink / raw)
To: dieter; +Cc: Emacs-orgmode@gnu.org
"Dieter Wilhelm, H." <dieter@duenenhof-wilhelm.de> writes:
> Dear (),
>
> I've got a rather long argument list and it doesn't look good to
> supply all the arguments in one line, could somebody please implement
> #+header arguments for #+call like in the following example?
>
> #+header: :var NO=(org-entry-get nil "Report_Dir")
> #+header: :var DIR=(org-attach-dir)
> #+call: ProvideReport()[:results silent]
>
> By the way, is it still true that the number of #+header keywords for
> code blocks is restricted to 5 #+header lines? I think this is also
> an unnecessary restriction.
>
> Thank you very much
>
The #+call: line syntax is a shortened syntax for code blocks. They
recently got #+names, hopefully soon they will get #+header arguments as
well. In the interum, you can always use a code block
#+header: :var NO=(org-entry-get nil "Report_Dir")
#+header: :var DIR=(org-attach-dir)
#+call: ProvideReport()[:results silent]
can be replaced by
#+header: :var NO=(org-entry-get nil "Report_Dir")
#+header: :var DIR=(org-attach-dir)
#+begin_src emacs-lisp :var result=ProvideReport() :results silent
result
#+end_src
Best,
>
> Dieter
> --
> Best wishes
>
> H. Dieter Wilhelm
>
> Darmstadt
> Germany
>
--
Eric Schulte
http://cs.unm.edu/~eschulte
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: #+header keywords for #+call keyword?
2013-07-24 22:35 ` Eric Schulte
@ 2013-07-25 6:31 ` Dieter Wilhelm
2013-07-25 13:37 ` Eric Schulte
0 siblings, 1 reply; 5+ messages in thread
From: Dieter Wilhelm @ 2013-07-25 6:31 UTC (permalink / raw)
To: Eric Schulte; +Cc: Emacs-orgmode@gnu.org
Eric Schulte <schulte.eric@gmail.com> writes:
> "Dieter Wilhelm, H." <dieter@duenenhof-wilhelm.de> writes:
>
>> Dear (),
>>
>> I've got a rather long argument list and it doesn't look good to
>> supply all the arguments in one line, could somebody please implement
>> #+header arguments for #+call like in the following example?
>>
>> #+header: :var NO=(org-entry-get nil "Report_Dir")
>> #+header: :var DIR=(org-attach-dir)
>> #+call: ProvideReport()[:results silent]
>>
>> By the way, is it still true that the number of #+header keywords for
>> code blocks is restricted to 5 #+header lines? I think this is also
>> an unnecessary restriction.
>>
>> Thank you very much
>>
>
> The #+call: line syntax is a shortened syntax for code blocks. They
> recently got #+names, hopefully soon they will get #+header arguments as
> well. In the interum, you can always use a code block
>
> #+header: :var NO=(org-entry-get nil "Report_Dir")
> #+header: :var DIR=(org-attach-dir)
> #+call: ProvideReport()[:results silent]
>
> can be replaced by
>
> #+header: :var NO=(org-entry-get nil "Report_Dir")
> #+header: :var DIR=(org-attach-dir)
> #+begin_src emacs-lisp :var result=ProvideReport() :results silent
> result
> #+end_src
I see, thank you, your suggestion is a already a good workaround for my
needs. :-)
Could you please also tell me whether you know of any restrictions
concerning the number of #+header lines before a code block?
--
Best wishes
H. Dieter Wilhelm
Darmstadt
Germany
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-07-25 13:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-24 12:11 #+header keywords for #+call keyword? Dieter Wilhelm, H.
2013-07-24 20:27 ` Torsten Wagner
2013-07-24 22:35 ` Eric Schulte
2013-07-25 6:31 ` Dieter Wilhelm
2013-07-25 13:37 ` Eric Schulte
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).