[Orgmode] Insert link to recently captured Note?

2010-10-13 Thread Nathan Neff
I'd like to ask the mailing list how they handle the following situation:

I'm clocked into FOO below, then spend about 20 minutes on something
that's somewhat
related to FOO, but is not really a direct sub-task of FOO, so I
probably want to refile it later.

So, I open org-capture and create some notes about * BAR, and file it away.

Now, I'm back in * FOO and want to quickly put a note about * BAR in
my FOO task.

So, ideally my structure would look like this:
-- some file 
* FOO
Got caught up with [[link to * BAR]]
-- notes.org 
* BAR
blew 30 minutes on this problem.
I might file this headline somewhere, but I want to be able to link from * FOO
to this new note


I've found variables like org-capture-bookmark-last-stored-position,
but I think that it
contains just the filename (like notes.org).  What I probably need is
a way to create an ID
for the newly captured heading, and then store a link to it on the
clipboard or something.

Does anyone else have a need for this, or do this in their everyday work?
I know there's ways to create a link from * BAR (the new note) to *
FOO (the origin/context)
but I want an easy way to insert a link to * FOO to * BAR.  Also, the
link needs to work no matter
where I file * BAR later on, so I presume that a unique ID needs to be
created for * BAR
when I capture it.

Thanks for any advice,
--Nate

___
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] Re: Insert link to recently captured Note?

2010-10-13 Thread Nathan Neff
On Wed, Oct 13, 2010 at 1:29 AM, Nathan Neff nathan.n...@gmail.com wrote:
 I'd like to ask the mailing list how they handle the following situation:

 I'm clocked into FOO below, then spend about 20 minutes on something
 that's somewhat
 related to FOO, but is not really a direct sub-task of FOO, so I
 probably want to refile it later.

 So, I open org-capture and create some notes about * BAR, and file it away.

 Now, I'm back in * FOO and want to quickly put a note about * BAR in
 my FOO task.

 So, ideally my structure would look like this:
 -- some file 
 * FOO
 Got caught up with [[link to * BAR]]
 -- notes.org 
 * BAR
 blew 30 minutes on this problem.
 I might file this headline somewhere, but I want to be able to link from * FOO
 to this new note


 I've found variables like org-capture-bookmark-last-stored-position,
 but I think that it
 contains just the filename (like notes.org).  What I probably need is
 a way to create an ID
 for the newly captured heading, and then store a link to it on the
 clipboard or something.

Okay, I found out how to do create a unique ID, by defining a template
like this:

org-capture-templates '((t Task entry (file ~/todo.txt)
 * foo\n :PROPERTIES:\n  ID:
%(shell-command-to-string \uuidgen\)  :END:)
)

Now, I just need a way to quickly insert a link to this newly created ID.

___
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: [Orgmode] Re: [PATCH] Compiling multiple times the LaTeX output

2010-10-13 Thread Olivier Schwander
Le 06 Oct 2010 21:39, Matthew Leifer a écrit:
 That is odd.  texi2dvi should default to using regular latex.  You usually
 have to pass a -p option or use the alias texi2pdf in order to use pdflatex.
  It might be that you have a LATEX environment variable set.  In any case,
 you can alter this behaviour by setting the LATEX environment variable, e.g.
 setting the variable LATEX=xelatex will make texi2dvi use xelatex instead of
 regular latex.

Instead of texi2pdf, I'm used to work with rubber, which is a powerful
tool to automate the compilation of latex files (taking care of bibtex,
xfig figures, and a lot more). It works seamlessly with org-mode by
customizing the variable org-latex-to-pdf-process to rubber -d --into
%o %f.

Cheers,

Olivier

___
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: [Orgmode] Re: [WIP] OpenOffice Exporter

2010-10-13 Thread Bernt Hansen
Tom Short tshort.rli...@gmail.com writes:

 On Tue, Oct 12, 2010 at 9:59 PM, Bernt Hansen be...@norang.ca wrote:
 I haven't managed to get embedded images into an OO or Word document
 satisfactorily using the org - HTML - MS Word route yet.  An exporter
 that handles this correctly would be great!

 Bernt,

 I've had decent luck with embedded images via the HTML route, mainly
 EPS files. See here:

 http://permalink.gmane.org/gmane.emacs.orgmode/29585

Thanks for the link.  I'm trying to embed ditta and graphviz graphics
files (mainly PNGs)

-Bernt



 What type of images are you having problems with? That said, I'm
 excited about Jambunathan's direct export option.

 - Tom

___
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: [Orgmode] Re: [Babel] Handling of errors when using Ledger

2010-10-13 Thread Eric S Fraga
On Tue, 12 Oct 2010 21:58:46 +0200, Sébastien Vauban 
wxhgmqzgw...@spammotel.com wrote:
 
 Hi Dan,
 
 Dan Davison wrote:
  Sébastien Vauban writes:
  [...]
  Let's imagine I thought (which was the case at some point) I needed to
  enclose the parameters between quotes:
 
  #+srcname: quoted-params
  #+begin_src ledger :cmdline reg unknown :noweb yes :session
  data
  #+end_src
 
  #+results: quoted-params
 
  Nothing is returned. In fact, I would expect an error to be thrown [...] I
  don't know if this is a common problem (to Org-Babel) or only to the Ledger
  part of it, but I think *we* should somehow improve the handling of errors.
 
  Babel has a standard mechanism for evaluating shell commands and displaying
  errors if any. It is the function `org-babel-eval' in ob-eval.el. The
  problem is that ob-ledger is not using this mechanism. Would you be
  interested in fixing this? Basically what is required is to re-implement
  `org-babel-execute:ledger' using `org-babel-eval'. (There are plenty of
  examples in the other langauges to follow.) Please don't worry if you are
  too busy though.
 
 I'd be interested to try and fix it. I am busy, yes: I am just recovering 3

[...]

 So, I'd propose to fight for being the first one to fix that... And let's see
 who will win... ;-)

Please do!!  As the original author (basing my code on other babel
codes, mind you), I am happy to lose this fight ;-)  I really don't
know enough babel to make the changes required quickly and I also am
struggling with free time at the moment.

-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
___
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: [Orgmode] Re: [WIP] OpenOffice Exporter

2010-10-13 Thread Tom Short
On Tue, Oct 12, 2010 at 9:59 PM, Bernt Hansen be...@norang.ca wrote:
 I haven't managed to get embedded images into an OO or Word document
 satisfactorily using the org - HTML - MS Word route yet.  An exporter
 that handles this correctly would be great!

Bernt,

I've had decent luck with embedded images via the HTML route, mainly
EPS files. See here:

http://permalink.gmane.org/gmane.emacs.orgmode/29585

What type of images are you having problems with? That said, I'm
excited about Jambunathan's direct export option.

- Tom

___
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] org-publish with latest changes?

2010-10-13 Thread Guy Wiener
Hello everyone,
I am using org-publish to publish some document on my web page. I would
really like to add to that some notification of the latest changes - E.g.,
an RSS of the recently changed headlines. Is there some way to hack that? I
can use diff and get the textual changes from the latest version, but I
think that some way to mark the headlines whose content has changed will be
better.

Any ideas?

Thanks,
  Guy Wiener
___
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: [Orgmode] Themes Compatible with color-theme.el

2010-10-13 Thread Ian Barton

Hi Eric,

There is a file in worg called org-color-themes.org, which contains your colour 
theme (railscast). However, it's not referenced by any of the other worg pages, 
so you couldn't find it if you didn't know it existed! There is a short bit on 
org-appearance.pgp about colour themes. I am adding the notes for all the 
colour themes to this page and am creating a new page to host the screen shots.

I want to put the screenshots on another page, so they don't slow down loading 
the org-appearance page. Also I want to display 200 pixel wide screen 
thumbnails and use the Lightbox javascript library to allow the user to see a 
full size popup. This involves quite a bit of fiddling about to get the page to 
look right and I don't want to mess up the appreance of org-appearance!

-- 
Best wishes,

Ian.

Eric Schulte schulte.e...@gmail.com writes:

 Ian Barton i...@manor-farm.org writes:

 Scott Jaderholm jaderh...@gmail.com writes:

 http://jaderholm.com/color-themes/color-theme-colorful-obsolescence.el
 http://jaderholm.com/color-themes/color-theme-active.el
 http://jaderholm.com/color-themes/color-theme-wombat.el

 Please link to don't copy so that as I make changes they'll get updated.

 Scott
  

 Scott,

 Thanks for the references to your other themes. I'll make sure that I
 link to them instead of copying them.

 Hi Ian,

 I've previously posted my color theme to the following.
 http://orgmode.org/worg/org-color-themes.php

 Is there another worg page with a collection of color themes?

 Best -- Eric


___
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] Re: [BUG] define just, preamble and postamble placement

2010-10-13 Thread Łukasz Stelmach
Nick Dokos nicholas.do...@hp.com writes:

 Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl wrote:


 |---+-|
 | Preamble|
 |---+-|
 |   | |
 | Content   | TOC |
 |   | |
 |---+-|
 | Postamble   |
 |---+-|
 
 I'd like to have a layout like the above one, with (pre|post)ambles of
 full width (or at least as wide a the content + TOC). With the present
 layout preamble and postamble are siblings to TOC and the text and I
 can't get the desired layout.
 
[...]
 If you are willing to write some CSS, I think it's quite possible to get
 the layout you want (but you may need to add e.g. ids to various
 elements in the HTML - I haven't looked at the HTML that org produces in
 any detail to see what it puts in and what it leaves out).  In
 particular, I don't think that the parent/sibling structure of the DOM
 tree limits you in any way as far as the layout goes: the div
 id=content just gives you a different containing block element; if it
 wasn't there, the body element would be the containing block element -
 but does that really make much difference? And if the preamble/postamble
 were outside the div, the tree structure would be different but so what?
 Minor adjustments in the CSS would take care of it, I should think.

 But as I said, I'm no expert and I may very well be mistaken.

But it looks you're right. It seems like it's easier to tweak the CSS
than the HTML structure, while still getting the same visual results. At
least as far as such simple layouts as Ordinaire[1] are concerned.


[1] http://www.freecsstemplates.org/preview/ordinaire/

-- 
Miłego dnia,
Łukasz Stelmach


___
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: [Orgmode] org-mobile-use-encryption

2010-10-13 Thread Carsten Dominik


On Oct 13, 2010, at 2:23 AM, Greg Troxel wrote:



I am trying to test encryption for MobileOrg via a beta from Richard.
(We're still playing the 'convince itunes to let you run code on your
own phone game', so this report is preliminary about what Org itself  
is

doing.)

I have in .emacs-local.el:

(setq org-mobile-use-encryption t)
(setq org-mobile-encryption-password mypasswd)

and I did org-mobile-push.  I found that there was an old agendas.org
that was not encrypted, and it seems that org-mobile-push omits
agendas.org if org-mobile-use-encryption is t, but still creates it  
when

nil.


I have not been able to reproduce this.



checksums.dat is in cleartext.  This seems ok, but could be a missed
opportunity for some integrity protection.


I have a technical reason to not encrypt it - so unless there is  
someone who really needs it encrypted, I want to keep it like this.



index.org is in cleartext.  The list of file names is of course in the
webdav area, and that seems not a big deal, but it also contains the
TODO keyword plan, priority tag list, etc.


This is a good observation.  And who knows what other information we  
will eventually put into that file.  So I am switching to encrypting  
this file as well.




I'm not sure this level of paranoia is warranted, but typical  
encrypting

filesystems also encrypt the filenames.  It probably suffices to just
warn the user that the filenames of org files will still be exposed in
the DAV area.


I have just put this information into the manual.

Thanks

- Carsten






___
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



___
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: [Orgmode] how difficultwould it be to support zotero in org?

2010-10-13 Thread Jean-Marie Gaillourdet
Hi, 

sorry to bring up this old thread, but there rather are rather new developments 
at Zotero which might interesting to people here. See below.


On 03.09.2010, at 22:12, Scot Becker wrote:

 Another Zotero + org user here.  Right now I do what Christian does: export 
 Zotero to slightly tweaked BibTeX, and insert with RefTeX's amazingly cool 
 reference-insertion interface (another genius piece of work by Carsten).  I 
 can think of two profitable ways to make inserting references from one's 
 Zotero database into org-mode notes better, and one further way that org-mode 
 could be more tightly linked with Zotero.
 
 1)  A utility (presumably part firefox plugin) which keeps a BibTeX file in 
 sync with one of Zotero's collections.  That way you don't have to do a full 
 manual export of your Zotero collection every time you add or change 
 something.  RefTeX provides the citation insertion interface.  Something 
 similar this to exists for LyX.  It doesn't sync a whole Z. collection, but 
 creates a .bib file with the items you actually cite in your document.  The 
 author (an Emacs user) even considered generalizing it for use without LyX 
 runing, i.e. for Emacs, but didn't find enough steam (after all, he uses 
 LyX).  (I also know that Mendeley can be made to auto-import from Zotero and 
 to auto-export to BibTeX, but Mendeley's BibTeX export is not flexible.)
 
Zotero.org announced a new desktop application which will use a public 
available read/write api to the Zotero service:

 With full read/write access to bibliographic data, attached files like PDFs, 
 and the citation formatting engine, developers will be able to integrate a 
 full
 range of Zotero features into their own web, mobile, and desktop applications,
 and users will be able to take advantage of this functionality at zotero.org. 
 

See http://www.zotero.org/blog/zoteros-next-big-step/ for more details.

This should make it possible to use an official api to implement the use case 
described above.

 2)  a org-mode-specific plain-text citation mechanism, analogous to BibTeX, 
 but useful for both LaTeX and non-LaTeX exports.  It would presumably have a 
 CSL backend, and work the way that citeproc-hs works for pandoc.  Presumably 
 it could also use a RefTeX-like interface for citation insertion.  
 
 3) Easier ways to take reading notes (in org) on items in the Zotero 
 database, with two way linking.  (Thanks already for the tips in this thread.)

Regards,
Jean
___
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: [Orgmode] org-mobile-use-encryption

2010-10-13 Thread Greg Troxel

Carsten Dominik carsten.domi...@gmail.com writes:

 On Oct 13, 2010, at 2:23 AM, Greg Troxel wrote:

 I am trying to test encryption for MobileOrg via a beta from Richard.
 (We're still playing the 'convince itunes to let you run code on your
 own phone game', so this report is preliminary about what Org itself
 is doing.)

I have successfully viewed my org files and retrieved a captured note
From the phone into emacs.

This note is about release_7.01h-672-g7e29685, so I have
your commit 9755e09bbcd630b6d0e20dbf6342bf1c1e66c819.

 I have in .emacs-local.el:

 (setq org-mobile-use-encryption t)
 (setq org-mobile-encryption-password mypasswd)

 and I did org-mobile-push.  I found that there was an old agendas.org
 that was not encrypted, and it seems that org-mobile-push omits
 agendas.org if org-mobile-use-encryption is t, but still creates it
 when
 nil.

 I have not been able to reproduce this.

Apparently when in encryption mode the copy of the encrypted version
agendas.org fails because it's trying to go to a file named by the tramp
syntax instead of interpreting it as remote:

Agenda written to Org file /home/gdt/orgtmpcrypt
/ssh:foo.example.com:/usr/home/gdt/ORG/agendas.org: No such file or directory
3148034372:error:02001002:system library:fopen:No such file or 
directory:/n0/gdt/NetBSD-5/src/crypto/dist/openssl/crypto/bio/bss_file.c:355:fopen('/ssh:foo.example.com:/usr/home/gdt/ORG/agendas.org','w')

I read the code and I don't follow how the invocation of copy-file is
different in the encrypted case.

 checksums.dat is in cleartext.  This seems ok, but could be a missed
 opportunity for some integrity protection.

 I have a technical reason to not encrypt it - so unless there is
 someone who really needs it encrypted, I want to keep it like this.

That seems fine - the filenames are staying cleartext.  My point, not
well made, was that encryption does not give you integrity protection.
It seems the concern motivating this work is confidentiality, but in
cryptography it's considered good practice to also provide integrity,
via HMAC-SHA1 or a combined confidentiality/integrity mode.  But for org
files on servers we believe are not messing with them, this is probably
in the 'best is the enemy of the good' category.  And if we want
integrity (I know, ENOPATCH), then it's probably best to do it outright,
so I withdraw my complaint about checksums.dat being in cleartext.

 I'm not sure this level of paranoia is warranted, but typical
 encrypting filesystems also encrypt the filenames.  It probably
 suffices to just warn the user that the filenames of org files will
 still be exposed in the DAV area.

 I have just put this information into the manual.

Thanks.

minor issues:

~/orgtmpcrypt seems to not always get cleaned up when I push/pull.
After a push, I found it to contain my index.org, unencrypted and 644 in
my homedir.  Probably this should go in org-directory instead which
presumably would be protected as the user wants.

During a pull that got a note, emacs asked me about visiting a buffer
whose file (orgcrypttmp) had changed contents.  I'll see if I can
reproduce that.


Thanks for working on org-mobile-crypt.


pgpYdG8M5mMCd.pgp
Description: PGP signature
___
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: [Orgmode] Themes Compatible with color-theme.el

2010-10-13 Thread Carsten Dominik


On Oct 13, 2010, at 12:08 PM, Ian Barton wrote:



Hi Eric,

There is a file in worg called org-color-themes.org, which contains  
your colour theme (railscast). However, it's not referenced by any  
of the other worg pages, so you couldn't find it if you didn't know  
it existed!


Hi Ian,

I take it that this is something you will fix?

Thanks.

- Carsten


There is a short bit on org-appearance.pgp about colour themes. I am  
adding the notes for all the colour themes to this page and am  
creating a new page to host the screen shots.


I want to put the screenshots on another page, so they don't slow  
down loading the org-appearance page. Also I want to display 200  
pixel wide screen thumbnails and use the Lightbox javascript library  
to allow the user to see a full size popup. This involves quite a  
bit of fiddling about to get the page to look right and I don't want  
to mess up the appreance of org-appearance!


--
Best wishes,

Ian.

Eric Schulte schulte.e...@gmail.com writes:


Ian Barton i...@manor-farm.org writes:


Scott Jaderholm jaderh...@gmail.com writes:


http://jaderholm.com/color-themes/color-theme-colorful-obsolescence.el
http://jaderholm.com/color-themes/color-theme-active.el
http://jaderholm.com/color-themes/color-theme-wombat.el

Please link to don't copy so that as I make changes they'll get  
updated.


Scott



Scott,

Thanks for the references to your other themes. I'll make sure  
that I

link to them instead of copying them.


Hi Ian,

I've previously posted my color theme to the following.
http://orgmode.org/worg/org-color-themes.php

Is there another worg page with a collection of color themes?

Best -- Eric



___
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



___
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: [Orgmode] Any other Aquamacs + org-mode users?

2010-10-13 Thread Robert Goldman
On 10/12/10 Oct 12 -10:50 PM, Nick Dokos wrote:
 Robert Goldman rpgold...@sift.info wrote:
 
 If so, are any of you having trouble with the faces in agenda buffers?

 I'm finding that I get all of the todo keywords in what looks like the
 warning face --- bright red.  It's a problem because it looks like the
 display is shouting at me about tasks that are DONE, not just ones that
 are still TODO.

 I don't see this problem in the ordinary org buffers.  In those buffers
 the todo keywords are colored differently -- e.g., red for TODO and
 green for DONE.

 I was wondering if this is a misconfiguration on my part (I don't
 /think/ I have customized any aspect of org-mode display), or if there's
 some bad interaction between aquamacs (I'm using 2.1) faces and
 org-mode, or if I've misconfigured aquamacs, so it doesn't handle the
 org-mode faces properly.

 Any suggestions would be very welcome.

 
 C-u C-x =
 
 is your friend: it'll tell you some details about the face. That in turn
 might provide a clue as to how it ended up this way.

Disappointingly, it doesn't.  When I drop the cursor onto a red DONE
and do this, I see what looks like a correct set of face attributes, but
the wrong face being selected.

  done-faceorg-agenda-done
  face org-todo
  todo-state   [Show]
  txt  DONE RSVP about party
  type scheduled
  undone-face  org-scheduled-today

So the faces seem to be configured right --- the done face is correctly
set (and is the correct muted green), as is the org-todo face.

The problem is that my DONE string is assigned the org-todo face and
not the org-agenda-done face.

So this is not a problem of the faces being set up wrong, but of their
being assigned to text incorrectly.

Anyone have any idea how I might fix that?  Or please let me know if I
have misdiagnosed this.

thanks!
r

___
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: [Orgmode] org-mobile-use-encryption

2010-10-13 Thread Andreas Röhler

Am 13.10.2010 10:59, schrieb Carsten Dominik:


On Oct 13, 2010, at 2:23 AM, Greg Troxel wrote:



I am trying to test encryption for MobileOrg via a beta from Richard.
(We're still playing the 'convince itunes to let you run code on your
own phone game', so this report is preliminary about what Org itself is
doing.)

I have in .emacs-local.el:

(setq org-mobile-use-encryption t)
(setq org-mobile-encryption-password mypasswd)

and I did org-mobile-push. I found that there was an old agendas.org
that was not encrypted, and it seems that org-mobile-push omits
agendas.org if org-mobile-use-encryption is t, but still creates it when
nil.


I have not been able to reproduce this.



checksums.dat is in cleartext. This seems ok, but could be a missed
opportunity for some integrity protection.


I have a technical reason to not encrypt it - so unless there is someone
who really needs it encrypted, I want to keep it like this.


index.org is in cleartext. The list of file names is of course in the
webdav area, and that seems not a big deal, but it also contains the
TODO keyword plan, priority tag list, etc.


This is a good observation. And who knows what other information we will
eventually put into that file. So I am switching to encrypting this file
as well.



Hi,

suggest to encrypt these kind of files by default. I.e. when org-mode 
starts action, user should be prompted for a password,

be warned and informed about encryption, get a choice though.

Maybe a non-encrypted test-mode may be added, so user may try it, but be 
warned not to store real data that way.



Andreas

--
https://code.launchpad.net/~a-roehler/python-mode/python-mode-components
https://code.launchpad.net/s-x-emacs-werkstatt/








I'm not sure this level of paranoia is warranted, but typical encrypting
filesystems also encrypt the filenames. It probably suffices to just
warn the user that the filenames of org files will still be exposed in
the DAV area.


I have just put this information into the manual.

Thanks

- Carsten






___
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



___
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




___
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] [Babel] Small problem with tangling

2010-10-13 Thread Sébastien Vauban
Hello,

I just tried this:

--8---cut here---start-8---
Creating the following =.reg= file:

#+begin_src sh :tangle org-protocol-setup.reg
REGEDIT4

[HKEY_CLASSES_ROOT\org-protocol]
@=URL:Org Protocol
URL Protocol=
[HKEY_CLASSES_ROOT\org-protocol\shell]
[HKEY_CLASSES_ROOT\org-protocol\shell\open]
[HKEY_CLASSES_ROOT\org-protocol\shell\open\command]
@=\C:\\Programme\\Emacs\\emacs\\bin\\emacsclientw.exe\ \%1\
#+end_src

and double-click it.
--8---cut here---end---8---

and tangled it.

But, when clicking on the reg file, it fails... saying it is not a valid reg
file.

I've found the reason to be an empty first line that's always inserted at the
beginning of the file. Removing it cures the problem.

What should I do to get rid of that first *empty* line?

Best regards,
  Seb

-- 
Sébastien Vauban


___
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: [Orgmode] Re: [WIP] OpenOffice Exporter

2010-10-13 Thread Karl Maihofer
For me it would be very helpful to be able to export footnotes to
OpenOffice format. This is something that doesn't work via HTML-export.
Do you plan to add support for footnotes?

___
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] Lisp error: (wrong-type-argument stringp nil)

2010-10-13 Thread Sébastien Vauban
Hello,

For some reasons, sometimes the agenda view works normally, sometimes not.
When not, I have the following error when moving (with arrow down) from line
to line:

#+begin_src emacs-lisp
Debugger entered--Lisp error: (wrong-type-argument stringp nil)
  set-buffer(nil)
  (if (markerp m) (set-buffer (marker-buffer m)))
  (save-excursion (if (markerp m) (set-buffer ...)) (save-excursion (goto-char 
...) (org-display-outline-path t)))
  (org-with-point-at m (org-display-outline-path t))
  (if (and m org-agenda-show-outline-path) (org-with-point-at m 
(org-display-outline-path t)))
  (let ((m ...)) (if (and org-agenda-follow-mode m) (org-agenda-show)) (if (and 
m org-agenda-show-outline-path) (org-with-point-at m ...)))
  org-agenda-do-context-action()
  org-agenda-next-line()
  call-interactively(org-agenda-next-line nil nil)
#+end_src

I don't understand the cause of this, moreover as I have the linked file open
in my Emacs.

Of course, since I've just reinstalled my Emacs, Org, and so on, on a new
Windows setup, I have many small differences with before.

Someone would have an idea for this?

Best regards,
  Seb

-- 
Sébastien Vauban


___
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: [Orgmode] Re: Need help publishing subdirectories

2010-10-13 Thread Jeff Horn
(We had a bit of discussion off list. I had a fresh crack at the
problem this morning, so I'm copying the list on this message.)

    (setq tmp-pub-dir
          (file-name-directory
           (concat pub-dir
                   (and (string-match (regexp-quote base-dir) ftname)
                        (substring ftname (match-end 0))

 ;;;
 ;;; add a debug call, reeavaluate the function, do the publish and when
 ;;; you are dumped into the debugger, say e project-plist RET and see
 ;;; what :table-of-contents is set to. If it's what it's supposed to be,
 ;;; continue execution with c and look at the html file, both contents
 ;;; and modification time. If it's still wrong in terms of contents but
 ;;; right in terms of modification time, there is something wrong with
 ;;; the publishing function: you might want to step through it with
 ;;; edebug, checking things along the way.

    (debug)

 ;;;^

I was stopping the debug process after pressing R project-plist RET.
I've finished stepping through the project with c and the
project-plist contains the right project at every step, with the right
settings, :table-of-contents nil and :section-numbers nil. The
file modification times are correct, but the content is wrong. There
are section numbers, a table of contents, and the file lacks my
defined linked style sheet.

Could you walk me through edebug? Simply replace (debug) above
with (edebug) didn't do the trick.

Thanks!
Jeff



-- 
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University

(704) 271-4797
jh...@gmu.edu
jrhorn...@gmail.com

___
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: [Orgmode] [Babel] Small problem with tangling

2010-10-13 Thread Eric Schulte
The following inhibits the insertion of blank lines on tangling.

  (setq org-babel-tangle-pad-newline nil)

Best -- Eric

Sébastien Vauban wxhgmqzgw...@spammotel.com writes:

 Hello,

 I just tried this:

 Creating the following =.reg= file:

 #+begin_src sh :tangle org-protocol-setup.reg
 REGEDIT4

 [HKEY_CLASSES_ROOT\org-protocol]
 @=URL:Org Protocol
 URL Protocol=
 [HKEY_CLASSES_ROOT\org-protocol\shell]
 [HKEY_CLASSES_ROOT\org-protocol\shell\open]
 [HKEY_CLASSES_ROOT\org-protocol\shell\open\command]
 @=\C:\\Programme\\Emacs\\emacs\\bin\\emacsclientw.exe\ \%1\
 #+end_src

 and double-click it.

 and tangled it.

 But, when clicking on the reg file, it fails... saying it is not a valid reg
 file.

 I've found the reason to be an empty first line that's always inserted at the
 beginning of the file. Removing it cures the problem.

 What should I do to get rid of that first *empty* line?

 Best regards,
   Seb

___
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: [Orgmode] Worg needs some reorganizing

2010-10-13 Thread Eric Schulte
Dan Davison davi...@stats.ox.ac.uk writes:

 Worg could do with some reorganization. It is not at all easy to find
 stuff in there (at least, using a web browser).

I agree there is certainly room for improvement here.  Maybe this sort
of re-organization should be considered along with the new CSS changes.

[...]

 This suggests to me firstly that we should do away with some of the hard
 directory structure and place most/all of the config/tutorial type files
 in a single directory.

The other option I'd see to eliminating directory structures would be
using something to reflect the directory structure in the title bar of
the page [1].  Just a thought.

Another option may be a navigation side bar reflecting the contents of
the current directory bringing the web experience closer to the local
git experience.

Best -- Eric

Footnotes: 
[1]  I'm thinking tabs, e.g. tutorials, contributed packages,
 etc...  See the following for an example of such a layout made
 using Jekyll http://epr.adaptive.cs.unm.edu/

___
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: [Orgmode] Worg needs some reorganizing

2010-10-13 Thread John Hendy
On Wed, Oct 13, 2010 at 9:51 AM, Dan Davison davi...@stats.ox.ac.uk wrote:

 Worg could do with some reorganization. It is not at all easy to find
 stuff in there (at least, using a web browser). I don't currently use
 Org to publish a website so I may be missing lots of tricks here, but I
 see two problems at least:


Great topic. I agree. This will be quite the overhaul! Perhaps we should
propose some type of organizing scheme? By level of usage (beg,
intermediate, adv?), by functional use (notes, todos, exporting, math,
babel?), etc.? Just some ideas. If one's going to reorganize, might as well
do it to the max!



 Secondly, does Org possess any technology that can be used to
 automatically generate a useful index for Worg? Or
 alternately/additionally a sitemap or other automated representation of
 the full file/directory structure (e.g. using org-fstree[1])?


That's a great idea as well. We should definitely find something that is
self-updating. I would think that really thinking through the structure of
Worg and integrating that into the directory structure of the git repo would
help with that?


 Dan

 Footnotes:

 [1] http://repo.or.cz/r/org-fstree.git

___
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] [BUG] OrgTbl exports raw ampersands in HTML

2010-10-13 Thread Ivan Vilata i Balaguer
(This is a rewrite of my previous post so it gets properly noticed as a
bug. ;) )

When generating HTML tables with ampersands in the text, OrgTbl outputs
raw ampersands () instead of escaped ampersands (amp;), which renders
the file invalid.  This bug does not affect normal HTML generation when
exporting standalone files.  I'm using Org version 7.01h.  I've attached
a sample HTML file with an OrgTbl table in it so you can check for
yourselves.  Thanks!
 message/external-body; name*=us-ascii''~%2ftmp%2fprova.html; access-type=local-file: Unrecognized 

-- 
Ivan Vilata i Balaguer -- http://ivan.lovesgazpacho.net/
___
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: [Orgmode] [BUG] OrgTbl exports raw ampersands in HTML

2010-10-13 Thread Nick Dokos
Ivan Vilata i Balaguer i...@selidor.net wrote:

 (This is a rewrite of my previous post so it gets properly noticed as a
 bug. ;) )
 
 When generating HTML tables with ampersands in the text, OrgTbl outputs
 raw ampersands () instead of escaped ampersands (amp;), which renders
 the file invalid.  This bug does not affect normal HTML generation when
 exporting standalone files.  I'm using Org version 7.01h.  I've attached
 a sample HTML file with an OrgTbl table in it so you can check for
 yourselves.  Thanks!
 

I confess I looked at your original report, was baffled by it, started
composing a reply but was distracted before sending it.

AFAIK, orgtbl-mode is a minor mode so that you can use org's table
generation facilities in other modes (e.g. text, or including a table
in a comment in a C/python/perl/foo source file, or in mail...)
In particular, it does not generate HTML. That is done by org's export
facilities. So either your description is inaccurate or my understanding
is flawed. Given the absence of responses, I suspect other people share
my bafflement.

It would help if you described the process you used exactly:

o I started with a file in foo major mode with these contents...

o I enabled orgtbl-mode and added a table like this...

o Then I did this-that-and-the-other to generate an HTML file which
  looks like this...

Thanks,
Nick


___
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] org-mobile agenda failure with encryption and tramp

2010-10-13 Thread Greg Troxel

I think the problem is that I have org-mobile-directory set to

  /ssh:foo.example.com:/usr/home/gdt/ORG

then in here the encryption tries to be done in place, which means (I
think) a tramp pathname is passed to openssl.

Probably agendas.org needs to be created in a staging area and then the
encrypted version moved with copy-file.



(defun org-mobile-create-sumo-agenda ()
  Create a file that contains all custom agenda views.
  (interactive)
  (let* ((file (expand-file-name agendas.org
 org-mobile-directory))
 (file1 (if org-mobile-use-encryption
org-mobile-encryption-tempfile
  file))
 (sumo (org-mobile-sumo-agenda-command))
 (org-agenda-custom-commands
  (list (append sumo (list (list file1)
 (org-mobile-creating-agendas t))
(unless (file-writable-p file1)
  (error Cannot write to file %s file1))
(when sumo
  (org-store-agenda-views))
(when org-mobile-use-encryption
  (org-mobile-encrypt-file file1 file)
  (delete-file file1



pgpGWPGzkY8Ai.pgp
Description: PGP signature
___
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] Re: [BUG] OrgTbl exports raw ampersands in HTML

2010-10-13 Thread Ivan Vilata i Balaguer
Nick Dokos (2010-10-13 18:37:11 +0200) wrote:

 AFAIK, orgtbl-mode is a minor mode so that you can use org's table
 generation facilities in other modes (e.g. text, or including a table
 in a comment in a C/python/perl/foo source file, or in mail...)
 In particular, it does not generate HTML. That is done by org's export
 facilities. So either your description is inaccurate or my understanding
 is flawed. Given the absence of responses, I suspect other people share
 my bafflement.

 It would help if you described the process you used exactly:

Of course, Nick.  First, I write an HTML file like the attached one,
which already has an OrgTbl table and the markers describing where it is
going to be output.  Then I enable orgtbl-mode, I place the cursor over
the table and press C-c C-c.  The table is output in HTML between the
markers.

The problem is that foobar in the original table gets exported as
foobar, when it should be exported as fooamp;bar to avoid spoling
the HTML code.

I hope it's clear enough this time. :)
 message/external-body; name*=us-ascii''~%2ftmp%2fprova.html; access-type=local-file: Unrecognized 

-- 
Ivan Vilata i Balaguer -- http://ivan.lovesgazpacho.net/
___
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: [Orgmode] Re: Need help publishing subdirectories

2010-10-13 Thread Jeff Horn
I moved :htmlized-source to the bottom of the project definition and
it fixed the problem.

In the examples I've seen, :htmlized-source has an empty value. I
hypothesize the key was seeing the next key as a value, and so wasn't
picking up any subsequent keys.

I just loaded my publishing setup from a few days ago and edited every
line that had :htmlized-source to :htmlized-source t and my
problem is solved.

Thanks so much for the help! Even if it didn't help discover the
problem, I learned a good bit about debugging, and I edited my first
source file, so that's something to be proud of! :-)

Jeff

On Wed, Oct 13, 2010 at 11:23 AM, Jeff Horn jrhorn...@gmail.com wrote:
 (We had a bit of discussion off list. I had a fresh crack at the
 problem this morning, so I'm copying the list on this message.)

    (setq tmp-pub-dir
          (file-name-directory
           (concat pub-dir
                   (and (string-match (regexp-quote base-dir) ftname)
                        (substring ftname (match-end 0))

 ;;;
 ;;; add a debug call, reeavaluate the function, do the publish and when
 ;;; you are dumped into the debugger, say e project-plist RET and see
 ;;; what :table-of-contents is set to. If it's what it's supposed to be,
 ;;; continue execution with c and look at the html file, both contents
 ;;; and modification time. If it's still wrong in terms of contents but
 ;;; right in terms of modification time, there is something wrong with
 ;;; the publishing function: you might want to step through it with
 ;;; edebug, checking things along the way.

    (debug)

 ;;;^

 I was stopping the debug process after pressing R project-plist RET.
 I've finished stepping through the project with c and the
 project-plist contains the right project at every step, with the right
 settings, :table-of-contents nil and :section-numbers nil. The
 file modification times are correct, but the content is wrong. There
 are section numbers, a table of contents, and the file lacks my
 defined linked style sheet.

 Could you walk me through edebug? Simply replace (debug) above
 with (edebug) didn't do the trick.

 Thanks!
 Jeff



 --
 Jeffrey Horn
 Graduate Lecturer and PhD Student in Economics
 George Mason University

 (704) 271-4797
 jh...@gmu.edu
 jrhorn...@gmail.com




-- 
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University

(704) 271-4797
jh...@gmu.edu
jrhorn...@gmail.com

___
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] Wanted: org-publish-org-to-ascii

2010-10-13 Thread Manuel Danzl
Hello all,
I'm a happy org-mode user since a few month's and I'm using org-publish
to write on some work related documentation. Now my collegues asked me
to export the docs not only to html but also to plain text!

Unfortunately, org-mode currently lacks a publishing function exporting
to ascii, so I kindly ask you to implement it.

I suggest, this may sound like an awkward request, but there certainly
are some uses for it. At least I would heavily use it! :)

TIA
Manuel

___
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] Auto clock-out? [7.01trans]

2010-10-13 Thread David Abrahams


When I mark an item DONE, Org clocks me out, fantastic!

When I switch an item from TODO to WAITING, it doesn't.  Is there a
way to get it to clock me out of an item when is switched to WAITING?


Thanks,

--
Dave Abrahams
BoostPro Computing
http://www.boostpro.com

 

___
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] org-7 under Xemacs

2010-10-13 Thread Uwe Brauer

Hello

I just tried to install the newest org-7.01 h under Xemacs
21.4.X Mule. 

-  First an observation: shouldn't the Makefile for
   xemacs be modified like this:

BATCH=$(EMACS) -batch -q -no-site-file -eval
\
  (setq load-path (cons (expand-file-name \./lisp/\) (cons(expand-file-name 
\./xemacs\) (cons \$(lispdir)\ load-path

in order that the noutline.el is included? It is not
mentioned in the README file but I recommend to mention it. 

The compilation did not finish successfully, message was
,
| !! File error ((Cannot open load file rx))
| Error occurred processing lisp/org-freemind.el: Cannot open load file: rx
| 
| Done
`


Do I understand correctly from the http://orgmode.org/Changes.html
that only Xemacs 21.5.X is suited for running org because of
this (and maybe similar problems)?

thanks

Uwe Brauer 


___
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: [Orgmode] Re: [BUG] OrgTbl exports raw ampersands in HTML

2010-10-13 Thread Nick Dokos
Ivan Vilata i Balaguer i...@selidor.net wrote:

 --=-=-=
 
 Nick Dokos (2010-10-13 18:37:11 +0200) wrote:
 
  AFAIK, orgtbl-mode is a minor mode so that you can use org's table
  generation facilities in other modes (e.g. text, or including a table
  in a comment in a C/python/perl/foo source file, or in mail...)
  In particular, it does not generate HTML. That is done by org's export
  facilities. So either your description is inaccurate or my understanding
  is flawed. Given the absence of responses, I suspect other people share
  my bafflement.
 
  It would help if you described the process you used exactly:
 
 Of course, Nick.  First, I write an HTML file like the attached one,
 which already has an OrgTbl table and the markers describing where it is
 going to be output.  Then I enable orgtbl-mode, I place the cursor over
 the table and press C-c C-c.  The table is output in HTML between the
 markers.
 
 The problem is that foobar in the original table gets exported as
 foobar, when it should be exported as fooamp;bar to avoid spoling
 the HTML code.
 
 I hope it's clear enough this time. :)
 

Yes, thanks. I'll try it out later. FWIW, my mail reader does not see an
attachment in your message: all I get is the following attachmen with an 
external
body. Not sure whose fault that is though: maybe mh-e gets hopelessly confused
with it. Can you post the HTML file inline?

Thanks,
Nick


 --=-=-=
 Content-Type: message/external-body; name*=us-ascii''~%2ftmp%2fprova.html;
  access-type=local-file
 
 Content-Type: text/html
 Content-ID: 87y6a2nfcg@rampella.terramar.selidor.net
 Content-Transfer-Encoding: binary
 
 
 
 --=-=-=
 
 
 -- 
 Ivan Vilata i Balaguer -- http://ivan.lovesgazpacho.net/
 
 --=-=-=
 Content-Type: text/plain; charset=us-ascii
 MIME-Version: 1.0
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline
 
 ___
 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
 
 --=-=-=--
 
 

___
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: [Orgmode] Wanted: org-publish-org-to-ascii

2010-10-13 Thread Juan Pechiar
On Wed, Oct 13, 2010 at 07:59:23PM +0200, Manuel Danzl wrote:
 I'm a happy org-mode user since a few month's and I'm using org-publish
 to write on some work related documentation. Now my collegues asked me
 to export the docs not only to html but also to plain text!

 Unfortunately, org-mode currently lacks a publishing function exporting
 to ascii, so I kindly ask you to implement it.

Copying from the definition for org-publish-org-to-html:

#+BEGIN_SRC: emacs-lisp

(defun org-publish-org-to-ascii (plist filename pub-dir)
  Publish an org file to ASCII.
See `org-publish-org-to' to the list of arguments.
  (org-publish-with-aux-preprocess-maybe
(org-publish-org-to ascii plist filename pub-dir)))

#+END_SRC

you can even use utf8 instead of ascii.

Then use the newly defined org-publish-org-to-ascii as the
:publishing-function in your publish project.

Not tested, you try it :-)

Regards,
.j.

___
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] org-mode and claws

2010-10-13 Thread Martin Butz

Hello to All,

I'm using org-mode since a couple of months. I would like to be able to
link to emails from within org-files and I am wondering whether this is
possible using claws-mail. I have googled a few hours but was only able
to solve the problem partly based on a solution integrating mutt [1].

As I do not know very much about lisp - besides extending my .emacs
with snippets I have collected over the time - my adaption is amateurish
and - which is worse - does not work as desired.

I added to my .emacs:

-8-
(defun open-mail-in-claws (message)
  Open a mail message in Claws.
Message can be specified either by a path pointing inside a
Maildir by Message-ID.
  (interactive Message-ID: )
  (shell-command
   (format claws-mail --select \%s%s\
 (substitute-in-file-name
$HOME/.claws-mail/imapcache/mail.sym.net/b...@sym.net/INBOX/)message)))

;; add support for claws:ID links
(org-add-link-type claws 'open-mail-in-claws)
-8-

The script has a major problem (besides some more or less grave
restrictions): calling the open-mail-in-claws function makes the buffer
from which I call the script unusable; probably because I do not call
claws in the background (or whatever).

Can anybody give a hint, how this could be done in a better way. Or has
anybody a working solution to open mails in claws-mail from within
org-mode?

Thanks and cheers
Martin

[1]
http://upsilon.cc/~zack/blog/posts/2010/02/integrating_Mutt_with_Org-mode/
--
~
sym.net  ||  butz  siefer gbr  ||  50670 koeln  ||  hansaring 78
phone +49(0)221/3762591 -  twitter.com/symnet  - mail b...@sym.net
~~ www.sym.net | www.moodalis.de 

___
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] Re: [BUG] OrgTbl exports raw ampersands in HTML

2010-10-13 Thread Ivan Vilata i Balaguer
Nick Dokos (2010-10-13 21:10:33 +0200) wrote:

 Yes, thanks. I'll try it out later. FWIW, my mail reader does not see
 an attachment in your message: all I get is the following attachmen
 with an external body. Not sure whose fault that is though: maybe mh-e
 gets hopelessly confused with it. Can you post the HTML file inline?

Argh, I made an external attachment, sorry.  Here you have the file:

8
html
  body
!-- [CDATA[
#+ORGTBL: SEND test orgtbl-to-html
| foobar |
]] --
!-- BEGIN RECEIVE ORGTBL test --
!-- END RECEIVE ORGTBL test --
  /body
/html
8

-- 
Ivan Vilata i Balaguer -- http://ivan.lovesgazpacho.net/


___
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] [PATCH] Don't use possibly-tramp paths with openssl.

2010-10-13 Thread Greg Troxel
In creating agendas, follow the way all other org files are handled by
encrypting locally and then using copy-file, so that remote agenda.org
paths with tramp will work.
---
 lisp/org-mobile.el |3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index 9208d30..26e990d 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -677,8 +677,7 @@ The table of checksums is written to the file 
mobile-checksums.
 (when sumo
   (org-store-agenda-views))
 (when org-mobile-use-encryption
-  (org-mobile-encrypt-file file1 file)
-  (delete-file file1
+  (org-mobile-encrypt-and-move file1 file
 
 (defun org-mobile-encrypt-and-move (infile outfile)
   Encrypt INFILE locally to INFILE_enc, then move it to OUTFILE.
-- 
1.7.0.5


___
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] Elementary: How to return to the main view

2010-10-13 Thread Umesh P N
Hi,

From the main view, if I click on a tag, org-mode will show only items with
that tag.  How to go back to the main view?

Is the information I see when I click on a tag a sparse tree?  If so, how to
return from a sparse tree to the main view?

Must be quite elementary, but I can't figure it out.

Thanks,


-- 
Umesh
___
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: [Orgmode] Elementary: How to return to the main view

2010-10-13 Thread Jeff Horn
+1. This was confusing to me as well. Does it open a new buffer? If
so, you could just switch back with C-x b RET.

But you bring up a good point. What should I see with a sparse tree?
If I do a sparse tree in a doc with TODO's scattered through out, and
the regex I choose is TODO, I was expecting everything else to be
folded away (fold region or what-not). Instead, the TODOs are merely
highlighted on my machine.

Maybe a clearer explanation/example in the documentation could help.
Or perhaps a tutorial on sparse trees on Worg?

Best,
Jeff

On Wed, Oct 13, 2010 at 9:11 PM, Umesh P N umesh.p.n...@gmail.com wrote:
 Hi,

 From the main view, if I click on a tag, org-mode will show only items with
 that tag.  How to go back to the main view?

 Is the information I see when I click on a tag a sparse tree?  If so, how to
 return from a sparse tree to the main view?

 Must be quite elementary, but I can't figure it out.

 Thanks,


 --
 Umesh

 ___
 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





-- 
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University

(704) 271-4797
jh...@gmu.edu
jrhorn...@gmail.com

___
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: [Orgmode] paralyzing bug: orgmode typeface gibberish

2010-10-13 Thread Jeff Horn
I surmise it's a font-lock or faces issue. But I don't know enough
about that sort of thing to help much...

Maybe examine the faces? Customize group org-faces. See if the font is
set to webdings, dingbats, or something similar.

Jeff

On Wed, Oct 13, 2010 at 7:59 PM, Michael Gilbert m...@gilbert.org wrote:
 Hi —

 My setup: Aquamacs 2.1 (Emacs 23), Orgmode 7.01h. This came about a few 
 minutes ago, after a routine reboot.

 When set to org-mode, my buffers now display some gibberish typeface that I 
 don't recognize (forgive the attachment):




 Same buffer, when flipped to text-mode:





 I am totally lost as to how to approach this. And, after a year of entwining 
 myself deeper and deeper into org-mode, I am dead in the water. Maybe I will 
 go take a walk. I understand there is an Outside World to visit.

 Anyway, any thoughts?

 — Michael




 ___
 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





-- 
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University

(704) 271-4797
jh...@gmu.edu
jrhorn...@gmail.com

___
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] Re: [WIP] OpenOffice Exporter

2010-10-13 Thread Jambunathan K

Hi Karl

Karl Maihofer ignora...@gmx.de writes:

 For me it would be very helpful to be able to export footnotes to
 OpenOffice format. This is something that doesn't work via HTML-export.
 Do you plan to add support for footnotes?

Yes, I will add support for footnotes.

In the first release, I hope to support the most common (if not all of)
Orgmode features *natively* in OpenOffice.

Jambunathan K.


 ___
 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

___
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] Re: org-7 under Xemacs

2010-10-13 Thread Ilya Shlyakhter
 | !! File error ((Cannot open load file rx))
 | Error occurred processing lisp/org-freemind.el: Cannot open load file: rx

xemacs does not include the 'rx' macro, unfortunately.

Carsten: maybe, you could ask xemacs maintainers to include 'rx'?
I'd like to use it in code as well.

ilya




___
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