Re: [Orgmode] A shorter manual

2010-05-01 Thread Carsten Dominik


On Apr 30, 2010, at 12:36 AM, Samuel Wales wrote:


Is there an HTML version?


http://orgmode.org/guide

- 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


[Orgmode] Org-mode compact Guide

2010-05-01 Thread Carsten Dominik

Dear all,

the final version of the new compact guide (down to 34 pages now)
to Org-mode is here:

http://orgmode.org/orgguide.pdf

http://orgmode.org/guide/

Do we need to advertise this document better?  Where?

Cheers

- 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


[Orgmode] Re: changing Gnus paths: 'News' and 'Mail'

2010-05-01 Thread Paul Mead
Eraldo Helal era...@eraldo.org writes:

 Greetings Orgmoders

 Problem description:
 
 I want to get rid of the 'News' and 'Mail' directories in my home and
 put them somewhere else instead:
 '~/News' = '~/mypath/News'
 '~/Mail' = '~/mypath/Mail'

 Question: Which variables do I have to change so that gnus won't have
 troubles with moving those directories?

 E.g.: If I change 'gnus-home-directory' from '~/' to '~/mypath/', will
 gnus-directory change to '~/mypath/News' or will it still be '~/News'?
 Making it necessary for me to change it as well. (and maybe others too?)
 

 Greetings from Austria,
 Eraldo

Hi Eraldo

I use gnus-home-directory set to ~/Dropbox and the News and Mail
directories were created relative to that path. I've just checked my
.emacs and .gnus files and there is nothing else there relating to the
home directory so it looks like that's all that's needed.

In fact if you check the info on that variable it says 'All other Gnus
file and directory variables are initialized from this variable.'



Paul


___
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] strange behavior for export

2010-05-01 Thread Carsten Dominik

Hi Eric,

I think this could mean two things.  Most likely org is loading
some other version of org-latex.el.  One way to find out is to run M-x  
list-load-path-shadows.


Another possibility is that you have somewhere a configuration setting  
of org-export-latex-classes that is old and does not contain the  
beamer class definition, and somehow that setting is loaded before org- 
latex.el is loaded.


HTH

- Carsten

On Apr 30, 2010, at 7:01 PM, Erik Butz wrote:


Hi all,

I have the following problem:

I have set up my emacs so as to use org-mode uncompiled from a local  
directory


# from .emacs
(setq load-path (cons ~/elisp/org-mode/lisp load-path))
(setq load-path (cons ~/elisp/org-mode/contrib/lisp load-path))


starting emacs22 or 23 and displaying M-x org-version I get:

Org-mode version 6.35trans (release_6.35g.207.g7f085)

so indeed the version from the local directory.

when I take a document with the following preamble:

#+LaTeX_CLASS: beamer
#+TITLE: present.org
#+AUTHOR:Erik
#+EMAIL: e...@eddie
#+DATE:  2010-04-08 Thu
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE:  en
#+OPTIONS:   H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t :t
#+OPTIONS:   TeX:t LaTeX:nil skip:nil d:nil todo:t pri:nil tags:not- 
in-toc

#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0
path:http://orgmode.org/org-info.js
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:
#+LINK_HOME:

and export this to latex I get the following:


\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{hyperref}


\title{present.org}
\author{Erik}
\date{2010-04-08 Thu}

\begin{document}

\maketitle

\setcounter{tocdepth}{3}
\tableofcontents


\end{document}

so despite the #+LaTeX_CLASS: beamer, the document gets exported as
'article'. Even worse, when I try to export the same document again
afterwards, I get a:
No definition for class `beamer' in `org-export-latex-classes'

error.

When I issue a 'reload-org-uncompiled' directly after starting emacs,
this behavior does not occur.

In this case I get, as expected:

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{soul}
\usepackage{t1enc}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{latexsym}
\usepackage{amssymb}
\usepackage{hyperref}
\tolerance=1000
\providecommand{\alert}[1]{\textbf{#1}}

\title{present.org}
\author{Erik}
\date{2010-04-08 Thu}

\begin{document}

\maketitle

\begin{frame}
\frametitle{Outline}
\setcounter{tocdepth}{3}
\tableofcontents
\end{frame}

\end{document}


any hints appreciated on how this behavior comes about.

Cheers,

Erik


___
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


- 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


Re: [Orgmode] org-crypt symmetric encryption patch

2010-05-01 Thread Carsten Dominik

Hi Rick,

do you need any special setup to et a symmetric cifer?

- Carsten

On Apr 30, 2010, at 1:03 PM, Rick Moynihan wrote:


I've patched org-crypt to use symmetric encryption.  If org-crypt-key
is nil a symmetric cipher is used.

The change seems to work locally for me.

R.
0001-Allow-symmetric-encryption-when-org-crypt-key-is- 
no.patch___

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


- 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


Re: [Orgmode] org-html link building diff

2010-05-01 Thread Carsten Dominik


On Apr 30, 2010, at 12:24 AM, Tom Breton (Tehom) wrote:


Hi Tom,

On Apr 28, 2010, at 5:01 AM, Tom Breton (Tehom) wrote:



The changes are essentially made and pass my tests now, there's  
mostly

housekeeping now: pull, merge, push.



Yes.  Send me your name on repo.or.cz and I'll add push for you.

Please create your own branch and stay on it.


It is Tehom.


I have added you.


Oops, when I went to push, I realized that I had capitalized that  
but it's

apparently not capitalized on repo.or.cz.  It's tehom.


OK, I changed that.



My branch is called tehom-master and the branch that treats link  
export

based on it is called html-export-refactor-build-link


Will check it out later next week.  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


Re: [Orgmode] Is the No comment syntax is defined problem fixed?

2010-05-01 Thread Carsten Dominik


On Apr 29, 2010, at 4:16 PM, Leo wrote:


Hello Carsten,

I remember occasionally org mode asked about No comment syntax is
defined; use: . Has this been fixed? I have found that whenever a
function calls comment-indent (directly or indirectly), this question
will be asked. To see it, in an org buffer, eval (comment-indent).


I have not fixed it - so it probably still is a problem.



Thanks.

Leo



___
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


- 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


Re: [Orgmode] strange behavior for export

2010-05-01 Thread Robert Klein

Eric,

where in your .emacs is the (require 'org-install) command?

In one of my setups I had it before the load-paths.

I didn't notice, because of an older version of org-mode
bundled with emacs; org-version reports the new version
but that is not what my emacs used in exporting.


Carsten,

is there a reason why the manual says I should do the 'make'
after it talks about load-path but before it tells me to put
(require 'org-install) into the .emacs-file?

I should know better, but I still managed to confuse one of
my .emacs-files when I started using org-mode.

Best regards
Robert





On Sat, 01 May 2010 13:57:17 +0200, Carsten Dominik  
carsten.domi...@gmail.com wrote:



Hi Eric,

I think this could mean two things.  Most likely org is loading
some other version of org-latex.el.  One way to find out is to run M-x  
list-load-path-shadows.


Another possibility is that you have somewhere a configuration setting  
of org-export-latex-classes that is old and does not contain the beamer  
class definition, and somehow that setting is loaded before org-latex.el  
is loaded.


HTH

- Carsten

On Apr 30, 2010, at 7:01 PM, Erik Butz wrote:


Hi all,

I have the following problem:

I have set up my emacs so as to use org-mode uncompiled from a local  
directory


# from .emacs
(setq load-path (cons ~/elisp/org-mode/lisp load-path))
(setq load-path (cons ~/elisp/org-mode/contrib/lisp load-path))


starting emacs22 or 23 and displaying M-x org-version I get:

Org-mode version 6.35trans (release_6.35g.207.g7f085)

so indeed the version from the local directory.

when I take a document with the following preamble:

#+LaTeX_CLASS: beamer
#+TITLE: present.org
#+AUTHOR:Erik
#+EMAIL: e...@eddie
#+DATE:  2010-04-08 Thu
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE:  en
#+OPTIONS:   H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t :t
#+OPTIONS:   TeX:t LaTeX:nil skip:nil d:nil todo:t pri:nil tags:not- 
in-toc

#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0
path:http://orgmode.org/org-info.js
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:
#+LINK_HOME:

and export this to latex I get the following:


\documentclass[11pt,a4paper]{article}


[ something deleted ]



\end{document}

so despite the #+LaTeX_CLASS: beamer, the document gets exported as
'article'. Even worse, when I try to export the same document again
afterwards, I get a:
No definition for class `beamer' in `org-export-latex-classes'

error.

When I issue a 'reload-org-uncompiled' directly after starting emacs,
this behavior does not occur.

In this case I get, as expected:

\documentclass{beamer}


[ something deleted ]


\end{document}


any hints appreciated on how this behavior comes about.

Cheers,

Erik


___
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


- 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


[Orgmode] nicely managing multiple calendars in the agenda

2010-05-01 Thread Eraldo Helal
I have switched to using org files as 'calendars'. (events.org, university.org, 
etc)
I am using the agenda to view them.

However I am still having some troubles with 2 things:
1. different colors for different calendars (e.g. entries from events.org in 
orange)
2. toggling the visibility of individual calendars

= 1
Would it be possible to use different faces for different files?
Or maybe even different faces for different categories?
, What I have:
|[blue ] Saturday1 May 2010
|[black]   events:  Adam's party
|[black]   events:  Magic show
|[black]   university:  10:15-12:00 Management test
`
, What I want:
|[blue  ] Saturday1 May 2010
|[orange]   events:  Adam's party
|[orange]   events:  Adam's party
|[purple]   university:  10:15-12:00 Management test
`

= 2
I do know that I can restrict the agenda to a single file,
but how can I toggle the visibility of a single file? (e.g. exclude one 
file)
Plus... Once I have toggled one file invisible...
I would need some kind of overview of which files(calendars) are hidden and 
which ones are still active.

One possible workaround would be using file-tags and filtering by them.
While I do like the idea, it still does not solve the issue of knowing
which files(calendars) are active and which ones are hidden at the moment.
Plus I would be even happier if we could find a solution without using tags.

A menu (just like the todo-kwd menu C-c t) would be ideal as an interface 
for toggling calendars
and getting an overview of the currently displayed ones.


___
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: Is the No comment syntax is defined problem fixed?

2010-05-01 Thread Leo
On 2010-05-01 13:03 +0100, Carsten Dominik wrote:
 I remember occasionally org mode asked about No comment syntax is
 defined; use: . Has this been fixed? I have found that whenever a
 function calls comment-indent (directly or indirectly), this question
 will be asked. To see it, in an org buffer, eval (comment-indent).

 I have not fixed it - so it probably still is a problem.

I will keep an eye on it. I haven't seen this issue for a long time. If
this happens again I will see if setting comment-start to #  helps.

Leo


___
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: Is the No comment syntax is defined problem fixed?

2010-05-01 Thread Carsten Dominik


On May 1, 2010, at 6:08 PM, Leo wrote:


On 2010-05-01 13:03 +0100, Carsten Dominik wrote:

I remember occasionally org mode asked about No comment syntax is
defined; use: . Has this been fixed? I have found that whenever a
function calls comment-indent (directly or indirectly), this  
question

will be asked. To see it, in an org buffer, eval (comment-indent).


I have not fixed it - so it probably still is a problem.


I will keep an eye on it. I haven't seen this issue for a long time.  
If

this happens again I will see if setting comment-start to #  helps.


That is known to cause problems in Org-mode:

http://thread.gmane.org/gmane.emacs.orgmode/5518/focus=6033



Leo


- 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


[Orgmode] Re: changing Gnus paths: 'News' and 'Mail'

2010-05-01 Thread Eraldo Helal
Paul Mead paul.d.m...@googlemail.com writes:
 I use gnus-home-directory set to ~/Dropbox and the News and Mail
 directories were created relative to that path. I've just checked my
 .emacs and .gnus files and there is nothing else there relating to the
 home directory so it looks like that's all that's needed.

 In fact if you check the info on that variable it says 'All other Gnus
 file and directory variables are initialized from this variable.'

You are right, setting 'gnus-home-directory' alone is sufficient
(theoretically).
However, that alone triggered recreation of Mail ind News directories in
my home.
The solution for me was to move .newsrc and .newsrc-dribble to
the new location as well.

Thank you Paul.
And additional thanks to Sebastian Rose, Nicholas Dokos and
Eric S Fraga for your ideas and suggestions.

Greetings from Austria,
Eraldo


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Infinite loop

2010-05-01 Thread w t
Org-mode 6.35trans from 2010-04-30
Emacs 23.1
Linux

Typing

|:=$0 RET

causes an apparent infinite loop, which can be killed with C-g.
___
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-mode compact Guide

2010-05-01 Thread Stefan Vollmar
Dear Carsten,

On 01.05.2010, at 08:49, Carsten Dominik wrote:

 Dear all,
 
 the final version of the new compact guide (down to 34 pages now)
 to Org-mode is here:
 
 http://orgmode.org/orgguide.pdf
 
 http://orgmode.org/guide/
 
 Do we need to advertise this document better?  Where?


I think it was a great idea of having a compact guide and I think the HTML 
version works very well indeed in terms of layout and structure - nice work!

I would suggest to have a link to the new compact guide just after 
Documentation on the left side on the top level of the Org-mode site, maybe 
even a short paragraph with a link at the very top of the Documentation section.
 
There is also some unused space in the top left corner of both the Org Manual 
and the new Compact Guide. I think it might be useful to have two icons there 
to navigate between the Manual and the Compact Guide, possibly also back to the 
Org-Mode site's top level - naturally, this should involve the Unicorg icon, 
or variations thereof.

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








smime.p7s
Description: S/MIME cryptographic 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: icalendar import in to Org mode

2010-05-01 Thread Eraldo Helal
Giles Chamberlin giles.chamberlin at tandberg.com writes:
 Living in a Microsoft Exchange world I get a lot of meeting requests
 from Exchange. iCalendar.el seems to be able to read these in to diary
 but I would far prefer to have them dropped in to my org files.
 
 Has anyone got this working?

That is exactly what I am looking for as well.
Unluckily my scripting skills are not good enough yet to transform a
diary file into org-mode format.

Please Giles keep me updated as soon as you find a solution.

Greetings from Austria,
Eraldo


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Is the No comment syntax is defined problem fixed?

2010-05-01 Thread Leo
On 2010-05-01 18:19 +0100, Carsten Dominik wrote:
 That is known to cause problems in Org-mode:

 http://thread.gmane.org/gmane.emacs.orgmode/5518/focus=6033

Org mode syntax table doesn't specify a comment end syntax which causes
the said problem. Could you try the attached patch and see if it works
for you too? I guess if it works then we have both issue fixed ;)

Best wishes,
Leo


diff --git a/lisp/org/org.el b/lisp/org/org.el
index f55cacc..25d5ea9 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -4209,6 +4209,7 @@ The following commands are available:
   ;; Calc embedded
   (org-set-local 'calc-embedded-open-mode # )
   (modify-syntax-entry ?# )
+  (modify-syntax-entry ?\n )
   (modify-syntax-entry ?@ w)
   (if org-startup-truncated (setq truncate-lines t))
   (org-set-local 'font-lock-unfontify-region-function
@@ -4237,7 +4238,7 @@ The following commands are available:
 'org-block-todo-from-checkboxes))
 
   ;; Comment characters
-;  (org-set-local 'comment-start #) ;; FIXME: this breaks wrapping
+  (org-set-local 'comment-start #)
   (org-set-local 'comment-padding  )
 
   ;; Align options lines


___
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] Gnuplot

2010-05-01 Thread John Hendy
Hi,


Perhaps some silly clarification. I read through the org-mode manual for
using gnuplot and have some unanswered questions:

### Setup ###
- I've installed gnuplot via ./configure, make, and make install
--- seems like it sent to /usr/local/share/emacs/site-lisp
--- most of the rest of emacs lives in /usr/share/emacs
--- Do I need to specifically add this path, or does emacs check both?

- I have the following in .elisp:
--- (autoload 'gnuplot-mode gnuplot gnuplot major mode t)
--- (autoload 'gnuplot-make-buffer gnuplot open a buffer in gnuplot mode
t)

- I've installed gnuplot-mode by putting the two .elc files generated in
.elisp/site-lisp, which is already in my load path

- org-plot is already present according to word (indeed when doing M-x
org-plot and then tab, I see four options

- I've downloaded org-plot.org from worg


### Issues ###
- When I start emacs and go to a #+Plot line and execute M-x
org-plot/gnuplot the first time, the minibuffer reads:
--- gnuplot-mode 0.6.0 (gnuplot 3.7) -- report bugs with M-x
gnuplot-bug-report
--- nothing else happens... what is supposed to happen?

- If I execute it (M-x org-plot/gnuplot) again anywhere in the file (same
table or another), the minibuffer reads:
--- searching for program: no such file or directory, gnuplot

- If I switch to the *gnuplot* buffer, I see this in the minibuffer:
--- (Comint: no process)

What am I missing?


Thanks!
John
___
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: [SOLVED] Gnuplot

2010-05-01 Thread John Hendy
Dumb, dumb, dumb.

org-plot or gnuplot-mode must have been configured to look in /usr/bin.
Though /usr/local/bin was in my path, it suddenly worked when I added a
symlink in /usr/bin. Uninstalling gnuplot, re-configuring with
--prefix=/usr, and reinstalling fixed everything.

John

On Sat, May 1, 2010 at 9:24 PM, John Hendy jw.he...@gmail.com wrote:

 Hi,


 Perhaps some silly clarification. I read through the org-mode manual for
 using gnuplot and have some unanswered questions:

 ### Setup ###
 - I've installed gnuplot via ./configure, make, and make install
 --- seems like it sent to /usr/local/share/emacs/site-lisp
 --- most of the rest of emacs lives in /usr/share/emacs
 --- Do I need to specifically add this path, or does emacs check both?

 - I have the following in .elisp:
 --- (autoload 'gnuplot-mode gnuplot gnuplot major mode t)
 --- (autoload 'gnuplot-make-buffer gnuplot open a buffer in gnuplot
 mode t)

 - I've installed gnuplot-mode by putting the two .elc files generated in
 .elisp/site-lisp, which is already in my load path

 - org-plot is already present according to word (indeed when doing M-x
 org-plot and then tab, I see four options

 - I've downloaded org-plot.org from worg


 ### Issues ###
 - When I start emacs and go to a #+Plot line and execute M-x
 org-plot/gnuplot the first time, the minibuffer reads:
 --- gnuplot-mode 0.6.0 (gnuplot 3.7) -- report bugs with M-x
 gnuplot-bug-report
 --- nothing else happens... what is supposed to happen?

 - If I execute it (M-x org-plot/gnuplot) again anywhere in the file (same
 table or another), the minibuffer reads:
 --- searching for program: no such file or directory, gnuplot

 - If I switch to the *gnuplot* buffer, I see this in the minibuffer:
 --- (Comint: no process)

 What am I missing?


 Thanks!
 John



___
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] Calendars Agenda mode

2010-05-01 Thread Doug Hellmann


On Apr 28, 2010, at 1:48 PM, David Frascone wrote:



 iCalendar exporting? importing?
Is anyone using this?  I've avoided agenda like stuff, since I have a
calendar that is very full of meetings, appointments, etc.  (In fact,
I have several, some at work, some on google calendars).  While I'd
love to add todo's with dates, using orgmode for my real calendar
seemed a bit much.  Does anyone else using calendars also use orgmode?
If so, do you sync, and in what direction.  (i.e. org-mode -
iCalendar, or move everything from other calendars - org-mode?)


I import my iCal data into org-mode using a stand-alone Python app I  
wrote for the purpose: http://www.doughellmann.com/projects/ical2org/


Doug



___
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: icalendar import in to Org mode

2010-05-01 Thread Doug Hellmann


On May 1, 2010, at 5:03 PM, Eraldo Helal wrote:


Giles Chamberlin giles.chamberlin at tandberg.com writes:

Living in a Microsoft Exchange world I get a lot of meeting requests
from Exchange. iCalendar.el seems to be able to read these in to  
diary

but I would far prefer to have them dropped in to my org files.

Has anyone got this working?


That is exactly what I am looking for as well.
Unluckily my scripting skills are not good enough yet to transform a
diary file into org-mode format.


My elisp skills weren't up to it, but I did write something in  
Python.  It works with iCal.app on the Mac, but could be adapted for  
any ICS input files.


http://www.doughellmann.com/projects/ical2org/

Doug



___
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] Please give org-todo-state-tags-triggers help

2010-05-01 Thread Lennart Borgman
I just can't understand the doc string. Could it be enhanced? Thanks.


___
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] Removing one filter of several

2010-05-01 Thread Thomas Morgan
Hello, Org mode hackers,

Having added several filters to an agenda view,
is there a way to remove just one of them?

Thanks,
Thomas



___
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-mode compact Guide

2010-05-01 Thread Sivaram Neelakantan
Stefan Vollmar voll...@nf.mpg.de writes:

 Dear Carsten,

 On 01.05.2010, at 08:49, Carsten Dominik wrote:

 Dear all,
 
 the final version of the new compact guide (down to 34 pages now) to
 Org-mode is here:
 
 http://orgmode.org/orgguide.pdf
 
 http://orgmode.org/guide/
 
 Do we need to advertise this document better?  Where?


 I think it was a great idea of having a compact guide and I think the
 HTML version works very well indeed in terms of layout and structure -
 nice work!


The last few lines of the Makefile could also be tweaked to announce
the compact guide;  I believe everyone has to run make to get org to
work? 

[snipped 12 lines]



 sivaram
 -- 



___
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] Make errors after latest git pull

2010-05-01 Thread Sivaram Neelakantan
Sunday morning when I do a git pull, I get these errors on Win32 Emacs
23.1 and running make within a cygwin shell.

$ make;make doc

c:/gnu/emacs-23.1/bin/emacs -batch -q -no-site-file -eval (setq load-path 
(cons (expand-file-name \./lisp/\) (cons \c:/gnu/share/emacs/site-lisp\ 
load-path))) -f batch-byte-compile lisp/org.el
Directory-local variables error: (wrong-type-argument listp !symlink\.)

till

c:/gnu/emacs-23.1/bin/emacs -batch -q -no-site-file -eval (setq load-path 
(cons (expand-file-name \./lisp/\) (cons \c:/gnu/share/emacs/site-lisp\ 
load-path))) -f batch-byte-compile lisp/org-xoxo.el
Directory-local variables error: (wrong-type-argument listp !symlink\.)
Wrote c:/gnu/elisp/org-mode/lisp/org-xoxo.elc


Is anyone else facing the same issue?

 sivaram
 -- 



___
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: Please give org-todo-state-tags-triggers help

2010-05-01 Thread Bernt Hansen
Lennart Borgman lennart.borg...@gmail.com writes:

 I just can't understand the doc string. Could it be enhanced? Thanks.

Here's an example:

http://doc.norang.ca/org-mode.html#sec-3_3

Regards,
Bernt


___
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: Org-mode compact Guide

2010-05-01 Thread Dan Davison
Sivaram Neelakantan nsivaram@gmail.com writes:

 Stefan Vollmar voll...@nf.mpg.de writes:

 Dear Carsten,

 On 01.05.2010, at 08:49, Carsten Dominik wrote:

 Dear all,
 
 the final version of the new compact guide (down to 34 pages now) to
 Org-mode is here:
 
 http://orgmode.org/orgguide.pdf
 
 http://orgmode.org/guide/
 
 Do we need to advertise this document better?  Where?


 I think it was a great idea of having a compact guide and I think the
 HTML version works very well indeed in terms of layout and structure -
 nice work!


 The last few lines of the Makefile could also be tweaked to announce
 the compact guide;  I believe everyone has to run make to get org to
 work? 

Hi Sivaram,

I point emacs at the uncompiled .el files and don't run make. That
should also work on Windows.

Dan


 [snipped 12 lines]



  sivaram
  -- 



 ___
 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