Sent via BlackBerry by AT&T -----Original Message----- From: emacs-orgmode-request@gnu.org Date: Sun, 30 May 2010 12:00:21 To: Subject: Emacs-orgmode Digest, Vol 51, Issue 33 Send Emacs-orgmode mailing list submissions to emacs-orgmode@gnu.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.gnu.org/mailman/listinfo/emacs-orgmode or, via email, send a message with subject or body 'help' to emacs-orgmode-request@gnu.org You can reach the person managing the list at emacs-orgmode-owner@gnu.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Emacs-orgmode digest..." Today's Topics: 1. [babel] Questions about export and :var. Possible bug. (Nicolas Goaziou) 2. Bug: [Patch] Beamer export default options [6.35i] (Jan Moringen) 3. language independent personal word list (Eraldo Helal) 4. insert a remember template at point (Eraldo Helal) 5. Re: insert a remember template at point (Shelagh Manton) 6. Re: language independent personal word list (Shelagh Manton) 7. Re: insert a remember template at point (Shelagh Manton) 8. 2 Way Sync between Google Calendars and org-mode files (Daniel Martins) 9. export of emphasized link (Michael Brand) 10. byte-code: Key sequence contains invalid event (Alexandre Billon) ---------------------------------------------------------------------- Message: 1 Date: Fri, 28 May 2010 23:38:18 +0200 From: Nicolas Goaziou Subject: [Orgmode] [babel] Questions about export and :var. Possible bug. To: Org Mode List Message-ID: <871vcvso51.wl%n.goaziou@gmail.com> Content-Type: text/plain; charset=US-ASCII Hello. I tried to export something like this (git head) : #+begin_src R :var num=3 :exports results runif(n=num, min=0, max=1) #+end_src While it is fine when run with C-c C-c, I get the following error when trying to export the file : progn: reference '3' not found in this buffer So I investigated a bit and found something odd : - `org-babel-exp-results' adds `org-current-export-file' to any assignment, even if num=/path/to/file/exported:3 doesn't make sense; - `org-babel-resolve-reference' doesn't filter out bad references like this and throws the error above. So my questions are : - do we really need the "reference '%s' not found in this buffer" error, as it only means %s was a literal value ? - or is it better to modify org-babel-exp-results to check the sanity of the references it creates so that it doesn't add that reference to the original file ? - Nicolas ------------------------------ Message: 2 Date: Sat, 29 May 2010 04:44:04 +0200 From: Jan Moringen Subject: [Orgmode] Bug: [Patch] Beamer export default options [6.35i] To: emacs-orgmode@gnu.org Message-ID: <19464_1275101045_ZZh00514Zmr7l.00_1275101044.3678.13.camel@localhost.localdomain> Content-Type: text/plain; charset="utf-8" Hi, when playing with the beamer export, I found a small error in the :tag of the org-beamer-themes customization option. Attached is a fix and a related slight improvement. Kind regards, Jan Emacs : GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.21.0) of 2010-05-28 on gunhead Package: Org-mode version 6.35i -------------- next part -------------- A non-text attachment was scrubbed... Name: org-beamer-defaults.diff Type: text/x-patch Size: 2233 bytes Desc: not available Url : http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20100529/03f559e4/org-beamer-defaults.bin ------------------------------ Message: 3 Date: Sat, 29 May 2010 22:22:23 +0200 From: Eraldo Helal Subject: [Orgmode] language independent personal word list To: Org-Mode Message-ID: <87eiguzce8.fsf@eraldo.org> Content-Type: text/plain; charset=us-ascii Problem: I would like to have a language independant personal word list for use with flyspell. Reason: So that emacs knows that my name is not an error (by way of example). Solution: ? I have tried to set "ispell-personal-dictionary", however since it uses aspell the file needs to have such a format: ".aspell.lang.pws" where "lang" is the language it is bound to. I tried to leave out the "lang" and use a wildcard "*" but neither worked. Help would be appreciated =] Greetings from Austria, Eraldo ------------------------------ Message: 4 Date: Sun, 30 May 2010 00:04:08 +0200 From: Eraldo Helal Subject: [Orgmode] insert a remember template at point To: Org-Mode Message-ID: <87d3wes6uf.fsf@eraldo.org> Content-Type: text/plain; charset=us-ascii How can I insert a remember template at point? Until now I had identical remember templates and yasnippets. This is only a workaround and I would prefer to be able to insert a remember template at point since I have found it to have features I could not reproduce. Greetings from Austria, Eraldo ------------------------------ Message: 5 Date: Sat, 29 May 2010 23:05:49 +0000 (UTC) From: Shelagh Manton Subject: [Orgmode] Re: insert a remember template at point To: emacs-orgmode@gnu.org Message-ID: Content-Type: text/plain; charset=UTF-8 On Sun, 30 May 2010 00:04:08 +0200, Eraldo Helal wrote: > How can I insert a remember template at point? > > Until now I had identical remember templates and yasnippets. This is > only a workaround and I would prefer to be able to insert a remember > template at point since I have found it to have features I could not > reproduce. I had this problem about a year ago. The trick is to insert a function that returns the strings you need. For example this is the function I used. (defun org-csa () ;this strange function only *returns* the desired ;text, not inserts to the buffer. " :PROPERTIES: :ORDERED: t :END: *** TODO [[ooo:\"CSA Template.ott\" &][fill out template form]] *** TODO [[shell:claws-mail pm@example.com.au &][submit for approval/ fixes]] *** TODO save to text *** TODO [[shell:claws-mail dr@example.com][send it to Darren]]") Then you make your remember template call this function. Like this: ("CSA" ?C "* TODO %^{topic} [/] %^g\n %t\n %(org-csa) \n %&" "~/.org/ CSA.org" bottom) Cheers Shelagh > Greetings from Austria, > Eraldo > > _______________________________________________ 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 ------------------------------ Message: 6 Date: Sat, 29 May 2010 23:12:28 +0000 (UTC) From: Shelagh Manton Subject: [Orgmode] Re: language independent personal word list To: emacs-orgmode@gnu.org Message-ID: Content-Type: text/plain; charset=UTF-8 On Sat, 29 May 2010 22:22:23 +0200, Eraldo Helal wrote: > Problem: > I would like to have a language independant personal word list for use > with flyspell. > > Reason: > So that emacs knows that my name is not an error (by way of example). > > Solution: > ? > > I have tried to set "ispell-personal-dictionary", however since it uses > aspell the file needs to have such a format: ".aspell.lang.pws" where > "lang" is the language it is bound to. I tried to leave out the "lang" > and use a wildcard "*" but neither worked. > > Help would be appreciated =] > > Greetings from Austria, > Eraldo > I don't know if it will help or not. You might like to explore speck.el which is another spell-check library which allows for buffer local or mode local dictionaries. It might be more flexible. Cheers Shelagh > _______________________________________________ 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 ------------------------------ Message: 7 Date: Sat, 29 May 2010 23:24:18 +0000 (UTC) From: Shelagh Manton Subject: [Orgmode] Re: insert a remember template at point To: emacs-orgmode@gnu.org Message-ID: Content-Type: text/plain; charset=UTF-8 On Sun, 30 May 2010 00:04:08 +0200, Eraldo Helal wrote: > How can I insert a remember template at point? > > Until now I had identical remember templates and yasnippets. This is > only a workaround and I would prefer to be able to insert a remember > template at point since I have found it to have features I could not > reproduce. > > Greetings from Austria, > Eraldo > Actually now ai read your post again more carefully, I think my last post is not really what you are after. Shelagh > _______________________________________________ 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 ------------------------------ Message: 8 Date: Sun, 30 May 2010 00:04:33 -0300 From: Daniel Martins Subject: [Orgmode] 2 Way Sync between Google Calendars and org-mode files To: "emacs-orgmode@gnu.org" Message-ID: Content-Type: text/plain; charset="iso-8859-1" Anyone out there has done a 2 Way Sync between Google Calendars and org-mode files? As I am using an Android mobile I feel this becomes an important issue. I am doing this by hand creating calendar with dates such as Organizer-29-5-2010 and whenever I update my org-files I create another calendar eg Organizer-30-5-2010, import the .ics from org-mode and delete Organizer-29-5-2010 I feel that this is not the smartest way of doing this and would like to know if someone has solved this problem including the Google Calendar to org-mode route. Daniel -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20100530/6f83cc58/attachment.html ------------------------------ Message: 9 Date: Sun, 30 May 2010 14:53:30 +0200 From: Michael Brand Subject: [Orgmode] export of emphasized link To: Org Mode Message-ID: <4C025FCA.7080503@alumni.ethz.ch> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Hi all, An org-mode line with an emphasized link like that one taken from current Worg: ---------------------------------------------------------------------- *Drop an email to [[mailto:bzg%20AT%20altern%20DOT%20org][Bastien]]* mentioning your username on repo.or.cz ---------------------------------------------------------------------- shows the bold face in the Emacs Org buffer like expected. But it does not convert the emphasis and still shows `*' when exported to some formats: - HTML: not converted - LaTeX: could not check because of a missing setup on my side, from the source code I guess that it converts - DocBook: not converted - ...: don't know about other formats and what they should support After removing org-bracket-link-regexp from org-html-expand and org-docbook-expand the HTML and DocBook exports _are_ converted and look similar to the highlighting in the Emacs Org buffer. But the doc string of both functions tell: "If there are links in the string, don't modify these." Why should links be modified in org-mode but not in HTML or DocBook? If there will be any change I would also like this: ---------------------------------------------------------------------- --- a/lisp/org.el +++ b/lisp/org.el @@ -3285,6 +3285,7 @@ example *bold*, _underlined_ and /italic/. This variable characters, the face to be used by font-lock for highlighting in Org-mode Emacs buffers, and the HTML tags to be used for this. For LaTeX export, see the variable `org-export-latex-emphasis-alist'. +For DocBook export, see the variable `org-export-docbook-emphasis-alist'. Use customize to modify this, or restart Emacs after changing it." :group 'org-appearance :set 'org-set-emph-re ---------------------------------------------------------------------- And: wouldn't it be nice for maintenance to have only one function for some sets of functions like - org-html-expand, org-docbook-expand and possibly more - org-html-do-expand, org-docbook-do-expand and possibly more - org-export-html-convert-emphasize, org-export-docbook-convert-emphasize and possibly more - org-export-html-convert-sub-super, org-export-docbook-convert-sub-super and possibly more - possibly more because they have almost all code in common. Michael ------------------------------ Message: 10 Date: Sun, 30 May 2010 17:18:23 +0200 From: Alexandre Billon Subject: [Orgmode] byte-code: Key sequence contains invalid event To: emacs-orgmode@gnu.org Message-ID: Content-Type: text/plain; charset="utf-8" Dear list members, I updated my org-mode files a month ago and since then, I get the following error message "byte-code: Key sequence contains invalid event " when I 1. Try to export files to other formats (LaTex and html) 2. Try to use org-remember 3. create a new .org file This makes 1 and 2 unsuccessful. Can anyone help? I am currently using org-mode 6-36c on Mac-OS X either with Acquamacs 2 or with Emacs 23.2. Best regards, Alexandre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20100530/ba7d7d5f/attachment.html ------------------------------ _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode End of Emacs-orgmode Digest, Vol 51, Issue 33 *********************************************