[Orgmode] Bug: documention missing
Hi Carsten, The following export (publishing) variables are not documented in org 6.36c: :body-only :style-include-scripts They are available for customize, but not documented in the info file under: 13.1.5 Options for the HTML/LaTeX exporters greetings. ___ 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-orgmode
[Orgmode] possible Bug: non-interactive publishing (emacs 22.1)
Hi Carsten, when using org to publish non-interactively under 22.3.1 I get sometimes an error, depending on which publishing function I call. This does not happen during interactive calling of the publishing function (i.e. M-x org-publish ). no error: emacs -q -batch -l ../org-init.el --eval='(org-publish-all)' with error: emacs -q -batch -l ../org-init.el --eval='(org-publish "h-rd.org" t)' (obviously the project h-rd.org exists, and is published without error and all components from org-publish-all) error message: Starting emacs Loading subst-ksc... Loading subst-gb2312... Loading subst-big5... Loading subst-jis... Debugger entered--Lisp error: (wrong-type-argument listp "h-rd.org") cdr("h-rd.org") (plist-get (cdr p) :components) (setq components (plist-get (cdr p) :components)) (if (setq components (plist-get ... :components)) (setq rest (append ... rest) ) (push p rtn)) (while (setq p (pop rest)) (if (setq components ...) (setq rest ...) (push p r tn))) (let ((rest projects-alist) rtn p components) (while (setq p ...) (if ... ... ...)) (nreverse (org-publish-delete-dups ...))) org-publish-expand-projects(("h-rd.org")) (mapc (lambda (project) (let* ... ... ... ... ... ...)) (org-publish-expand-pr ojects projects)) org-publish-projects(("h-rd.org")) (let* ((org-publish-use-timestamps-flag ...)) (org-publish-projects (list proj ect))) (save-window-excursion (let* (...) (org-publish-projects ...))) org-publish("h-rd.org" t) eval((org-publish "h-rd.org" t)) command-line-1(("-l" "../org-init.el" "--eval=(org-publish \"h-rd.org\" t)")) command-line() normal-top-level() emacs finished greetings. ___ 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-orgmode
Re: [Solved] [Orgmode] [Patch] possible Bug: non-interactive publishing (emacs 22.1)
Quoting Sebastian Rose : Sorry for the reply to my own mail. But as Carsten is on vacation, I thought it might make sense to add the `[Patch]' to the subject. This patch fixes batch-mode publishing. Tested in emacs24 like this: sh$ emacs -q -batch --eval='(org-publish "PROJECT_NAME" t)' Hi Sebastian, thanks, the patch works great (emacs 22)!!! That was fast. ___ 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-orgmode
[O] looking for examples using babel/calc
Hi, is there some documentation and are there some examples of using babel with calc? I have no luck in getting it to work. thanks.
[O] Re: Possible Calc support for Org-Babel?
Hi, addition of babel support for calc is nice. However calc also has "embedded mode". that means active calc documents can easily be embedded in org documents (and also latex, ...). It is different from babel, but in some instances it may work better. ___ 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-orgmode
[O] org babel support for tcl and awk
Hi, I am looking for support for Tcl (and AWK) for org-babel. Both have a supplied emacs mode and Tcl also has an inferior interpreter mode. I was trying to do it myself, however I am quite lost in the instructions. Is there someone with the knowledge and willingness to provide a support file for org babel for Tcl (and maybe awk)? thanks.
Re: [O] org babel support for tcl and awk
Hi Eric, yes I am aware of op-template and tried to use it. However it was not clear to me how to proceed and I looked into ob-perl, ob-ruby, ob-scheme and ob-python. But it seemed to me they use a different structure than op-template and I was stuck. I also saw that the file ob-template is documented, however I am not so good in org-emacs-speak that I can decipher it. Really thanks for the awk example, I will tru to study it. thanks. Quoting Eric Schulte : Hi, Are you aware of the ob-template.el file [1], which can be used as a jumping off point to simplify the addition of new languages? After globally replacing the term "template" with you language name, the only function that necessarily needs to be re-written is the main `org-babel-execute:template' function. I would recommend starting with only non-session based evaluation, and then slowly adding functionality. If you run into any specific problems I am happy to help trouble shoot. As an example, I've worked up an very simple ob-awk.el file from ob-template.el, it is attached along with an example org-mode file which demonstrates its usage. Best -- Eric