emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Rainer M Krug <r.m.krug@gmail.com>
To: Eric Schulte <schulte.eric@gmail.com>
Cc: emacs-orgmode <emacs-orgmode@gnu.org>
Subject: Re: [BABEL] html export for R not working, but for sh and others
Date: Sat, 3 Jul 2010 20:42:55 +0200	[thread overview]
Message-ID: <AANLkTinDewUXgBTXrk1XoL2Ta-CE1MuAeknXO4qSJZc4@mail.gmail.com> (raw)
In-Reply-To: <87r5jlts2w.fsf@gmail.com>

Hi Eric

On Saturday, July 3, 2010, Eric Schulte <schulte.eric@gmail.com> wrote:
> Hi Rainer,
>
> My guess would be that the `htmlize-buffer' command which is used to
> fontify code in html export is choking because the elisp below is
> defining new fonts for R code.  If htmlize-buffer can't find the
> definitions for these fonts then it will throw an error.
>
> I'm not sure what the solution would be, but I'm pretty sure that's the
> source of the problem.

If I find Time,I'll look into it and contact the original author.

For the time being,i'll disable that Code Section.

Thanks,

Rainer
>
> Best -- Eric
>
> Rainer M Krug <r.m.krug@gmail.com> writes:
>
>> Hi Eric
>>
>> I traced the problem to the following section in my emacs.org file:
>>
>> * Syntax highlighting for functions in R
>>   based on https://mail.google.com/mail/#label/Lists%2FESS/125131ed24688970
>>   The following code needs to be run in R:
>>
>>   obj <- do.call("c", sapply(c("package:base", "package:stats",
>>   "package:utils"), objects, all.names=TRUE))
>>   re <- "(^[^.[:alpha:][:digit:]]|<-|__)"  # to remove "weird" functions
>>   obj <- obj[-grep(re, obj)]
>>   fpath <- file.path(Sys.getenv("HOME"), ".emacs.d", "R-function-names.txt")
>>   write.table(obj, fpath, quote=FALSE, row.names=FALSE, col.names=FALSE)
>>
>>   Read a whole file into list of lines
>>   Author: Xah Lee
>>   see http://xahlee.org/emacs/elisp_process_lines.html
>> #+begin_src emacs-lisp
>>   (defun read-lines (file)
>>   "Return a list of lines in FILE."
>>   (with-temp-buffer
>>   (insert-file-contents file)
>>   (split-string
>>   (buffer-string) "\n" t)
>>   )
>>   )
>>
>>   (add-hook 'ess-mode-hook
>>   '(lambda()
>>   (setq ess-my-extra-R-function-keywords
>>   (read-lines "~/.emacs.d/R-function-names.txt"))
>>   (setq ess-R-mode-font-lock-keywords
>>   (append ess-R-mode-font-lock-keywords
>>   (list (cons (concat "\\<" (regexp-opt
>>   ess-my-extra-R-function-keywords 'enc-paren) "\\>")
>>   'font-lock-function-name-face))))))
>>
>> If I disable that section, it works. Do you have any ideas if it could be
>> changes? I don't know anything about emacs-lisp.
>>
>> Thanks,
>>
>> Rainer
>>
>> On Fri, Jul 2, 2010 at 9:44 AM, Rainer M Krug <r.m.krug@gmail.com> wrote:
>>
>>>
>>>
>>> On Thu, Jul 1, 2010 at 5:55 PM, Eric Schulte <schulte.eric@gmail.com>wrote:
>>>
>>>> Hi Rainer,
>>>>
>>>
>>> Hi Eric,
>>>
>>>
>>>>
>>>> Rainer M Krug <r.m.krug@gmail.com> writes:
>>>>
>>>> > Hi
>>>> >
>>>> > I am trying to export the attached test.org file to HTML, but I can
>>>> only
>>>> > export it, when I change the source block language to anything different
>>>> > from R.
>>>> >
>>>> > I also attach my emacs.org file, but I am not doing any customisations
>>>> to R.
>>>> >
>>>>
>>>> I've just started up a minimal Emacs instance and loaded the babel
>>>> portion of your attached config, but I am able to export your attached
>>>> org file w/o error.  A couple of questions.
>>>>
>>>> 1) are you able to export to latex?  If so, then maybe the issue has to
>>>>   do with fontification of R code by htmlize-buffer
>>>>
>>>
>>> Yes - export to latex (and from there to pdf) are working.
>>>
>>>>
>>>> 2) could you send in the actual error being reported by Emacs, or a
>>>>   stack trace?
>>>>
>>> These are the messages in emacs:
>>>
>>> Select command:
>>> Exporting...
>>> org-babel-exp processing...
>>> Fontifying  *temp*... (regexps.............)
>>> org-babel-exp processing...
>>> font-lock-fontify-keywords-region: Invalid regexp: "Regular expression too
>>> big"
>>>
>>> How can I get a stack trace?
>>>
>>> One more thing: if I start emacs with

-- 
NEW GERMAN FAX NUMBER!!!

Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation
Biology, UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

      reply	other threads:[~2010-07-03 18:43 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-01  8:14 [BABEL] html export for R not working, but for sh and others Rainer M Krug
2010-07-01 15:55 ` Eric Schulte
2010-07-02  7:44   ` Rainer M Krug
2010-07-02 12:37     ` Rainer M Krug
2010-07-02 22:52       ` Eric Schulte
2010-07-03 18:42         ` Rainer M Krug [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AANLkTinDewUXgBTXrk1XoL2Ta-CE1MuAeknXO4qSJZc4@mail.gmail.com \
    --to=r.m.krug@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=schulte.eric@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).