[BUG] warning message for straight-use-package [9.6 (9.6-gb2adb6 @ /Users/stephen/.emacs.d/straight/build/org/)]

2022-12-30 Thread Stephen Eglen
Hi, I use straight.el for package management, and a recent package (I think it was todoist.el) pulled in org-mode. This then caused the warning about mismatch between the org-mode in Emacs and the one from the repo. I read the *Warning* and in particular this bit: --

Exporting diary-sexps into icalendar file

2022-10-23 Thread Stephen Eglen
0 X-WR-CALNAME:notes PRODID:-//Stephen Eglen//Emacs with Org mode//EN X-WR-TIMEZONE:BST X-WR-CALDESC: CALSCALE:GREGORIAN END:VCALENDAR -- I have org-icalendar-include-sexps set to t Any clues what could be going wrong? Stephen

Moving to a literate file for .emacs

2022-07-04 Thread Stephen Eglen
I see many users are switching to using a 'literate programming' approach to tangling their .emacs file from an org file. Has anyone solved the following problem though? If I have a file called config.org containing: * test #+begin_src emacs-lisp (defun quick-test () "interactive" (*

Re: Bug: specifying end time of date as +0:20 [9.4.4 (release_9.4.4 @ /usr/local/share/emacs/28.0.50/lisp/org/)]

2021-05-09 Thread Stephen Eglen
> I solved this part on maint branch. Thank you! > Sure. Patch welcome. diff --git a/doc/org-manual.org b/doc/org-manual.org index ab12fa70a..ea8901f28 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -6074,6 +6074,11 @@ separator in the latter case, e.g.: | =11am--1:15pm= | \rAr

Bug: specifying end time of date as +0:20 [9.4.4 (release_9.4.4 @ /usr/local/share/emacs/28.0.50/lisp/org/)]

2021-05-09 Thread Stephen Eglen
Hi, I'm trying to understand the syntax (e.g. ‘11am+2:15’) for specifying the end time of an event, from (info "(org)The date/time prompt") It works okay if I do org-deadline with 11am+2:15 * test 3 DEADLINE: <2021-05-09 Sun 11:00-13:15> but if I do 11pm+2:15 then it gets confused: * test 4 D

Re: Bug: exporting a subtree to icalendar omits body of subtree [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2021-02-21 Thread Stephen Eglen
> When exporting a subtree, the top-level outline becomes the title of the > document, i.e., the document becomes morally equivalent to: > > #+title: test > <2021-03-18 Thu 15:00-16:00> > body of text > > There is indeed no event to export in this case. Only level 2 outline > will bec

Bug: exporting a subtree to icalendar omits body of subtree [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2021-02-19 Thread Stephen Eglen
list. Hi, With a simple test file /tmp/o.ics: ** test <2021-03-18 Thu 15:00-16:00> body of text If I first do C-c C-e c f I get a correct .ics file: Version 1 BEGIN:VCALENDAR VERSION:2.0 X-WR-CALNAME:o PRODID:-//Stephen Eglen//Emacs with Org

[O] Is the ELPA repo for orgmode working?

2018-02-20 Thread Stephen Eglen
Hi, Following instructions on https://orgmode.org/elpa.html, when I list-packages, I see the following in *Messages* Importing package-keyring.gpg...done Opening TLS connection to ‘orgmode.org’... Opening TLS connection with ‘gnutls-cli --x509cafile /etc/ssl/certs/ca-certificates.crt -p 443 org

Re: [O] ical export issues

2016-11-16 Thread Stephen Eglen
> I use your approach but also use MobileOrg on Android as a channel to > connect org to Google. I essentially have my org calendar entries in > two different calendars on Google as a result. MobileOrg works well and > also "assimilates" any new entries put in directly into the Google > calendar

[O] ical export issues

2016-11-16 Thread Stephen Eglen
Hi everyone, I routinely export my diary entries to an ics file on the web so that google calendar can display them. This normally works well, although it is well known that the google calendar can take many hours before updating the calendar. Has anyone got any neater approaches for keeping the

Re: [O] Repeating timestamp with interval N times

2015-10-05 Thread Stephen Eglen
hi Rasmus, thanks! > In the past I used org-class, which might be what you refer to below. > Example: > > %%(org-class 2014 9 26 2014 12 15 3 'holidays) office hour 9:30-10:30 Thank you, I had not seen that. > > My understanding is that you would like to extend Org’s "datey" syntax to >

[O] Repeating timestamp with interval N times

2015-10-04 Thread Stephen Eglen
Hi, I'd like to write a timestamp like: ** Weekly office hour <2015-10-08 Thu 11:00-12:00 +1w> but instead of having it occur every week until the end of time(!), I'd like it repeated N (=8) here. I can't see how to do this easily, am I missing something? I could use `org-clone-subtree-w

[O] iswitchb is deprecated

2014-12-23 Thread Stephen Eglen
Since Emacs 24.4, iswitchb is marked as obsolete: -- This function is obsolete since 24.4; use `icomplete-mode' or `ido-mode' instead. -- Do people use `org-iswitchb' much? If so, it might be time to

Re: [O] Reading calendars in org mode: what is the best solution?

2013-12-20 Thread Stephen Eglen
On Thu, Dec 19 2013, Alan Schmitt wrote: > I would like to have a read-only version of my calendars in my org > agenda. These calendars (10 of them) currently live in Zimbra and > iCould, and I am accessing them both using the native Calendar > application on OS X and on my (Android) phone. > > I'

Re: [O] Handling Repeating events from google calendar / repeater interval

2013-07-30 Thread Stephen Eglen
> sorry the patch was incomplete. The correct one is on a branch I just > pushed named "tz-test". > > For me it works the same but maybe it works for you. Thanks Simon, but unfortuantely I'm still seeing [UTC]. Stephen

Re: [O] Handling Repeating events from google calendar / repeater interval

2013-07-23 Thread Stephen Eglen
> > Yes, org-mode does not recognize the [UTC], that is just a helper for > exactly this case: The ical's timezone is emitted in case it is > different from your DEFAULT_TZ. For me it worked fine so far. Thanks. >res = orgTimeSpan(tstart, tend, repeaterClause) > > for >res = orgTimeSpan

Re: [O] Handling Repeating events from google calendar / repeater interval

2013-07-09 Thread Stephen Eglen
> Correct me if I am wrong, but I'm afraid that pure AWK does not provide > date computation support. That's why I did not implement this. okay, it does sound like a lot to ask awk to do. > So I would definitely vote to extend the repeater syntax with a count. great. > I assume that your initial

Re: [O] Handling Repeating events from google calendar / repeater interval

2013-07-09 Thread Stephen Eglen
> It's not exactly answering your question but my little tool > > https://github.com/simonthum/ical2org Thanks, this is a nice workaround, it just worked well on my google calendar import. Should we add a link to this on http://orgmode.org/worg/org-tutorials/org-google-sync.html (how do I edit t

[O] Handling Repeating events from google calendar / repeater interval

2013-07-08 Thread Stephen Eglen
I'm experimenting using ical2org.sh to import google calendars. One limitation, as noted in the header is: # - does process RRULE recurring events, but ignores COUNT specifiers so if you have a repeating event in google (e.g. every day for four week), the ics file has: RRULE:FREQ=DAILY;COUNT=4

Re: [O] orgstruct-mode with custom headline prefix

2013-02-26 Thread Stephen Eglen
> Yes, you can send attachments to the list -- in general, please share > bugs publicly as much as possible, receiving private emails about bugs > is not encouraging for the maintainer (in this case Christopher) and > not useful for the other people on this list, as they cannot contribute > to deb

Re: [O] Symbol's value as variable is void: org-babel-temp-file

2013-02-26 Thread Stephen Eglen
>> git log | head -3 >> commit 3a0e559ad976eaf8e6e6d4b304209d310e282a7d >> Author: Bastien Guerry >> Date: Sun Feb 24 19:42:12 2013 +0100 >> > > FWIW, I'm on that commit and I don't see the problem. Thanks Nick; based on your comments and Achim's other replies, I nuked and reinstalled orgmode

Re: [O] orgstruct-mode with custom headline prefix

2013-02-26 Thread Stephen Eglen
> > No, it is not. Thanks Bastien for the explanation. I can now get support for orgstruct without setting outline-regexp, but in so doing I found an odd error. I've sent Christopher a minimal example, but didn't send it to the list as I wasn't sure about whether attachments could be sent to the

Re: [O] Symbol's value as variable is void: org-babel-temp-file

2013-02-24 Thread Stephen Eglen
On Sun, Feb 24 2013, Achim Gratz wrote: > Well, that doesn't make any sense: org-w3m doesn't contain the string in > question, much less a variable reference in current Org, neither on the > maint nor the master branch. You will want to be more forthcoming with > information what commit you're at

[O] Small docstring update

2013-02-18 Thread Stephen Eglen
Attached is a suggested rewording of the docstring for org-agenda-prefix-format. *** /tmp/ediff30654gin 2013-02-18 14:03:46.999849795 + --- /local/data/home/stephen/langs/emacs/elisp-ds/org-mode/lisp/org-agenda.el 2013-02-18 14:02:48.731846974 + *** *** 1562,1572 r

Re: [O] org-caldav: Sync Org with external calendars through CalDAV (Owncloud, Google, ...)

2012-12-05 Thread Stephen Eglen
Now that I've got org-caldav working (thanks David), here's a simple helper function so that the files specified in org-agenda-files are exported. I hope it works for others too! (defun org-caldav-set-files-from-org-agenda () "Set `org-caldav-files' from the files specified in 'org-agenda-file

Re: [O] org-caldav: Sync Org with external calendars through CalDAV (Owncloud, Google, ...)

2012-12-05 Thread Stephen Eglen
> > It's bug: > > http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00674.html > > Not sure if that fix is in 24.2, but surely the latest pretest for 24.3 > should work (which is pretty stable). Thanks David; indeed, its working fine now in the 24.2.90 pretest that was recently released.

Re: [O] org-caldav: Sync Org with external calendars through CalDAV (Owncloud, Google, ...)

2012-12-04 Thread Stephen Eglen
> I think it is a problem somewhere with my local setup; if I add the > following to .authinfo (chmod 600) then it uses the right username: > > Machine www.google.com login my-gmail-login > > I'm now about to see how to setup .authinfo.gpg so that I can also > include my password in that file. Hmm

Re: [O] org-caldav: Sync Org with external calendars through CalDAV (Owncloud, Google, ...)

2012-12-04 Thread Stephen Eglen
On Tue, Dec 04 2012, Suvayu Ali wrote: > Hi David, > > On Mon, Dec 03, 2012 at 08:50:35PM +0100, David Engster wrote: >> >> I'm at a loss why this happens, and I could not reproduce it with my >> account. This problem really has nothing to do with org-caldav, since it >> is delegating this part

Re: [O] org-caldav: Sync Org with external calendars through CalDAV (Owncloud, Google, ...)

2012-12-03 Thread Stephen Eglen
David Engster randomsample.de> writes: > > Bastien writes: > > David Engster randomsample.de> writes: > >> That is very strange. It should first > >> ask: "Username [for Google CalDAV]:". If it does not do that, maybe you > >> have that information in your .authinfo? > > > > I have this: > > >

[O] booktabs in orgtbl-mode

2012-06-22 Thread Stephen Eglen
Hi, I started using orgtbl-mode (which is great BTW) to prep my tables in a latex document. Can I get it to use booktabs line separators (such as \toprule) rather than \hline in the auto-generated latex when I hit C-c C-c on the table? Thanks, Stephen

Re: [O] MobileOrg for Android question about calendar integration

2012-06-05 Thread Stephen Eglen
> As long as that calendar is set to sync then it will pull them into the web > based Google Calendar service. The way that I made sure this would happen > is to create the calendar from the web interface and then make sure that is > synced to the phone... then go into the MobileOrg settings a sel

[O] MobileOrg for Android question about calendar integration

2012-06-05 Thread Stephen Eglen
Hi, I love the new MobileOrg Android app, especially the Calendar integration. A quick question: if I sync on the android app, I see new org agenda items in the phone's Calendar. Do those items sync back from my phone to appear also on the web at google.com/calendar? For now, my org-generated

[O] org-mobile-push: copying read-only files

2012-06-05 Thread Stephen Eglen
If I have an org mode file that is read-only (e.g. because I've checked it in to RCS) in my org-agenda, when I do M-x org-mobile-push (from my desktop machine to dropbox) the 2nd time I get a permission denied error from (org-mobile-copy-agenda-files) -- this is because there is already a read-onl

Re: [O] Difficulty of using Org mode

2012-06-05 Thread Stephen Eglen
>> >>> - Forwarded Message ----- >>>>From: Yihui Xie >>>>To: Stephen Eglen >>>>Cc: ess-h...@r-project.org >>>>Sent: Saturday, June 2, 2012 3:08 PM >>>>Subject: Re: [ESS] knitr >>>> >>>>There is no

[O] showing standard references (e.g. column B) in tables using C-c }

2012-06-05 Thread Stephen Eglen
When using C-c } in a table, the columns are labelled $1, $2, etc. How can I get them labelled as "A", "B" etc, as in the figure http://orgmode.org/worg/images/bzg/reference_visualization.jpg Thanks, Stephen

Re: [O] mail integration, advice?

2012-04-29 Thread Stephen Eglen
hi Neil > Are the directions at > http://www.djcbsoftware.nl/code/mu/mu4e/Gmail-configuration.html really > all it takes to get this running? If so, I'm definitely going to give it > a whirl. yes, check out that subsection for Gmail, or the earlier part of the manual for other configs. If you

Re: [O] mail integration, advice?

2012-04-27 Thread Stephen Eglen
A relatively new emacs mailer, mu4e, is worth mentioning: http://www.djcbsoftware.nl/code/mu/mu4e.html I really like it so far + it has support for org mode links. Stephen

Re: [O] small typo in docstring for org-icalendar.el

2012-04-04 Thread Stephen Eglen
oops, sorry Bastien, old (ediff) habits die hard! org-icalendar-timezone: doc string fix * lisp/org-icalendar.el (org-icalendar-timezone): Fix typo and clarify meaning. Small typo (of -> or); clarify meaning of how timezone is calculated if this variable is left as nil. TINYCHANGE diff --git a

[O] small typo in docstring for org-icalendar.el

2012-04-03 Thread Stephen Eglen
Typo and suggested change in docstring. *** /var/folders/ix/ixcktwmzGyyc6z4C5D4ypU+++TI/-Tmp-/ediff3069aCw 2012-04-03 22:31:26.0 +0100 --- /Users/stephen/langs/emacs/elisp-ds/org-mode/lisp/org-icalendar.el 2012-04-03 22:08:47.0 +0100 *** *** 194,200 (

Re: [O] A manuscript on "reproducible research" introducing org-mode

2012-02-16 Thread Stephen Eglen
Samuel Wales writes: > I applaud all of this. Raw data need to be made available by default > (with only a few exceptions). Org can help people reproduce all of > the succeeding steps also. Some people on the list might like to see the short (13 min) segment on Duke University's recent problem

Re: [O] Rsquared for reproductible research

2012-01-12 Thread Stephen Eglen
> The syntax is now stabilized (we wanted to get this sorted before the > final Emacs24 merge). That which is currently described in the manual > is and should remain the proper Org-mode code block syntax. Thanks Eric, this is great news. I'll ensure my examples from last year still work with t

Re: [O] Rsquared for reproductible research

2012-01-12 Thread Stephen Eglen
> I recognized your name, Stephen, as the long-time maintainer of the "Emacs > Lisp List"--thanks for that too.   > Are you envisioning a repository beyond "Emacs Lisp List" for OrgMode > implementations and/or Babel examples. I am interested in maintaining a collection of nice org-babel-R exampl

Re: [O] Bug: exporting ical files from read-only buffers [7.8.03 (release_7.8.03.112.g8861)]

2012-01-12 Thread Stephen Eglen
> Could this be done more generally? I think I've run into this for other > export targets as well, although it may be my memory that is faulty > here. I use RCS for version control for standalone files and often have > files read-only from which I want to export. I also use RCS, which is how I

[O] Bug: exporting ical files from read-only buffers [7.8.03 (release_7.8.03.112.g8861)]

2012-01-12 Thread Stephen Eglen
I've found a small bug with exporting ical files from read-only org buffers. Create a simple buffer, e.g.: * test1 <2012-01-12 Thu> and then hit C-x C-q to make the buffer read-only. Then do C-c C-e i to export an ical file. You get an error that the buffer is read-only. I think this is due

[O] Rsquared for reproductible research

2012-01-12 Thread Stephen Eglen
Following on from an old thread about self-configuring org files for reproducible research, R users might be interested to see the following web site which is exactly what I was thinking of for org mode (but of course, works "only" for R packages.) http://rsquared.stat.uni-muenchen.de/index.rhtm

Re: [O] Support for Bird-style Literate Haskell

2011-11-25 Thread Stephen Eglen
Jean-Marie Gaillourdet writes: > I'd be interested to use org syntax in the comments of a literate > haskell file. I know and use occasionally org-babel. Though, this > question is not about org-babel. I am merely interested in telling > org-mode to leave the code parts of a literate Haskell file

[O] Tutorial notes on ESS and org-babel-R

2011-08-18 Thread Stephen Eglen
I gave a 3 hour tutorial on Emacs Speaks Statistics on Monday; this included mostly Emacs and ESS, but also introduced org-mode for R users. If anyone is interested, the slides and material are available at: http://www.damtp.cam.ac.uk/user/sje30/ess11 Thanks to the org-mode team for your work! S

Re: [O] Pattch to org.texi: Document ":eval no"

2011-08-16 Thread Stephen Eglen
bf5fda Author: Eric Schulte Date: Thu Jul 28 17:00:13 2011 -0600 doc: flesh out description of ":eval" header argument Thanks to Stephen Eglen for this patch

Re: [O] How to add entry in the Agenda view

2011-08-02 Thread Stephen Eglen
Xin Shi writes: > I usually have a dedicated window (frame) for Org Agenda view. I found > it would be very convient to be able to add item directly from the > Agenda buffer, however, I don't see that command in the manual. (A > closer one is the refill, which moves the entry to another category)

[O] Problems with latex exporting in verbatim environment

2011-08-01 Thread Stephen Eglen
Consider the following short example (code taken from Eric S's foo.org file, which I'm working on): -- * Example 1 Using colon, the text is not reported verbatim. : were $\beta_2$ = src_R{round(out3$coef[3], 4)} : and $\beta_3$

Re: [O] cleaning all the #+results from an org document

2011-07-28 Thread Stephen Eglen
Thanks Torsten, you've expressed it elegantly! > > a) send it to someone without the results (to let him create his own) > b) archive them without having possible huge amount of lines of > results which can be reproduced any time by executing the block again. > c) to delete all the old results and

[O] Pattch to org.texi: Document ":eval no"

2011-07-28 Thread Stephen Eglen
Small patch attached, thanks Seb for pointing this out. Stephen diff --git a/doc/org.texi b/doc/org.texi index 3ecf897..eb45885 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -12990,10 +12990,10 @@ permissions of the tangled file are set to make it executable. @subsubsection @code{:eval} The

Re: [O] cleaning all the #+results from an org document

2011-07-28 Thread Stephen Eglen
> > If you don't want the results to be produced at all, you can always use > the babel header option[1] :results silent. Thanks Suvayu, I'm gradually learning about all the various ways output can be exported vs shown in the org buffer. Am I right in understanding that :results silent just affe

[O] updating drift.org on Worg

2011-07-28 Thread Stephen Eglen
I've had an attempt at updating drift.org on Worg (currently in Worg/FIXME) so that it compiles in today's org mode. Can some kind soul check if this patch works? I've put brief comments at the end as to what I've changed, and note also for some reason the strange rendering of p[1] <- X1/N

[O] cleaning all the #+results from an org document

2011-07-28 Thread Stephen Eglen
Is there an easy way to delete all the #+results: blocks that have been generated as the result of running org mode blocks? e.g. If I have the following chunk: #+begin_src R round(runif(n=5, min=0, max=1), 3) #+end_src #+results: | 0.435 | | 0.884 | | 0.219 | | 0.748 | | 0.532 | I'd like the r

Re: [O] Problems getting dropbox support on MobileOrg

2011-07-23 Thread Stephen Eglen
Thank you very much Max! This works great. Thanks for your help, and to Matt Jones for the app. Stephen > > see "Dropbox authentication". Should the "MobileOrg" folder > > have been created for me on my Dropbox site? (It looks like it is > > automatically created on the iphone app). Nothing

[O] Problems getting dropbox support on MobileOrg

2011-07-22 Thread Stephen Eglen
I have an android phone, and have installed MobileOrg; I'd like to use the dropbox support. I seem to have logged in okay via MobileOrg, as I see "Dropbox authentication". Should the "MobileOrg" folder have been created for me on my Dropbox site? (It looks like it is automatically created on th

Re: [O] Bug: Org-Babel Mode R Plot Output to LaTeX File [Babel] [7.5]

2011-07-16 Thread Stephen Eglen
> however they do not affect the generated latex code. Luckily Org-mode > does support passing information like image width to latex figures. See > my attached version of your test file which uses #+ATTR_LaTeX lines to > specify the width during LaTeX export. hi Eric, why is the default width 1

[O] patch for doc string typos in org-mobile.el

2011-06-28 Thread Stephen Eglen
--- org-mobile.el~ 2010-04-03 23:26:09.0 +0100 +++ org-mobile.el 2011-06-28 09:47:17.0 +0100 @@ -86,12 +86,12 @@ :type 'file) (defcustom org-mobile-force-id-on-agenda-items t - "Non-nil means make all agenda items carry and ID." + "Non-nil means make all agenda it

Re: [O] Status google calendar sync

2011-06-16 Thread Stephen Eglen
Eric S Fraga wrote: > Stephen Eglen writes: > > > Thank you very much Arun, this page looks great: > > > >> http://orgmode.org/worg/org-tutorials/org-google-sync.html> > > > > When going from org -> google, do I need to do anything about using >

Re: [O] Status google calendar sync

2011-06-10 Thread Stephen Eglen
Thank you very much Arun, this page looks great: > http://orgmode.org/worg/org-tutorials/org-google-sync.html> When going from org -> google, do I need to do anything about using org-icalendar-store-UID? I'd rather not have to populate my org files with :ID: entries. Stephen

Re: [O] Status google calendar sync

2011-06-10 Thread Stephen Eglen
Was there any update regarding this interesting topic? I'm keen to get something working - what is current best practice for getting .ics files made by org put onto google calendar, so that I can view them on android? Thanks, Stephen Konrad Hinsen writes: > On 14 Feb 2011, at 22:39, Marcelo

[O] Re: zotero (or mendeley) integration with org

2011-03-31 Thread Stephen Eglen
> Agreed. Google Scholar citations need very close proofreading, as they > can be erroneous or poorly formatted. Thanks Matt - I'd agree with this, having seen oddities from google scholar. I emailed them ages ago about one problem (formatting of initials in author names), but never heard back.

Re: [O] zotero (or mendeley) integration with org

2011-03-28 Thread Stephen Eglen
Dear all, Thanks for the informative replies. I gave zotero a short-test yesterday,and in general liked what I found, although as it uses sql databases, it is moves away from my preference for plain text files to see everything in. I appreciate that sql may scale better, but I don't have huge d

[O] zotero (or mendeley) integration with org

2011-03-26 Thread Stephen Eglen
There was a mail-thread lastyear about zotero and integration with org. Now that there is an alpha release of 'org-standalone' http://www.zotero.org/blog/2011/02/ has anyone looked at whether this helps integrate org and zotero? I've not yet switched to a pdf manager (they're all stuffed into

[O] Re: latex export issue

2011-03-11 Thread Stephen Eglen
Thanks Nicolas and Scot for your feedback. I think the fill approach will probably catch most issues. Stephen

[O] latex export issue

2011-03-09 Thread Stephen Eglen
: -- \title{Simple test} \author{Stephen Eglen} \date{09 March 2011} \maketitle \setcounter{tocdepth}{3} \tableofcontents \vspace*{1cm} here here here here here here here here here here here here here here \begin{enumerate

[Orgmode] Re: A mail client that is org-mode compatible

2011-02-16 Thread Stephen Eglen
> Hi every one, > I would like to move to an emacs mail client that may be org-mode and MIME > compatible. Have you any idea ? I switched to using MH-E (from VM) a couple of years ago. I did try GNUS but found it a bit too overwhelming. Overall, I'm happy with MH-E -- I like that it comes wih

[Orgmode] org-mhe-store-link alters window layout

2011-02-07 Thread Stephen Eglen
If I run M-x org-store-link when my current emacs frame is just showing one MH-E window (and nothing else in the frame), e.g. the "show-+inbox" buffer, then the link to that email is created okay, but the window frames are altered so that the +inbox summary window is also shown. In general, the pre

[Orgmode] Re: window rearrangements when exporting to pdf

2011-02-04 Thread Stephen Eglen
>> My guess would be that org-fit-window-to-buffer is doing this. > > It seems more likely that the call to delete-other-windows in > org-export is the cause of the problem. Can you try removing it > to see what happens. I presume it is there in case you have an > Org buffer and /many/ other sma

[Orgmode] window rearrangements when exporting to pdf

2011-02-04 Thread Stephen Eglen
I've found the following odd behaviour in windows being re-arranged within a frame. It is not bothering me too much (yet), but I thought I'd report it in case others see it. If I start emacs, and maximise it on my desktop machine, it is wide enough to allow two full windows side-by-side (i.e. lef

Re: [Orgmode] Re: Beamer and notes blocks

2010-11-28 Thread Stephen Eglen
> > into your .org file when you want the beamer notes added, and disable > > that line (e.g. put a space after the hash) when you don't want the > > notes included. > > > > Is there another way though? > > I am not sure. But maybe you could try to specify what a good > interfact for notes would

[Orgmode] Re: Beamer and notes blocks

2010-11-28 Thread Stephen Eglen
Jeff Horn writes: > Could someone enlighten me as to how to get blocks with the beamer > environment "notes" to show up? > > Specifically, I don't want notes to show up in the presentation (the > default, expected behavior), but I would like them to show up in a > speaker notes pdf. > > How are y

Re: [Orgmode] Inserting text into the part of an HTML document?

2010-11-19 Thread Stephen Eglen
> which does what I was after. I think this should be documented - so > I'll draft a patch. > no need - I see its already there, I just missed it before. (section 12.5.7 CSS support) Stephen ___ Emacs-orgmode mailing list Please use `Reply All' to sen

Re: [Orgmode] Inserting text into the part of an HTML document?

2010-11-19 Thread Stephen Eglen
Thanks Nick and Erik! I just tried #+STYLE: which does what I was after. I think this should be documented - so I'll draft a patch. Stephen ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org ht

[Orgmode] Inserting text into the part of an HTML document?

2010-11-18 Thread Stephen Eglen
I'm using org-mode to export an html file of my org file. I'd like to add the following line to the ... section of the document: #+HTML: [This line tells search indexes not to index the file. http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=93710 ] but the HTML directive

[Orgmode] Re: Meetup/conference

2010-11-05 Thread Stephen Eglen
Robert Goldman writes: > Since we're talking about meet-ups, I'd like to say it would be great to > see an informal org-mode meet-up attached to other conferences one might > attend. > > Not as an alternative to the Hawaii proposal, but as an "also." I will be presenting a tutorial on Emacs Spea

Re: [Orgmode] Tilde in URL not exported to latex

2010-10-21 Thread Stephen Eglen
chris.m.mal...@gmail.com wrote: > I recently experienced this issue while adding a reference in a beamer > presentation using org-mode. It isn't elegant, but my workaround was to use \ > sim instead of the tilde character, at least for what is actually displayed in > the document - you will still

[Orgmode] Tilde in URL not exported to latex

2010-10-20 Thread Stephen Eglen
With the following file (a.tex): * Intro This is an example file that I would like to export Note that the URL has a tilde in it. http://www.stat.uni-muenchen.de/~leisch/Sweave/FAQ.html --

[Orgmode] small typo in docstring of org-beamer.el (herder -> header)

2010-10-09 Thread Stephen Eglen
git diff lisp/org-beamer.el diff --git a/lisp/org-beamer.el b/lisp/org-beamer.el index 2631e70..49b3499 100644 --- a/lisp/org-beamer.el +++ b/lisp/org-beamer.el @@ -382,7 +382,7 @@ The need to be after the begin statement of the environment." (insert dovl))) (defun org-beamer

[Orgmode] Re: [babel] Writing R-packages the org way?

2010-10-08 Thread Stephen Eglen
Dan Davison writes: > Hi Chuck, > > I agree about making use of existing ESS tools and that a more > traditional Org approach might be appropriate. this may be slightly off-topic, but another way of adding documentation is to the 'roxygen' markup. http://roxygen.org/ ESS has some support f

[Orgmode] Tips for writing lecture notes in org-beamer?

2010-09-24 Thread Stephen Eglen
Dear all, Has anyone recently used org-beamer to write lecture notes? I'm now updating my lecture notes on a R course, which previously I wrote in latex with beamer. I'm intrigued by the possibility of using org mode directly, although I am yet to be convinced whether it will be any easier than

[Orgmode] Re: Adding entries to Google calendar

2010-09-09 Thread Stephen Eglen
> hi Matt, > Carsten accepted a patch of mine a while ago that allows you to do stuff > like the following from the agenda: > > "i d RET 09:00-09:30 meeting with Joe" > > and the time is extracted from the text you enter, if you set: > > (setq org-agenda-insert-d

[Orgmode] Re: Adding entries to Google calendar

2010-09-08 Thread Stephen Eglen
Matt Price writes: > - as I understand it this system will only work with entries that have > been added via "i" in a calendar-mode org agenda view.  When I try to > add items this way I am never prompted for a time, only a date.  Am I > missing something here? hi Matt, Carsten accepted a patch

[Orgmode] org.texi patch for small typo

2010-08-30 Thread Stephen Eglen
diff --git a/doc/org.texi b/doc/org.texi index 2e61ddf..4ce32ce 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -11176,10 +11176,10 @@ Include the code block in the tangled output to file @samp{filename}. @kindex C-c C-v t @subsubheading Functions @table @code -...@item org-babel-tangle @kbd{C

Re: [Orgmode] Bug: possible bug in latex export [7.01trans (release_6.36.735.g15ca.dirty)]

2010-07-27 Thread Stephen Eglen
> FYI: This is a know limitation of the LaTeX exporter[1] and the > current state of this issue (dealing with skipped levels) is that > patches for the problem are welcome. I agree that even if > skipped-level-headlines are not allowed, they shouldn't be silently > droped neither. > > Best, > -

Re: [Orgmode] Bug: possible bug in latex export [7.01trans (release_6.36.735.g15ca.dirty)]

2010-07-26 Thread Stephen Eglen
Thanks David, and apologies for not checking the archives. I'll put bugfixing it my todo list! Stephen ___ 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] Bug: possible bug in latex export [7.01trans (release_6.36.735.g15ca.dirty)]

2010-07-23 Thread Stephen Eglen
With the example file: -- * A *** B * C ** D -- If I hit "C-c C-e d" to convert this to PDF and view it, I see something like 1 A AA

Re: [Orgmode] patch for org mode

2010-07-09 Thread Stephen Eglen
hi Carsten, sorry for delay. > > +...@comment SJE: org-feed is not autoloaded - should that be mentioned? > > The main entry points in org-feed are autoloaded - what do you mean > here? sorry, no worries, I hadn't tried running the code, so the org-feed-alist was not visible as a variable. By

[Orgmode] Small doc fixes to org-feed.el and org-capture.el

2010-07-05 Thread Stephen Eglen
diff --git a/lisp/org-feed.el b/lisp/org-feed.el index cda7368..999bfd8 100644 --- a/lisp/org-feed.el +++ b/lisp/org-feed.el @@ -45,7 +45,7 @@ ;; With this setup, the command `M-x org-feed-update-all' will ;; collect new entries in the feed at the given URL and create ;; entries as subheadin

[Orgmode] patch for org mode

2010-07-05 Thread Stephen Eglen
Here is a patch for the 'capture' section of org.texi . I've added a few lines of @comments: +...@comment SJE: Should be Org file or Org-mode file (see prev two items)? +...@comment SJE: should these sentences terminate in period? (i.e. the following lines in the table) +...@comment SJE: org-fe

[Orgmode] Re: New to org-capture (and org-remember)

2010-07-02 Thread Stephen Eglen
Memnon Anon wrote: > Stephen Eglen writes: > > > I'd like to try out org-capture. > > > > I've never used org-remember before so I have no templates to convert. > > Do I make the new ones in pretty much the same way as the manual > > describes fo

[Orgmode] New to org-capture (and org-remember)

2010-07-01 Thread Stephen Eglen
I'd like to try out org-capture. I've never used org-remember before so I have no templates to convert. Do I make the new ones in pretty much the same way as the manual describes for org-remember? Or should I be patient, and wait for org-capture to stabilise? Thanks, Stephen _

Re: [Orgmode] contrib/README

2010-07-01 Thread Stephen Eglen
> Please that we no longer use ChangeLog, but that we place entries > with similar syntax into the commit message and then later > build ChangeLog from that. > > If you look at the final commit, you'll see what I mean. I see - neat idea about the ChangeLog. Can you still use 'C-x 4 a' from a bu

Re: [Orgmode] contrib/README

2010-07-01 Thread Stephen Eglen
Here is a patch for contrib/README. I've not included though any mention of the new babel folder in contrib. Stephen diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 44db137..af18a84 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,9 @@ +2010-07-01 Stephen

Re: [Orgmode] contrib/README

2010-07-01 Thread Stephen Eglen
Thanks Carsten; Carsten Dominik wrote: > This one was removed because its functionality is included in Org babel. > Files added and removed are usually listed in the list of user visible > changes. > I am not sure how to find it in git. I think I just found at least somethign (sorry, I'm new at

[Orgmode] contrib/README

2010-07-01 Thread Stephen Eglen
contrib/README seems out of date; in particular this file I was interested in seeing has gone: org-R.el --- Computation using the R language Questions: - how do I query git to find out where this file has gone? - who maintains README? Or should I check them all and send a patch

[Orgmode] Re: Google calendar to org mode script and a feature request for agenda

2010-06-29 Thread Stephen Eglen
> > does not get exported as a timed event. Obviously, the easy solution > is to put the time in the date stamp. However, I like using the > "insert diary" function in the agenda view for defining appointments > and this doesn't allow the time to be specified other than in a > headline. Would it

Re: [Orgmode] org-iswitchb documentation

2010-06-29 Thread Stephen Eglen
> THe doc string now reads: > > "Use `org-icompleting-read' to prompt for an Org buffer to switch to. > With a prefix argument, restrict available to files. > With two prefix arguments, restrict available buffers to agenda files. > > This will either use ido or iswitchb for buffer name completi

Re: [Orgmode] org-iswitchb documentation

2010-06-28 Thread Stephen Eglen
Carsten Dominik wrote: > Hi Stephen, > > I think this is actually a bug. Since the command is called ...- > iswitchb, > I am sure the intention was to use iswitchbe. Later, when we added ido > support as well, the function was rewritten using > org-icompleting-read, and in this way the iswitc

  1   2   >