Re: [O] TABLES: Remove/add cell

2011-11-24 Thread Daniel Martins
Great Michael!!!

One vote for being part of the core of org-mode!!! (with org-table
rtanspose as well)

Daniel

2011/11/23 Michael Brand michael.ch.br...@gmail.com:
 Hi Gustav and Daniel

 2011/9/30 Gustav Wikström gustav.e...@gmail.com:
 How do I add or remove a single cell in a table?
 Example:
 I have the following table:
 |        1 |        1 |
 |        2 |        3 |
 |        3 |        4 |
 |        4 |          |
 Now I want to add an empty cell in @2$2 (below the heading) and thus move
 the following cells in column 2 down one step.
 After:
 |        1 |        1 |
 |        2 |          |
 |        3 |        3 |
 |        4 |        4 |

 2011/9/30 Michael Brand michael.ch.br...@gmail.com:
 [...] transpose [...]
 and split it into two (or three) tables:

 | a | b | c | d |

 | 1 | 3 | 4 |   |

 (| e | f | g | h |)

 Then you can use the very convenient editing functions of Org table on
 the second part of the table,

 to move the empty field in front of 3

 | a | b | c | d |

 | 1 |  | 3 | 4 |

 | e | f | g | h |

 join the parts together

 | a | b | c | d |
 | 1 |   | 3 | 4 |
 | e | f | g | h |

 and transpose again.

 By coincidence just today I had the same need to move or rotate
 columns left/right, without affecting the other rows above and below.
 Because I need this repeatedly I wrote two in-row functions derived
 from org-table-move-column, without the need anymore of splitting and
 joining the table like above.

 It supports only the direction left/right. The direction up/down
 Gustav asked for would be harder to implement but as a workaround you
 can still transpose
 http://orgmode.org/worg/org-hacks.html#transpose-table
 and use the in-row left/right.

 from another thread:
 On Mon, Nov 21, 2011 at 14:31, Daniel Martins daniel...@gmail.com wrote:
 The feature of remove/add cell is quite important. Should be a feature
 request.

 If I understand right and only for left/right, the in-row functions
 cover that too:
 - remove: first blank the field with C-c Space
  (org-table-blank-field) and then rotate in-row left
 - add: rotate in-row right and replace the field content, before this
  step append new columns if required

 For more see
 Change the column sequence in one row only on Worg hacks:
 http://orgmode.org/worg/org-hacks.html#column-sequence-in-row

 Michael




[O] TABLES: aesthetics on columns

2011-11-23 Thread Daniel Martins
I have two questions on (possibly) improving aesthetics on columns
when editing org tables.

Following the thread on table editing, I have a minor issue with
editing org-mode for Latex generation (which I do most of the time!).
I have a table with several columns which are e.g. integer numbers and
the headings are single variables such as
a,b,c, M,k etc
it is OK but I want to include sometimes Greek terms and subscripts such as
\lambda or
$\delta_\kappa$
and the columns are not so nice to see and edit due to the different spacings


In Latex I could use \def

\def\ll{$\lambda$}
\def\dk{$\delta_\kappa$}


and the use \ll and \dk on the headings is quite nice (despite the
generally horrendous aspect of Latex tables when compared with the
clean, neat, simple and effective counterpart in org-mode).

So I have the first question:

1) Can I do the same in org-mode i.e. a previous (and possibly local)
definition or long variable befopre putting them in a table?


The other (maybe superfluous) question is

2) Can I locally define a table as completely in math mode?

So I could type e.g.


A)
|---+---+---+---|
|   | M | l | k |
|---+---+---+---|
| M | - |   |   |
| l |   | - |   |
| k |   |   | - |
|---+---+---+---|

Instead of

B)
|-+-+-+-|
|     | $M$ | $l$ | $k$ |
|-+-+-+-|
| $M$ | -   |     |     |
| $l$ |     | -   |     |
| $k$ |     |     | -   |
|-+-+-+-|

and when I export a table like A) to Latex I have the aspect of B) instead?


Daniel

2011/11/22 Michael Brand michael.ch.br...@gmail.com

 Hi Daniel

 On Tue, Nov 22, 2011 at 15:26, Daniel Martins daniel...@gmail.com wrote:
  Thank you very much!!!
  Just one point
  In my case at least M-down does not insert a new line!
                      ^

 Yes, my fault. Corrigendum:

 1) M-S-down to add the new row
 2) mark the region from t down to any char from the field below
 3) M-Ret

 Michael



Re: [O] TABLES: aesthetics on columns

2011-11-23 Thread Daniel Martins
Worked perfectly.

Question 2 is a (minor) pity.

Thank you very much.

Daniel

2011/11/23 Suvayu Ali fatkasuvayu+li...@gmail.com:
 #+LATEX_HEADER: \def\ll{$\lambda$}



Re: [O] TABLES: split cells on columns

2011-11-22 Thread Daniel Martins
Thank you very much!!!

Just one point

In my case at least M-down does not insert a new line!


From the comment of the key sequence:



--


  org-metadown is an interactive compiled Lisp function in `org.el'.

(org-metadown optional ARG)

Move subtree down or move table row down.
Calls `org-move-subtree-down' or `org-table-move-row' or
`org-move-item-down', depending on context.  See the individual
commands for more information.

[back] [forward]


2011/11/21 Michael Brand michael.ch.br...@gmail.com

 Hi Daniel

 Yes, there is:
 1) M-down to add the new line
 2) mark the region from t down to any char from the field below
 3) M-Ret

 The opposite direction is:
 - C-u M-Ret to join the content of a field to the one above

 See also C-h f org-table-wrap-region for more tricks.

 Michael

 On Mon, Nov 21, 2011 at 14:31, Daniel Martins daniel...@gmail.com wrote:
  The feature of remove/add cell is quite important. Should be a feature
  request.
  Another important feature request is to split cells.
  Example (copying and paste the example above)
 
  Example:
  I have the following table:
  |1 |1 |
  |2 | two words|
  |3 |4 |
  |4 |  |
  Now I want to split cell  @2$2 and thus move the second part to the
  following cell below  in column 2 down one step.
  After:
  |1 |1 |
  |2 |   two|
  |  | words|
  |3 |4 |
  |4 |  |
 
 
  I do it several times when I put much comments on an entry and the column
  becomes much wider.
  It is several commands (sometimes with rectangles, sometimes not
 depending
  on the remaining of the table) .
  Is there an easy way to do this?



[O] TABLES: split cells on columns

2011-11-21 Thread Daniel Martins
The feature of remove/add cell is quite important. Should be a feature
request.

Another important feature request is to split cells.

Example (copying and paste the example above)


Example:
I have the following table:
|1 |1 |
|2 | two words|
|3 |4 |
|4 |  |

Now I want to split cell  @2$2 and thus move the second part to the
following cell below  in column 2 down one step.

After:
|1 |1 |
|2 |   two|
|  | words|
|3 |4 |
|4 |  |



I do it several times when I put much comments on an entry and the column
becomes much wider.

It is several commands (sometimes with rectangles, sometimes not depending
on the remaining of the table) .

Is there an easy way to do this?

Daniel


Is there a s

2011/10/1 suvayu ali fatkasuvayu+li...@gmail.com

 2011/9/30 Michael Brand michael.ch.br...@gmail.com:
  Ehm - it is doable, but not by editing commands from Org table. Only
  with several rectangular edits or an Org table formula with a few
  tricks and a temporary column to be removed afterward.

 There are some org-table specific rectangle edit commands that should
 make it easier. Cut the cells with org-table-cut-region, and paste by
 org-table-paste-rectangle.

 Hope this helps.

 --
 Suvayu

 Open source is the future. It sets us free.




Re: [O] Org-mode as a replacement for LaTeX (was: Fwd: Exporting latex without preamble)

2011-11-14 Thread Daniel Martins
2011/11/14 Daniel Martins daniel...@gmail.com:
 I would like to see just the preamble of these org files prepared to
 replace LaTeX files

 Daniel

 2011/6/30 Carsten Dominik carsten.domi...@gmail.com:

 On 30.6.2011, at 08:35, Thomas S. Dye wrote:

 Aloha Karl,

 I agree that AucTeX is awesome.  I use it every day at work with much
 pleasure.

 I've been using Org-mode with the goal of creating reproducible
 research, where the LaTeX output is just one part of the package.  In my
 case, this is something that requires Org-mode for its ability to pass
 results between code blocks written in different languages.  I can't do
 these things in AucTeX.

 At first, like you, I was suspicious of adding a layer between me and
 LaTeX.  I was impatient with figuring out how to make the little things
 work right.  I'm still not able to control LaTeX as finely as I'd like
 from within Org-mode, but I've managed to close the gap sufficiently
 that my last four publications were authored completely with Org-mode.

 Are these publicly accessible?  I think that would be a great advertisement
 for Org as a publishing environment if you could link to source and paper

 - Carsten

 The one I'm working on now is Org-mode, too.  I'm really liking it as


 an
 authoring environment.

 All the best,
 Tom


 Karl Voit devn...@karl-voit.at writes:

 * Thomas S. Dye t...@tsdye.com wrote:
 Aloha Rafael,

 Sorry, I thought you might as well be interested in my point of
 view.

 First: I am pretty new to Org-mode but I am using LaTeX a while now
 and I am even teaching LaTeX to motivated beginners.

 Is there a reason not to have everything in one .org file?  I find
 Org-mode's ability to fold on headlines and to edit subtrees in indirect
 buffers very convenient, even for long documents.  For my work, that
 functionality has replaced LaTeX \include files.

 I did not follow the thread here but I do think I get the idea that
 you want to replace LaTeX with Org-mode and generate a PDF via
 LaTeX/PDF-export functionality of Org-mode.

 On the one hand, I do agree that (simple) PDF documents are written
 very easily with Org-mode. But on the other hand you are going to
 add just another layer. This means that you probably end up wanting
 this LaTeX feature in Org-mode, that other handy LaTeX feature too
 and so forth.

 In my point of view, if you leave the basic stuff, you should stick
 to LaTeX. And I do have good news to you: You are very fortune
 because Emacs does have the IMHO most advanced editor support for
 LaTeX: AucTeX (with all of its extensions like preview-latex and
 RefTeX).

 I plan to use Org-mode as an outline tool for larger documents,
 where the basic structure evolves, keywords are moved from one part
 to the other. But before I start to write the detailed document
 content, I move to AucTeX, having the great possibilities for
 writing documents that end up being great PDFs.

 But this is just my point of view.

 --
 Thomas S. Dye
 http://www.tsdye.com








Re: [Orgmode] MobileOrg now in the Android market

2010-09-07 Thread Daniel Martins
I am another Android 1.5 user (Mororla Quench) hoping that its OS be
upgraded but ...

In the meantime I would like very much to use MobileOrg for Android
but, as Eric Fraga said, I also don't want to impede development of
MobileOrg.

Daniel

2010/9/4 Eric S Fraga ucec...@ucl.ac.uk:
 On Fri, 3 Sep 2010 16:25:40 -0400, Matthew Jones bsdmatb...@gmail.com wrote:

 [...]

 One last thing to note, I'm having to drop support for Android 1.5, if this
 is a problem for anyone then please drop me an email... one person has
 already informed me that they can't find it in the market because of this so
 I'm planning on building a development version for those of you running this
 older version of the OS.

 Matthew,

 I have been waiting very eagerly for updates to MobileOrg for Android.
 However, I'm one of those that uses Android 1.5 [1].  I don't want to
 impede development of MobileOrg but anything you can do for us with
 1.5 to not exclude us completely would be very welcome.

 Thanks,
 eric

 Footnotes:
 [1]  on a Samsung Galaxy Portal with T-mobile and neither Samsung nor
     T-mobile seem to really give a  about providing an upgrade
     path to 1.6, much less 2.x.  Very annoying.  There are unapproved
     routes to upgrading but I'm not desperate enough yet to try these
     out (I do *use* my phone... :-).


 --
 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



___
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: Request for opinions: [ANN] List improvement v.2o

2010-08-18 Thread Daniel Martins
I have the opposite view.

I did not tried yet the code because I am a naive git user and worry about
messing things up adding another complex branch.

However I must say that all my lists (and I have a lot of them!) do not
satisfy me completely. The problem of breaking indentation and changing
patterns in the middle of lists is often annoying.

I am willing to have some work to rearrange all my lists if the
implementation is changing the viewpoint we have about lists (therefore
turning future impriovements easier) and the code is intrisically coherent
as I think Nicolas code is.

In other words, One vote for Nicolas code.

Daniel

2010/8/18 Sébastien Vauban wxhgmqzgw...@spammotel.com

 Hi Carsten and Nicolas,

 Carsten Dominik wrote:
  On Jul 22, 2010, at 11:08 PM, Nicolas Goaziou wrote:
 
  2. Some existing documents will break because we now need an end-of-list
that is clearly defined, and not by indentation.  Nicolas proposes a
double empty line or some special string to be defined.  Breaking
 existing
documents is always bad, of cause.  I still hope we can do something
about this if we think really hard, like making text that is less
indented than the list *also* terminate a list.

 From what I understood, without testing anything of it (yet), I would
 really
 urge for a support of old documents (the ones with simple constructions) by
 adopting a rule like the one you propose, where indentation could terminate
 the list.

 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

___
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] Some useful timestamp s-expressions

2010-08-18 Thread Daniel Martins
Really great Paul.

Did you compared your Spanish classes examples with org-diary-class? Maybe
(I did not tried!) your proposal is an improvement of this function.

Thank you/ Gracias,

Daniel



2010/8/18 Noorul Islam K M noo...@noorul.com

 I think it will be great if this goes into worg?

 - Noorul

 On Aug 19, 2010, at 1:52 AM, Paul Sexton psex...@xnet.co.nz wrote:

  In org, timestamps can be in the usual angle-bracket format,
  eg 2010-08-19 +2w, or you can use lisp s-expressions. These are in the
 same
  format as the s-expressions used in the 'diary'/'calendar' emacs
 packages. I
  only discovered these recently but have been able to use them to schedule
 some
  complex recurring items. I thought I would share the code here.
 
  1. Recurring items with a limited number of occurrences
 
  For example, say you are taking night classes in Spanish. The class is
 every
  Wednesday evening at 7pm, starting on 18 August, and runs for 8 weeks.
 AFAIK
  Org's timestamps do not support limited occurrences of recurrent items --
 you
  have to schedule the item with infinite recurrences, then delete it when
 it
  finishes.
 
  To schedule the Spanish classes, put the following in your .emacs:
 
  (defun diary-limited-cyclic (recurrences interval m d y)
   For use in emacs diary. Cyclic item with limited number of recurrences.
  Occurs every INTERVAL days, starting on -MM-DD, for a total of
  RECURRENCES occasions.
   (let ((startdate (calendar-absolute-from-gregorian (list m d y)))
 (today (calendar-absolute-from-gregorian date)))
 (and (not (minusp (- today startdate)))
  (zerop (% (- today startdate) interval))
  ( (floor (- today startdate) interval) recurrences
 
  The item in the org file looks like this:
 
 
  ** 19:00-21:00 Spanish lessons
  %%(diary-limited-cyclic 8 7 8 18 2010)
 
 
  2. Public holiday that is the nearest Monday to DATE
 
  In New Zealand each regional capital has an Anniversary Day. The date
 of
  Auckland's anniversary day is the nearest Monday to 29 January.
 
  Put this in your .emacs:
 
  (defun calendar-nearest-to (target-dayname target-day target-month)
   Recurring event that occurs in the nearest TARGET-DAYNAME to
  the date TARGET-DAY, TARGET-MONTH each year.
   (interactive)
   (let* ((dayname (calendar-day-of-week date))
  (target-date (list target-month target-day (calendar-extract-year
 date)))
  (days-diff (abs (- (calendar-day-number date)
 (calendar-day-number target-date)
 (and (= dayname target-dayname)
  ( days-diff 4
 
  Now we can schedule Auckland Anniversary Day. The first argument, 1,
 means
  Monday (days of the week are numbered starting with Sunday=0).
 
 
  *** Auckland Anniversary Day
  %%(calendar-nearest-to 1 29 1)
 
 
  3. Public holiday on the 4th Monday in October.
 
  This does not require any additions to .emacs:
 
 
  *** Labour Day (NZ)
  %%(diary-float 10 1 4)
 
 
  4. Easter
 
  Easter's date moves around from year to year according to a complicated
 set of
  criteria which I do not claim to understand. However the following code
 will
  allow you to schedule recurring events relative to Easter sunday.
 
  Note: the function da-easter is from:
  http://github.com/soren/elisp/blob/master/da-kalender.el
 
  Put the following in your .emacs:
 
  (defun da-easter (year)
   Calculate the date for Easter Sunday in YEAR. Returns the date in the
  Gregorian calendar, ie (MM DD YY) format.
   (let* ((century (1+ (/ year 100)))
  (shifted-epact (% (+ 14 (* 11 (% year 19))
   (- (/ (* 3 century) 4))
   (/ (+ 5 (* 8 century)) 25)
   (* 30 century))
30))
  (adjusted-epact (if (or (= shifted-epact 0)
  (and (= shifted-epact 1)
   ( 10 (% year 19
  (1+ shifted-epact)
shifted-epact))
  (paschal-moon (- (calendar-absolute-from-gregorian
(list 4 19 year))
   adjusted-epact)))
 (calendar-dayname-on-or-before 0 (+ paschal-moon 7
 
 
  (defun da-easter-gregorian (year)
   (calendar-gregorian-from-absolute (da-easter year)))
 
  (defun calendar-days-from-easter ()
   When used in a diary sexp, this function will calculate how many days
  are between the current date (DATE) and Easter Sunday.
   (- (calendar-absolute-from-gregorian date)
  (da-easter (calendar-extract-year date
 
  Now we can schedule the public holidays associated with Easter as
  recurring events. Good Friday is 2 days before Easter, Easter Monday is
 one
  day after.
 
 
  *** Good Friday
  %%(= -2 (calendar-days-from-easter))
 
  *** Easter Sunday
  %%(= 0 (calendar-days-from-easter))
 
  *** Easter Monday
  %%(= 1 (calendar-days-from-easter))
 
 
  Paul
 
 
 
  

Re: [Orgmode] Re: iCal export and complex diary sexps

2010-08-08 Thread Daniel Martins
It is a good alternative.

It would be better if we could generate a list of dates and timestamps by a
single command and/or using emacs calendar.
If this option is already possible please let me know.

Daniel
2010/8/7 Carsten Dominik carsten.domi...@gmail.com


 On Jul 23, 2010, at 11:05 PM, Daniel Martins wrote:

  Exporting org-diary-class even ignoring the weeke off (last arguments)
 for me it would be a fantastic start. It would be like converting
 org-diary-class to a simple diary sexp.

 I know it is dumb but in my case I would be glad to slit one
 org-diary-class in several org-diary-class (before and after weeks
 off) on order to have my appts exposted to ical.


 You can simply add all the individual dates as separate time stamps, that
 should
 also work.

 * My class
 2010-08-07 Sat
 2010-08-14 Sat
 2010-08-28 Sat


 - Carsten



 Daniel

 2010/7/23 Sven Bretfeld sven.bretf...@gmx.ch:

 Hi Dan

 Dan Griswold dgris...@rochester.rr.com writes:

  On 15 Jul 2010, sven.bretf...@gmx.ch wrote:

  There was a thread about this some weeks ago. The iCal export does not
 support org-diary-class entries or other complex diary sexps.


 I missed that thread, but it's an issue I looked into some time ago,
 with regard to sexps. The basic issue is that org-export-icalendar-*
 calls icalendar.el, which currently does not support the export of
 complex sexps.


  In other words, it doesn't do much good for us to say that Org ought to
 export these things to ical, because the feature is missing not from org
 but from a completely different package.


 But it's strange that diary-sexps can explicitly switched on and of for
 iCalendar export in customize. Why is that?

 Greetings,

 Sven

 ___
 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


 - 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] Re: iCal export and complex diary sexps

2010-07-23 Thread Daniel Martins
Exporting org-diary-class even ignoring the weeke off (last arguments)
for me it would be a fantastic start. It would be like converting
org-diary-class to a simple diary sexp.

I know it is dumb but in my case I would be glad to slit one
org-diary-class in several org-diary-class (before and after weeks
off) on order to have my appts exposted to ical.

Daniel

2010/7/23 Sven Bretfeld sven.bretf...@gmx.ch:
 Hi Dan

 Dan Griswold dgris...@rochester.rr.com writes:

 On 15 Jul 2010, sven.bretf...@gmx.ch wrote:

 There was a thread about this some weeks ago. The iCal export does not
 support org-diary-class entries or other complex diary sexps.

 I missed that thread, but it's an issue I looked into some time ago,
 with regard to sexps. The basic issue is that org-export-icalendar-*
 calls icalendar.el, which currently does not support the export of
 complex sexps.

 In other words, it doesn't do much good for us to say that Org ought to
 export these things to ical, because the feature is missing not from org
 but from a completely different package.

 But it's strange that diary-sexps can explicitly switched on and of for
 iCalendar export in customize. Why is that?

 Greetings,

 Sven

 ___
 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] [google] updated awk script for google to org conversion

2010-07-10 Thread Daniel Martins
Eric,

It is working (up to the moment) perfectly!!

I am really grateful to you!

Daniel

2010/7/9 Eric S Fraga ucec...@ucl.ac.uk:
 I've updated the awk script for converting Google calendar iCal export to org:

 - the time zone calculation is now down completely within the awk
  script, not requiring any external calculations.

 - fixed handling of continuation lines as Google seems to have
  changed, since last night, the format of the export iCal entries.

 Again, comments, questions and criticisms all more than welcome!

 Please note that the shell command required to use this is now much simpler:

  awk -f thisawkscript  icsfile  orgfile

 as there is no longer any need to define the SECONDS variable.

 Enjoy! :)

 eric

 --
 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



___
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] Google calendar to org mode script and a feature request for agenda

2010-07-07 Thread Daniel Martins
Eric,

Your awk seems to get timed appts in GMT

How can I adapt it to GMT-3

Daniel

2010/6/29 Eric S Fraga ucec...@ucl.ac.uk:
 Hello,

 I finally got myself an Android phone (and am loving it, especially
 with an all you can eat data plan :-).  I have tried mobileorg for
 Android but it's obviously early days and it's actually not really
 what I want.

 However, I am very happy with the Google syncing provided by the
 phone, both for email and for the calendar.  This has caused me to
 revisit the possibility of a smoother integration between Google's
 calendar and org-mode.

 First, I have created an awk script (yes, I'm dating myself: I do use
 awk in preference to perl et al.) which allows me to convert the iCal
 export from Google calendar to a sequence of org headlines (see
 attached).  It's a preliminary version and seems to translate what I
 need: simple day and timed events, mostly those that I will tend to do
 on the phone as opposed to when I'm at my computer.  I'm not trying
 for a comprehensive translation program here...  but I'm putting it on
 the list in case anybody finds it useful.

 I use this script as follows:

   wget [address specified by google for my calendar]  -- basic.ics
   awk -f ical2org.awk  basic.ics  googlecalendar.org

 this appends any entries in my specific google calendar to the given
 org file.  When I go the other way (creating an ics file from org), I
 import the org items into a different calendar on google.  When
 entries have been synced, I typically delete the original entries
 placed in google to avoid them being downloaded over and over again
 [1].

 * A feature request: time prompt for insert diary agenda function

 Anyway, my increased use of google's calendar, has highlighted a
 short-coming (?) of the agenda view (or more strictly speaking, the
 iCal exporter): entries in which the time of appointment, say, is on
 the headline but the date is on the following line, say, get converted
 to day events as opposed to day+time events.  I.e. something like

   * 11am meeting with colleages
     2010-06-30 Wed

 does not get exported as a timed event.  Obviously, the easy solution
 is to put the time in the date stamp.  However, I like using the
 insert diary function in the agenda view for defining appointments
 and this doesn't allow the time to be specified other than in a
 headline.  Would it be possible to enhance the insert diary function
 to prompt for a time (and while we're at it, tags as well)?

 Thanks,
 eric


 Footnotes:
 [1]  it may be possible to use the unique ID for each event to avoid creating 
 duplicates... something to look at in the future.


 --
 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



___
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] Google calendar to org mode script and a feature request for agenda

2010-07-07 Thread Daniel Martins
OK Eric

Thank you!

Linux solution is fine!

I think we share the same addiction at moment.

Linux-Emacs-OrgMode-Android  and due to Android the need of Google
calendar syncing!

I tried using

gcaldaemon (there is a .deb file in

http://blog.philippheckel.com/2008/09/30/gcaldaemon-deb-package-for-ubuntu-kubuntu/

)

The org - ics - google calendar  works with some minor problem, but
I am not satisfied.

A simpler solution seems to be better

Daniel

PS When I saw GoogleCL I had some hope for a final solution of this problem

2010/7/7 Eric S Fraga ucec...@ucl.ac.uk:
 On Wed, 7 Jul 2010 17:38:45 -0300, Daniel Martins daniel...@gmail.com wrote:

 Eric,

 Your awk seems to get timed appts in GMT

 How can I adapt it to GMT-3

 Daniel

 Daniel,

 yes, thanks for pointing this out. The script indeed does not
 translate the times to the local time zone.  Google outputs (in the
 basic.ics file) times in GMT.  However, it also includes the time zone
 information but my awk script ignores that information.  The script
 also ignores the end time for timed events.

 Obviously time for a v2 of this script!

 let me have a think about this and I'll see if I can do something a
 bit more intelligent (at least for Linux systems where possibly
 compatible time zone information can be found in /usr/share/zoninfo/*)
 and fix up the end times as well.


 --
 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] Google CL and org-mode

2010-07-06 Thread Daniel Martins
Reaaly good news!

I am also willing to test any code available for this.


Daniel

2010/7/5 Eric S Fraga ucec...@ucl.ac.uk:
 On Mon, 5 Jul 2010 15:17:16 +0200, Jordi Inglada 
 jordi.ingl...@cesbio.cnes.fr wrote:

 Hi,

 Happy to hear that. Since I do not know Elisp, I can not help much,
 but I am willing to test any code available for this.

 Best regards,

 Jordi


 Eric S Fraga writes:
   Thanks for the heads-up on this.  This could be quite useful.  I've
   been playing recently with the org to google calendar interfacing and
   this new API could potentially simplify things significantly.

 I'll be sure to take you up on this ;-)

 I've had a quick look at the command line interface.  With the simple
 python scripts they provide, it will be straightforward, at least on
 Linux, to upload entries from org to google's calendar.  The other way
 is more tricky as the scripts don't provide full information on each
 entry.  The APIs however might give that.

 Stay tuned!

 --
 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



___
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-06-14 Thread Daniel Martins
I tried to install it as well using python-pip and the result was

dan...@martins:~$ pip install ical2org
Downloading/unpacking ical2org
  Downloading ical2org-1.2.tar.gz
  Running setup.py egg_info for package ical2org
Traceback (most recent call last):
  File string, line 3, in module
ImportError: No module named setuptools.command
Complete output from command python setup.py egg_info:
Traceback (most recent call last):

  File string, line 3, in module

ImportError: No module named setuptools.command


Command python setup.py egg_info failed with error code 1
Storing complete log in ./pip-log.txt


Coould you help me?

Daniel

I use Ubuntu 10.4

Daniel

2010/5/1 Doug Hellmann doug.hellm...@gmail.com


 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

___
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] Debate about One clock per user, but user is identified

2010-06-12 Thread Daniel Martins
I aggree with Eric.

A collaborative point of view is needed to spread the word of org-mode among
a greater set of users.

org-secretary.el from Juan os great but is the start of something more
general

I am leading a group of engineers and it is quite difficult  (even among
Fress Software people) to convince the use of org-mode despite its several
advantages.

Daniel

PS I think the subject of this topic shoud be changed

Org-mode collaborative

is an option

2010/6/12 Eric Schulte schulte.e...@gmail.com

 Hi Sébastien,

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

 [...]
 
  I don't ask for multiple clocks running simultaneously, but (as I
 currently
  envision it -- reason for collecting *your* ideas) for an identifier
  [something like `org-user-identifier'] to be added to the clock lines, so
 that
  we can filter based on the user, when multiple people have clocked in the
 same
  documents.
 

 I haven't used any of the clocking features, so I won't speak to that
 side of this issue, however, I have been using org-mode files as a point
 of collaboration on a couple of projects (including org-babel [1]) and I
 think a generalization of something like your proposed
 `org-user-identifier' variable could be very useful for many of the org
 meta-data items associated with headlines.

 For example, it would be great to record the user responsible for every
 TODO state change, so that something like

  ** DONE Org-babel should work well when indented
 - State DONE   from TODO   [2010-06-10 Thu 15:48]

 would instead be

  ** DONE Org-babel should work well when indented
 - State DONE   from TODO   by eschulte   [2010-06-10
 Thu 15:48]

 I think this would be very helpful, and anything that encourages the
 spread of Org-mode usage through co-workers is a big win.

 Best -- Eric

 Footnotes:
 [1]  http://github.com/eschulte/babel-dev/blob/master/development.org


 ___
 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] Just discovered the date-tree capability of Remember

2010-06-12 Thread Daniel Martins
I am also waiting!!

Daniel

2010/6/9 Uwe Schuerkamp uwe.schuerk...@gmail.com

 On 9 June 2010 03:30, Charles Cave charles_c...@optusnet.com.au wrote:
  Well done!   Maybe I will write a short tutorial.

 Please do, this feature looks rather interesting!

 All the best, Uwe

 ___
 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] day-agenda: show whole-day-events first

2010-06-07 Thread Daniel Martins
It works fine BUT my TODOS without timer appear before the appts as soon as
I set

(setq org-sort-agenda-notime-is-late nil)

can I push them back to the end of the view again?

Daniel

2010/6/7 Eraldo Helal era...@eraldo.org

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

  Have you looked in the customization group org-agenda-sorting?
 In fact I did, but I misunderstood that part (error on my side).
 ,
 | ;; time-specific entries are below whole-day entries in agenda
 | (setq org-sort-agenda-notime-is-late nil)
 `
 I tested that variable and found it to do what I intended.
 Great Great Great Great =]
 Thank you

 Greetings from Austria,
 Eraldo


 PS:
 Is there any way to get the deadlines to the end since they
 are not directly part of the current date.
 ,[ I thought of leaving the deadlined events below like so: ]
 | - day events
 | - scheduled day events
 | - time events
 | - scheduled time events
 | - deadlined events
 `
  Maybe changing deadline warning days to 0 and adding a custom agenda
  block at the end showing  only the not today deadlines?

 I also thought of making my own custom blocked day/week agenda view.
 But they don't have the same functionality anymore as far as I got that.
 (e.g. pressing c = goto calendar on that day, toggle grid, etc)

 This is no biggie since I can toggle deadlines on/off with ! in the
 day/week-agenda. :)


 ___
 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] Worldcup + time zone question

2010-06-07 Thread Daniel Martins
Dirk,

Great schedule! I am really interested, in the same way, if it is possible
to adjust timezones to Brazil as well.

If it is not, I will adjust by hand your table.

Daniel

2010/6/7 Dirk-Jan C. Binnema djcb.b...@gmail.com

 Hi All,

 I made a little org-mode schedule for the Football World Cup in
 South-Africa
 (attached); it may be useful for some.

 Anyway, my question: the times are the local times in South Africa -- is
 there
 some way to have the times shown in my org-agenda automatically corrected
 for
 my local time zone?

 Thanks,
 Dirk.




 --
 Dirk-Jan C. Binnema  Helsinki, Finland
 e:d...@djcbsoftware.nl e%3ad...@djcbsoftware.nl   w:
 www.djcbsoftware.nl
 pgp: D09C E664 897D 7D39 5047 A178 E96A C7A1 017D DA3C

 ___
 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] Bug: org-diary-class does not export to .ics (iCalendar)

2010-06-06 Thread Daniel Martins
I am syncing Google Calendar with with GCalDaemon and then I noticed that
org-diary-class  is completely ignored by the ics export function


Eg
** 16:00-18:00 Class B5
 %%(org-diary-class  7 6 2010 10 9 2010 1 24 25)


Does not appear in the organizer.ics as expected

Daniel
___
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] day-agenda: show whole-day-events first

2010-06-06 Thread Daniel Martins
Sorry,

but I did not understand. Which of the 4 variables should be set?

I have the same intention as Eraldo.

Daniel

2010/6/6 Carsten Dominik carsten.domi...@gmail.com


 On Jun 6, 2010, at 1:13 AM, Eraldo Helal wrote:

  Right now (default), I get time specific entries shown before events
 that last the whole day. I would however prefer to get whole-day
 entries(no time) first and time-entries after.

 org-agenda-sorting-strategy:
 agenda
  habit-down time-up priority-down category-keep
 ,[ result (now) ]
 | Day-agenda (W23):
 | Monday  7 June 2010 W23
 |   jku:12:45-15:15  Betriebssysteme
 |   jku:15:30-18:45  Betriebswirtschaftslehre
 |   review: Scheduled:  TODO daily review
 |   event:  APPT TEX speech
 `

 ,[ result (would like to have) ]
 | Day-agenda (W23):
 | Monday  7 June 2010 W23
 |   event:  APPT TEX speech
 |   jku:12:45-15:15  Betriebssysteme
 |   jku:15:30-18:45  Betriebswirtschaftslehre
 |   review: Scheduled:  TODO daily review
 `
 the Scheduled item can also go above the time-events if that is easier
 to get.

 Would be great if someone could enlighten me with the matching sorting
 strategy. :)
 Or suggest what else I could do/use instead.


 Hi Eraldo,

 this is

 Have you looked in the customization group org-agenda-sorting?

 There are exacly 4 variables there, and one of them is the right one.

 Cheers

 - Carsten
 (steq org-agenda-notim



 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


 - 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] MobileOrg for Android starts to become really usable

2010-06-02 Thread Daniel Martins
I am having a problem with syncing.

I created a webdav on my lab server.

I access it from the Android navigator and I made a test with MobileOrg for
Iphone with a friend of mine.

Both cases worked perfect

However when I use sync nothing happens. The screen remains completely
black.


I can use capture (I used both version 0.4 and developments with quite the
same results) but I cannot sync again

My webadav is something

http://IPADDRESS/webdav/index.org

where IPADDRESS is the IP address of the server 150.***.***.***

Daniel

2010/5/31 Sven Bretfeld sven.bretf...@gmx.ch

 Hi Enrico

 Enrico Indiogine hindiog...@gmail.com writes:

  Thanks to the help from you all I managed to install the latest
  development version of org-mobile-android on my Xperia X10.  I set up
  my .emacs for stage push-pull and have a mydisk.se account with an org
  directory.
 
  M-x push will fail with an ssh timeout.  I think it has to do with the
  fact that Emacs has no way of knowing the mydisk.se password.

 Try another approach. You are under Ubuntu, aren't you? I'm also under
 Ubuntu and I use mydisk.se. So this should also work for you:

 1. sudo apt-get install davfs2

 2. sudo adduser enrico davfs (I don't remember if this is really the
   groupname, maybe it's davfs2)

 3. edit the file /etc/fstab - add a line at the end:

   https://mydisk.se/yourusername   /home/enrico/webdav   davfs
 user,noauto   0  0

 4. edit the file /etc/davfs2/secrets, add the following line:

   /home/enrico/webdavyourmydiskusername   yourmydiskpasswd

 5. mkdir ~/webdav

 6. sudo dpkg-reconfigure davfs2 -- set the SUID Bit (i.e. just say yes)

 7. mount ~/webdav

 Now, your folders of mydisk.se should appear under ~/webdav. Then tell
 Emacs (org-mobile) to use this folder instead of scp. I just used
 customize to set the org-mobile-directory.

  This in in my .emacs:
 
  (setq org-mobile-files (quote (~/org/agenda.org)))
  (setq org-mobile-directory ~/stage/)

 Change this to ~/webdav or use stage in the procedure above.

  (add-hook 'org-mobile-post-push-hook
(lambda () (shell-command scp -r ~/stage/* hindiog...@mydisk.se:
 org/)))
  (add-hook ' org-mobile-pre-pull-hook
(lambda () (shell-command scp hindiog...@mydisk.se:org/mobile.org
  ~/stage )))
  (add-hook 'org-mobile-post-pull-hook
(lambda () (shell-command scp ~/stage/mobileorg.org
  hindiog...@mydisk.se:org]/)))

 I think with the webdav-approach you have to delete these hooks. Comment
 them out and restart Emacs.

 Good luck

 Sven

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

2010-06-02 Thread Daniel Martins
Maybe this is a silly question but

Is it possible to use UbuntuOne as an alternative to DropBox?

https://one.ubuntu.com

Daniel

2010/5/31 Carsten Dominik carsten.domi...@gmail.com

 Hi Matt,

 you might want to consider adding support for the Dropbox API to MobileOrg
 Android.  I am currently testing this setup with Richard's beta.  It is
 vastly superior compared to the webdav stuff, at least in terms of user
 setup required and hickups that can cause problems.  In the future, I see
 webdav as the backup solution for people who cannot use dropbox for some
 reason.

 I think the implementation is not hard - you might want to ask Richard
 about it.

 Thanks for making MobileOrg Android a reality - I see the chatter about it
 picking up!

 Cheers



 On May 22, 2010, at 7:14 PM, Matthew Jones wrote:

  In the Administration panel for projects on Github there is a section for
 Service Hooks which looks like it could be used to mirror the changes to
 another repository.

 73,
 Matthew W. Jones (KI4ZIB)
 http://matburt.net


 On Sat, May 22, 2010 at 2:24 AM, Carsten Dominik 
 carsten.domi...@gmail.com wrote:
 Hi,

 since a number of you have voiced a strong preference for Org-mode to be
 hosted on GitHub, I am not considering such a step.

 Could someone spell out for me what steps I would have to take to do this?
 In particular:

 - How do I get the entire current repo onto GitHub?
 - Can I set up repo.or.cz in a way that it will become an
  automatic mirror, so that old clones will continue to be updated when
  pulling?
 - Bastien - I guess on the web server, we would simply make a
  new clone from the new location, right?

 Anything else I need to consider?

 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


 - 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] MobileOrg for Android starts to become really usable

2010-06-02 Thread Daniel Martins
PROBLEM solved!!!

I have put the link in index.org directly but without an *

[[file.org]]

and not

* [[file.org]]


I sincerely feel that this *  could be optional

Daniel

2010/6/2 Daniel Martins daniel...@gmail.com

 I am having a problem with syncing.

 I created a webdav on my lab server.

 I access it from the Android navigator and I made a test with MobileOrg for
 Iphone with a friend of mine.

 Both cases worked perfect

 However when I use sync nothing happens. The screen remains completely
 black.


 I can use capture (I used both version 0.4 and developments with quite the
 same results) but I cannot sync again

 My webadav is something

 http://IPADDRESS/webdav/index.org

 where IPADDRESS is the IP address of the server 150.***.***.***

 Daniel

 2010/5/31 Sven Bretfeld sven.bretf...@gmx.ch

 Hi Enrico

 Enrico Indiogine hindiog...@gmail.com writes:

  Thanks to the help from you all I managed to install the latest
  development version of org-mobile-android on my Xperia X10.  I set up
  my .emacs for stage push-pull and have a mydisk.se account with an org
  directory.
 
  M-x push will fail with an ssh timeout.  I think it has to do with the
  fact that Emacs has no way of knowing the mydisk.se password.

 Try another approach. You are under Ubuntu, aren't you? I'm also under
 Ubuntu and I use mydisk.se. So this should also work for you:

 1. sudo apt-get install davfs2

 2. sudo adduser enrico davfs (I don't remember if this is really the
   groupname, maybe it's davfs2)

 3. edit the file /etc/fstab - add a line at the end:

   https://mydisk.se/yourusername   /home/enrico/webdav   davfs
 user,noauto   0  0

 4. edit the file /etc/davfs2/secrets, add the following line:

   /home/enrico/webdavyourmydiskusername   yourmydiskpasswd

 5. mkdir ~/webdav

 6. sudo dpkg-reconfigure davfs2 -- set the SUID Bit (i.e. just say yes)

 7. mount ~/webdav

 Now, your folders of mydisk.se should appear under ~/webdav. Then tell
 Emacs (org-mobile) to use this folder instead of scp. I just used
 customize to set the org-mobile-directory.

  This in in my .emacs:
 
  (setq org-mobile-files (quote (~/org/agenda.org)))
  (setq org-mobile-directory ~/stage/)

 Change this to ~/webdav or use stage in the procedure above.

  (add-hook 'org-mobile-post-push-hook
(lambda () (shell-command scp -r ~/stage/* hindiog...@mydisk.se:
 org/)))
  (add-hook ' org-mobile-pre-pull-hook
(lambda () (shell-command scp hindiog...@mydisk.se:org/mobile.org
  ~/stage )))
  (add-hook 'org-mobile-post-pull-hook
(lambda () (shell-command scp ~/stage/mobileorg.org
  hindiog...@mydisk.se:org]/)))

 I think with the webdav-approach you have to delete these hooks. Comment
 them out and restart Emacs.

 Good luck

 Sven

 ___
 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] 2 Way Sync between Google Calendars and org-mode files

2010-05-29 Thread Daniel Martins
Anyone out there has done a 2 Way Sync between Google Calendars and org-mode
files?

As I am using an Android mobile I feel this becomes an important issue.

I am doing this by hand creating calendar with dates such as

Organizer-29-5-2010

and whenever I update my org-files I create another calendar eg
Organizer-30-5-2010, import the .ics from org-mode and delete
Organizer-29-5-2010

I feel that this is not the smartest way of doing this and would like to
know if someone has solved this problem including the Google Calendar to
org-mode route.

Daniel
___
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] Displaying day-resources (or a secondary time-line)

2010-05-11 Thread Daniel Martins
Sven,

I cannot help but I reinforce the need of something as proposed by you.

I really miss these secondary apointments and tried to find something
similar a couple of months ago. Unfortunately, I gave up.

Maybe they should appear as an option overlapping our appts or not.

These secondary agendas include third parties agendas and they are not so
easy to add.

Using tags is easy to remove them in a specific agenda view BUT the default
agenda becomes quite messy.

Maybe we could add different files to each agenda : secretary.org,
Friend1.org Boss.org Wife.org etc but we need a practical way to add or
remove them or select just one or a couple of them to show intersections.

Google Calendar could be an inspiration of what I meant.

Daniel

2010/5/11 Sven Bretfeld sven.bretf...@gmx.ch

 Hi to all

 I don't want to reinforce my request. I'd just be interested if I
 asked something which I could have found out myself. Is there already a
 solution that escaped my reading?

 Greetings,

 Sven

 Sven Bretfeld sven.bretf...@gmx.ch writes:

  Hi all
 
  I'm looking for a way to display dates in the Agenda View which are
  not appointments but, in GTD-speak, belong to the availability of
  resources.
 
  That's a little too abstract. A concrete example. Say, your secretary is
  on duty only Mondays and Wednesdays from 8:00 to 12:00 and Fridays from
  8:00 to 10:00. This is a resource that enables or disables you to do
  certain things. So you want to see these dates in your Day Agenda View,
  but not mixed with your own appointments. You'd rather have this
  information at the end of the Day Agenda, maybe in a different color
  and/or separated by a line, like this:
 
  Montag 10 Mai 2010 W19
Office:  10:00-12:00 Meeting with the Boss
Lunch:   12:00-13:00 Meet Jens in the Pub
Teaching:14:00-16:00 Lecture
Project_X:   16:00-18:00 Preparation Meeting
Leisure: 20:15   Cinema
- /from here in a different color/
Office:  8:00-12:00  Secretary is present
Family:  14:00-20:00 Mary will not be at home
On_Holiday:  Ina
 
  The last entry, which says that Ina is on holiday today, can principally
  be solved as:
 
  ** Holidays
 :PROPERTIES:
 :CATEGORY: On_Holiday
 :END:
  %%(diary-block 05 05 2010 14 05 2010) Ina
 
  But the other entries can not be done like this, I guess. These contain
  certain times of the day, and the first one (secretary) is thought to be
  a _repeating_ date.
 
  How is that possible with Orgmode? Any ideas?
 
  Thanks,
 
  Sven
 
 
  ___
  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
 



 --
 Mit freundlichen Grüßen

 Sven Bretfeld

 ___
 Prof. Dr. Sven Bretfeld
  \ CEntrum für
 CERES  \ REligionswissenschaftliche
 \_Studien__
 Ruhr-Universität Bochum
 Universitätsstraße 150
 D-44780 Bochum

 http://www.ruhr-uni-bochum.de/ceres/de/organisation/beteiligte/sven_bretfeld.html

 ___
 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] Re: Wow -- adding images to an org file

2010-05-09 Thread Daniel Martins
In short

What I have to do (minimal code in .emacs and .org) to display an image?


This image will be maintained when I export the file?

iimage could be included in org distribution?



Daniel


2010/5/8 Carsten Dominik carsten.domi...@gmail.com


 On May 7, 2010, at 2:58 PM, Dan Davison wrote:

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

  On May 7, 2010, at 4:16 AM, Chris Thompson wrote:

  Nathan Neff nathan.neff at gmail.com writes:


 I just saw Andreas's screenshot here:

 http://orgmode.org/worg/org-screenshots.php

 If you zoom in to his screenshot,
 http://orgmode.org/img/screenshots/org_andreas.jpg

 You can see how he adds images to his org files.
 All that I had to do was put this into my emacs init file:

 (defun org-dblock-write:image (params)
 (let ((file (plist-get params :file)))
   (clear-image-cache file)
   (insert-image (create-image file) )))

 Then, put this in an org-file:

 #+BEGIN: image :file ~/Documents/personal/foo.png
 #+END

 And run C-c C-c (or is it C-c C-x C-u)?

 Anyway, Cool stuff!

 --Nate



 Another way to have images in org-mode documents is to use the
 iimage
 minor mode, which handles  inline images:
 http://www.netlaputa.ne.jp/~kose/Emacs/iimage.htmlhttp://www.netlaputa.ne.jp/%7Ekose/Emacs/iimage.html

 For additional documentation:
 http://orgmode.org/worg/org-configs/org-config-examples.php#sec-2_2


 At that place, I find this code:
 (add-to-list 'iimage-mode-image-regex-alist (cons (concat
 \\[\\[file:\
 \(~? iimage-mode-image-filename-regex \\)\\]) 1))
 (defun org-toggle-iimage-in-org () display images in your org file
 (interactive) (if (face-underline-p 'org-link) (set-face-
 underline-p 'org-link nil) (set-face-underline-p 'org-link t))
 (iimage-
 mode))
 I guess I could actually add the above code to org.el, so that the
 only thing to do for a user would be to turn on iimage-mode.
 What is the purpose of toggling the underline property of the link face?


 It puts a horizontal line through the middle of the displayed image
 (haven't checked if that's fixed in latest emacs).


 I see.

 We have now native inline image display in Org-mode, you can toggle it with

 C-c C-x C-v

 This implementation uses overlays instead of text properties and therefore
 does not interfere with font-lock.


 - 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] Poll: Who is using these commands

2010-05-08 Thread Daniel Martins
Go ahead!
I don't use them.

Daniel

2010/5/8 Carsten Dominik carsten.domi...@gmail.com

 Hi everyone,

 I am wondering:

 How many of your are using these keys

 C-c C-f
 C-c C-b
 C-c C-n
 C-c C-p

 for navigation through the outline?  These are first class keys,
 and I would have good uses for these keys if most people don't actually use
 them.

 Another question:

 C-c C-v   currently make the TODO sparse tree.

 I would like to put this tree on `C-c / t' which would be quite logical
 and free up another first class key.

 Opinions, veto-attempts?


 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


[Orgmode] org-mode color schemes with white or light background and black foregroung

2010-05-04 Thread Daniel Martins
Some time ago Carsten sent a file with with his colours patterns with black
background.

I would like to know if someone has a similar pattern when using black
foregroung and a lighter backgroung (not necessarily white).

Could you share it with us?

Daniel



2010/5/4 Sébastien Vauban wxhgmqzgw...@spammotel.com

 Hi Mikael,

 Mikael Fornius wrote:
  I have not tried it but I found this variable:
 
  org-agenda-deadline-faces
 
  Faces for showing deadlines in the agenda.
 
  maybe it solves your problem?

 Excellent hint...


 I've customized it that way:

 --8---cut here---start-8---
 (setq org-agenda-deadline-faces
  '((1.1 . sva-org-deadline-yesterday)
(1.0 . sva-org-deadline-today)
(0.5 . sva-org-deadline-tomorrow)
(0.0 . sva-org-deadline-later)))
 --8---cut here---end---8---

 and have added the following colors in my theme:

 --8---cut here---start-8---
  (sva-org-deadline-yesterday ((t (:foreground white :background
 rgb:D8/00/00 :weight bold
 (sva-org-deadline-today ((t (:foreground white :background
 rgb:E9/A3/6A :weight bold
 (sva-org-deadline-tomorrow ((t (:foreground black :background
 #B4F1B3 :weight bold
 (sva-org-deadline-later ((t (:foreground black :background
 #AACAFC
 --8---cut here---end---8---

 And that quite works well following my needs.

 It's just a bit tricky to understand and correctly setup the fractions
 above, in the `org-agenda-deadline-faces'... It would be easy, and would
 make
 more sense, if we could directly enter days specifications there, instead
 of
 fractions (for example, 0 for today, -1 for yesterday, and so on).

 But it works. And I thank you for your help.

 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

___
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: Feasibility investigation: org-mode paper

2010-04-28 Thread Daniel Martins
I dont think a (completely :) silly idea. A smartphone will probably
never substitute pen and paper!

In fact most of my notes are taken on a notepad with a an attached
pen. In fact, I have just found a pen with an internal mechanism which
turns it long enough when I write and short enough to do not pierce my
trousers.

If you do such a miracle I would be glad to try (not in a beta
phase!). But I feel the efforts will be hardly rewarded.

The write process is good for the mind and is prone of errors. When we
transcript the text to an editor (in fact to THE editor) we correct
some mistakes.

Anyway, keep in touch!

Daniel


2010/4/26 Tim Landscheidt t...@tim-landscheidt.de:
 Torsten Wagner torsten.wag...@gmail.com wrote:

 [...]
 As I said it is just a silly idea, maybe not really useful
 but I thought it would be at least nice to make a
 proof-of-principle. Finally, with the increase of ebook
 readers with touch screens, digital pens, tablets and
 netbooks with touchscreens, this might become even more
 interesting.

 Happy to hear any opinion.

 Not wanting to call it silly :-), but I think the major ad-
 vantage of any electronic thingy compared to pen and paper
 is that you can rearrange the structure and correct any mis-
 takes you make. I wouldn't want to have to pen down any text
 without this capability.

 Tim



 ___
 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] Re: suggestions of Android smartphones

2010-04-20 Thread Daniel Martins
2010/4/19 Matthew Jones m...@matburt.net:
 Maybe I misunderstood what you meant about the swipe feature.   There is a
 keyboard called Swype which is fairly overrated.

Sorry for the misspelling and confusion!

 I can't comment on how well or if a bluetooth keyboard would work... I think
 if I were going to go to the trouble of carrying around a keyboard I would
 rather just carry my netbook.

This is a good point. And carrying my netbook is exactly what I am
doing right now! However, for exceptional cases (eg a trip) it would
be interesting to have some comfort while writing a long text in the
hotel.

Anyway Matthew for Org-mode purposes your MobileOrg for Android (with
Agenda view) will be enough!

Daniel


 73,
 Matthew W. Jones (KI4ZIB)
 http://matburt.net


 On Mon, Apr 19, 2010 at 7:12 PM, Daniel Martins daniel...@gmail.com wrote:

 2010/4/19 Matthew Jones m...@matburt.net:
  I used swype for about 2 days on my droid before getting rid of it...
  it's a
  good concept that needs be iterated on.

 I could not follow your comment here


  Trying to use emacs from any of the Android shells is borderline
  impossible... unless you have a full keyboard to hook up to your Android
  phone then I would say you should rule out using it in that fashion.

 A bluetooth keyboard such as

 http://www.dealextreme.com/details.dx/sku.34724
 http://www.dealextreme.com/details.dx/sku.6443
 http://www.dealextreme.com/details.dx/sku.28954


 is possible to be used with an Android phone? It worths an investment?


 Daniel

  One of the features I'm working on for the MobileOrg beta (along with
  being
  able to capture notes and change todo states) is a home screen widget
  that
  will show your Agenda or Todo list, this way you don't have to open the
  application to view or adjust these items.
  73
  Matthew W. Jones (KI4ZIB)
  http://matburt.net
 
 
  On Mon, Apr 19, 2010 at 8:35 AM, Daniel Martins daniel...@gmail.com
  wrote:
 
  The device I was tantalized to buy was the
 
  Motorola Quench
 
  maybe mainly for Swipe feature
 
  http://www.youtube.com/watch?v=zWpqsDnXIOY  (at about 1:00)
 
  or maybe for the price (in Brazil is about 500 USD while the Milestone
  is about 780 USD. I know both are outrageous prices in American or
  European terms!). BTW the Quench in Brazil DOES NOT seem to come with
  the swype feature...
 
  In fact, I doubt I could edit in Emacs or similar in a phone. I am
  afraid of virtual keyboards and small physical keyboards as well :)
  For someone over forties I tend to do not consider these typing
  devices as toys or at least funny :)
 
  For this reason I think that a nice interface such as MobileOrg with
  agenda view would be the best.
 
  ConnectBot seems to be an option as well (when you have connection, of
  course!)
 
  Sven, you seem quite happy with a virtual keyboard. Am I right?
 
  Daniel
 
  2010/4/19 Richard Riley rileyrg...@gmail.com:
   Eric S Fraga ucec...@ucl.ac.uk writes:
  
   On Sun, 18 Apr 2010 11:07:32 -0300, Daniel Martins
   daniel...@gmail.com wrote:
  
    --- resending with a proper title ---
  
   Matthew,
  
   Just a suggestion for newbies.
  
   Could you generate a video of MobileOrg Android similar to those of
   the MobileOrg Iphone.
  
   I am still open to suggestions of Android smartphones.
  
   If I need to access a remote ssh account and open Emacs, the
   available
   keyborards are OK?
  
   Daniel
  
   I have the same questions!  My current mobile phone contract expires
   in 3 months and I'm looking at upgrading to an Android phone.  The
   current best deal I have found is for the Samsung Galaxy Portal, aka
   the i5700.  [1] I'm looking at upgrading to replace my Nokia
   internet
   tablet (n810) and non-smart phone with one unit.  The nokia does a
   really nice job of running emacs and org-mode, mind you.
  
   I'm particularly interested in knowing how the different handsets
   approach the keying in of keys like C-x, M-x, TAB, et al.
  
   Thanks,
   eric
  
  
   +1 on this. I had almost decided on the Motorola Milestone (Droid)
   but
   would love to hear others experiences. Using org-mode in a term emacs
   is
   not ideal because a lot of shift/arrow/fn chords dont work in the
   terminals
   I tried (xterm, urxvt etc) and so doubt they will on a mobile device
   either : so my hard core usage of only emacs -nw inside urxvt and
   tmux
   soon dwindled and I'm back to using emacs in X. The only problem I
   now
   have is not being to find a way to use ONE x frame with emacsclient
   being able to create it if its not already done (I bet I've missed
   something obvious but emacsclient -c always creates a new frame and
   emacsclient wont create it if its not already there on my emacs).
  
  
  
  
   ___
   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: suggestions of Android smartphones

2010-04-19 Thread Daniel Martins
The device I was tantalized to buy was the

Motorola Quench

maybe mainly for Swipe feature

http://www.youtube.com/watch?v=zWpqsDnXIOY  (at about 1:00)

or maybe for the price (in Brazil is about 500 USD while the Milestone
is about 780 USD. I know both are outrageous prices in American or
European terms!). BTW the Quench in Brazil DOES NOT seem to come with
the swype feature...

In fact, I doubt I could edit in Emacs or similar in a phone. I am
afraid of virtual keyboards and small physical keyboards as well :)
For someone over forties I tend to do not consider these typing
devices as toys or at least funny :)

For this reason I think that a nice interface such as MobileOrg with
agenda view would be the best.

ConnectBot seems to be an option as well (when you have connection, of course!)

Sven, you seem quite happy with a virtual keyboard. Am I right?

Daniel

2010/4/19 Richard Riley rileyrg...@gmail.com:
 Eric S Fraga ucec...@ucl.ac.uk writes:

 On Sun, 18 Apr 2010 11:07:32 -0300, Daniel Martins daniel...@gmail.com 
 wrote:

  --- resending with a proper title ---

 Matthew,

 Just a suggestion for newbies.

 Could you generate a video of MobileOrg Android similar to those of
 the MobileOrg Iphone.

 I am still open to suggestions of Android smartphones.

 If I need to access a remote ssh account and open Emacs, the available
 keyborards are OK?

 Daniel

 I have the same questions!  My current mobile phone contract expires
 in 3 months and I'm looking at upgrading to an Android phone.  The
 current best deal I have found is for the Samsung Galaxy Portal, aka
 the i5700.  [1] I'm looking at upgrading to replace my Nokia internet
 tablet (n810) and non-smart phone with one unit.  The nokia does a
 really nice job of running emacs and org-mode, mind you.

 I'm particularly interested in knowing how the different handsets
 approach the keying in of keys like C-x, M-x, TAB, et al.

 Thanks,
 eric


 +1 on this. I had almost decided on the Motorola Milestone (Droid) but
 would love to hear others experiences. Using org-mode in a term emacs is
 not ideal because a lot of shift/arrow/fn chords dont work in the terminals
 I tried (xterm, urxvt etc) and so doubt they will on a mobile device
 either : so my hard core usage of only emacs -nw inside urxvt and tmux
 soon dwindled and I'm back to using emacs in X. The only problem I now
 have is not being to find a way to use ONE x frame with emacsclient
 being able to create it if its not already done (I bet I've missed
 something obvious but emacsclient -c always creates a new frame and
 emacsclient wont create it if its not already there on my emacs).




 ___
 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] Re: suggestions of Android smartphones

2010-04-19 Thread Daniel Martins
2010/4/19 Matthew Jones m...@matburt.net:
 I used swype for about 2 days on my droid before getting rid of it... it's a
 good concept that needs be iterated on.

I could not follow your comment here


 Trying to use emacs from any of the Android shells is borderline
 impossible... unless you have a full keyboard to hook up to your Android
 phone then I would say you should rule out using it in that fashion.

A bluetooth keyboard such as

http://www.dealextreme.com/details.dx/sku.34724
http://www.dealextreme.com/details.dx/sku.6443
http://www.dealextreme.com/details.dx/sku.28954


is possible to be used with an Android phone? It worths an investment?


Daniel

 One of the features I'm working on for the MobileOrg beta (along with being
 able to capture notes and change todo states) is a home screen widget that
 will show your Agenda or Todo list, this way you don't have to open the
 application to view or adjust these items.
 73
 Matthew W. Jones (KI4ZIB)
 http://matburt.net


 On Mon, Apr 19, 2010 at 8:35 AM, Daniel Martins daniel...@gmail.com wrote:

 The device I was tantalized to buy was the

 Motorola Quench

 maybe mainly for Swipe feature

 http://www.youtube.com/watch?v=zWpqsDnXIOY  (at about 1:00)

 or maybe for the price (in Brazil is about 500 USD while the Milestone
 is about 780 USD. I know both are outrageous prices in American or
 European terms!). BTW the Quench in Brazil DOES NOT seem to come with
 the swype feature...

 In fact, I doubt I could edit in Emacs or similar in a phone. I am
 afraid of virtual keyboards and small physical keyboards as well :)
 For someone over forties I tend to do not consider these typing
 devices as toys or at least funny :)

 For this reason I think that a nice interface such as MobileOrg with
 agenda view would be the best.

 ConnectBot seems to be an option as well (when you have connection, of
 course!)

 Sven, you seem quite happy with a virtual keyboard. Am I right?

 Daniel

 2010/4/19 Richard Riley rileyrg...@gmail.com:
  Eric S Fraga ucec...@ucl.ac.uk writes:
 
  On Sun, 18 Apr 2010 11:07:32 -0300, Daniel Martins
  daniel...@gmail.com wrote:
 
   --- resending with a proper title ---
 
  Matthew,
 
  Just a suggestion for newbies.
 
  Could you generate a video of MobileOrg Android similar to those of
  the MobileOrg Iphone.
 
  I am still open to suggestions of Android smartphones.
 
  If I need to access a remote ssh account and open Emacs, the available
  keyborards are OK?
 
  Daniel
 
  I have the same questions!  My current mobile phone contract expires
  in 3 months and I'm looking at upgrading to an Android phone.  The
  current best deal I have found is for the Samsung Galaxy Portal, aka
  the i5700.  [1] I'm looking at upgrading to replace my Nokia internet
  tablet (n810) and non-smart phone with one unit.  The nokia does a
  really nice job of running emacs and org-mode, mind you.
 
  I'm particularly interested in knowing how the different handsets
  approach the keying in of keys like C-x, M-x, TAB, et al.
 
  Thanks,
  eric
 
 
  +1 on this. I had almost decided on the Motorola Milestone (Droid) but
  would love to hear others experiences. Using org-mode in a term emacs is
  not ideal because a lot of shift/arrow/fn chords dont work in the
  terminals
  I tried (xterm, urxvt etc) and so doubt they will on a mobile device
  either : so my hard core usage of only emacs -nw inside urxvt and tmux
  soon dwindled and I'm back to using emacs in X. The only problem I now
  have is not being to find a way to use ONE x frame with emacsclient
  being able to create it if its not already done (I bet I've missed
  something obvious but emacsclient -c always creates a new frame and
  emacsclient wont create it if its not already there on my emacs).
 
 
 
 
  ___
  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


Re: [Orgmode] Re: suggestions of Android smartphones

2010-04-19 Thread Daniel Martins
Just to comment that I am in the same situation/expectation as Eric.

I entered in the buy mode and despite my frustation with the phone
company procedures I perceived that buy mode is a major mode.

Daniel

2010/4/19 Eric S Fraga ucec...@ucl.ac.uk:
 On Mon, 19 Apr 2010 10:50:40 -0400, Matthew Jones m...@matburt.net wrote:

 [...]

 Trying to use emacs from any of the Android shells is borderline
 impossible... unless you have a full keyboard to hook up to your Android
 phone then I would say you should rule out using it in that fashion.

 okay.  this is worth knowing.  keeps my expectations rooted in reality!

 One of the features I'm working on for the MobileOrg beta (along with being
 able to capture notes and change todo states) is a home screen widget that
 will show your Agenda or Todo list, this way you don't have to open the
 application to view or adjust these items.

 This sounds excellent.  I look forward to it (once I have the
 appropriate phone, of course).

 Thanks,
 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] Re: emacs/org-mode on Droid?

2010-04-18 Thread Daniel Martins
Matthew,

Just a suggestion for newbies.

Could you generate a video of MobileOrg Android similar to those of
the MobileOrg Iphone.

I am still open to suggestions of Android smartphones.

If I need to access a remote ssh account and open Emacs, the available
keyborards are OK?

Daniel


PS I bought  an Android phone called Motorola Quench but due to a
misunderstanding with the operator I was forced to cancel the
purchase. (I am still very annoyed with this problem)



2010/4/13 Matthew Jones m...@matburt.net:
 I am the developer/maintainer of MobileOrg for Android and I'd appreciate
 any feedback on the application.   You can find more information and
 download links on the
 wiki: http://wiki.github.com/matburt/mobileorg-android/
 73,
 Matthew W. Jones (KI4ZIB)
 http://matburt.net


 On Mon, Apr 12, 2010 at 10:08 PM, Daniel Martins daniel...@gmail.com
 wrote:

 Please, share your first impressions!!! I just bought an Android phone
 and would like to take similar routes.

 Daniel

 2010/2/16 David Rogoff da...@therogoffs.com:
  On 2010-02-16 13:47:59 -0800, Tom Tobin said:
 
  On Tue, Feb 16, 2010 at 12:18 PM, David Rogoff da...@therogoffs.com
  wrote:
 
  Hi all.
 
  New org-mode convert also looking at new phones.  It looks like
  theMoto
  Droid would be great for running org-mode.  Has anyone ported emacs to
  this
  platform and gotten org-mode running?
 
  I just switched from my iPhone back to an Android phone; I came across
  this project:
 
  http://github.com/matburt/mobileorg-android
 
  I haven't tried it yet, though.
 
  Thanks - I'll take a look.
 
 
 
 
  ___
  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] suggestions of Android smartphones

2010-04-18 Thread Daniel Martins
 --- resending with a proper title ---

Matthew,

Just a suggestion for newbies.

Could you generate a video of MobileOrg Android similar to those of
the MobileOrg Iphone.

I am still open to suggestions of Android smartphones.

If I need to access a remote ssh account and open Emacs, the available
keyborards are OK?

Daniel


PS I bought  an Android phone called Motorola Quench but due to a
misunderstanding with the operator I was forced to cancel the
purchase. (I am still very annoyed with this problem)



2010/4/13 Matthew Jones m...@matburt.net:
 I am the developer/maintainer of MobileOrg for Android and I'd appreciate
 any feedback on the application.   You can find more information and
 download links on the
 wiki: http://wiki.github.com/matburt/mobileorg-android/
 73,
 Matthew W. Jones (KI4ZIB)
 http://matburt.net


 On Mon, Apr 12, 2010 at 10:08 PM, Daniel Martins daniel...@gmail.com
 wrote:

 Please, share your first impressions!!! I just bought an Android phone
 and would like to take similar routes.

 Daniel

 2010/2/16 David Rogoff da...@therogoffs.com:
  On 2010-02-16 13:47:59 -0800, Tom Tobin said:
 
  On Tue, Feb 16, 2010 at 12:18 PM, David Rogoff da...@therogoffs.com
  wrote:
 
  Hi all.
 
  New org-mode convert also looking at new phones.  It looks like
  theMoto
  Droid would be great for running org-mode.  Has anyone ported emacs to
  this
  platform and gotten org-mode running?
 
  I just switched from my iPhone back to an Android phone; I came across
  this project:
 
  http://github.com/matburt/mobileorg-android
 
  I haven't tried it yet, though.
 
  Thanks - I'll take a look.
 
 
 
 
  ___
  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


Re: [Orgmode] suggestions of Android smartphones

2010-04-18 Thread Daniel Martins
Thank you very much!

BTW what Android smartphone do you have?

Daniel

2010/4/18 Sven Bretfeld sven.bretf...@gmx.ch:
 Hi Daniel

 Daniel Martins daniel...@gmail.com writes:

 If I need to access a remote ssh account and open Emacs, the available
 keyborards are OK?

 The standard (soft)keyboard is principally OK if you use Emacs on a
 remote machine via ConnectBot, which is a free ssh client available in
 the market. Pressing the Trackball once simulates CTRL, pressing it
 twice simulates ESC/META. But there are sometimes problems with
 TAB-expansion. 2 x Trackball + SPC simulates TAB. But this is sometimes
 not working, for example for BBDB-expansions of Email addresses in Gnus,
 also for some commands with M-x. No expansion found. I don't know why.

 Greetings,

 Sven


 ___
 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] Re: emacs/org-mode on Droid?

2010-04-12 Thread Daniel Martins
Please, share your first impressions!!! I just bought an Android phone
and would like to take similar routes.

Daniel

2010/2/16 David Rogoff da...@therogoffs.com:
 On 2010-02-16 13:47:59 -0800, Tom Tobin said:

 On Tue, Feb 16, 2010 at 12:18 PM, David Rogoff da...@therogoffs.com
 wrote:

 Hi all.

 New org-mode convert also looking at new phones.  It looks like theMoto
 Droid would be great for running org-mode.  Has anyone ported emacs to this
 platform and gotten org-mode running?

 I just switched from my iPhone back to an Android phone; I came across
 this project:

 http://github.com/matburt/mobileorg-android

 I haven't tried it yet, though.

 Thanks - I'll take a look.




 ___
 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] Re: New Org-mode talk by Carsten Dominik

2010-03-29 Thread Daniel Martins
Well,

It works for white backgrounds but this color scheme is far from optimum.

As I use both white background and black background for the night (I have
read some academic papers that said  white background is better for the eye
fatigue but I am not quite sure of it)  I need a white background setup


Anyone out there has a proposal of color schemes for white (or at least not
dark) backgrounds which could share with us?

Daniel



2010/3/18 Carsten Dominik carsten.domi...@gmail.com


 On Mar 16, 2010, at 6:17 PM, Daniel Martins wrote:

  I found a minor bug in cd-colors.el


 I use a variation of background/foreground according to day/night
 environments as suggested in

 http://www.jurta.org/en/emacs/dotemacs

 and which I reproduce below

 But using cd-colors and the day option which means

  (set-background-color white)
  (set-foreground-color black)

 I notice that the face org-hide remains black.


 I think that many of these faces will not work properly with a white
 background - they are all only for a dark background.  I would have thought
 that the entire scheme is unusable with white.

 - Carsten



 As I use



 (setq org-hide-leading-stars t)


 this is not quite convenient.

 So I commented the line of org-hide in cd-colors and everything worked
 fine!

 ;
  `(org-tag ((t (:foreground ,tag
 ;;   `(org-hide ((t (:foreground #191919
  `(org-todo ((t (:background ,todo-bg :foreground white ,@box
 ;

 Daniel

 PS here is the text of my .emacs that I commented above

 ;;



 ;;; colors

 (defun my-colors-light (optional frame)
  Set colors suitable for working in light environments,
 i.e. in daylight or under bright electric lamps.
  (interactive)
  (setq frame-background-mode 'light)
  (if frame
 (select-frame frame)
   (setq frame (selected-frame)))
  ;; The color with minimal eye fatigue in light environments
  ;; is AntiqueWhite3 (RGB: 205 192 176),
  ;; (set-background-color AntiqueWhite3)
  (set-background-color white)
  (set-foreground-color black)
  (when (facep 'region)
   (set-face-background 'region DarkGrey frame))
  (when (facep 'fringe)
   (set-face-background 'fringe (face-background 'default) frame)
   (set-face-foreground 'fringe (face-foreground 'default) frame))
  ;; When started Emacs under root, warn by red color in the modeline
  (when (and (facep 'mode-line)
(file-exists-p /root)
(file-writable-p /root))
   (set-face-background 'mode-line firebrick)))

 (define-key global-map [f6 ?c ?d] 'my-colors-light) ;; c color d day

 (defun my-colors-dark (optional frame)
  Set colors suitable for working in the darkness without electricity.
  (interactive)
  (setq frame-background-mode 'dark)
  (if frame
 (select-frame frame)
   (setq frame (selected-frame)))
  (set-background-color black)
  (set-foreground-color DarkGrey)
  (when (facep 'region)
   (set-face-background 'region DimGray frame))
  (when (facep 'fringe)
   (set-face-background 'fringe (face-background 'default) frame)
   (set-face-foreground 'fringe (face-foreground 'default) frame)))

 (define-key global-map [f6 ?c ?n] 'my-colors-dark) ;; c color n night

 ;; Automatically switch to dark background after sunset
 ;; and to light background after sunrise.
 ;; (Note that `calendar-latitude' and `calendar-longitude'
 ;;  should be set before calling the `solar-sunrise-sunset')
 (defun my-colors-set (optional frame)
  (interactive)
  (require 'solar)
  (if (and calendar-latitude calendar-longitude calendar-time-zone)
 (let* ((l (solar-sunrise-sunset (calendar-current-date)))
(sunrise-string (apply 'solar-time-string (car l)))
(sunset-string (apply 'solar-time-string (car (cdr l
(current-time-string (format-time-string %H:%M)))
   (if (or (string-lessp current-time-string sunrise-string)
   (string-lessp sunset-string current-time-string))
   (my-colors-dark frame)
 (my-colors-light frame))
   (if (and (boundp 'my-sunset-timer)  (timerp my-sunset-timer))
   (cancel-timer my-sunset-timer))
   (if (and (boundp 'my-sunrise-timer) (timerp my-sunrise-timer))
   (cancel-timer my-sunrise-timer))
   (setq my-sunset-timer  (run-at-time sunset-string  (* 60 60 24)
   'my-colors-dark))
   (setq my-sunrise-timer (run-at-time sunrise-string (* 60 60 24)
   'my-colors-light)


 (my-colors-set)
 (add-to-list 'after-make-frame-functions 'my-colors-set)






 2010/3/9 Carsten Dominik carsten.domi...@gmail.com:


 On Mar 7, 2010, at 7:51 PM, Manuel Amador wrote:

  Carsten,

 Can we get a copy of the color configuration you are using?

  -- Manuel

 Yes, I have put my color config here:

 http://orgmode.org/cd-colors.el

 This started as a copy of Peter Jones

Re: [Orgmode] How to open pdf file links with evince under linux?..

2010-03-29 Thread Daniel Martins
well,

my values are

org-file-apps is a variable defined in `org.el'.
Its value is
((auto-mode . emacs)
 (\\.x?html?\\' . default))


which does not help very much since i think is scary to change the auto-mode
in emacs

I have the same annoying problem reported by Jan

2010/3/23 Jan Böcker jan.boec...@jboecker.de

 On 23.03.2010 10:17, Leo Alekseyev wrote:
  When using org mode under windows, links to local PDF files bring up
  Acrobat.  However, under linux, these links just spawn a new empty
  buffer in emacs in fundamental mode.  How can I make PDF links bring
  up evince?...
 

 As far as I know, Org uses the system defaults when it does not know how
 to open a file, and when the system does not know, Org opens the file in
 emacs. Under linux, that system default is the mailcap database, but I
 have no idea how to configure that. (It doesn't even appear to exist on
 my system.)

 But we can tell Org directly what to do with PDF files: take a look at
 the variable org-file-apps (M-x customize-variable org-file-apps).

 Each entry in this list consists of (selector, action) pairs where the
 action tells Org how to open a file, and the selector (in most cases a
 regular expression matched against the file name) specifies what kind of
 files to open in this way.

 Add the following entry:

 Extension:  \.pdf\'
 Command:evince %s

 Links to PDF files should now open in evince.


 If you pull the current git version of Org, you could add a second entry:

 Extension:  \.pdf::\([0-9]+\)\'
 Command:evince %s -p %1

 This would allow you to link to a specific page of a PDF like this:
 [[file:/path/to/document.pdf::21]]
 (Shameless plug for a patch of mine that just got accepted.)


 HTH, Jan


 ___
 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] Re: New Org-mode talk by Carsten Dominik

2010-03-16 Thread Daniel Martins
I found a minor bug in cd-colors.el


I use a variation of background/foreground according to day/night
environments as suggested in

http://www.jurta.org/en/emacs/dotemacs

and which I reproduce below

But using cd-colors and the day option which means

  (set-background-color white)
  (set-foreground-color black)

I notice that the face org-hide remains black.

As I use



(setq org-hide-leading-stars t)


this is not quite convenient.

So I commented the line of org-hide in cd-colors and everything worked fine!

;
   `(org-tag ((t (:foreground ,tag
;;   `(org-hide ((t (:foreground #191919
   `(org-todo ((t (:background ,todo-bg :foreground white ,@box
;

Daniel

PS here is the text of my .emacs that I commented above

;;



;;; colors

(defun my-colors-light (optional frame)
  Set colors suitable for working in light environments,
i.e. in daylight or under bright electric lamps.
  (interactive)
  (setq frame-background-mode 'light)
  (if frame
  (select-frame frame)
(setq frame (selected-frame)))
  ;; The color with minimal eye fatigue in light environments
  ;; is AntiqueWhite3 (RGB: 205 192 176),
  ;; (set-background-color AntiqueWhite3)
  (set-background-color white)
  (set-foreground-color black)
  (when (facep 'region)
(set-face-background 'region DarkGrey frame))
  (when (facep 'fringe)
(set-face-background 'fringe (face-background 'default) frame)
(set-face-foreground 'fringe (face-foreground 'default) frame))
  ;; When started Emacs under root, warn by red color in the modeline
  (when (and (facep 'mode-line)
 (file-exists-p /root)
 (file-writable-p /root))
(set-face-background 'mode-line firebrick)))

(define-key global-map [f6 ?c ?d] 'my-colors-light) ;; c color d day

(defun my-colors-dark (optional frame)
  Set colors suitable for working in the darkness without electricity.
  (interactive)
  (setq frame-background-mode 'dark)
  (if frame
  (select-frame frame)
(setq frame (selected-frame)))
  (set-background-color black)
  (set-foreground-color DarkGrey)
  (when (facep 'region)
(set-face-background 'region DimGray frame))
  (when (facep 'fringe)
(set-face-background 'fringe (face-background 'default) frame)
(set-face-foreground 'fringe (face-foreground 'default) frame)))

(define-key global-map [f6 ?c ?n] 'my-colors-dark) ;; c color n night

;; Automatically switch to dark background after sunset
;; and to light background after sunrise.
;; (Note that `calendar-latitude' and `calendar-longitude'
;;  should be set before calling the `solar-sunrise-sunset')
(defun my-colors-set (optional frame)
  (interactive)
  (require 'solar)
  (if (and calendar-latitude calendar-longitude calendar-time-zone)
  (let* ((l (solar-sunrise-sunset (calendar-current-date)))
 (sunrise-string (apply 'solar-time-string (car l)))
 (sunset-string (apply 'solar-time-string (car (cdr l
 (current-time-string (format-time-string %H:%M)))
(if (or (string-lessp current-time-string sunrise-string)
(string-lessp sunset-string current-time-string))
(my-colors-dark frame)
  (my-colors-light frame))
(if (and (boundp 'my-sunset-timer)  (timerp my-sunset-timer))
(cancel-timer my-sunset-timer))
(if (and (boundp 'my-sunrise-timer) (timerp my-sunrise-timer))
(cancel-timer my-sunrise-timer))
(setq my-sunset-timer  (run-at-time sunset-string  (* 60 60 24)
'my-colors-dark))
(setq my-sunrise-timer (run-at-time sunrise-string (* 60 60 24)
'my-colors-light)


(my-colors-set)
(add-to-list 'after-make-frame-functions 'my-colors-set)






2010/3/9 Carsten Dominik carsten.domi...@gmail.com:

 On Mar 7, 2010, at 7:51 PM, Manuel Amador wrote:

 Carsten,

 Can we get a copy of the color configuration you are using?

 -- Manuel

 Yes, I have put my color config here:

 http://orgmode.org/cd-colors.el

 This started as a copy of Peter Jones config and was then edited and hacked
 - which is why it may not be in the most convenient shape.  Feel free to
 package it up nicely and send me a better version.

 You also need something like this, adapted to your todo keywords.

 (setq org-todo-keyword-faces
      '((SDMB . cd-org-someday-kwd-face)
        (STARTED . cd-org-started-kwd-face)
        (STRT . cd-org-started-kwd-face)
        (WAITING . cd-org-waiting-kwd-face)
        (WAIT . cd-org-waiting-kwd-face)
        (DELG . cd-org-delegated-kwd-face)
        (PROJ . cd-org-project-kwd-face)
        (DONE . cd-org-done-kwd-face)
        (PRDN . cd-org-done-kwd-face)
        (PRCL . cd-org-cancelled-kwd-face)
        (CNCL . cd-org-cancelled-kwd-face)
        (PRCN . cd-org-cancelled-kwd-face)
  

Re: Re: [Orgmode] Re: Organizing a students live

2010-03-10 Thread Daniel Martins
Today, for no apparent reason,  the org-diary-class below it does not work

Is the re any reason or is it my fault? My version is 6.30c

Daniel


2010/2/10 John Rakestraw li...@johnrakestraw.com:
 Sorry -- neglected to cc the list.



 -- Mensagem encaminhada --
 From: John Rakestraw li...@johnrakestraw.com
 To: Daniel Martins daniel...@gmail.com
 Date: Wed, 10 Feb 2010 14:16:57 -0500
 Subject: Re: [Orgmode] Re: Organizing a students live
 Daniel Martins writes:

 Someone could send me an example of the use of the org-diary-class ??

 *** 12:15-13:05 Class
    %%(org-diary-class 1 13 2010 5 3 2010 1 3 7 10 14)
    %%(org-diary-class 1 13 2010 5 3 2010 3 10)
    %%(org-diary-class 1 13 2010 5 3 2010 5 10 13)

 Class meets Mon-Wed-Fri from Jan 13 to May 3 from 12:15 to 13:05, with
 holidays as indicated. Friday's class, for example, doesn't meet in weeks
 10 and 13.

 --
 John Rakestraw

 ___
 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: Organizing a students live

2010-03-10 Thread Daniel Martins
Trying to use cd-colors from Carsten lecture, somehow emacs get lost
with the directories and did not go to the updated org-mode file.
An involuntary downgrade!

My fault!

Sorry

Daniel

2010/3/10 Matt Lundin m...@imapmail.org:
 Daniel Martins daniel...@gmail.com writes:

 Today, for no apparent reason,  the org-diary-class below it does not work

 Is the re any reason or is it my fault? My version is 6.30c

 According to the change log[1] org-diary-class was added in version 6.34.

 Best,
 Matt

 Footnotes:

 [1] http://orgmode.org/Changes.html#sec-1.2.3



___
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] New Org-mode talk by Carsten Dominik

2010-03-06 Thread Daniel Martins
It would be great to have this talk on Google Video or YouTube or
another video streaming webpage.

I would spread the word more easily with such links

Daniel

2010/3/6 Carsten Dominik carsten.domi...@gmail.com:

 On Mar 5, 2010, at 9:07 PM, Stefan Vollmar wrote:

 Hallo,

 we proudly present:

 Emacs Org-mode: Organizing a Scientist's Life and Work

 a talk by Carsten Dominik presented on February 8th 2010
 at our institute. The recording of the talk is available here:

 http://www.nf.mpg.de/orgmode/guest-talk-dominik.html


 This is great, thanks a lot, Stefan, for all the work you have put into
 making this available.

 Next stop: I want to be on FLOSS weekly (But Randal Schwartz did not even
 react
 on my email - so I guess not :-)

 - 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] MobileOrg Android 0.1_alpha

2010-02-26 Thread Daniel Martins
Congratulations Matthew for the good work!


Your work will at the end finally make decide to buy a decent Android phone.
(I almost bought an Iphone only for the possibility of MobileOrg!)

Daniel

PS Keep us informed...

2010/2/26 Matthew Jones m...@matburt.net

 Sorry if this double posts, had forgotten which email address I had signed
 up for on the mailing list.

 Hey folks, I've been working on a version of MobileOrg for the Android
 platform with the goal to reach feature parity with the iPhone version
 developed by Richard Moreland.

 I have completed an early alpha version that can fetch and display the
 contents of Org files stored on a webdav server.   There are some good
 instructions for setting up a webdav server in the normal MobileOrg
 documentation: http://mobileorg.ncogni.to/doc/

 For getting started from the emacs side of things, the Org-mode
 documentation itself contains all the information you need:
 http://orgmode.org/manual/MobileOrg.html

 As for the MobileOrg android application itself you can find the release
 notes and a download link here:

 http://wiki.github.com/matburt/mobileorg-android/

 There are some known issues with this early alpha version and can't
 synchronize back to the webdav server yet or handle setting the state of
 tasks but I felt this was a good start and would actually be useful for
 Org-mode users

 When you first start the application up you'll need to click Menu and
 then Settings and enter your webdav information.  After saving you can
 click Menu again then Sync.   Once that has finished it will populate
 the display and you can drill into your document structure.

 73,
 Matthew W. Jones (KI4ZIB)
 http://matburt.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


___
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] default browser - SOLVED

2010-02-26 Thread Daniel Martins
Thank you Henry-Paul,

You solved for me a quite annoying issue related to org that I could not
solve!



For those who use firefox these two lines become:

(setq browse-url-browser-function (quote browse-url-generic))
(setq browse-url-generic-program firefox)


Simply copy and paste it!!


2010/2/25 Carsten Dominik carsten.domi...@gmail.com

 Hi Henri-Paul,

 thanks for summarizing here in the mailing list, this creates
 a searchable record of a good answer!

 Best wishes

 - Carsten


 On Feb 25, 2010, at 7:18 PM, Henri-Paul Indiogine wrote:

  Dear fellow org-moders,

 this is what was suggested to me:

 (setq browse-url-browser-function (quote browse-url-generic))
 (setq browse-url-generic-program chromium-browser)

 works perfectly on Ubuntu Karmic + Emacs 23.1.1.

 Again, thanks for org-mode.



 --
 Henri-Paul Indiogine
 Email: hindiog...@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


 - 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] Re: Mobile org

2010-02-26 Thread Daniel Martins
Maybe MobileOrg-Android be the simpler solution


http://wiki.github.com/matburt/mobileorg-android/

I did not tried yet

Daniel

2010/2/3 n...@aleblanc.cotse.net

 Marcelo de Moraes Serpa celose...@gmail.com writes:

  Hello list,
 
  org-mode really changed my life, and allowed me to fully implement GTD
 the way
  I wanted. However, I miss having access to it everytime, so, I'm looking
 for a
  mobile device that could run emacs and org, and that I could keep in sync
 with
  my laptop.
 
  What do you think?
 
  Any suggestions appreciated,
 
  Marcelo.

 Hi Marcelo,
   check the CategoryPorts page on the emacswiki:
   http://www.emacswiki.org/emacs/CategoryPorts

   Personally I use emacs on my android phone, which includes a
   Debian installation, see here:

   http://www.emacswiki.org/emacs/EmacsOnAndroid

   I use the android scripting environment to access android
   programs from emacs. This allows me to make phone calls/send
   text messages with BBDB in emacs, while I can still use the
   useful gui stuff in android such as maps, web-browsing,
   bar-code scanner etc.

   I believe android is the way to go since it is open source
   and hackable, while also having a large repertoire of cool
   and useful apps.

   The only drawback is that the initial setup is quite
   complicated and time-consuming. You need to be fairly
   technically minded.

 --
 aleblanc



 ___
 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] default browser - SOLVED

2010-02-26 Thread Daniel Martins
Thanks Nick,


 Most (?) browsers have a remote URL capability: you can send a URL to an
 already running instance and it will just open it, without going through
 the overhead of creating another instance.

For me it seems strange this behaviour.

When I have firefox already open, it creates another tab for the URL and
does not open a new firefox instance.

Daniel

2010/2/26 Nick Dokos nicholas.do...@hp.com

 [I had sent a similar answer to Henri-Paul, but for some reason, my reply
 never hit the list - I've had problem posting to the list in the past
 couple of days. I have an outstanding query to the list administrators,
 but I haven't heard anything back. If you do receive this personally,
 you might want to check the list and if it does not make it within the
 next day or so, you might want to just post it there for posterity.]

 Daniel Martins daniel...@gmail.com wrote:


  You solved for me a quite annoying issue related to org that I could not
 solve!
 
  For those who use firefox these two lines become:
 
  (setq browse-url-browser-function (quote browse-url-generic))
  (setq browse-url-generic-program firefox)
 
  Simply copy and paste it!!
 

 Daniel,

 The problem with this solution is that it creates a new instance
 of the browser every time you click a link:


 ,
 | browse-url-generic is an interactive compiled Lisp function in
 | `browse-url.el'.
 |
 | (browse-url-generic URL optional NEW-WINDOW)
 |
 | Ask the WWW browser defined by `browse-url-generic-program' to load URL.
 | Default to the URL around or before point.  A fresh copy of the
 | browser is started up in a new process with possible additional arguments
 | `browse-url-generic-args'.  This is appropriate for browsers which
 | don't offer a form of remote control.
 `

 Most (?) browsers have a remote URL capability: you can send a URL to an
 already running instance and it will just open it, without going through
 the overhead of creating another instance.

 For firefox, I do the following:

 ,
 | (defun browse-url-firefox (url optional new-window)
 |   (shell-command (concat firefox-xremote-client   \ url \)))
 |
 | (setq browse-url-browser-function 'browse-url-firefox)
 `

 with the following firefox-xremote-client script somewhere in my path:

 ,
 | #! /bin/bash
 |
 | firefox --remote openURL($1)
 `

 HTH,
 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


Re: [Orgmode] Re: Organizing a students live

2010-02-10 Thread Daniel Martins
Someone could send me an example of the use of the org-diary-class ??

Daniel

2010/1/3 Carsten Dominik carsten.domi...@gmail.com


 On Dec 28, 2009, at 10:09 PM, Daniel Martins wrote:

   Interesting.  But too complex for now - and I actually do prefer local
 control.

 I know it is complex.

 I thought about the first steps

 I was thinking about a variable (list?) with predefined holidays

 or better omit-holidays

 such as org-omit-holidays

 we could add the omit dates in any place
  (add-to-list 'org-omit-holidays 25 Dec)
  (add-to-list 'org-omit-holidays 1 Jan)
  (add-to-list 'org-omit-holidays 1 May)
 etc.


 Hmm, this is a possibility - but I don't have the time now to implement it.
 And then the question remains: What exactly should be omitted on these
 days?
 Everything? - probably not.  So I don't see how this leads to useful
 control, unless
 we have a really fine-grained control for each entry.



 Then we could change (adapt) the

 function calendar-check-holydays from holidays.el


 I did a search-replace to something like this:

 (defun org-check-calendar-omit-holidays (date)
  Check the list of org-omit-holidays for any that occur on DATE.
 The value returned is a list of strings of relevant org-omit-holiday
 descriptions.
 The org-omit-holidays are those in the list `org-omit-holidays'.
  (let ((displayed-month (extract-calendar-month date))
(displayed-year (extract-calendar-year date))
(org-omit-holiday-list))
(dolist (h (calendar-org-omit-holiday-list))
  (if (calendar-date-equal date (car h))
  (setq org-omit-holiday-list (append org-omit-holiday-list (cdr
 h)
org-omit-holiday-list))

 with these adaptation we could use a slighly changed  version of the
 diary-schedule function  I sent before.

 I did not go further nor tested it.

 Thinking again now: I think it is better to avoid holidays than week
 numbers. The problem is that we have to decide which holidays are really
 holidays and not rely on the holidays variables that come with Emacs.



 I do not agree.  Lectures are not only skipped on holidays, but also on
 other
 days, so a more general approach is needed.




 Daniel

 2009/12/28 Carsten Dominik carsten.domi...@gmail.com
 Hi Daniel,


 On Dec 27, 2009, at 1:51 AM, Daniel Martins wrote:

 I liked the idea of org-diary-class!

 I have added the function now to org-agenda.el



 About avoiding holidays and certain weeks:

 I used remind and wyrd for a while  and they are a quite good software
 for dealing with such appts.

 There we have the OMIT function where we determine holidays and other
 non-working days including Sat and Sundays


 Normally we have an OMIT list at the beginning of file

 Some functions simply omit those dates

 Other expressions use another keyword AFTER (or BEFORE)  to change
 OMIT behaviour

 like
 23 Mar AFTER OMIT Bank payment

 eg If 23 Mar is in Saturday it will appear in Monday

 This preamble is just to say 2 things:

 1) remind/wyrd could be used as a benchmark for some of the calendar
 isuues we have

 2) I do not know if the week number in a year is a practical way of
 setting exceptions to org-diary-class

 Daniel

 PS Wyrd page is

 http://pessimization.com/software/wyrd/

 Interesting.  But too complex for now - and I actually do prefer local
 control.

 - Carsten







 2009/12/26 Carsten Dominik carsten.domi...@gmail.com:
 Hi Daniel,

 I think it is a good idea to add such a function to org-mode.  But I
 am not sure if skipping holidays is the best, because Universities
 also have lecture-free weeks etc.

 So I am more thinking about a function like this (untested)

 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname rest skip-weeks)
  Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
 Order of the parameters is M1, D1, Y1, M2, D2, Y2 if
 `european-calendar-style' is nil, and D1, M1, Y1, D2, M2, Y2 if
 `european-calendar-style' is t.  The weeks are ISO week numbers where
 the item should not apply.
  (let* ((date1 (calendar-absolute-from-gregorian
   (if european-calendar-style
   (list d1 m1 y1)
 (list m1 d1 y1
   (date2 (calendar-absolute-from-gregorian
   (if european-calendar-style
   (list d2 m2 y2)
 (list m2 d2 y2
   (d (calendar-absolute-from-gregorian date)))
  (and
   (= date1 d)
   (= d date2)
   (= (calendar-day-of-week date) dayname)
   (or (not skip-weeks)
   (progn
 (require 'cal-iso)
 (not (member (car (calendar-iso-from-absolute d)) skip-weeks
   entry)))


 What do you think?

 - Carsten

 On Dec 21, 2009, at 4:54 PM, Daniel Martins wrote:

 In fact, it helps! Thanks

 However a sentence like this:


 +# a class that meets every Monday evening between February 16 and
 April 20, 2009
 ** Class 7:00pm-9:00pm
 %%(and (= 1 (calendar-day-of-week date)) (diary-block 2 16 2009 4 20
 2009))

 is not an example of simplicity and visibility

Re: [Orgmode] Re: Organizing a students live

2010-02-10 Thread Daniel Martins
Thank you very much John. Incredibly fast answer !!!


BTW Is there an easy /practical  way to convert holidays dates to number of
weeks?

daniel

2010/2/10 John Rakestraw li...@johnrakestraw.com

  Daniel Martins writes:

  Someone could send me an example of the use of the org-diary-class ??

 *** 12:15-13:05 Class
%%(org-diary-class 1 13 2010 5 3 2010 1 3 7 10 14)
%%(org-diary-class 1 13 2010 5 3 2010 3 10)
%%(org-diary-class 1 13 2010 5 3 2010 5 10 13)

 Class meets Mon-Wed-Fri from Jan 13 to May 3 from 12:15 to 13:05, with
 holidays as indicated. Friday's class, for example, doesn't meet in weeks
 10 and 13.

 --
 John Rakestraw

___
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: Organizing a students live

2010-02-10 Thread Daniel Martins
Thanks Stephan,

I still miss a lot the OMIT function of remind/wyrd ...

Daniel

2010/2/10 Stephan Schmitt drmab...@cs.tu-berlin.de

 Hi Daniel,

 Also sprach Daniel Martins:

  BTW Is there an easy /practical  way to convert holidays dates to number
 of weeks?


 the only way I'm aware of:
 M-x calendar
 navigate to the holiday date (type ? for the info node)
 type p c (print the ISO date in the message area)

 or take a look in your filofax...

 Hth,
Stephan



  Someone could send me an example of the use of the org-diary-class
 ??

*** 12:15-13:05 Class
   %%(org-diary-class 1 13 2010 5 3 2010 1 3 7 10 14)
   %%(org-diary-class 1 13 2010 5 3 2010 3 10)
   %%(org-diary-class 1 13 2010 5 3 2010 5 10 13)

Class meets Mon-Wed-Fri from Jan 13 to May 3 from 12:15 to 13:05, with
holidays as indicated. Friday's class, for example, doesn't meet in
weeks
10 and 13.

--
John Rakestraw



___
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: Organizing a students live

2010-02-10 Thread Daniel Martins
It helps!

It is silly how I never noticed  the (W06) in top of agenda!

Anyway Nick comments

but I guess the more difficult question is a user interface that allows
 you to construct such elaborate org-diary-class constructs.


are quite pertinent.

Daniel

2010/2/10 Carsten Dominik carsten.domi...@gmail.com


 On Feb 10, 2010, at 11:20 PM, Nick Dokos wrote:

  Daniel Martins daniel...@gmail.com wrote:

  2010/2/10 John Rakestraw li...@johnrakestraw.com

  Daniel Martins writes:


  Someone could send me an example of the use of the org-diary-class ??


   *** 12:15-13:05 Class
  %%(org-diary-class 1 13 2010 5 3 2010 1 3 7 10 14)
  %%(org-diary-class 1 13 2010 5 3 2010 3 10)
  %%(org-diary-class 1 13 2010 5 3 2010 5 10 13)

   Class meets Mon-Wed-Fri from Jan 13 to May 3 from 12:15 to 13:05, with
   holidays as indicated. Friday's class, for example, doesn't meet in
 weeks
   10 and 13.

 Thank you very much John. Incredibly fast answer !!!

 BTW Is there an easy /practical  way to convert holidays dates to number
 of weeks?


 Not sure I read this right, but if you are talking about converting a
 date to a week-number (as e.g. exhibited at the top of the weekly
 agenda), this should do the trick:

 ;;; date is a three-element list (month day year)
 ;;; (calendar-current-date) returns the date in this format.
 (defun week-number (date)
  (org-days-to-iso-week
   (calendar-absolute-from-gregorian date)))

 but I guess the more difficult question is a user interface that allows
 you to construct such elaborate org-diary-class constructs.


 You can also navigate the agenda to the corresponding days, and it will
 show the week number.

 HTH

 - 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] latex enumeration issue

2010-02-06 Thread Daniel Martins
This behaviour and/or hook could not be the default?

Daniel

2010/2/4 Eric S Fraga ucec...@ucl.ac.uk

 At Wed, 03 Feb 2010 18:24:02 -0800,
 Mark Elston wrote:

  P.S.  If anyone is interested here is the embarrassingly simple hook
  function I came up with.  I show it not because I think anyone else
  will find this thing useful but as an example of how simple it
  really is to write this kind of thing.

 very useful, actually.  i use org-mode for my cv.  in my enumerated
 list of my publications, say, I often want to add some notes that
 don't appear in any exported version.  but I also don't want the
 enumeration interrupted.  There are other possible solutions but this
 simple function could prove quite useful indeed.

 thanks,
 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] [OT] See available keybindings?

2010-02-06 Thread Daniel Martins
I tried and it did not work.

I know it is a silly question but how can I set that f6 or f9 be a prefix
command inside org mode?

Daniel


2010/2/5 Ryan Thompson r...@thompsonclan.org

 Try pressing f6 and then C-h. Generally, pressing any prefix followed
 by C-h lists the bindings for that prefix.

 On Fri, Feb 5, 2010 at 10:48 AM, Nathan Neff nathan.n...@gmail.com
 wrote:
  I've defined a list of org-mode shortcuts that start with f6.
 
  Example:
  f6 i = clock in
  f6 o =clock out
 
  Is there a way to see all the available keybindings that begin
  with f6?  Sometimes I'm not sure what key I need to type.
 
  When I press f6, then f6 appears in the minibuffer, waiting for
  another key -- is there a key I can press to see the available choices?
 
  If not, how do I pass f6 to the 'describe-bindings' command when
  invoking it using M-x from the minibuffer?
  That command takes optional arguments, but I don't know how to
  pass arguments to commands from the minibuffer.
 
  Thanks,
  --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
 
 


 ___
 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 to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-26 Thread Daniel Martins
I use a small notebook with small pen as shown in

http://www.upgradeinfoshop.com.br/admin/produtos/8186.jpg


or

http://www.livrariagraf.com.br/ecommerce_produtos_ver_foto.php?id=989


BTW I have to thank Eric for his (always excellent) post!!!


Daniel


2010/1/25 Eric S Fraga ucec...@ucl.ac.uk

 At Sun, 24 Jan 2010 23:09:27 +0900,
 Torsten Wagner wrote:
  However, not all my work is just in front of a computer. And the world

 [...]

  My question is now. What would be the best way to combine the
  moleskine and org-mode ? Does someone have experience  with a paper

 [...]

  Any ideas and experience would be welcome.

 In the olden days (as my son says), I used to run a mixed system
 (well beore org-mode days, mind you).  The best working scenario for
 me was the following:

 - every Sunday, I would go through my paper diary, a Filofax (tm), and
  transfer any new/changed items to my electronic version.
 - I would then print off the next month's calendar in week per two
  pages form compatible my Filofax.
 - during the week, I would tend to work only on paper if I wasn't at
  my desk but, even at the desk, I would update both paper and
  computer simultaneously with new/changed entries.  Any such entries
  would be ticked on the paper so that I knew that I had already
  incorporated them into the computer version.

 Eventually, I gave up and bought a Psion 3 (the original incarnation,
 then a 3a and finally a 3mx) which I carried with me all the time!  My
 3mx died early this century and I have been struggling ever since.
 The Psion was absolutely fantastic, an example of engineering (both
 hardware and software) at its best!

 I now have org-mode which is fantastic in terms of the software end
 (and in many ways is reminiscent of the Psion) but the hardware end is
 lagging [1].  I now use a combination of systems: desktop PCs at work
 and home, netbook (Asus EEE) on the move with a Nokia internet tablet
 (N810) for those times when the netbook is too inconvenient
 (e.g. impromptu lunchtime meetings).  Everything is synchronised using
 git.

 This all works well enough but I still would like a single pocketable
 computer that I could use in all scenarios.  The Nokia's keyboard and
 screen are just a little too small, especially the keyboard.  I am
 hopeful that a more usable system will come out this year as many
 mobile internet devices [MID] and ultra-mobile PCs (UMPC) were
 announced last year.  The UMID co. look promising.  Maybe the
 Pandora!  Possibly one of the Android phones but probably not.

 I won't get an iPhone as I don't like the proprietary nature of the
 software [2].  I want Linux or equivalent with org-mode!

 HTH,
 eric


 Footnotes:
 [1]  and this is *not* Carsten's fault ;-)

 [2]  yes, the Psion ran proprietary software as well but, partly
 because of being orphaned by them, I no longer am willing to end
 up beholden to a single company's system!



 ___
 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] Re: Organizing a students live

2009-12-28 Thread Daniel Martins
 Interesting.  But too complex for now - and I actually do prefer local
control.

I know it is complex.

I thought about the first steps

I was thinking about a variable (list?) with predefined holidays

or better omit-holidays

such as org-omit-holidays

we could add the omit dates in any place
  (add-to-list 'org-omit-holidays 25 Dec)
  (add-to-list 'org-omit-holidays 1 Jan)
  (add-to-list 'org-omit-holidays 1 May)
etc.


Then we could change (adapt) the

function calendar-check-holydays from holidays.el


I did a search-replace to something like this:

(defun org-check-calendar-omit-holidays (date)
  Check the list of org-omit-holidays for any that occur on DATE.
The value returned is a list of strings of relevant org-omit-holiday
descriptions.
The org-omit-holidays are those in the list `org-omit-holidays'.
  (let ((displayed-month (extract-calendar-month date))
(displayed-year (extract-calendar-year date))
(org-omit-holiday-list))
(dolist (h (calendar-org-omit-holiday-list))
  (if (calendar-date-equal date (car h))
  (setq org-omit-holiday-list (append org-omit-holiday-list (cdr
h)
org-omit-holiday-list))

with these adaptation we could use a slighly changed  version of the
diary-schedule function  I sent before.

I did not go further nor tested it.

Thinking again now: I think it is better to avoid holidays than week
numbers. The problem is that we have to decide which holidays are really
holidays and not rely on the holidays variables that come with Emacs.


Daniel

2009/12/28 Carsten Dominik carsten.domi...@gmail.com

 Hi Daniel,


 On Dec 27, 2009, at 1:51 AM, Daniel Martins wrote:

  I liked the idea of org-diary-class!


 I have added the function now to org-agenda.el



 About avoiding holidays and certain weeks:

 I used remind and wyrd for a while  and they are a quite good software
 for dealing with such appts.

 There we have the OMIT function where we determine holidays and other
 non-working days including Sat and Sundays


 Normally we have an OMIT list at the beginning of file

 Some functions simply omit those dates

 Other expressions use another keyword AFTER (or BEFORE)  to change
 OMIT behaviour

 like
 23 Mar AFTER OMIT Bank payment

 eg If 23 Mar is in Saturday it will appear in Monday

 This preamble is just to say 2 things:

 1) remind/wyrd could be used as a benchmark for some of the calendar
 isuues we have

 2) I do not know if the week number in a year is a practical way of
 setting exceptions to org-diary-class

 Daniel

 PS Wyrd page is

 http://pessimization.com/software/wyrd/


 Interesting.  But too complex for now - and I actually do prefer local
 control.

 - Carsten







 2009/12/26 Carsten Dominik carsten.domi...@gmail.com:

 Hi Daniel,

 I think it is a good idea to add such a function to org-mode.  But I
 am not sure if skipping holidays is the best, because Universities
 also have lecture-free weeks etc.

 So I am more thinking about a function like this (untested)

 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname rest skip-weeks)
  Entry applies if date is between dates on DAYNAME, but skips
 SKIP-WEEKS.
 Order of the parameters is M1, D1, Y1, M2, D2, Y2 if
 `european-calendar-style' is nil, and D1, M1, Y1, D2, M2, Y2 if
 `european-calendar-style' is t.  The weeks are ISO week numbers where
 the item should not apply.
  (let* ((date1 (calendar-absolute-from-gregorian
(if european-calendar-style
(list d1 m1 y1)
  (list m1 d1 y1
(date2 (calendar-absolute-from-gregorian
(if european-calendar-style
(list d2 m2 y2)
  (list m2 d2 y2
(d (calendar-absolute-from-gregorian date)))
   (and
(= date1 d)
(= d date2)
(= (calendar-day-of-week date) dayname)
(or (not skip-weeks)
(progn
  (require 'cal-iso)
  (not (member (car (calendar-iso-from-absolute d)) skip-weeks
entry)))


 What do you think?

 - Carsten

 On Dec 21, 2009, at 4:54 PM, Daniel Martins wrote:

  In fact, it helps! Thanks

 However a sentence like this:


 +# a class that meets every Monday evening between February 16 and
 April 20, 2009
 ** Class 7:00pm-9:00pm
 %%(and (= 1 (calendar-day-of-week date)) (diary-block 2 16 2009 4 20
 2009))

 is not an example of simplicity and visibility for a quite common
 feature!

 Maybe as a suggestion we could encapsulate such a huge expression in a
 simpler org-mode function ?

 Daniel


 PS In

 http://www.emacswiki.org/cgi-bin/wiki/DiaryMode#toc12

 I found another suggestion which I do not know how to include in
 org-mode


 
 Schedule

 If you want to write a schedule for school or university, you need to
 define a block (it’s derived from diary-block) between two dates and a
 weekday. The following function also recognizes holidays and won’t
 send you to school on those days… :)

  (defun diary-schedule (m1 d1 y1

Re: [Orgmode] Re: Organizing a students live

2009-12-26 Thread Daniel Martins
I liked the idea of org-diary-class!

About avoiding holidays and certain weeks:

I used remind and wyrd for a while  and they are a quite good software
for dealing with such appts.

There we have the OMIT function where we determine holidays and other
non-working days including Sat and Sundays


Normally we have an OMIT list at the beginning of file

 Some functions simply omit those dates

Other expressions use another keyword AFTER (or BEFORE)  to change
OMIT behaviour

like
23 Mar AFTER OMIT Bank payment

eg If 23 Mar is in Saturday it will appear in Monday

This preamble is just to say 2 things:

1) remind/wyrd could be used as a benchmark for some of the calendar
isuues we have

2) I do not know if the week number in a year is a practical way of
setting exceptions to org-diary-class

Daniel

PS Wyrd page is

http://pessimization.com/software/wyrd/




2009/12/26 Carsten Dominik carsten.domi...@gmail.com:
 Hi Daniel,

 I think it is a good idea to add such a function to org-mode.  But I
 am not sure if skipping holidays is the best, because Universities
 also have lecture-free weeks etc.

 So I am more thinking about a function like this (untested)

 (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname rest skip-weeks)
  Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
 Order of the parameters is M1, D1, Y1, M2, D2, Y2 if
 `european-calendar-style' is nil, and D1, M1, Y1, D2, M2, Y2 if
 `european-calendar-style' is t.  The weeks are ISO week numbers where
 the item should not apply.
  (let* ((date1 (calendar-absolute-from-gregorian
                 (if european-calendar-style
                     (list d1 m1 y1)
                   (list m1 d1 y1
         (date2 (calendar-absolute-from-gregorian
                 (if european-calendar-style
                     (list d2 m2 y2)
                   (list m2 d2 y2
         (d (calendar-absolute-from-gregorian date)))
    (and
     (= date1 d)
     (= d date2)
     (= (calendar-day-of-week date) dayname)
     (or (not skip-weeks)
         (progn
           (require 'cal-iso)
           (not (member (car (calendar-iso-from-absolute d)) skip-weeks
     entry)))


 What do you think?

 - Carsten

 On Dec 21, 2009, at 4:54 PM, Daniel Martins wrote:

 In fact, it helps! Thanks

 However a sentence like this:


 +# a class that meets every Monday evening between February 16 and
 April 20, 2009
 ** Class 7:00pm-9:00pm
 %%(and (= 1 (calendar-day-of-week date)) (diary-block 2 16 2009 4 20
 2009))

 is not an example of simplicity and visibility for a quite common feature!

 Maybe as a suggestion we could encapsulate such a huge expression in a
 simpler org-mode function ?

 Daniel


 PS In

 http://www.emacswiki.org/cgi-bin/wiki/DiaryMode#toc12

 I found another suggestion which I do not know how to include in org-mode


 
 Schedule

 If you want to write a schedule for school or university, you need to
 define a block (it’s derived from diary-block) between two dates and a
 weekday. The following function also recognizes holidays and won’t
 send you to school on those days… :)

   (defun diary-schedule (m1 d1 y1 m2 d2 y2 dayname)
     Entry applies if date is between dates on DAYNAME.
   Order of the parameters is M1, D1, Y1, M2, D2, Y2 if
   `european-calendar-style' is nil, and D1, M1, Y1, D2, M2, Y2 if
   `european-calendar-style' is t. Entry does not apply on a history.
     (let ((date1 (calendar-absolute-from-gregorian
                   (if european-calendar-style
                       (list d1 m1 y1)
                     (list m1 d1 y1
           (date2 (calendar-absolute-from-gregorian
                   (if european-calendar-style
                       (list d2 m2 y2)
                     (list m2 d2 y2
           (d (calendar-absolute-from-gregorian date)))
       (if (and
            (= date1 d)
            (= d date2)
            (= (calendar-day-of-week date) dayname)
            (not (check-calendar-holidays date))
            )
            entry)))

 Then: %%(diary-schedule 22 4 2003 1 8 2003 2) 18:00 History


 



 2009/12/20 Matt Lundin m...@imapmail.org:

 Daniel Martins daniel...@gmail.com writes:

 All academics here present (including of course Carsten) suffer from
 the same problem, I think


 *** Math classes
 2009-12-10 Thu 11:00-14:00 +1w


 will repeat forever and ever...

 We need to create a schedule for a period.

 The package remind (and its simple interface wyrd) do this job
 wonderfully but I do not know how to deal with this problem in Org
 mode

 The following FAQ should help:

 http://orgmode.org/worg/org-faq.php#diary-sexp-in-org-files

 - Matt






___
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: Organizing a students live

2009-12-21 Thread Daniel Martins
In fact, it helps! Thanks

However a sentence like this:


+# a class that meets every Monday evening between February 16 and
April 20, 2009
** Class 7:00pm-9:00pm
%%(and (= 1 (calendar-day-of-week date)) (diary-block 2 16 2009 4 20 2009))

is not an example of simplicity and visibility for a quite common feature!

Maybe as a suggestion we could encapsulate such a huge expression in a
simpler org-mode function ?

Daniel


PS In

http://www.emacswiki.org/cgi-bin/wiki/DiaryMode#toc12

I found another suggestion which I do not know how to include in org-mode



Schedule

If you want to write a schedule for school or university, you need to
define a block (it’s derived from diary-block) between two dates and a
weekday. The following function also recognizes holidays and won’t
send you to school on those days… :)

(defun diary-schedule (m1 d1 y1 m2 d2 y2 dayname)
  Entry applies if date is between dates on DAYNAME.
Order of the parameters is M1, D1, Y1, M2, D2, Y2 if
`european-calendar-style' is nil, and D1, M1, Y1, D2, M2, Y2 if
`european-calendar-style' is t. Entry does not apply on a history.
  (let ((date1 (calendar-absolute-from-gregorian
(if european-calendar-style
(list d1 m1 y1)
  (list m1 d1 y1
(date2 (calendar-absolute-from-gregorian
(if european-calendar-style
(list d2 m2 y2)
  (list m2 d2 y2
(d (calendar-absolute-from-gregorian date)))
(if (and
 (= date1 d)
 (= d date2)
 (= (calendar-day-of-week date) dayname)
 (not (check-calendar-holidays date))
 )
 entry)))

Then: %%(diary-schedule 22 4 2003 1 8 2003 2) 18:00 History






2009/12/20 Matt Lundin m...@imapmail.org:
 Daniel Martins daniel...@gmail.com writes:

 All academics here present (including of course Carsten) suffer from
 the same problem, I think


 *** Math classes
 2009-12-10 Thu 11:00-14:00 +1w


 will repeat forever and ever...

 We need to create a schedule for a period.

 The package remind (and its simple interface wyrd) do this job
 wonderfully but I do not know how to deal with this problem in Org
 mode

 The following FAQ should help:

 http://orgmode.org/worg/org-faq.php#diary-sexp-in-org-files

 - Matt



___
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] Contracts in Orgmode

2009-12-21 Thread Daniel Martins
Important question

It has some relation with other topic on the list

http://thread.gmane.org/gmane.emacs.orgmode/20780/focus=20857

2009/12/21 Markus Heller helle...@gmail.com:
 Hello all,

 please consider the following scenario:

 I have a contract with Client A; the contract is valid from January 1, 2010
 until March 31, 2010.  I want to clock all my work on tasks under this
 contract, and of course *only* while the contract is valid.  30 days before
 the expiry date, I'd like to get a reminder.

 After some googling and reading, I came up with the following for my org
 file Client.org:

 * Contract A
  %%(diary-block 01 01 2010 03 31 2010)

 ** TODO Renew Contract
   DEADLINE: 2010-03-31 Wed

 ** Task A
   :LOGBOOK:

 ** Task B
   :LOGBOOK:

 I want to log the hours I spend on Task A and Task B, but as mentioned
 before, *only* while the contract is valid.  How can I get orgmode to pop up
 a message in the status line (or whatever it's called :)) when I'm trying to
 clock in Task A or Task B before January 1, 2010 or after March 31, 2010?

 Any hints appreciated :)

 Thanks and Cheers
 Markus



 ___
 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] Organizing a students live

2009-12-20 Thread Daniel Martins
All academics here present (including of course Carsten) suffer from
the same problem, I think


*** Math classes
2009-12-10 Thu 11:00-14:00 +1w


will repeat forever and ever...

We need to create a schedule for a period.

The package remind (and its simple interface wyrd) do this job
wonderfully but I do not know how to deal with this problem in Org
mode

Daniel
2009/12/19 Thomas Bach bac...@uni-mainz.de:
 Hi Jan,

 interesting setup, it never came to my mind to organize everything on a
 weekly basis. Well, it makes sense. :)
 Why do you put inactive timestamps for beginning and end of the
 semester? Doesn’t that mean that it won’t show up in the agenda view?
 How are you handling examens?

 With the hints of Giovanni and Darlan I actually came up with something
 like this:

 * Calendario
  :PROPERTIES:
  :CATEGORY: Calendario
  :END:
 ** segundo cuatrimestre
   2010-02-08 Mon
 *** vacaciones
    2010-03-15 Mon--2010-03-19 Fri
    2010-04-02 Fri--2010-04-12 Mon
 *** finaliza segundo cuatrimestre
    2010-06-04 Fri

 For the rare dates of the semester. I like this to get a fast overview
 when planing travels etc..

 For classes I created a tree like the following:

 * Classes
 ** Inteligencia Artificial
   :PROPERTIES:
   :CATEGORY: IA
   :END:
 *** teoría
    2009-12-10 Thu 11:00-14:00 +1w
 *** examen
    :PROPERTIES:
    :CATEGORY: IA examen
    :END:
  practicas
     2010-01-14 Thu 11:00
  teoria
     2010-01-29 Fri 09:00
 *** trabajos
  presentar el texto
     DEADLINE: 2010-01-07 Thu
 * TODO leer el texto y resumir

 But there are some still things that don’t fit together e.g. that
 classes (teoría) show up on vacations…
 BTW: Is it possible to inherit from higher CATEGORYs instead of
 overwriting it? So that I could only write :CATEGORY: examen?

 I will think and try out a bit more with all this over the weekend.

 Best regards,
     Thomas Bach.


 ___
 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] Beamer support in Org-mode

2009-12-18 Thread Daniel Martins
\pnote could be an option

Another idea is to reserve the lowest level to notes

* section
** subsection
*** frame
etc


** notes

(I don't know how many *'s are needed)

maybe we can set a number / variable

like

org-beamer-frame-level

we could create

org-beamer-notes-level

Daniel


2009/12/18 Nick Dokos nicholas.do...@hp.com:
 Adam Spiers orgm...@adamspiers.org wrote:

 On Tue, Dec 15, 2009 at 04:49:23PM -0300, Darlan Cavalcante Moreira wrote:
  In addition, while I also agree that footnotes shouldn't be in a 
  presentation
  they are allowed when working with beamer and may be useful in some cases. 
  If
  org-mode export footnotes as beamer notes then some months from now someone
  would be asking here in the mailing-list how to enter a standard footnote 
  when
  exporting to beamer.

 I agree - unfortunately there are genuinely sensible uses of footnotes
 in presentations.  For example, citation of sources for quotations,
 data etc. is ideally accomplished by footnotes: they are not used
 during the presentation itself, but by distributing paper and/or
 electronic copies after the talk, footnotes provide essential
 reference data for perusal by the audience at a later date.

 I think that's an argument *for* Eric's idea (assuming that the handout
 includes notes - that's my practice, but maybe not everybody does that,
 although they *should* :-) ).

 In general, I think slides should be very simple: single-level lists,
 single idea per slide, no footnotes - but I know that generalities like
 that are just guidelines: meant to be broken, given a good enough cause.

 Imagine a slide showing the results of a benchmark, claiming X is
 much faster than Y!  You might want to talk briefly about how the
 results were obtained, and about the impact of the results, but you
 would also need to be able to tell the audience they could
 independently verify the results by obtaining a copy of the slides and
 visiting the URL contained in the footnote - especially if the results
 are controversial!  In this case, it would not matter that the URL was
 too small to be legible from the back of the room.



 How does inverting Eric's idea sound: invent a new kind of footnote,
 let's call it, say, a pnote, which is treated exactly like a footnote in
 all exports *except* beamer. In beamer, footnotes end up in the frame
 and pnotes end up in the notes.

 Not sure whether the implementation would be as simple as this makes it
 sound, but who knows?[1]

 Thanks,
 Nick

 [1] Well, OK: Carsten knows...




 ___
 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] Beamer support in Org-mode

2009-12-15 Thread Daniel Martins
Good idea Eric (footnotes - \notes)

The only minor problem is number of lines per footnote/note.

When I make notes on Bemaer in general my notes have more than one line.

AFAIK footnotes in org are single lines or you have to separate them
with \par which is not so good.

Daniel

2009/12/15 Eric S Fraga ucec...@ucl.ac.uk:
 At Thu, 10 Dec 2009 17:09:33 +0100,
 Carsten Dominik wrote:


 [...]

 One option would be to turn all those notes into footnotes
 for other export.

 Carsten,

 I wonder if simply turning this on its head wouldn't be a good
 solution?  By this I mean to use org-mode footnotes to represent
 beamer notes (at least in my view footnotes make no sense in
 presentations).  In export, footnotes are translated to notes for
 beamer but are treated as usual for all other export targets.

 A thought...


 ___
 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] Beamer support - 2nd round

2009-12-07 Thread Daniel Martins
I had the same problem with org-beamer-add-units-to-column-width

daniel

2009/12/7 JBash bashve...@gmail.com:


 On Mon, Dec 7, 2009 at 3:15 PM, JBash bashve...@gmail.com wrote:


 On Sat, Dec 5, 2009 at 3:05 AM, Carsten Dominik
 carsten.domi...@gmail.com wrote:

 On Dec 5, 2009, at 1:04 AM, Daniel Martins wrote:

 Thank you very much

 I did everything you suggested and everything worked nicely


 But even using load-libray

 org-latex

 and

 org-beamer

 I received


 Loading /home/daniel/emacs-lisp/org-mode/lisp/org-beamer.el
 (source)...done
 Loading /home/daniel/emacs-lisp/org-mode/lisp/org-latex.el
 (source)...done
 Select command:
 Exporting to LaTeX...
 or: No definition for class `beamer' in `org-export-latex-classes'

 If you have customized org-export-latex-classes before, then the value
 you stored will overwrite the new default (which contains the beamer entry.
  Two ways to fix this:

 1. Remove you customization of this variable, restart Emacs, and
 customize again to redo the changed you have made earlier.  THis is the
 safest way.

 OR

 2. Customize the variable and create a new entry for beamer, with this:
    (beamer
     \\documentclass{beamer}
 \\usepackage[utf8]{inputenc}
 \\usepackage[T1]{fontenc}
 \\usepackage{graphicx}
 \\usepackage{longtable}
 \\usepackage{float}
 \\usepackage{wrapfig}
 \\usepackage{soul}
 \\usepackage{amssymb}
 \\usepackage{hyperref}
     org-beamer-sectioning
 ))


 So in your customize buffer it must look like this:






 Note in paricular that under |levels|, you must choose Hook computing
 section levels from the value menu

 - Carsten


 2009/12/4 Nick Dokos nicholas.do...@hp.com:

 Daniel Martins daniel...@gmail.com wrote:

 Stupid question 9but I could not answer it)


 I have to set up

 (add-to-list 'org-export-latex-classes
             '(beamer
               \\documentclass[11pt]{beamer}
 ...)

 ???


 No.


 Or I have to imput another .el which sets org-export-latex-classes
 correctl=
 y?

 I sue the latest git version of org-mode 6.33trans and
 I tried to use the example but I couldn't

 Are you using git to keep up to date with org-mode? If not, then
 afaict,
 you cannot get it yet. If you are using git, you can do something like
 this:

 $ git branch -r
  origin/HEAD
  origin/add-recursion-to-org-publish
  origin/beamer
  origin/emacs23
  origin/experimental
  origin/experimental-code-for-the-new-export-engine
  origin/master
  origin/mobile-support
  origin/org-plot-doc
  origin/support-for-mobile-sync

 you can see there is a remote branch called origin/beamer. You can
 create
 a local tracking branch with

 $ git branch beamer origin/beamer

 and check it out:

 $ git checkout beamer

 If you then look in lisp/org-latex.el, you should see the beamer stuff.

 HTH,
 Nick


 - Carsten


 This is not working quite right for me...
 I pulled the latest beamer branch from git this morning and installed it.
 I am getting the export to latex, but no columns in the beamer (tex) and
 resulting pdf file.  There is a title frame, a TOC (blank) frame, and then a
 single frame titled This is the first structural section.  All other
 elements are nested itemized lists on that single slide.

 I manually copied the org-beamer.el file to my site-lisp area.  Is that
 supposed to be installed along with the other org files?


 I had also previously defined org-latex-export-classes, and have removed
 that from my .emacs file.


 Correction:  I meant org-export-latex-classes  ... Sorry.

 I am also seeing an unexpected error the *second* (and subsequent) time I
 export (without changes to the org file) to to PDFabout a column-width
 function:

 Select command:
 Exporting to PDF...
 Exporting to LaTeX...
 org-beamer-open-column: Symbol's function definition is void:
 org-beamer-add-units-to-column-width

 If I restart emacs, I can export again (1 time) without these errors.

 If this points to something obvious in my configuration, please let me
 know.  I suspect I have something strangely configured, as no one else is
 having these issues.

 Thanks,
 Jerry




___
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] Beamer support - 2nd round

2009-12-05 Thread Daniel Martins
Carsten hit the target. I have customized org-export-latex-classes before!


The first option did not work (I do not know why) but the second option did!

The teste worked perfectly!!


Thanks again carsten and Nicholas


Daniel


2009/12/5 Carsten Dominik carsten.domi...@gmail.com:

 On Dec 5, 2009, at 1:04 AM, Daniel Martins wrote:

 Thank you very much

 I did everything you suggested and everything worked nicely


 But even using load-libray

 org-latex

 and

 org-beamer

 I received


 Loading /home/daniel/emacs-lisp/org-mode/lisp/org-beamer.el
 (source)...done
 Loading /home/daniel/emacs-lisp/org-mode/lisp/org-latex.el (source)...done
 Select command:
 Exporting to LaTeX...
 or: No definition for class `beamer' in `org-export-latex-classes'

 If you have customized org-export-latex-classes before, then the value you
 stored will overwrite the new default (which contains the beamer entry.  Two
 ways to fix this:

 1. Remove you customization of this variable, restart Emacs, and customize
 again to redo the changed you have made earlier.  THis is the safest way.

 OR

 2. Customize the variable and create a new entry for beamer, with this:
    (beamer
     \\documentclass{beamer}
 \\usepackage[utf8]{inputenc}
 \\usepackage[T1]{fontenc}
 \\usepackage{graphicx}
 \\usepackage{longtable}
 \\usepackage{float}
 \\usepackage{wrapfig}
 \\usepackage{soul}
 \\usepackage{amssymb}
 \\usepackage{hyperref}
     org-beamer-sectioning
 ))


 So in your customize buffer it must look like this:






 Note in paricular that under |levels|, you must choose Hook computing
 section levels from the value menu

 - Carsten


 2009/12/4 Nick Dokos nicholas.do...@hp.com:

 Daniel Martins daniel...@gmail.com wrote:

 Stupid question 9but I could not answer it)


 I have to set up

 (add-to-list 'org-export-latex-classes
             '(beamer
               \\documentclass[11pt]{beamer}
 ...)

 ???


 No.


 Or I have to imput another .el which sets org-export-latex-classes
 correctl=
 y?

 I sue the latest git version of org-mode 6.33trans and
 I tried to use the example but I couldn't

 Are you using git to keep up to date with org-mode? If not, then afaict,
 you cannot get it yet. If you are using git, you can do something like
 this:

 $ git branch -r
  origin/HEAD
  origin/add-recursion-to-org-publish
  origin/beamer
  origin/emacs23
  origin/experimental
  origin/experimental-code-for-the-new-export-engine
  origin/master
  origin/mobile-support
  origin/org-plot-doc
  origin/support-for-mobile-sync

 you can see there is a remote branch called origin/beamer. You can create
 a local tracking branch with

 $ git branch beamer origin/beamer

 and check it out:

 $ git checkout beamer

 If you then look in lisp/org-latex.el, you should see the beamer stuff.

 HTH,
 Nick


 - 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] Beamer support - 2nd round

2009-12-04 Thread Daniel Martins
Stupid question 9but I could not answer it)


I have to set up

(add-to-list 'org-export-latex-classes
 '(beamer
   \\documentclass[11pt]{beamer}
...)

???


Or I have to imput another .el which sets org-export-latex-classes correctly?

I sue the latest git version of org-mode 6.33trans and
I tried to use the example but I couldn't


Daniel

2009/12/4 Eric S Fraga ucec...@ucl.ac.uk:
 At Thu, 3 Dec 2009 17:10:44 +0100,
 Carsten Dominik wrote:

 after carefully listening to all your comments and thinking
 things through more thoroughly, here is now my second attempt
 to define beamer support in Org-mode.

 Carsten,

 Thanks for this!  After learning a bit about git branches (more than I
 probably wanted to know ;-) and a bit more about org mode columns
 view, I can say that I like what you have done.  I've been playing
 with your sample file for a short while and it looks a good design
 which seems to support everything /I/ would want and does so in an
 easy way (especially the combination of the new C-c C-b special
 org-beamer command and columns view).

 I've run into a few niggles but I need to play some more (probably
 over the weekend) to see whether some of them are my fault or due to
 bugs in the code.  However, some immediate niggles or suggestions are:

 - I need to be able to specify arguments for columns (i.e. the
  environment, not specific columns), specifically
  often [t] to make two columns align vertically

 - I don't understand what the difference between opt and envargs is.
  In fact, I see no reference to BEAMER_opt in the document you wrote
  yet your example has opt as one of the column view specifications.

 - it would be nice if when a column heading is also a block heading,
  that the tags generated (which, by the way, is a really nice
  feature) include both block and column tags to make it easy to spot
  the column aspect.

 You'll probably be hearing from me soon again!

 Oh, and thanks for the separate email showing me how to do my page 100
 with the new setup.  How to do it was actually quite clear from the
 example you gave in the other message.  Very straightforward and does
 work nicely.

 Thanks again,
 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] Org-mode tricks for team management

2009-12-04 Thread Daniel Martins
Amazing work


Keep us up-to-date

I have intention to use a similar approach in my University

Daniel

2009/12/3 Juan Reyero joa...@gmail.com:
 Greetings,

 I have been using org-mode as a key support for my work as a manager
 for quite a while now.  I thought some of the tricks and processes for
 keeping up-to-date with the work of each person in my team might be of
 interest to other people, so I wrote them up at:

 http://juanreyero.com/article/emacs/org-teams.html

 In summary, it is a simple way to keep track of TODO items associated
 to other people, query them, and add context to your notes (who is
 with you, where your are, and the time).  The key idea is to ask emacs
 to remember these things, and use the extra state to automate agenda
 queries and quick tagging.

 I am very grateful to Carsten and all the people contributing to
 org-mode and this list.  It's made a great positive impact in my work.

 Best,

 Juan
 ---
 http://juanreyero.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



___
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] Beamer support - 2nd round

2009-12-04 Thread Daniel Martins
Thank you very much

I did everything you suggested and everything worked nicely


But even using load-libray

org-latex

and

org-beamer

I received


Loading /home/daniel/emacs-lisp/org-mode/lisp/org-beamer.el (source)...done
Loading /home/daniel/emacs-lisp/org-mode/lisp/org-latex.el (source)...done
Select command:
Exporting to LaTeX...
or: No definition for class `beamer' in `org-export-latex-classes'

2009/12/4 Nick Dokos nicholas.do...@hp.com:
 Daniel Martins daniel...@gmail.com wrote:

 Stupid question 9but I could not answer it)


 I have to set up

 (add-to-list 'org-export-latex-classes
              '(beamer
                \\documentclass[11pt]{beamer}
 ...)

 ???


 No.


 Or I have to imput another .el which sets org-export-latex-classes correctl=
 y?

 I sue the latest git version of org-mode 6.33trans and
 I tried to use the example but I couldn't

 Are you using git to keep up to date with org-mode? If not, then afaict,
 you cannot get it yet. If you are using git, you can do something like this:

 $ git branch -r
  origin/HEAD
  origin/add-recursion-to-org-publish
  origin/beamer
  origin/emacs23
  origin/experimental
  origin/experimental-code-for-the-new-export-engine
  origin/master
  origin/mobile-support
  origin/org-plot-doc
  origin/support-for-mobile-sync

 you can see there is a remote branch called origin/beamer. You can create
 a local tracking branch with

 $ git branch beamer origin/beamer

 and check it out:

 $ git checkout beamer

 If you then look in lisp/org-latex.el, you should see the beamer stuff.

 HTH,
 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] How lecturers/professors manage weekly classes appts on org?

2009-11-25 Thread Daniel Martins
The question of time ranged notes on the agenda is quite important

How lecturers/professors manage weekly classes appts on org?

How to put some classes on a certain periods? How to skip holidays as
eg remind package do?

Daniel
2009/11/23 Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl:
 lukasz.stelm...@iem.pw.edu.pl (Łukasz Stelmach) writes:

 Isn't it wrong when a note like this:

 * A very interesting meeting 11:15-12:00
   2009-11-30 Mon--2009-12-01 Tue

 It's funny Markus has asked the same question few days ago in:

 he1hm3$5h...@ger.gmane.org

 What's more ausing is that in fact I also have Project Management
 Workshop :-)

 EOT.

 --
 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



___
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] latex export and beamer columns

2009-11-23 Thread Daniel Martins
Eric listed all (or almost all) requirements for exporting Beamer.

Some of the mI encountered a few days ago. I decided to export the
lists into latex and then converting by hand  the rest of the
presentation.

I am also very happy that Beamer is becoming an official directive
of org-mode.
Carsten converted us to org-mode and we converted him to Beamer!

Daniel

2009/11/23 Eric S Fraga ucec...@ucl.ac.uk:
 At Mon, 23 Nov 2009 14:55:53 +0100, Carsten Dominik wrote:

 Hi Eric,

 I am now getting interested in beamer support.  I think this is
 interesting enough to implement special support for making beamer
 slides.

 Excellent!

 Can I ask you to think about it in general terms, what would be useful
 to have?

 I've been using org-mode for my presentations for a few months now and
 intensively the past week or so for a set of lectures (70+ slides) I
 have to give starting tomorrow (yikes!  had better get them
 finished...!).  It's working remarkably well.

 Beamer has many many features and I think it would violate the ethos
 of org-mode if we attempted to support the majority of them.  Although
 I can suggest a number of features I think would be nice to support,
 I'm sure others will have a different subset they think is
 critical... however, I will give it a go:

 1. being able to easily specify columns.  I've proposed a solution
   works well for me but it is a bit clumsy and does impose a meaning
   on the 3rd and 4th level headings.  This might conflict with other
   potential uses for these headings obviously (cf. next point). Also,
   please see my response to your comment on the impact of this on
   normal latex export below.  The nice thing about using headings to
   indicate columns is the ease with which the columns can be
   re-ordered.

 2. it would be nice to support the block environment in beamer.  The
   obvious way would be to use 3rd level headings to indicate blocks.
   In my case, I use these less frequently than columns which is why I
   chose to use 3rd level headings to indicate columns.  However, a
   solution that catered for both would be great.

   one solution I am playing with, given that I often have blocks
   within columns, is to use the 5th level headings for block
   headings:

 --8---cut here---start-8---
   (\\section{%s} . \\section*{%s})
   (\\begin{frame}\\frametitle{%s} \\end{frame}
    \\begin{frame}\\frametitle{%s} \\end{frame})
   (\\begin{columns} \% %s \\end{columns}
    \\begin{columns} \% %s \\end{columns})
   (\\begin{column}{%s\\textwidth} \\end{column}
    \\begin{column}{%s\\textwidth} \\end{column})
   (\\begin{block}{%s} \\end{block}
    \\begin{block}{%s} \\end{block})
 --8---cut here---end---8---

   For example, the following would generate a block within a full
   width column on the slide:

 --8---cut here---start-8---
 *** Another slide
 * columns
 *** 1.0
 * My proposition
          - work better
          - work faster
          - have a life
 --8---cut here---end---8---

   Although clumsy, it works!  (set H:5 of course)

 3. support for animation, typically through the special N tags on
   items and blocks (and more generally on most latex environments),
   would be nice.  This can be used to selectively display different
   parts of a slide.  One way to implement this, at least for itemized
   lists, would be through a new bullet point syntax, as in:

   1- item to display from first virtual slide onwards
   2-3 display on second and third views of the slide
   -4 display up to 4th view

   which would translate to

   \begin{itemize}
   \item1- item to display from first virtual slide onwards
   \item2-3 display on second and third views of the slide
   \item-4 display up to 4th view
   \end{itemize}

   I have no idea how hard it would be to incorporate this into the
   current list handling however... although I can imagine it could be
   quite difficult.

 4. as already mentioned in another email, passing arguments to the
   frame environment would also be quite useful.  This could be done
   with an attribute type of framework as done for figures and
   tables.  I don't use many options to frame but I do find the need
   to use [shrink=20] or similar often (because my default font
   setting for beamer is bigger and so slides with more than a few
   bullet points or equations quickly overflow the slide).

 5. finally, I use tikz a great deal in my presentations.  However,
   this is probably best handled by the normal embedded latex features
   already present.

 Again, this list is based on the features I find I use in beamer and
 others will have other requirements unfortunately.

 One of the problems with your most recent solution for the columns
 problem is that the document no longer exports really well to a normal
 LaTeX document - or is this no issue because beamer has its 

Re: [Orgmode] Re: Proposed key binding changes: archiving and attachments

2009-11-07 Thread Daniel Martins
I use both

short topic in a still ongoing section I use simple archive


But when I finish a section or it is something I will not use for a
while I use archive to sibling.

Therefore setting

(setq org-archive-default-command 'org-archive-to-archive-sibling)

to use the a string

is not interesting.

However , I aggree that archiving should have a confirmation y-or-n

Daniel

2009/11/7 David Bremner brem...@unb.ca:
 At Sat, 7 Nov 2009 07:33:30 +0100,
 Carsten Dominik wrote:

 I actually think that few people use archiving to sibling.  Am I
 wrong about this?

 For what it is worth, I have started to use archive to sibling quite a
 lot in the last month or so.  I also like to tidy up my org files, but
 I need to keep the structure for monthly and tri-monthly clock tables.

 d



 ___
 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] org-export-as-freemind writes *.mm files that freemind (0.8.1) cannot read

2009-09-20 Thread Daniel Martins
One more vore for integration

I use FreeMind with my non-Emacs post-graduate students before thay
write anything with pretty good results.

Daniel

PS I am considering Emacs as a requisite to be a post-graduate student!

2009/9/19 Friedrich Delgado Friedrichs frie...@nomaden.org:
 Hi!

 Carsten Dominik schrieb:
 http://www.emacswiki.org/emacs/FreeMind
 ---Zitatende---

 Interesting. I was talking about the org-freemind package in the
 contrib dir of org. The emacswiki page talks about a completely
 different library.

 To make this one work, I have to convert my org file to oddeven levels
 (since it checks if the level step is  1), but then I can just open
 the resulting freemind file with freemind 0.9.0~rc4 (from the
 experimental branch of the debian repository).

 So: Yay! Thanks! ;)

 Maybe it would be worth considering to add this to the org-mode
 documentation. Since it's already part of nxhtml it would probably be
 useless to add it to org's contrib dir.


 --
        Friedrich Delgado Friedrichs frie...@nomaden.org
                             TauPan on Ircnet and Freenode ;)

 ___
 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] Org-mode Makefile: make clean needed? make doc error?

2009-09-11 Thread Daniel Martins
Thanks Samuel,

I would suggest to include your script as another directive for Makefile (if
possible)

In older machines this unneeded compilations takes a lot of time


Daniel

PS It works. I put the script below in a file OrgUpdate

dan...@martins:~/Trabalho/svn/lib/emacs-lisp/org-mode$ OrgUpdate
Already up-to-date.
# On branch master
# Changed but not updated:
#   (use git add file... to update what will be committed)
#
#modified:   Makefile
#
no changes added to commit (use git add and/or git commit -a)
dan...@martins:~/Trabalho/svn/lib/emacs-lisp/org-mode$



2009/9/10 Samuel Wales samolog...@gmail.com

 Perhaps the makefile could use texi2html and emacs-w3m could display?

 Also, AFAIK, git pull does not return an exit status, so  will always
 execute.

 One solution:

head=`git rev-parse --verify HEAD`
git pull
git status
newhead=`git rev-parse --verify HEAD`
if [ $newhead != $head ]
then
#does make clean ret exit code?
account echodoq1 make cleanall  elup--make-clean 
echo \=== make 
makeelup--make 21 
echo 
cat elup--make | account mygrep error
diffoldnew cat doc/org.texi
#make install ... unnec unless you want
#delorg to be backed up.  if so then
#install setting prefix lispdir etc. in
#some annoying way
fi

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

2009-09-07 Thread Daniel Martins
Ben,

Please publish your .emacs configuration!

Daniel

2009/9/7 B Smith-Mannschott bsmith.o...@gmail.com

 A few tips from an emacs hand who has had issues with repetitive
 strain in the past:

 The first thing I did after starting my first real job (years ago,
 when my RSI was pretty bad and my employer-supplied keyboard was in
 violation of the geneva conventions):

 1. I got a kinesis contoured keyboard (like the Kinesis Advantage
 I'm typing on now.) It places C- and M- (Alt key) under your thumbs.
 (You could even assign them to foot pedals, though I never managed due
 to lack of rhythm -- guess I should have taken drumming classes at
 school.) The layout is completely programmable without additional
 software. In short: it's the ultimate emacs keybaord.

 2. More recently, I had a flare up (Apple's wireless mouse is the work
 of the devil, for my hands at least.) It was then that I discovered
 Sticky Keys.

 Sticky keys takes some getting used to. It makes every modifier key
 work a little like caps lock. Sounds horrible, doesn't it? Well, it's
 not really. Basically, if you press control once, it locks control
 down for the next keystroke only, after which point the keyboard
 returns to normal. Press control twice, and it locks down until you
 release it with a third press.

 C-x C-f

 Used to be: press and hold control. Press and release x. press and
 release f. Release control.
 Now it's Press and release control twice. Press and release x. press
 and release f. Press and release control.

 This turns out to be easier on my hands because I don't find myself
 contorting my hands across the keyboard while I try to hold down more
 than one key at a time. I have sticky keys turned on on all my
 computers, except for the one at work where I have the kinesis
 keyboard.

  3. I've rebound caps lock to control on all my keyboards (apart from
 the kinesis, where I have caps lock bound to the windows key.)

 4. I have a happy hacking keyboard, which has control where caps
 lock is on an AT keyboard (and no caps key). The happy hacking
 keyboard has the drawback that it has no right control key. (Sticky
 keys helps here too.)

 // Ben


 ___
 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


[Orgmode] Re: Org-mode version 6.30trans (release_6.30d.5.gc125); make fails on org-ascii.el

2009-09-05 Thread Daniel Martins
Is it not possible to pu tsome directive in the Makefile in order to make

check the presence of *.elc without corresponding *.el and deleting them
BEFORE or simultaneously with recompilation process?

It should improve the compilation process.

Maybe it could be create a new directive such as

make clean-install

to keep make install with backward compatibility.

Unfortunately I do not master makefile issues to do this by myself.

The phrase omitting the make clean has the potential to cause problems
may lead to bogus bugs here in the list. These king of bugs are really
hard ti find.

Daniel

2009/9/5 Matt Lundin m...@imapmail.org

 Hi Daniel,

 Daniel Martins daniel...@gmail.com writes:

  On the other hand: Shouldn't a simple `make' do everything needed
  to succeed?
 
  On How do I keep current with Org mode development?
 
  http://orgmode.org/worg/org-faq.php#
  keeping-current-with-Org-mode-development
 
  it is suggested the following commands
 
  git pull  make clean  make  make doc  make install
 
  I've put together with a command which updaes a bunch of svn
  repositories from my students.
 
  The problem is: make clean before make FORCES recompiling the same
  files again and not only the updated files!
 
  As org-mode is updated very often and the the compiling process is a
  bit slow and always annoying
  I decide to change the comand to
 
  git pull   make   make install
 
  I dropped make doc because it seems that there is som problem with
  texinfo files of these new version.
 
  The problem of omitting make clean isthat: if a file disappears its
  compiled maybe will not disappear and cause problems.
 
  Therefore I repeat Sebastien request:
 
  Shouldn't a simple `make' do everything needed to succeed?

 I can't say anything definitive. All I know is that a simple make 
 make install usually works for me.

 But, as far as I understand it, omitting the make clean has the
 potential to cause problems, because org source files are occasionally
 renamed or made obsolete. So if you run into any problems after an
 install, you should run make clean.

 Best,
 Matt


___
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] agenda-custom view with timegrid not showing inherited tags

2009-09-05 Thread Daniel Martins
I want to create a custom agenda view without all my :WEEKLY: tags appts to
focus on extraordinary appointmens on the week.

I could not do that directly because most :WEEKLY: tags were inherited.


I did a hack  by eliminating the regexp \\+1w common to all my weekly
todos but combinations with other  inherited tags was not possible

How can I do this in a more elegante way?

Daniel

(setq org-agenda-custom-commands
  '(
...
(l cLeaning Weekly
 agenda 
 ((org-agenda-ndays 7)  ;; agenda will start in week view
  (org-agenda-repeating-timestamp-show-all t)   ;; ensures that
repeating events appear on all relevant dates
  (org-agenda-log-mode-items '(state))
  (org-agenda-skip-function '(org-agenda-skip-entry-if
'scheduled 'deadline 'regexp \\+1w)
   )
  )
 )
...
)
___
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-mode Makefile: make clean needed? make doc error?

2009-09-05 Thread Daniel Martins
Keeping update with org-mode has giving me some headaches with the Makefile
These headaches come from my lack of knowledge probably.


First is the necessity or not of

make clean

before

make

forcing to recompile ALL *.el even those unchanged. On slow computers, maybe
this is a problem.

The other problem is

make doc

I am always getting the Fatal Error below

dan...@martins:~/emacs-lisp/org-mode$ make doc
(cd doc; texi2pdf org.texi)
This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
 %-line parsing enabled.
entering extended mode
(./txiversion.tex
LaTeX2e 2005/12/01
Babel v3.8h and hyphenation patterns for english, usenglishmax, dumylang,
noh
yphenation, portuguese, loaded.
(/home/daniel/emacs-lisp/org-mode/doc/texinfo.tex
Loading texinfo [version 2003-02-03.16]: Basics, pdf,
(/usr/share/texmf-texlive/tex/plain/misc/pdfcolor.tex) fonts,
! Undefined control sequence.
\resetmathfonts ...font 2=\tensy \textfont \itfam
  =\tenit \textfont \slfam
=...
l.1414 \textfonts

?
! Emergency stop.
\resetmathfonts ...font 2=\tensy \textfont \itfam
  =\tenit \textfont \slfam
=...
l.1414 \textfonts

!  == Fatal error occurred, no output PDF file produced!
Transcript written on txiversion.log.
/usr/bin/texi2dvi: texinfo.tex appears to be broken, quitting.
make: ** [doc/org.pdf] Erro 1
___
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: agenda-custom view with timegrid not showing inherited tags

2009-09-05 Thread Daniel Martins
PROBLEM SOLVED

I have found the solution hidden in the list:

  (org-agenda-filter-preset '(-WEEKLY))

2009/9/5 Daniel Martins daniel...@gmail.com

 I want to create a custom agenda view without all my :WEEKLY: tags appts to
 focus on extraordinary appointmens on the week.

 I could not do that directly because most :WEEKLY: tags were inherited.


 I did a hack  by eliminating the regexp \\+1w common to all my weekly
 todos but combinations with other  inherited tags was not possible

 How can I do this in a more elegante way?

 Daniel

 (setq org-agenda-custom-commands
   '(
 ...
 (l cLeaning Weekly
  agenda 
  ((org-agenda-ndays 7)  ;; agenda will start in week view
   (org-agenda-repeating-timestamp-show-all t)   ;; ensures that
 repeating events appear on all relevant dates
   (org-agenda-log-mode-items '(state))
   (org-agenda-skip-function '(org-agenda-skip-entry-if
 'scheduled 'deadline 'regexp \\+1w)
)
   )
  )
 ...
 )

___
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-mode version 6.30trans (release_6.30d.5.gc125); make fails on org-ascii.el

2009-09-04 Thread Daniel Martins

 *On the other hand: Shouldn't a simple `make' do everything needed to
 succeed?*



On How do I keep current with Org mode development?

http://orgmode.org/worg/org-faq.php#keeping-current-with-Org-mode-development

it is suggested the following commands

git pull  make clean  make  make doc  make install


I've put together with a command which updaes a bunch of svn repositories
from my students.

The problem is: make clean before make FORCES recompiling the same files
again and not only the updated files!

As org-mode is updated very often and the the compiling process is a bit
slow and always annoying
I decide to change the comand to

git pull   make   make install

I dropped make doc because it seems that there is som problem with texinfo
files of these new version.



The problem of omitting make clean isthat: if a file disappears its compiled
maybe will not disappear and cause problems.

Therefore I repeat Sebastien request:

*Shouldn't a simple `make' do everything needed to succeed?*

Daniel

2009/9/4 Carsten Dominik carsten.domi...@gmail.com


 On Sep 4, 2009, at 1:41 PM, Sebastian Rose wrote:

  Sebastian Rose sebastian_r...@gmx.de writes:

 Trying to `make' org-mode fails with the following error message:


  In toplevel form:
  lisp/org-ascii.el:29:1:Error: Symbol's function definition is void:
  org-float-time
  make: *** [lisp/org-ascii.elc] Fehler 1




 Opening the org-mode/lisp/ directory in dired and marking all *.el files
 (`% m el$ RET) and byte-compiling them (`B') works for
 org-ascii.el.
 There it just failes for org-xoxo.el for the same reason.



 sh$ make clean
 sh$ make

 does the trick...


 Or even (if not clean):

 sh$ make autoloads
 sh$ make


 I think we can live with it, as this is not unusual at all.

 On the other hand: Shouldn't a simple `make' do everything needed to
 succeed?


 In principle I would agree, and if you download a zip or tar distribution,
 it works just like that.  However, in the git distro, you do
 create new files which stick around when you update.

 Of course we could add a make clean to the ALL target, but it seems to me
 that this is different from other uses of make.  Maybe the make update
 should contain it?

 - Carsten






  Sebastian


 ___
 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

___
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] Re: org-mode on sloooow computer

2009-08-31 Thread Daniel Martins
This version is 30 days old.
To do not create problems with my Ubuntu distribution it is a bit hard to
try newer versions but I can try if this is

 I feel that there is something critical beyond an upgrade but I do not know
how to find the core of the problem

Other modes are not slow

Daniel


2009/8/31 Leo sdl@gmail.com

 On 2009-08-31 18:49 +0100, Daniel Martins wrote:
  My org-version is 6.21b
 
  GNU Emacs 23.1.50.1 (i486-pc-linux-gnu, GTK+ Version 2.12.9)
   of 2009-08-01 on radon, modified by Debian

 Have you tried a more recent org version? I think Carsten has done some
 profiling a while back. I haven't noticed any slowdown since all my org
 files are relatively small. I am running org 6.29c.

 Leo

 --
 Emacs uptime: 14 days, 3 hours, 44 minutes, 35 seconds



 ___
 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] Re: org-mode on sloooow computer

2009-08-31 Thread Daniel Martins

 On 2009-08-31 22:03 +0100, Daniel Martins wrote:
  I did all but it complains about a org-agenda-list: Symbol's function
  definition is void: elp-wrapper
 
  Daniel

 Maybe put (autoload 'elp-wrapper elp) somewhere in your .emacs. This
 will get your org mode to compile.

 But you may want to figure out where that elp-wrapper is used. The
 vanilla org mode does not seem to use it.

 --
 Emacs uptime: 14 days, 6 hours, 51 minutes, 8 seconds



 ___
 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] Fireforg, a Firefox extension for Org mode interaction

2009-08-08 Thread Daniel Martins
I followed your indications but it did not work properly.

1. My org-agenda-files became nil I dont know the reason

2. The plugin was properly installed in firefox but it did not talk
propoerly with emacsclient. Nothing happens on emacs.

I dont know how to make a few tests to verify what happened


Daniel

2009/8/7 Daniel Martins daniel...@gmail.com

 As I am not a developer I cannot be 100% certain but I feel that there are
 standardized paths for
 emacs and firefox that work across distributions.

 Maybe someone from the list could give us some hint.

 Daniel

 2009/8/7 Andreas Burtzlaff and...@gmx.net

 Hi,


 On Fri, 7 Aug 2009 09:00:53 -0300
 Daniel Martins daniel...@gmail.com wrote:

  Amaziing and quite useful work!!!

 Thanks Daniel.

  It would be interesting to have a package .deb/.rpm  to install the
 whole
  bundle.
 
  More people would install and be a beta tester.

 Yes, the installation is messy, because the proper integration with
 existing code is also a matter of discussion, especially the rewrite of
 org-registry.
 Preparing packages is a good idea, but as a Gentoo user I have no
 experience with rpm/deb packages; are there standardized paths for
 emacs and firefox that work across distributions? In that case I might
 give it a try.

 Andreas



___
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] Fireforg, a Firefox extension for Org mode interaction

2009-08-08 Thread Daniel Martins
The issue on org-agenda-files was solved. It was my mistake, sorry.

The firefox plugin:

(right click on the statusbar entry) : works in a limited sense. It pops up
the remember and store-links options but nothing happens when I left-click
on both fields.

(left click on the statusbar entry) : does absolutely nothing.

Daniel

2009/8/8 Andreas Burtzlaff and...@gmx.net

 On Sat, 8 Aug 2009 14:19:35 -0300
 Daniel Martins daniel...@gmail.com wrote:

  I followed your indications but it did not work properly.
 
  1. My org-agenda-files became nil I dont know the reason

 org-agenda-files is not altered in my code.
 I made a small mistake in the original posting and am changing the
 installation now anyway, but for the time being:
 Do you mean the debug message:
 org-registry-initialize: org-agenda-files = nil
 and did you put the lisp code into .emacs?
 In that case make
 (org-registry-initialize t)
 the very _last_ line in your .emacs .
 I'll put a page on Worg soon...
 My apologies for the inconvenience.
 By the way, these kind of emacs configuration issues are a reason why
 packaging is a bit problematic, at least at this stage of development.

 
  2. The plugin was properly installed in firefox but it did not talk
  propoerly with emacsclient. Nothing happens on emacs.

 What exactly did you try?
 Your issue 1. prevents the url lookup to work, so I'd only expect
 store-link and remember to work anyway. (right click on the statusbar
 entry)

 Does org-protocol itself work with the bookmarks described in its
 manual?

 Generally, error messages in firefox are shown in Tools-Error Console:
 Look for errors containing: chrome://fireforg/ , and send them to me
 (privately, not through the list, perhaps).

 Thanks for your help and patience in testing

 Andreas

___
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] Fireforg, a Firefox extension for Org mode interaction

2009-08-07 Thread Daniel Martins
As I am not a developer I cannot be 100% certain but I feel that there are
standardized paths for
emacs and firefox that work across distributions.

Maybe someone from the list could give us some hint.

Daniel

2009/8/7 Andreas Burtzlaff and...@gmx.net

 Hi,

 On Fri, 7 Aug 2009 09:00:53 -0300
 Daniel Martins daniel...@gmail.com wrote:

  Amaziing and quite useful work!!!

 Thanks Daniel.

  It would be interesting to have a package .deb/.rpm  to install the whole
  bundle.
 
  More people would install and be a beta tester.

 Yes, the installation is messy, because the proper integration with
 existing code is also a matter of discussion, especially the rewrite of
 org-registry.
 Preparing packages is a good idea, but as a Gentoo user I have no
 experience with rpm/deb packages; are there standardized paths for
 emacs and firefox that work across distributions? In that case I might
 give it a try.

 Andreas

___
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] Re: limit agenda to particular tag?

2009-08-03 Thread Daniel Martins
For me the the custom-commands did not work eitther.

It seems that somehow iy does not take the inherited tags.

I tried to avoid appearing the :WEEKLY: tags in another agenda view but it
did not worked



I tried


(li eliminating WEEKLY tags
 agenda 
 ((org-agenda-ndays 7)  ;; agenda will start in week view
  (org-agenda-repeating-timestamp-show-all t)   ;; ensures that
repeating events appear on all relevant dates
  (org-agenda-log-mode-items '(state))
  (org-agenda-skip-function '(org-agenda-skip-entry-if 'regexp
:WEEKLY:)
 )
  )
 )

Daniel

2009/7/29 John SJ Anderson geneh...@genehack.org

 Memnon Anon gegendosenflei...@gmail.com writes:

  John SJ Anderson geneh...@genehack.org writes:
 
Is there a way to display an agenda (like 'C-a a' does) but have it
limited to items that have a particular tag? (E.g., so I can see only
'@WORK' items when at work.)
 
  Either use your agenda and use / to limit the view to what you want.
  Or create a custom agenda command: I have something like this:

   I couldn't get the custom-commands code you posted to work, but the
  'C-c a a / TAG' thing you and Matthew both pointed out is exactly what
  I was looking for -- thanks to both of you.

 chrs,
 john.
 --
 I believe in getting into hot water; it keeps you clean.
  - G. K. Chesterton


 ___
 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] Re: org-mode and remind integration

2009-02-11 Thread Daniel Martins
Thanks Sharap,

Since my child was born last month I did not have much time. Therefore, I
did not test org2rem.

I did not tested the last suggestion of Carsten but you seem to overcome the
problem I encountered.

I am also suggest to include this patch to expand Bastien original
org2rem.el

Whenever I have time (to sleep!) I will test your scripts.

Daniel





2009/2/11 Carsten Dominik domi...@science.uva.nl

 Hi Bastien,
 you wrote the original org2rem.el  Do you agree we should apply this patch?
 I have not tested it as I do not use remind.

 - Carsten

 On Feb 11, 2009, at 4:33 PM, Sharad Pratap wrote:

 Hi Carsten,
 Please do apply it, (if you find it is fine.)
 I have joined this mailing list today only,
 so not able to include all peoples in thread.

 On Wed, Feb 11, 2009 at 8:51 PM, Carsten Dominik 
 domi...@science.uva.nlwrote:

 I have not followed this discussion - should I apply this patch
 to org2rem.el in the distribution?

 - Carsten


 On Feb 11, 2009, at 3:23 PM, Sharad Pratap wrote:

  Hi Daniel,

 Your regular expression working fine!!, I have made few change with
 same regular expression, and it has worked for me.

 I wish `org2rem' could be as robust as `org-export-icalendar'.

 Like me you also want orgmode outside editor, So I have added to
 executable script `org2remind' and `show-agenda'.


 --
 Regard
 (`
 _) h a r a d



___
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] Regexp problem: org-mode and remind integration

2009-01-13 Thread Daniel Martins
Sorry for the confusion,

I did try the empty regexp as suggested and it worked ie no problem
appeared.

My problem is to find a regexp for timestamps outside DEADLINE: and
SCHEDULE: rows

In other words, given three variables A B C with regexps.

If I have a regexp given by variable A and I want to find a text which
satisfies A but DO NOT satisfy B nor C how can I write uch regexp?

2009/1/13 Olaf Dietsche
olaf+list.orgm...@olafdietsche.deolaf%2blist.orgm...@olafdietsche.de


 Daniel Martins daniel...@gmail.com writes:

  I did your test wuth a null regexp
 
  It is a regexp problem!
 
  Org-mode has two variables: org-deadline-string and org-scheduled-string
  (see below)
 
  and I want to match tasks which have a timestamp, ie satisfies the
  org-ts-regexp2
 
  BUT DO NOT  have org-deadline-string NOR org-scheduled-string
 
  I tried
 
  (org2rem-pure-timestamps-string
(concat  \\( org-deadline-string \\|
 org-scheduled-string  \\)\\{0\\}))
 
  in order that a regexp such as
 
  \\(org-deadline-string\\|org-scheduled-string\\)\\{0\\}
 
  would match only zero {0} occurrences of
  (org-deadline-string|org-scheduled-string)
  but this seems to be a mistake.
 
  Any hint??

 I can only suggest the empty regexp, as before:

 (org2rem-pure-timestamps-string )

 If this doesn't work, I don't know.

 Regards, Olaf

___
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-mode and remind integration

2009-01-11 Thread Daniel Martins
I did your test wuth a null regexp

It is a regexp problem!



Org-mode has two variables: org-deadline-string and org-scheduled-string
(see below)

and I want to match tasks which have a timestamp, ie satisfies the
org-ts-regexp2

BUT DO NOT  have org-deadline-string NOR org-scheduled-string

I tried


(org2rem-pure-timestamps-string
  (concat  \\( org-deadline-string \\|
   org-scheduled-string  \\)\\{0\\}))


in order that a regexp such as

\\(org-deadline-string\\|org-scheduled-string\\)\\{0\\}

would match only zero {0} occurrences of
(org-deadline-string|org-scheduled-string)
but this seems to be a mistake.

Any hint??

Daniel





--- Details ---

org-deadline-string is a variable defined in `org.el'.
Its value is DEADLINE:


org-scheduled-string is a variable defined in `org.el'.
Its value is SCHEDULED:


org-ts-regexp2 is a variable defined in `org.el'.
Its value is
\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) +\\([^]-+0-9
\n ]*\\)\\( \\([0-9]\\{2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)[^\n]\\{0,16\\}

Documentation:
Regular expression matching time stamps, with groups.










2009/1/10 Olaf Dietsche
olaf+list.orgm...@olafdietsche.deolaf%2blist.orgm...@olafdietsche.de


 Hi Daniel,

 Daniel Martins daniel...@gmail.com writes:

  Me, as an ex-Fortran77 programmer, am suffering a lot with emacs lisp.

 With time, it'll get better.

  After o couple of hours trying to catch all timestamps outside SCHEDULE:
 and
  DEADLINE: lines I gave up and ask for help
 [...]
  I tried to catch all timestamps outside SCHEDULE: and DEADLINE:
  using something like
 
  (org2rem-pure-timestamps-reminders
   (org2rem-list-reminders
(concat  \\( org-deadline-string \\|
 org-scheduled-string  \\)\\{0\\})))
 
 [...]
  I tried first to create a local variable
 
  ;;; (org2rem-pure-timestamps-string
  ;;;   (concat  \\( org-deadline-string \\|
  ;;;org-scheduled-string  \\)\\{0\\}))
 
  ;;; (org2rem-pure-timestamps-reminders
  ;;;  (org2rem-list-reminders org2rem-pure-timestamps-string)
  ;;;  )
 
  but it did not work either.
 
  I am probably having
 
  Any help for this stupid doubt?

 I don't think, this is a question of a local variable vs. inlining the
 regexp. It's more a matter of an appropriate regular expression. Did
 you try an empty string instead?

 e.g.: (org2rem-pure-timestamps-reminders (org2rem-list-reminders ))

 Or did I miss your problem completely?

 Regards, Olaf

___
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-mode and remind integration

2009-01-10 Thread Daniel Martins
Olaf,

Thank you very much for your diff. I worked fine  and I learned a bit of
lisp.

Me, as an ex-Fortran77 programmer, am suffering a lot with emacs lisp.

After o couple of hours trying to catch all timestamps outside SCHEDULE: and
DEADLINE: lines I gave up and ask for help




Originally we had

(org2rem-scheduled-reminders (org2rem-list-reminders
org-scheduled-string))
(org2rem-deadline-reminders (org2rem-list-reminders
org-deadline-string))


I tried to catch all timestamps outside SCHEDULE: and DEADLINE:
using something like

(org2rem-pure-timestamps-reminders
 (org2rem-list-reminders
  (concat  \\( org-deadline-string \\|
   org-scheduled-string  \\)\\{0\\})))


In te beginning I create

(defvar org2rem-pure-timestamps-remind-file
  ~/.reminders.org.pure-timestamps)

and at the end I add an extra line to export these reminds in a different
file
  (org2rem-write-file org2rem-scheduled-remind-file
  org2rem-scheduled-reminders)
  (org2rem-write-file org2rem-deadline-remind-file
  org2rem-deadline-reminders)
  (org2rem-write-file org2rem-pure-timestamps-remind-file
  org2rem-pure-timestamps-reminders)

I tried first to create a local variable


;;; (org2rem-pure-timestamps-string
;;;   (concat  \\( org-deadline-string \\|
;;;org-scheduled-string  \\)\\{0\\}))

;;; (org2rem-pure-timestamps-reminders
;;;  (org2rem-list-reminders org2rem-pure-timestamps-string)
;;;  )

but it did not work either.




I am probably having

Any help for this stupid doubt?


Thank you

Daniel


2009/1/9 Olaf Dietsche
olaf+list.orgm...@olafdietsche.deolaf%2blist.orgm...@olafdietsche.de


  Yes, I am.
 [...]
  I am sending the last version of org2rem which integrates timed reminds
 from
  DEADLINE: and SCHEDULE: lines
 [...]
 
  2009/1/9 Carsten Dominik domi...@science.uva.nl
 
  Is any action happening on this?  Is someone trying to fix org2rem?
  - Carsten

 I have no idea of remind.

 This is an untested patch, but you get the idea. Avoid global
 variables, if you can. If you use global variables, you have
 prerequisites and side effects, which complicate following the
 code. This is not lisp specific.

 Regards, Olaf


___
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-mode and remind integration

2009-01-09 Thread Daniel Martins
Yes, I am.

My poor capabilibies on Emacs Lisp are constraining my efforts a bit.


I am sending the last version of org2rem which integrates timed reminds from
DEADLINE: and SCHEDULE: lines

I lack a way to add timestamps

Brackets are another problem with remind

Something like

 Shop   [1/5] [60%]
SCHEDULED: 2009-01-12 Mon +1w
- [ ]  2 dvds
- [ ]  1 cd
- [ ]  1 disk
- [X] extra 1
- [X] extra 2

I opt to kill all the bracketed enclosed regions

REM 12 Jan 2009 MSG Shop   %

Since
REM 12 Jan 2009 MSG Shop 1/5 60% %

may generate a problem due to %

Daniel

2009/1/9 Carsten Dominik domi...@science.uva.nl

 Is any action happening on this?  Is someone trying to fix org2rem?
 - Carsten

 On Dec 31, 2008, at 12:53 PM, Daniel Martins wrote:


 I changed from planner-el to org-mode after reading Sachas comments and
 some videos: mostly Carsten and Russell ones.

 However I use remind a lot. I like wyrd for remote operation and I have
 remind - diary - ical and planner-el very integrated.

 I think that org-mode would be improved from using remind. The ical -
 org-mode could be done using the longer path

 ical - remind - diary - org-mode

 Via

 ical - remind:  http://wiki.43folders.com/index.php/*ICal2Rem*

 remind - diary:   Sacha's rem2diary

 diary - org-mode:  (setq org-agenda-include-diary t)


 the reverse path could be directly

 org-mode - ical

 .reminders.org.deadline
  .reminders.org.scheduled

 However if I want to add all my appts in
 .reminders.org.deadline and
  .reminders.org.scheduled
   from inside org-mode

 I think that

 org2rem

 is lacking a few features

 1. It does not work with priorities since

 *** TODO  [#A] something
 DEADLINE: 2009-01-05

 generates

 REM 30 Dec 2008 MSG [#A] something

 which yields problems with remind parser

 org2rem should eliminate the priorities at all

 REM 30 Dec 2008 MSG something

 or eliminate the brackets
 REM 30 Dec 2008 MSG #A something


 2. timed deadlines are not included
 *** TODO  something
 DEADLINE: 2008-12-31 Wed 19:00


 generates
 REM 31 Dec 2008 MSG something%

 and should generate

 REM 31 Dec 2008 AT 19:00 MSG something%



 I tried to send an emacs bug report but as I do not use Emacs for sending
 email (yet!).  It seems that the bug was not reported.

 I must also admit that gnus always frightened me!

 First thanks for all the good work done with org-mode


 Daniel






org2rem.el
Description: Binary data
___
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-mode and remind integration

2008-12-31 Thread Daniel Martins
I changed from planner-el to org-mode after reading Sachas comments and some
videos: mostly Carsten and Russell ones.

However I use remind a lot. I like wyrd for remote operation and I have
remind - diary - ical and planner-el very integrated.

I think that org-mode would be improved from using remind. The ical -
org-mode could be done using the longer path

ical - remind - diary - org-mode

Via

ical - remind:  http://wiki.43folders.com/index.php/*ICal2Rem*

remind - diary:   Sacha's rem2diary

diary - org-mode:  (setq org-agenda-include-diary t)


the reverse path could be directly

org-mode - ical

.reminders.org.deadline
 .reminders.org.scheduled

However if I want to add all my appts in
.reminders.org.deadline and
 .reminders.org.scheduled
  from inside org-mode

I think that

org2rem

is lacking a few features

1. It does not work with priorities since

*** TODO  [#A] something
DEADLINE: 2009-01-05

generates

REM 30 Dec 2008 MSG [#A] something

which yields problems with remind parser

org2rem should eliminate the priorities at all

REM 30 Dec 2008 MSG something

or eliminate the brackets
REM 30 Dec 2008 MSG #A something


2. timed deadlines are not included
*** TODO  something
DEADLINE: 2008-12-31 Wed 19:00


generates
REM 31 Dec 2008 MSG something%

and should generate

REM 31 Dec 2008 AT 19:00 MSG something%



I tried to send an emacs bug report but as I do not use Emacs for sending
email (yet!).  It seems that the bug was not reported.

I must also admit that gnus always frightened me!

First thanks for all the good work done with org-mode


Daniel
___
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] structure editing in brainstorming mode

2008-12-31 Thread Daniel Martins
 I wish you a (transient-mark-mode -1) and a happy new year :-)  ???

May your transition into the next year be highlighted ???

(comment-add 0)
(setq happy-new-year t)

Daniel


2008/12/31 Carsten Dominik domi...@science.uva.nl


 On Dec 31, 2008, at 12:36 PM, Daniel Clemente wrote:


  Thanks.  But I had to turn on transient mark mode for it to work.
 Intended behavior I guess?


 Yes.  Everybody should turn it on.  Why would you not?


  Why „should everyone use transient mark mode? Not everyone has to like
 that setting, and some may prefer to work without it.

  I myself find it confusing because when I set the mark, I want just to
 mark that point for later use (to jump quickly there, for instance).
 transient-mark-mode assumes that I always want to *start a region*, which is
 not true.

  I also like to select text without highlighting; it is less distracting
 and more readable.


  I wish you a (transient-mark-mode -1) and a happy new year :-)



 OK, point taken.  I hardly ever use the mark as a jumping point.

 When I need to remember a position, most of the time I split the
 window, go to where I want momentarily in the new window, and
 then close that window again.

 I thought that transient-mark-mode was the only way to make use
 of commands that automatically use the region if one is active.
 But because of your mail, I went back to the Emacs manual and
 learned about the Momentary Mark, which is
 transient-transient-mark-mode, sort of.  Pretty nice, this is
 a viable alternative to turning on transient-mark-mode, so viable
 that I am now considering turning off transient-mark-mode :-)

 OK, rephrase:

  To use region-sensitive commands, everybody should either
  turn on transient-mark-mode, or learn about the momentary mark.


 May your transition into the next year be highlighted.

 - Carsten





 Daniel




 ___
 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