[Orgmode] Diary integration in .ics export ?

2007-02-10 Thread Bastien
Hi Carsten,

I use Org for project-related appointments, but i keep using my .diary
for at least three things: 

 1. "standalone" appointments 
 2. recurring appointments 
 3. alerts with (appt-activate)

For 1. and 2. it would be nice if appointments were part of the .ics
export.  For 3. it would require making scheduled events in org part
of the diary (org-insinuate-diary ?) so that the appt interface can
fetch and display them correctly -- but i'm skeptical on this one. 

Anyway, optionnal diary integration in the .ics export would really
come in handy.  Let me know if i can help on this.

-- 
Bastien


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Diary integration in .ics export ?

2007-02-10 Thread Pete Phillips
> "Bastien" == Bastien  <[EMAIL PROTECTED]> writes:
Bastien> Anyway, optionnal diary integration in the .ics export
Bastien> would really come in handy.  Let me know if i can help on
Bastien> this.

Yep - I agree. That would be a great option.
Pete



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] visible row boundaries in html table export

2007-02-10 Thread Scott Otterson
Here's a question, or maybe a feature request...  Is there a way to make 
table row boundaries show up in html exports?  For example, when I 
html-export a table like this:



  | col 1 | col 2 | col 3 |
  |---+---+---|
  | a | a | a |
  | a | a | a |
  |---+---+---|
  | b | b | b |
  | b | b | b |


I get a table like this:

   col 1col 2   col 3
   aa   a
   aa   a
   bb   b
   bb   b


In the html export, the boundaries between groups of rows has 
disappeared.  Is there a way to make the html export look more like 
what's displayed within org mode?  Ideally, there would be some kind of 
distinct line below the column header row, and also between the 'a' and 
'b' row groups.


Thanks,

Scott




___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] visible row boundaries in html table export

2007-02-10 Thread Carsten Dominik

What would the HTML code look like?

- Carsten

On Feb 10, 2007, at 18:32, Scott Otterson wrote:

 Here's a question, or maybe a feature request...  Is there a way to 
make table row boundaries show up in html exports?  For example, when 
I html-export a table like this:



    | col 1 | col 2 | col 3 |
    |---+---+---|
    | a | a | a |
    | a | a | a |
    |---+---+---|
    | b | b | b |
    | b | b | b |
  

I get a table like this:


col 1
col 2
col 3
a
a
a
a
a
a
b
b
b
b
b
b


 In the html export, the boundaries between groups of rows has 
disappeared.  Is there a way to make the html export look more like 
what's displayed within org mode?  Ideally, there would be some kind 
of distinct line below the column header row, and also between the 'a' 
and 'b' row groups.


 Thanks,

 Scott




 ___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode



--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Diary integration in .ics export ?

2007-02-10 Thread Carsten Dominik
org.el does not really contain any code that can be used for this.  All 
it does is using the calendar/diary functions to list the entries for 
specific days in the agenda.  To create an icalendar export of the 
diary, a separate parser for the diary is needed, and it could be run 
completely independent of org-mode.  Have you looked at icalendar.el 
which is part of Emacs?  From the documentation I would think that 
`icalendar-export-file' does this.  Of course we could make the 
org-mode exporting functions call this.  Seems like we would end up 
with two files rather than one.  I guess the files could be merged by 
stripping the header and footer in one and inserting it into another.


Bastien, if you want to write something doing this, please go ahead.  
For now it could simply link into `org-after-save-iCalendar-file-hook', 
but if necessary I will provide a better hook.


- Carsten

On Feb 10, 2007, at 6:23, Bastien wrote:


Hi Carsten,

I use Org for project-related appointments, but i keep using my .diary
for at least three things:

 1. "standalone" appointments
 2. recurring appointments
 3. alerts with (appt-activate)

For 1. and 2. it would be nice if appointments were part of the .ics
export.  For 3. it would require making scheduled events in org part
of the diary (org-insinuate-diary ?) so that the appt interface can
fetch and display them correctly -- but i'm skeptical on this one.

Anyway, optionnal diary integration in the .ics export would really
come in handy.  Let me know if i can help on this.

--
Bastien


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] A nice feature to suggest

2007-02-10 Thread Carsten Dominik

Why don't you "misuse" the ARCHIVE tag for this?  You could change the
name of the tag to LOCK or something?  Or maybe we could have a list of 
tags that causes this behavior.


Hmmm, I guess you still want these to contribute to sparse trees and 
the agenda ?


- Carsten

On Feb 10, 2007, at 5:05, Leo wrote:


Hello Carsten,

In org, if a subtree has a ARCHIVE tag, it will stay collapsed in
visibility cycling. I found this functionality useful in two cases:

  - When archive location is in the same file as .org file
  - A tree with REPEATing items.

Thus, I suggest if a heading of a subtree starts with '+', it will
behave similar to a ARCHIVE tag during visibility cycling. For
example, "** +Arhived Tasks...".

Comments?

Regards,
--
Leo  (GPG Key: 9283AA3F)



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Selected tags barely distinguishable in *Org tag* buffer in DARK background

2007-02-10 Thread Carsten Dominik
I am not sure what exactly the feature request in this case is.  Can 
you be more specific?


- Carsten

On Feb 10, 2007, at 4:52, Leo wrote:


Hello,

I found it difficult to distinguish bold and non-bold words with white
foreground in dark background Emacs. My eyes quickly get tired
setting tags for 10ish subtrees.

I think it would improve usability if we could use colors for such
things.

Regards,
--
Leo  (GPG Key: 9283AA3F)



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode