[Orgmode] Re: category link idea

2008-02-13 Thread cezar
Bernt Hansen <[EMAIL PROTECTED]> writes:

> cezar <[EMAIL PROTECTED]> writes:
>
>>   I was browsing my agenda buffer and I got hit by this idea: is it
>>   possible to have the categories linked ?
>>
>>   For example I have this MyRailsProject in my agenda buffer and
>>   clicking the MyRailsProject: part should open up dired pointed at
>>   ~/MyRailsProject which could be pretty handy, instead of firing up
>>   dired and browsing to that folder.
>
> Just add a [[file:~/MyRailsProject]] link to your MyRailsProject agenda
> task and then C-c C-o on the link to open the dired directory in another
> window.
>

What I meant was something more like :

#+CATEGORY: [[/home/me/projects/MyProject][MyProject]]

and that would make it a link but it behaves wrong, meaning that the
agenda view show something like:

MyProject:Scheduled:  TODO my task for the project

with the word MyProject underlined. (notice how it joins them together)

Regards,
Cezar



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


[Orgmode] Re: org-mew.el

2008-02-13 Thread Tim Stewart
Hello The List,

Bastien <[EMAIL PROTECTED]> writes:

> Here is org-mew.el: it lets you create links from and to Mew
> messages.  Mew is another mailer for Emacs, written by Kazu
> Yamamoto.

Very cool.  Too bad I don't use Mew.  :D

Is there any functionality like this that works with GNUS?  I could
really use the ability to link to GNUS messages.

Cheers,

-- 
-TimS

Tim Stewart
Lead UNIX Systems Administrator
Ciena Corporation
Alpharetta, GA, USA
[EMAIL PROTECTED]


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


Re: [Orgmode] Logging state change with timestamp, but without note

2008-02-13 Thread Bastien Guerry
Wanrong Lin <[EMAIL PROTECTED]> writes:

> I would like to record down the time stamp when a TODO item changed its
> state into some specific states (like "DELEGATED"), but I don't want to
> be prompt with a window for notes. 

I like the idea.

Here is a patch against latest org.el from git that implements something
that might suits your needs.

If you add "%!" to one of the heading in `org-log-note-headings' then
Org doesn't pop up a new buffer, the log is filled automatically.

(setq org-log-note-headings 
  '((done . "CLOSING NOTE %t") 
(state . "State %-12s %t%!") 
(clock-out . ""

Carsten, if you like it, I push it and update the manual accordingly.

diff --git a/org.el b/org.el
index d33d0ad..dd48e1d 100644
--- a/org.el
+++ b/org.el
@@ -14893,30 +14893,36 @@ The auto-repeater uses this.")
 (defun org-add-log-note (&optional purpose)
   "Pop up a window for taking a note, and add this note later at point."
   (remove-hook 'post-command-hook 'org-add-log-note)
-  (setq org-log-note-window-configuration (current-window-configuration))
-  (delete-other-windows)
-  (move-marker org-log-note-return-to (point))
-  (switch-to-buffer (marker-buffer org-log-note-marker))
-  (goto-char org-log-note-marker)
-  (org-switch-to-buffer-other-window "*Org Note*")
-  (erase-buffer)
-  (let ((org-inhibit-startup t)) (org-mode))
-  (insert (format "# Insert note for %s.
+  (catch 'exit 
+(when (string-match 
+	   "%!"	(cdr (assq org-log-note-purpose org-log-note-headings)))
+  ;; The note should be construed and filled silently
+  (org-store-log-note t)
+  (throw 'exit t))
+(setq org-log-note-window-configuration (current-window-configuration))
+(delete-other-windows)
+(move-marker org-log-note-return-to (point))
+(switch-to-buffer (marker-buffer org-log-note-marker))
+(goto-char org-log-note-marker)
+(org-switch-to-buffer-other-window "*Org Note*")
+(erase-buffer)
+(let ((org-inhibit-startup t)) (org-mode))
+(insert (format "# Insert note for %s.
 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
-		  (cond
-		   ((eq org-log-note-purpose 'clock-out) "stopped clock")
-		   ((eq org-log-note-purpose 'done)  "closed todo item")
-		   ((eq org-log-note-purpose 'state)
-		(format "state change to \"%s\"" org-log-note-state))
-		   (t (error "This should not happen")
-  (org-set-local 'org-finish-function 'org-store-log-note))
-
-(defun org-store-log-note ()
+		(cond
+		 ((eq org-log-note-purpose 'clock-out) "stopped clock")
+		 ((eq org-log-note-purpose 'done)  "closed todo item")
+		 ((eq org-log-note-purpose 'state)
+		  (format "state change to \"%s\"" org-log-note-state))
+		 (t (error "This should not happen")
+(org-set-local 'org-finish-function 'org-store-log-note)))
+
+(defun org-store-log-note (&optional auto-note)
   "Finish taking a log note, and insert it to where it belongs."
-  (let ((txt (buffer-string))
+  (let ((txt (if auto-note "" (buffer-string)))
 	(note (cdr (assq org-log-note-purpose org-log-note-headings)))
 	lines ind)
-(kill-buffer (current-buffer))
+(unless auto-note (kill-buffer (current-buffer)))
 (while (string-match "\\`#.*\n[ \t\n]*" txt)
   (setq txt (replace-match "" t t txt)))
 (if (string-match "\\s-+\\'" txt)
@@ -14933,7 +14939,8 @@ The auto-repeater uses this.")
 			   (current-time)))
 		   (cons "%s" (if org-log-note-state
   (concat "\"" org-log-note-state "\"")
-"")
+""))
+		   (cons "%!" ""
   (if lines (setq note (concat note " ")))
   (push note lines))
 (when (or current-prefix-arg org-note-abort) (setq lines nil))
@@ -14953,10 +14960,11 @@ The auto-repeater uses this.")
 	  (setq ind (concat (match-string 0) "  "))
 	  (end-of-line 1)
 	  (while lines (insert "\n" ind (pop lines)))
-  (set-window-configuration org-log-note-window-configuration)
-  (with-current-buffer (marker-buffer org-log-note-return-to)
-(goto-char org-log-note-return-to))
-  (move-marker org-log-note-return-to nil)
+  (unless auto-note
+(set-window-configuration org-log-note-window-configuration)
+(with-current-buffer (marker-buffer org-log-note-return-to)
+  (goto-char org-log-note-return-to))
+(move-marker org-log-note-return-to nil))
   (and org-log-post-message (message "%s" org-log-post-message)))
 
 ;; FIXME: what else would be useful?

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


[Orgmode] Logging state change with timestamp, but without note

2008-02-13 Thread Wanrong Lin

Hi,

I would like to record down the time stamp when a TODO item changed its
state into some specific states (like "DELEGATED"), but I don't want to
be prompt with a window for notes. I might be able to do that by putting
those states into the DONE state and adding (setq org-log-done t) into
the config, however, conceptually that is not correct (as DELEGATED is
not really DONE) and hence I am afraid it will cause some other side
effects. Is there a good way I can do so?

Thanks a lot for your help.

Wanrong



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


Re: [Orgmode] Use orgstruct-mode to edit TWiki Markup language ?

2008-02-13 Thread Bastien Guerry
Rainer Stengele <[EMAIL PROTECTED]> writes:

> ---+ Headline Level 1
>* text
>* text
> ---+ Headline Level 1
>i. text1
>i. text2
> ---++ Headline Level 2
> ---+++ Headline Level 3
> --- Headline Level 4
>
> I wonder if it would be possible to somehow locally set the regex which
> defines what a headline for org is.
> As old perl hacker I would say the regex it is something as simple as
> ^---[+]+\s

As a starting point, maybe check outline-mode and outline-minor-mode.

(setq outline-regexp "^---\++") will help. 

Then look in the menu for the show/hide commands in outline.  Thus you
will have basic folding capabilities.  But not all the Org fun, sure.

-- 
Bastien


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


[Orgmode] Re: category link idea

2008-02-13 Thread Bernt Hansen
cezar <[EMAIL PROTECTED]> writes:

>   I was browsing my agenda buffer and I got hit by this idea: is it
>   possible to have the categories linked ?
>
>   For example I have this MyRailsProject in my agenda buffer and
>   clicking the MyRailsProject: part should open up dired pointed at
>   ~/MyRailsProject which could be pretty handy, instead of firing up
>   dired and browsing to that folder.

Just add a [[file:~/MyRailsProject]] link to your MyRailsProject agenda
task and then C-c C-o on the link to open the dired directory in another
window.

HTH,
Bernt



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


[Orgmode] Re: Use orgstruct-mode to edit TWiki Markup language ?

2008-02-13 Thread Rainer Stengele

thanks.

thats ok when starting with an org file.

But having to continue to edit existing TWiki files that does not help 
and I would at least really like to use the outlining features of org.


rainer

Russell Adams schrieb:

I export org files into TWiki with the following Carten posted:

perl -ape 's/^\*+/"---" . "+" x length($&)/e' input.org > output.txt


On Wed, Feb 13, 2008 at 11:24:19PM +0100, Rainer Stengele wrote:

Hi all,

We (have to) use TWiki as a documentation tool in my company.
I already use Emacs erin-mode to edit the TWiki pages which is not bad.

What I am really mssing is something like the outline (folding) 
possibilities of org!


I know org provides the orgstruct-mode, but the problem is the different 
headline format of the TWiki markup language:


Example:

---+ Headline Level 1
   * text
   * text
---+ Headline Level 1
   i. text1
   i. text2
---++ Headline Level 2
---+++ Headline Level 3
--- Headline Level 4

I wonder if it would be possible to somehow locally set the regex which 
defines what a headline for org is.
As old perl hacker I would say the regex it is something as simple as 
^---[+]+\s


A configurable headline could serve in all similar cases where you find 
a regular formatted headline.



Of course I would be more than happy to have org produce TWiki markup 
language directly...



rainer



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



--
Russell Adams[EMAIL PROTECTED]

PGP Key ID: 0x1160DCB3   http://www.adamsinfoserv.com/

Fingerprint:1723 D8CA 4280 1EC9 557F  66E8 1154 E018 1160 DCB3


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





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


Re: [Orgmode] Use orgstruct-mode to edit TWiki Markup language ?

2008-02-13 Thread Russell Adams
I export org files into TWiki with the following Carten posted:

perl -ape 's/^\*+/"---" . "+" x length($&)/e' input.org > output.txt


On Wed, Feb 13, 2008 at 11:24:19PM +0100, Rainer Stengele wrote:
> Hi all,
> 
> We (have to) use TWiki as a documentation tool in my company.
> I already use Emacs erin-mode to edit the TWiki pages which is not bad.
> 
> What I am really mssing is something like the outline (folding) 
> possibilities of org!
> 
> I know org provides the orgstruct-mode, but the problem is the different 
> headline format of the TWiki markup language:
> 
> Example:
> 
> ---+ Headline Level 1
>* text
>* text
> ---+ Headline Level 1
>i. text1
>i. text2
> ---++ Headline Level 2
> ---+++ Headline Level 3
> --- Headline Level 4
> 
> I wonder if it would be possible to somehow locally set the regex which 
> defines what a headline for org is.
> As old perl hacker I would say the regex it is something as simple as 
> ^---[+]+\s
> 
> A configurable headline could serve in all similar cases where you find 
> a regular formatted headline.
> 
> 
> Of course I would be more than happy to have org produce TWiki markup 
> language directly...
> 
> 
> rainer
> 
> 
> 
> ___
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode


--
Russell Adams[EMAIL PROTECTED]

PGP Key ID: 0x1160DCB3   http://www.adamsinfoserv.com/

Fingerprint:1723 D8CA 4280 1EC9 557F  66E8 1154 E018 1160 DCB3


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


[Orgmode] category link idea

2008-02-13 Thread cezar

Hello,

  I was browsing my agenda buffer and I got hit by this idea: is it
  possible to have the categories linked ?

  For example I have this MyRailsProject in my agenda buffer and
  clicking the MyRailsProject: part should open up dired pointed at
  ~/MyRailsProject which could be pretty handy, instead of firing up
  dired and browsing to that folder.

  What do you guys think ?

Regards,
Cezar



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


[Orgmode] Re: org-mew.el

2008-02-13 Thread Tim Stewart
Bastien Guerry <[EMAIL PROTECTED]> writes:

> Tim Stewart <[EMAIL PROTECTED]> writes:
>
>> Is there any functionality like this that works with GNUS?  I could
>> really use the ability to link to GNUS messages.
>
> Well, this has been in Org for a long time! 

Great!

> Just try M-x org-store-link in a Gnus group or in a message, it will
> make a link to the message at point.  Check this:
>
> (info "(org)External links")

Oh man, thanks a lot.  I thought I'd been through all of the Org
manual by now, but I suppose I'm mistaken!

Cheers,

-- 
-TimS

Tim Stewart
Lead UNIX Systems Administrator
Ciena Corporation
Alpharetta, GA, USA
[EMAIL PROTECTED]



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


[Orgmode] Use orgstruct-mode to edit TWiki Markup language ?

2008-02-13 Thread Rainer Stengele

Hi all,

We (have to) use TWiki as a documentation tool in my company.
I already use Emacs erin-mode to edit the TWiki pages which is not bad.

What I am really mssing is something like the outline (folding) 
possibilities of org!


I know org provides the orgstruct-mode, but the problem is the different 
headline format of the TWiki markup language:


Example:

---+ Headline Level 1
   * text
   * text
---+ Headline Level 1
   i. text1
   i. text2
---++ Headline Level 2
---+++ Headline Level 3
--- Headline Level 4

I wonder if it would be possible to somehow locally set the regex which 
defines what a headline for org is.
As old perl hacker I would say the regex it is something as simple as 
^---[+]+\s


A configurable headline could serve in all similar cases where you find 
a regular formatted headline.



Of course I would be more than happy to have org produce TWiki markup 
language directly...



rainer



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


[Orgmode] Re: org-mew.el

2008-02-13 Thread Bastien Guerry
Tim Stewart <[EMAIL PROTECTED]> writes:

> Is there any functionality like this that works with GNUS?  I could
> really use the ability to link to GNUS messages.

Well, this has been in Org for a long time! 

Just try M-x org-store-link in a Gnus group or in a message, it will
make a link to the message at point.  Check this:

(info "(org)External links")

HTH

-- 
Bastien


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


[Orgmode] Re: org 2 openoffice impress converter

2008-02-13 Thread Fabian Braennstroem

Hi Bastien,

Bastien Guerry schrieb am 02/13/2008 08:53 PM:

Hi Fabian,

Fabian Braennstroem <[EMAIL PROTECTED]> writes:


Wouldn't it be great to create a presentation in emacs; at least the first
outlining? 


Sounds nice.


So, what do you think about an org 2 openoffice impress converter...?
The exporting process is probably pretty similar to the html-exporting
procedure!?


I think you might be interested in the S5 Slide Show system:

  http://meyerweb.com/eric/tools/s5/

  S5 is a slide show format based entirely on XHTML, CSS, and
  JavaScript. With one file, you can run a complete slide show and have
  a printer-friendly version as well. The markup used for the slides is
  very simple, highly semantic, and completely accessible. Anyone with
  even a smidgen of familiarity with HTML or XHTML can look at the
  markup and figure out how to adapt it to their particular
  needs. Anyone familiar with CSS can create their own slide show
  theme. It's totally simple, and it's totally standards-driven.

See the quite impressive demonstration here:

  http://meyerweb.com/eric/tools/s5/s5-intro.html


This is realy impressive...


I think it would be *much* easier to go that way, since the export
format will just be a subset of HTML.  Unless someone points to a very
simplistic example of ooimpress format, I'd rather not mix up with this.

Of course this rely on the yes-coming-soon! brand new exporter.  
I will work on it this WE, maybe something good will come from this.


Play with S5 and let me know if you'd find it useful to have a S5
exporter in Org.


I will take a closer look in the next days. The advantage of 
an impress/openoffice converter would be, as I see it right 
now, that you are able to adjust your drawings, tables an 
pictures like before in impress. If every slides looks the 
same, then you won't need impress anymore, but you might 
want to add on one slide some kind of symbol, enlarge the 
picture for better fitting and stuff like this. If you don't 
need to adjust anything anymore by an visual interface, than 
you could use the latex-beamer package as well (or prosper). 
And sometimes you just want to put several different sized 
images onto one slide, which are set on the final position 
much faster using an visual interface, than some kind of 
size-variable!?


Fabian



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


Re: [Orgmode] org 2 openoffice impress converter

2008-02-13 Thread Russell Adams
Funny thing is I wrote a shell script ages ago that turned emacs
outlines into an html presentation. ;]

I knew this would come up eventually.

I'm trying to make good use of the latex exporter, and I'll focus on
trying it there.

On Wed, Feb 13, 2008 at 08:53:29PM +, Bastien Guerry wrote:
> Hi Fabian,
> 
> Fabian Braennstroem <[EMAIL PROTECTED]> writes:
> 
> > Wouldn't it be great to create a presentation in emacs; at least the first
> > outlining? 
> 
> Sounds nice.
> 
> > So, what do you think about an org 2 openoffice impress converter...?
> > The exporting process is probably pretty similar to the html-exporting
> > procedure!?
> 
> I think you might be interested in the S5 Slide Show system:
> 
>   http://meyerweb.com/eric/tools/s5/
> 
>   S5 is a slide show format based entirely on XHTML, CSS, and
>   JavaScript. With one file, you can run a complete slide show and have
>   a printer-friendly version as well. The markup used for the slides is
>   very simple, highly semantic, and completely accessible. Anyone with
>   even a smidgen of familiarity with HTML or XHTML can look at the
>   markup and figure out how to adapt it to their particular
>   needs. Anyone familiar with CSS can create their own slide show
>   theme. It's totally simple, and it's totally standards-driven.
> 
> See the quite impressive demonstration here:
> 
>   http://meyerweb.com/eric/tools/s5/s5-intro.html
> 
> I think it would be *much* easier to go that way, since the export
> format will just be a subset of HTML.  Unless someone points to a very
> simplistic example of ooimpress format, I'd rather not mix up with this.
> 
> Of course this rely on the yes-coming-soon! brand new exporter.  
> I will work on it this WE, maybe something good will come from this.
> 
> Play with S5 and let me know if you'd find it useful to have a S5
> exporter in Org.
> 
> -- 
> Bastien
> 
> 
> ___
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode


--
Russell Adams[EMAIL PROTECTED]

PGP Key ID: 0x1160DCB3   http://www.adamsinfoserv.com/

Fingerprint:1723 D8CA 4280 1EC9 557F  66E8 1154 E018 1160 DCB3


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


Re: [Orgmode] org 2 openoffice impress converter

2008-02-13 Thread Bastien Guerry
Russell Adams <[EMAIL PROTECTED]> writes:

> Why not use the existing Latex export to make a PDF presentation?

Yes, that's another way.  Or maybe we could have a prosper exporter.
Again, the plan is to make the exporter modular so that people can write
extensions.

-- 
Bastien


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


Re: [Orgmode] org 2 openoffice impress converter

2008-02-13 Thread Bastien Guerry
Hi Fabian,

Fabian Braennstroem <[EMAIL PROTECTED]> writes:

> Wouldn't it be great to create a presentation in emacs; at least the first
> outlining? 

Sounds nice.

> So, what do you think about an org 2 openoffice impress converter...?
> The exporting process is probably pretty similar to the html-exporting
> procedure!?

I think you might be interested in the S5 Slide Show system:

  http://meyerweb.com/eric/tools/s5/

  S5 is a slide show format based entirely on XHTML, CSS, and
  JavaScript. With one file, you can run a complete slide show and have
  a printer-friendly version as well. The markup used for the slides is
  very simple, highly semantic, and completely accessible. Anyone with
  even a smidgen of familiarity with HTML or XHTML can look at the
  markup and figure out how to adapt it to their particular
  needs. Anyone familiar with CSS can create their own slide show
  theme. It's totally simple, and it's totally standards-driven.

See the quite impressive demonstration here:

  http://meyerweb.com/eric/tools/s5/s5-intro.html

I think it would be *much* easier to go that way, since the export
format will just be a subset of HTML.  Unless someone points to a very
simplistic example of ooimpress format, I'd rather not mix up with this.

Of course this rely on the yes-coming-soon! brand new exporter.  
I will work on it this WE, maybe something good will come from this.

Play with S5 and let me know if you'd find it useful to have a S5
exporter in Org.

-- 
Bastien


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


Re: [Orgmode] org 2 openoffice impress converter

2008-02-13 Thread Russell Adams
Why not use the existing Latex export to make a PDF presentation?

On Wed, Feb 13, 2008 at 09:42:51PM +, Fabian Braennstroem wrote:
> Hi,
> 
> 
> Wouldn't it be great to create a presentation in emacs; at 
> least the first outlining? Right now, when starting a new 
> presentation I write  my ideas and outline in orgmode, but 
> switch to impress pretty soon and have to write most of it 
> new; I am not able to transform the linked pictures or 
> transform table easy enough...
> 
> In org I could create some presentation.org file, where the 
> every top level entry defines the cover page of the impress 
> presentation. The second levels would belong to the tites of 
> the following slides. A first simple setup could be, to 
> devide the presentation slide into 5 zones (1 title and 4 
> equally sized boxes below the title); so the four third 
> levels handle these areas in impress, where you can place 
> lists, linked images,  equations, a table or some symbols, 
> etc.. E.g. two linked images in the same third level would 
> just place two images in that area . At the end you would 
> adjust your pages in impress with some more details...
> 
> So, what do you think about an org 2 openoffice impress 
> converter...? The exporting process is probably pretty 
> similar to the html-exporting procedure!?
> 
> Fabian
> 
> 
> 
> 
> ___
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode


--
Russell Adams[EMAIL PROTECTED]

PGP Key ID: 0x1160DCB3   http://www.adamsinfoserv.com/

Fingerprint:1723 D8CA 4280 1EC9 557F  66E8 1154 E018 1160 DCB3


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


[Orgmode] org 2 openoffice impress converter

2008-02-13 Thread Fabian Braennstroem

Hi,


Wouldn't it be great to create a presentation in emacs; at 
least the first outlining? Right now, when starting a new 
presentation I write  my ideas and outline in orgmode, but 
switch to impress pretty soon and have to write most of it 
new; I am not able to transform the linked pictures or 
transform table easy enough...


In org I could create some presentation.org file, where the 
every top level entry defines the cover page of the impress 
presentation. The second levels would belong to the tites of 
the following slides. A first simple setup could be, to 
devide the presentation slide into 5 zones (1 title and 4 
equally sized boxes below the title); so the four third 
levels handle these areas in impress, where you can place 
lists, linked images,  equations, a table or some symbols, 
etc.. E.g. two linked images in the same third level would 
just place two images in that area . At the end you would 
adjust your pages in impress with some more details...


So, what do you think about an org 2 openoffice impress 
converter...? The exporting process is probably pretty 
similar to the html-exporting procedure!?


Fabian




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


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Bastien
Wanrong Lin <[EMAIL PROTECTED]> writes:

> Also, I think probably the manual should be changed as it says "C-c C-c"
> does quick TODO selection.  The original text:

Fixed, thanks!

-- 
Bastien


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


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Wanrong Lin

Yes, this works for me now. Thanks a lot.
I though once I have those "(t)", "(s)" defined in the TODO keyword, I 
will have one-key access to the TODO keywords.


Also, I think probably the manual should be changed as it says "C-c C-c" 
does quick TODO selection.  The original text:


--

C-c C-c
   Use the fast tag interface to quickly and directly select a specific
   TODO state. For this you need to assign keys to TODO state, like this:

 #+SEQ_TODO: TODO(t) STARTED(s) WAITING(w) | DONE(d)



   See Per file keywords
   
   and Setting tags
   
   for more information.


Hugo Schmitt wrote:

Wanrong,
I have it configured like this:

(setq org-todo-keywords
  '((sequence
 "TODO(t)" "STARTED(s)" "WAITING(w)" "UNTESTED(u)" "|"
 "DONE(d)" "DEFERRED(f)" "CANCELLED(x)")))

(setq org-use-fast-todo-selection t)

then all it takes is C-c C-t and then a key (t,s,w)...

Cheers,
Hugo

On Feb 13, 2008 2:19 PM, Wanrong Lin <[EMAIL PROTECTED] 
> wrote:



> Did you try C-c C-t ?
>
> ,[ (info "(org)TODO basics") ]
> | The most important commands to work with TODO entries are:
> |
> | `C-c C-t'
> |  Rotate the TODO state of the current item among
> |
> |   ,-> (unmarked) -> TODO -> DONE --.
> |   ''
> |
> |  The same rotation can also be done "remotely" from the
timeline and
> |  agenda buffers with the `t' command key (*note Agenda
commands::).
> `
>
> Hope this helps,
>
>

C-c C-t is what I have been using, but recently I am a little bit
tired
of the cycling (especially when I have 7 TODO states), so I wish
to have
something that can let me select a TODO state directly, like C-c C-c
does for tags.

Wanrong



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






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


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Hugo Schmitt
Wanrong,
I have it configured like this:

(setq org-todo-keywords
  '((sequence
 "TODO(t)" "STARTED(s)" "WAITING(w)" "UNTESTED(u)" "|"
 "DONE(d)" "DEFERRED(f)" "CANCELLED(x)")))

(setq org-use-fast-todo-selection t)

then all it takes is C-c C-t and then a key (t,s,w)...

Cheers,
Hugo

On Feb 13, 2008 2:19 PM, Wanrong Lin <[EMAIL PROTECTED]> wrote:

>
> > Did you try C-c C-t ?
> >
> > ,[ (info "(org)TODO basics") ]
> > | The most important commands to work with TODO entries are:
> > |
> > | `C-c C-t'
> > |  Rotate the TODO state of the current item among
> > |
> > |   ,-> (unmarked) -> TODO -> DONE --.
> > |   ''
> > |
> > |  The same rotation can also be done "remotely" from the timeline
> and
> > |  agenda buffers with the `t' command key (*note Agenda
> commands::).
> > `
> >
> > Hope this helps,
> >
> >
>
> C-c C-t is what I have been using, but recently I am a little bit tired
> of the cycling (especially when I have 7 TODO states), so I wish to have
> something that can let me select a TODO state directly, like C-c C-c
> does for tags.
>
> Wanrong
>
>
>
> ___
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Bastien
Wanrong Lin <[EMAIL PROTECTED]> writes:

>> Did you try C-c C-t ?
>>
>> ,[ (info "(org)TODO basics") ]
>> | The most important commands to work with TODO entries are:
>> | | `C-c C-t'
>> |  Rotate the TODO state of the current item among
>> | |   ,-> (unmarked) -> TODO -> DONE --.
>> |   ''
>> | |  The same rotation can also be done "remotely" from the timeline
>> and
>> |  agenda buffers with the `t' command key (*note Agenda commands::).
>> `
>>
>> Hope this helps,
>>
>>   
>
> C-c C-t is what I have been using, but recently I am a little bit tired of
> the cycling (especially when I have 7 TODO states), so I wish to have
> something that can let me select a TODO state directly, like C-c C-c 
> does for tags.

Then you also want (setq org-use-fast-todo-selection t)

-- 
Bastien


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


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread William Henney
On Feb 13, 2008 11:19 AM, Wanrong Lin <[EMAIL PROTECTED]> wrote:
> C-c C-t is what I have been using, but recently I am a little bit tired
> of the cycling (especially when I have 7 TODO states), so I wish to have
> something that can let me select a TODO state directly, like C-c C-c
> does for tags.

C-u C-c C-t works for me

Also see sec 5.2.4 of manual "(org)Fast access to TODO states" for
other options.

Cheers

Will


-- 

  Dr William Henney, Centro de Radioastronomía y Astrofísica,
  Universidad Nacional Autónoma de México, Campus Morelia


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


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Wanrong Lin



Did you try C-c C-t ?

,[ (info "(org)TODO basics") ]
| The most important commands to work with TODO entries are:
| 
| `C-c C-t'

|  Rotate the TODO state of the current item among
| 
|   ,-> (unmarked) -> TODO -> DONE --.

|   ''
| 
|  The same rotation can also be done "remotely" from the timeline and

|  agenda buffers with the `t' command key (*note Agenda commands::).
`

Hope this helps,

  


C-c C-t is what I have been using, but recently I am a little bit tired 
of the cycling (especially when I have 7 TODO states), so I wish to have 
something that can let me select a TODO state directly, like C-c C-c 
does for tags.


Wanrong



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


Re: [Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Bastien
Wanrong Lin <[EMAIL PROTECTED]> writes:

> I am trying to get the quick TODO state switching work. I put the following
> line as in the online manual in my org file
>
> #+SEQ_TODO: TODO(t) STARTED(s) WAITING(w) | DONE(d)
>
> But when I press C-c C-c, I only see my tags in the selection
> window. The online manual does not elaborate on this much, so I wonder
> whether someone can help me out here.

Did you try C-c C-t ?

,[ (info "(org)TODO basics") ]
| The most important commands to work with TODO entries are:
| 
| `C-c C-t'
|  Rotate the TODO state of the current item among
| 
|   ,-> (unmarked) -> TODO -> DONE --.
|   ''
| 
|  The same rotation can also be done "remotely" from the timeline and
|  agenda buffers with the `t' command key (*note Agenda commands::).
`

Hope this helps,

-- 
Bastien


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


[Orgmode] Quickly Switch Between TODO States

2008-02-13 Thread Wanrong Lin

Hi,

I am trying to get the quick TODO state switching work. I put the 
following line as in the online manual in my org file


#+SEQ_TODO: TODO(t) STARTED(s) WAITING(w) | DONE(d)

But when I press C-c C-c, I only see my tags in the selection window. The 
online manual does not elaborate on this much, so I wonder whether someone can 
help me out here.

Thanks a lot!

Wanrong






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