emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org batch job using emacsclient?
@ 2009-11-16  8:51 Stefan Vollmar
  2009-11-16 11:07 ` Noorul Islam K M
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Stefan Vollmar @ 2009-11-16  8:51 UTC (permalink / raw)
  To: emacs-orgmode Mode

Hello,

we are currently setting up some org-templates for simple web pages (e.g. CV information for members of our institute). So far this seems to work surprisingly well - even for users who use editors other than Emacs (yes, we need to try harder...). We have created a web service so users can upload an org-file and get a preview of the generated HTML page.

In a python script we use (a recipe from this very useful list):

[...]
cmd = emacs \
  + " -Q --batch"
  + " --eval \"(add-to-list 'load-path \\\"" + ORGLIB + "\\\")\"" \
  + " --eval \"(require 'org)\"" \
  + " --eval \"(require 'org-exp)\"" \
  + " --eval \"(setq org-export-headline-levels 2)\"" \
  + " --visit=\"" + orgfile + "\"" \
  + " --funcall org-export-as-html"

However, even on a modern system (SunFire T5140, Solaris 10) generating the HTML output with Emacs 23.1 and the latest org-version takes several seconds (which is disappointing). To improve performance, we want to switch to emacsclient but we are not sure how to adapt the above code to do this. Our first attempt:

cmd = emacsclient + " --eval " \
  + " \"(add-to-list 'load-path \\\"" + ORGLIB + "\\\")\"" \
  + " \"(require 'org)\"" \
  + " \"(require 'org-exp)\"" \
  + " \"(setq org-export-headline-levels 2)\"" \
  + " \"(load-file \\\"" + orgfile + "\\\")\"" \
  + " \"(org-export-as-html)\""

did not work.
Any help is appreciated.

Many thanks in advance.
Warm regards,
 Stefan
-- 
Dr. Stefan Vollmar, Dipl.-Phys.
Max-Planck-Institut für neurologische Forschung
Gleuelerstr. 50, 50931 Köln, Germany
Tel.: +49-221-4726-213  FAX +49-221-4726-298
Tel.: +49-221-478-5713  Mobile: 0160-93874279
Email: vollmar@nf.mpg.de   http://www.nf.mpg.de

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2009-11-17 12:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-16  8:51 org batch job using emacsclient? Stefan Vollmar
2009-11-16 11:07 ` Noorul Islam K M
2009-11-16 11:13 ` Adam Spiers
2009-11-16 14:07 ` Magnus Henoch
2009-11-16 15:41 ` Gregory J. Grubbs
2009-11-17  0:12   ` Stefan Vollmar
2009-11-17  2:25     ` Sebastian Rose
2009-11-17  9:06       ` Stefan Vollmar
2009-11-17 12:16         ` Sebastian Rose

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).