Re: [O] Markup problems when using references in source fragments

2011-05-12 Thread Nick Dokos
Bernt Hansen be...@norang.ca wrote:

 Roland Kaufmann rlndkfmn+orgm...@gmail.com writes:
 
  On 2011-05-11 21:51, Bernt Hansen wrote:
  Both the new and old patch are on the patchwork server waiting to be
  addressed.
 
  Oops, sorry my bad. I didn't realize that!
 
  However, only the discussion from the first thread:
 
 http://patchwork.newartisans.com/patch/525/
 
  is revelant. The patch which is listed there should *not* be
  applied. A second and corrected patch was attached in the last
  message, but it seems to not have been picked up by the framework.
 
  How do I replace the patch above with the code from:
 
 http://patchwork.newartisans.com/patch/802/
 
  --
 Roland.
 
 I think you can create an account on the patchwork server and then
 invalidate your own patches.
 

If this is possible, can somebody please give details? There is at least
one post of mine that ended up as /patch/797/ that should certainly be
invalidated, since it quotes the patch from an older commit.

And while we are at it: is there any way to mark a post that contains a
patch as not intended for the patchwork server? One would have to
remember to do that, so it's not foolproof, but it might help avoid
piling irrelevant stuff on patchwork.

Thanks,
Nick



Re: [O] [dev] footnotes improvements

2011-05-12 Thread Christian Moe

Hi,

Nice! Tested only your snippet.


* HTML: works!

One question: As is, adjoining footnotes `2' and `3' read as `23'. 
Could/should the footnote export know to put a comma between them:`2,3'?


For HTML purposes, I think not necessarily, the separator could be 
flexibly added with CSS like:


: #+style: stylesup + sup .footref:before {content: , }/style


*  Latex: backtrace:

Debugger entered--Lisp error: (void-variable footnote-section-tag-regexp)
  org-export-latex-preprocess((:for-backend latex :emph-multiline t 
:add-text nil :comments nil :skip-before-1st-heading nil 
:LaTeX-fragments nil :timestamps t :footnotes t))
  org-export-preprocess-string(#(#+title: Footnotes test\n\nSome 
text before first headline[fn:1].\n\n 0 8 (fontified nil 
font-lock-fontified t) 8 9 (fontified nil) 9 23 (fontified nil 
font-lock-fontified t) 23 56 (fontified nil) 56 57 (fontified nil) 57 
61 (fontified nil help-echo Footnote reference) 61 62 (fontified 
nil) 62 65 (fontified nil)) :for-backend latex :emph-multiline t 
:add-text nil :comments nil :skip-before-1st-heading nil 
:LaTeX-fragments nil :timestamps t :footnotes t)
  org-export-latex-first-lines((:latex-image-options width=10em 
:exclude-tags (noexport) :select-tags (export) 
:publishing-directory nil :timestamp nil :expand-quoted-html t 
:html-table-tag table border=\2\ cellspacing=\0\ 
cellpadding=\6\ rules=\groups\ frame=\hsides\ :xml-declaration 
((html . ?xml version=\1.0\ encoding=\%s\?) (php . ?php 
echo \?xml version=\\\1.0\\\ encoding=\\\%s\\\ ?\; ?)) 
:html-postamble auto :html-preamble t :html-extension html 
:inline-images maybe :convert-org-links t :agenda-style  
:style-extra  :style  :style-include-scripts t 
:style-include-default t :table-auto-headline t :tables t 
:time-stamp-file t :creator-info t :email-info nil :author-info t 
:email CM@Celebrian-2.local ...) nil nil)

  org-export-as-latex(nil)
  call-interactively(org-export-as-latex)
  org-export(nil)
  call-interactively(org-export nil nil)


Yours,
Christian


On 5/11/11 9:02 PM, Nicolas Goaziou wrote:

Hello,

I'd like to submit a branch for testing:

   git://github.com/ngz/org-mode-lists.git footnote-fix

Here are the changes so far:

- recognize and export inlined footnotes holding links in their definition,
- recognize and export two or more footnotes in a row,
- don't chock at footnotes or partial footnotes inside comments in Org buffer,
- export calls to already defined footnotes in LaTeX,
- export footnotes before first heading (LaTeX),
- export footnotes when selecting a subtree not holding their
   definition (LaTeX),
- fontify more consistently footnotes in the org buffer (only labels
   are fontified or fn in the case of an anonymous footnote).

The following snippet demonstrates most of these changes:

--
#+title: Footnotes test

Some text before first headline[fn:1].

* First headline

# [fn::fake footnote

   Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
   eiusmod tempor incididunt ut labore et dolore magna
   aliqua[fn::inline1][1].

* Second headline

   Duis aute irure dolor in reprehenderit in voluptate velit esse
   cillum dolore eu fugiat nulla pariatur[fn:inlabel:an inline
   footnote][fn:inlabel2:[[http://www.google.com][google]] this].

   Call an already defined inline footnote[fn:inlabel].

* Footnotes

[fn:1] first footnote.

[1] End of first section.


There are probably mischievous bugs. So, thanks in advance for any
feedback.

Regards,






Re: [O] Firefox 4 in Ubuntu 11.04 and org-protocol

2011-05-12 Thread Mattias Jämting
I managed by hacking the /usr/bin/xdg-open script.

See:

http://www.mail-archive.com/emacs-orgmode@gnu.org/msg33861.html

/Mattias


Mattias Jämting, Jämting Web  Design
www.jamting.se | +46 (0)70 6760182



2011/5/9 Erik Hetzner e...@e6h.org:
 At Sat, 07 May 2011 09:16:38 -0700,
 Erik Hetzner wrote:
 Apparently they changed the way this works. You need to add a
 org-protocol.desktop file to ~/.local/share/applications

   [Desktop Entry]
   Name=org-protocol
   Exec=emacsclient %u
   Type=Application
   Terminal=false
   Categories=System;
   MimeType=x-scheme-handler/org-protocol;

 Then run:

   $ update-desktop-database .local/share/applications/

 For some reason I cannot get the bookmarklets to work, however. But
 opening an org-protocol:/ URL directly works.

 Hi,

 org-protocol bookmarks simply do not work for me in Firefox 4 on
 Ubuntu 11.04 (they give an error message). Anybody have any luck
 getting them to work? I can post more info if necessary.

 best, Erik

 Sent from my free software system http://fsf.org/.





Re: [O] [dev] footnotes improvements

2011-05-12 Thread Aankhen
Hi Christian,

On Thu, May 12, 2011 at 12:49, Christian Moe m...@christianmoe.com wrote:
 Nice! Tested only your snippet.


 * HTML: works!

 One question: As is, adjoining footnotes `2' and `3' read as `23'.
 Could/should the footnote export know to put a comma between them:`2,3'?

 For HTML purposes, I think not necessarily, the separator could be flexibly
 added with CSS like:

 : #+style: stylesup + sup .footref:before {content: , }/style

From the point of view of semantics, it’d be better to separate them
in the content itself.  For my part, I like Wikipedia’s ‘[1][2]’
style.  ‘1, 2’ sounds even better to me, if it can be done.

Aankhen



[O] [PATCH] icalendar: Make alarm duration RFC5545 compliant

2011-05-12 Thread Michal Sojka
The format of alarm trigger was incorrect because T letter from
dur-time element was missing (see
http://tools.ietf.org/html/rfc5545#section-3.3.6). This caused some
software (such as KOrganizer) to not interpret the alarms correctly.
---
 lisp/org-icalendar.el |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/org-icalendar.el b/lisp/org-icalendar.el
index c4b1f89..3632b5e 100644
--- a/lisp/org-icalendar.el
+++ b/lisp/org-icalendar.el
@@ -419,7 +419,7 @@ When COMBINE is non nil, add the category to each line.
  (let ((t1 (ignore-errors (org-parse-time-string ts 'nodefault
(if (and ( org-icalendar-alarm-time 0)
 (car t1) (nth 1 t1) (nth 2 t1))
-   (setq alarm (format 
\nBEGIN:VALARM\nACTION:DISPLAY\nDESCRIPTION:%s\nTRIGGER:-P0D0H%dM0S\nEND:VALARM
 summary org-icalendar-alarm-time))
+   (setq alarm (format 
\nBEGIN:VALARM\nACTION:DISPLAY\nDESCRIPTION:%s\nTRIGGER:-P0DT0H%dM0S\nEND:VALARM
 summary org-icalendar-alarm-time))
  (setq alarm ))
)
  (if (string-match org-bracket-link-regexp summary)
-- 
1.7.2.3




Re: [O] [beamer] a bug in exporting

2011-05-12 Thread Eric S Fraga
zwz zhangwe...@gmail.com writes:

 In a org file I have

 * what is x?
   #+BEGIN_SRC c
   char (*(*x())[])();
   #+END_SRC
   \pause
   char \fbox{\fbox{(*\fbox{\fbox{(*\fbox{x()})}[]})}()};

 The latex generated for the last line turned out to be
 char \fbox\{\fbox\{(*\fbox{\fbox{(*\fbox{x()})}[]})\}()\};
 which is not expected.

 Is it a bug? I am using Emacs 23.3.1 and org 7.4, by the way.

I am not sure if the regex for identifying latex snippets inline has
changed or not but an expression like this one is going to test that
regex to the limit in any case.  I would suggest that you use the latex
directive directly given that the code is not likely to export sensibly
to any other target anyway:

--8---cut here---start-8---
* what is x?
  #+BEGIN_SRC c 
  char (*(*x())[])();   
  #+END_SRC 
  \pause
  #+LATEX: char \fbox{\fbox{(*\fbox{\fbox{(*\fbox{x()})}[]})}()};
--8---cut here---end---8---

Code like this reminds me why I left the C world more than 15 years
ago... ;-)
-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.50.1
: using Org-mode version 7.5 (release_7.5.274.gd6aba)



Re: [O] Slow movement in large buffers

2011-05-12 Thread Eric S Fraga
Carmine Casciato casci...@gmail.com writes:

[...]

 I am have been seeing this for a while now on only one of about 8 
 org files that I have, specifically the longest one which also has the 
 most babel snippets (of pretty long sql). This behaviour is present on 
 an Ubuntu VM with a scant 300Mbs as well as a Mac Pro with 6Gbs 
 (although less of course). On the Ubuntu, I specifically see the CPU 
 spike when typing! Very bizarre.
 -C.

What versions of org  emacs are you using?  Carsten recently (a month
ago or so?) put in a fix that seems to have addressed this problem, at
least for me.  I've been doing a lot of babel work lately and haven't
seen the slowdown since Carsten's fix.

Before this fix, the solution was to turn off mode specific fontification
of the source blocks: C-h v org-src-fontify-natively RET

HTH,
eric

-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.50.1
: using Org-mode version 7.5 (release_7.5.274.gd6aba)



Re: [O] [dev] footnotes improvements

2011-05-12 Thread Nicolas Goaziou
Hello,

Christian Moe m...@christianmoe.com writes:

 * HTML: works!

 One question: As is, adjoining footnotes `2' and `3' read as `23'.
 Could/should the footnote export know to put a comma between
 them:`2,3'?

 For HTML purposes, I think not necessarily, the separator could be
 flexibly added with CSS like:

 : #+style: stylesup + sup .footref:before {content: , }/style

Probably, but I didn't change HTML exporter. I just made it compatible
with the changes applied to the LaTeX one.


 *  Latex: backtrace:


[...]

Oops I had commented (require footnote) to see what happened and forgot
to uncomment it again. This should be fixed now.

Thanks for testing this.


-- 
Nicolas Goaziou



Re: [O] [dev] footnotes improvements

2011-05-12 Thread Christian Moe

On 5/12/11 12:04 PM, Nicolas Goaziou wrote:

Hello,

Christian Moem...@christianmoe.com  writes:


* HTML: works!

One question: As is, adjoining footnotes `2' and `3' read as `23'.
Could/should the footnote export know to put a comma between
them:`2,3'?

For HTML purposes, I think not necessarily, the separator could be
flexibly added with CSS like:

: #+style:stylesup + sup .footref:before {content: , }/style


Probably, but I didn't change HTML exporter. I just made it compatible
with the changes applied to the LaTeX one.


Anyway, the footnote markers are run together in LaTeX, too. So I 
think a (customizable?) separator would be a reader-friendly 
complement to this new adjacent footnote capability.




*  Latex: backtrace:



[...]

Oops I had commented (require footnote) to see what happened and forgot
to uncomment it again. This should be fixed now.


Yes, now it works.

Did I mention how great it is that we can finally put links in inline 
footnotes?


Yours,
Chrsitian



Re: [O] Markup problems when using references in source fragments

2011-05-12 Thread Giovanni Ridolfi
Nick Dokos nicholas.do...@hp.com writes:

 Bernt Hansen be...@norang.ca wrote:

 Roland Kaufmann rlndkfmn+orgm...@gmail.com writes:
 
  . The patch which is listed there should *not* be
  applied. 

 I think you can create an account on the patchwork server and then
 invalidate your own patches.
 

 If this is possible, can somebody please give details? 

 And while we are at it: is there any way to mark a post that contains a
 patch as not intended for the patchwork server? 

If you think that a patch is
not intended for the patchwork server
you may write an e-mail to the patchwork maintainers:

John Wiegley jo...@newartisans.com
Carsten Dominik carsten.domi...@gmail.com
Eric Schulte schulte.e...@gmail.com
Bastien Guerry b...@altern.org
Dan Davison dandavis...@gmail.com
David Maus dm...@ictsoc.de
Julien Danjou jul...@danjou.info

with the subject: REMOVE patches

and link the number of the patches to be removed.
I think they can do that easily from the command line.

I have done this way 3 or 4 times in the past.
 
I also added some comments/justification: e.g. the link of the
e-mail pointing out that it is a wrong patch or incomplete or...

HTH

Giovanni



Re: [O] Markup problems when using references in source fragments

2011-05-12 Thread Bernt Hansen
Nick Dokos nicholas.do...@hp.com writes:

 Bernt Hansen be...@norang.ca wrote:

 Roland Kaufmann rlndkfmn+orgm...@gmail.com writes:
 
  On 2011-05-11 21:51, Bernt Hansen wrote:
  Both the new and old patch are on the patchwork server waiting to be
  addressed.
 
  Oops, sorry my bad. I didn't realize that!
 
  However, only the discussion from the first thread:
 
 http://patchwork.newartisans.com/patch/525/
 
  is revelant. The patch which is listed there should *not* be
  applied. A second and corrected patch was attached in the last
  message, but it seems to not have been picked up by the framework.
 
  How do I replace the patch above with the code from:
 
 http://patchwork.newartisans.com/patch/802/
 
  --
 Roland.
 
 I think you can create an account on the patchwork server and then
 invalidate your own patches.
 

 If this is possible, can somebody please give details? There is at least
 one post of mine that ended up as /patch/797/ that should certainly be
 invalidated, since it quotes the patch from an older commit.

Hi Nick,

I think you just register an account on the patchwork server that
matches your patch email address, then when you login and select your
patch you get an option to invalidate it.


 And while we are at it: is there any way to mark a post that contains a
 patch as not intended for the patchwork server? One would have to
 remember to do that, so it's not foolproof, but it might help avoid
 piling irrelevant stuff on patchwork.

I'm not aware of a way to do this currently - maybe just put [RFC] or
something in the subject line of the patch so it's obviously not
complete and ready for inclusion? - then you can just remove the patch
from the patchwork server after posting it.  I don't know if the
patchwork server has any rules for skipping patches.

Regards,
Bernt



Re: [O] MobileOrg: Org files already in Dropbox

2011-05-12 Thread Joost Kremers
On Wed, May 11, 2011 at 07:59:06PM -0400, Greg Troxel wrote:
  2) Can I set org-mobile-directory to the directory containing my org
  files, or will this lead to problems?
 
 I wouldn't.   MobileOrg has a concept of the real org files, files
 converted for mobile use, and reintegrating changes from those back into
 the real org files.   Also while real org can compute agendas, the ones
 you see in mobileorg are precomputed.

Ok, well, if that's the case, then all the other questions are more or less
moot. I'll just have to live with having two copies of my org files. :-) Not
that it's really that bad, I just wanted to know if its possible to use the
original org files as a source for MobileOrg.

Thanks,

Joost


-- 
Joost Kremers
Life has its moments



[O] Cool - Clone / Shift Time with clockreports

2011-05-12 Thread Nathan Neff
I was really impressed that cloning subtrees that have clockreports
in them would shift the time for clock reports, even with faily complex times.

This is great, and the gurus know about it, but here's a use-case:

I have a daily overview where I do the same stuff, and one of the things
is generate a clock report from the prior day, which goes from 12:00 p.m.
the previous day to 12:00 p.m. of today, so it's a clock report that
looks like this:

So, at the start of each day, I just clone the item into a new
Daily Overview, and the start/end time for the clock report
automatically shifts, which saves
me from having to do that.

*** Daily Overview
Limit to 30 mins.

#+BEGIN: clocktable :maxlevel 2 :scope file :tstart 2011-05-11 Wed
13:00 :tend 2011-05-12 Thu 12:00
#+END:

- [ ] Clone this item
- [ ] check time from yesterday using clock report
- [ ] Download master of source code
- [ ] Look for any new major interesting things


Cool.

--Nate



[O] pdf to powerpoint/openoffice ?

2011-05-12 Thread Mehul Sanghvi
Using Org-mode, I end up with a PDF presentation.  What I would like
to do is convert that into
either PowerPoint or even better would be into OpenOffice (so I can
get it into Google Docs).
I have a bunch of people that I need to share the slides with and have
them work on it as well.

Is there any tool or process by which I can do the conversion ?

-- 
Mehul N. Sanghvi
email: mehul.sang...@gmail.com



[O] beamer: removing navigation buttons

2011-05-12 Thread Mehul Sanghvi
Is there a way to remove the navigation buttons/icons at the bottom right ?

-- 
Mehul N. Sanghvi
email: mehul.sang...@gmail.com



Re: [O] beamer: removing navigation buttons

2011-05-12 Thread Sivaram Neelakantan
On Thu, May 12 2011,Mehul Sanghvi wrote:

 Is there a way to remove the navigation buttons/icons at the bottom right ?

Getting this somewhere in the preamble should help

\setbeamertemplate{navigation symbols}{}

 sivaram
 -- 




Re: [O] Adjust org-contacts-wl functions to used standards

2011-05-12 Thread Michael Markert
Hi,

I missed a nasty bit: `org-contacts-wl-get-name-email' was not updated
and contained another bug.
:(

Patch appended.

Michael

From 0417bb6f11828ef55bd451d7523f4f954963bd87 Mon Sep 17 00:00:00 2001
Message-Id: 
0417bb6f11828ef55bd451d7523f4f954963bd87.1305223167.git.markert.mich...@googlemail.com
From: Michael Markert markert.mich...@googlemail.com
Date: Thu, 12 May 2011 19:55:10 +0200
Subject: [PATCH] Fix `org-contacts-wl-get-name-email'.
To: emacs-orgmode@gnu.org

---
 contrib/lisp/org-contacts.el |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el
index ff4374d..192cb45 100644
--- a/contrib/lisp/org-contacts.el
+++ b/contrib/lisp/org-contacts.el
@@ -423,9 +423,9 @@ Depends on Wanderlust been loaded.
 (defun org-contacts-wl-get-name-email ()
   Get name and email address from wanderlust email.
 See `org-contacts-wl-get-from-header-content' for limitations.
-  (let ((from (wl-get-from-header-content)))
+  (let ((from (org-contacts-wl-get-from-header-content)))
 (when from
-  (cons (wl-address-header-extract-realname from)
+  (list (wl-address-header-extract-realname from)
(wl-address-header-extract-address from)

 (defun org-contacts-template-wl-name (optional return-value)
--
1.7.5.1



pgpiNlDEg77f4.pgp
Description: PGP signature


Re: [O] Adjust org-contacts-wl functions to used standards

2011-05-12 Thread Julien Danjou
On Thu, May 12 2011, Michael Markert wrote:

 I missed a nasty bit: `org-contacts-wl-get-name-email' was not updated
 and contained another bug.
 :(

Michael,

This does not apply as it is and your previous set of patches does not
seems to have made it. I never received it. Is it me or?

-- 
Julien Danjou
❱ http://julien.danjou.info


pgpsN5u0yBuJp.pgp
Description: PGP signature


Re: [O] Adjust org-contacts-wl functions to used standards

2011-05-12 Thread Michael Markert
On 12 May 2011, Julien Danjou wrote:
 On Thu, May 12 2011, Michael Markert wrote:

 I missed a nasty bit: `org-contacts-wl-get-name-email' was not updated
 and contained another bug.
 :(

 Michael,

 This does not apply as it is and your previous set of patches does not
 seems to have made it. I never received it. Is it me or?

No, I forgot to CC you the patches, they only went to the list. My bad.

They are also on patchwork[1] and my org clone on github[2] if that's
easier for you.

Michael

Footnotes:

[1] starting with: http://patchwork.newartisans.com/patch/791/

[2] https://github.com/cofi/myOrg-Mode/tree/wl-contacts

pgppHzdTV9OqY.pgp
Description: PGP signature


[O] Export option for hiding TODO keyword

2011-05-12 Thread Sebastien Vauban
Hello,

I did not find a way to hide the TODO keywords from the headings, on export.

Though, I think it would make sense in at least the 2 following cases:

- You sometimes want to send a draft of a PDF doc, but don't necessarily want
  to show to the readers all the statuses attached to every section (like
  DONE, WAIT, DFRD, etc.).

- You want to publish HTML notes, and don't want the *changing* TODO keyword
  to be part of the URL, invalidating it as soon as the status changes.

  Example on the excellent (but not updated anymore?) site of Eric:
  http://eschulte.github.com/babel-dev/TODO-R-variables-import.html
  which, someday, would become
  http://eschulte.github.com/babel-dev/DONE-R-variables-import.html.

Does this make sense?  Any hint on how to do it?

Best regards,
  Seb

-- 
Sébastien Vauban




Re: [O] Export option for hiding TODO keyword

2011-05-12 Thread Juan Pechiar
Hi,

Doesn't this option do what you want?

   #+OPTIONS: todo:nil

Just tested it, and it works.

Regards,
.j.

On Thu, May 12, 2011 at 10:27:20PM +0200, Sebastien Vauban wrote:
 I did not find a way to hide the TODO keywords from the headings, on export.

 Though, I think it would make sense in at least the 2 following cases:

 - You sometimes want to send a draft of a PDF doc, but don't necessarily want
   to show to the readers all the statuses attached to every section (like
   DONE, WAIT, DFRD, etc.).

 - You want to publish HTML notes, and don't want the *changing* TODO keyword
   to be part of the URL, invalidating it as soon as the status changes.



Re: [O] Export option for hiding TODO keyword

2011-05-12 Thread Sebastien Vauban
Hi Juan Pechiar,

Juan Pechiar wrote:
 On Thu, May 12, 2011 at 10:27:20PM +0200, Sebastien Vauban wrote:
 I did not find a way to hide the TODO keywords from the headings, on
 export.

 Though, I think it would make sense in at least the 2 following cases:

 - You sometimes want to send a draft of a PDF doc, but don't necessarily
   want to show to the readers all the statuses attached to every section
   (like DONE, WAIT, DFRD, etc.).

 - You want to publish HTML notes, and don't want the *changing* TODO
   keyword to be part of the URL, invalidating it as soon as the status
   changes.

 Doesn't this option do what you want?

#+OPTIONS: todo:nil

 Just tested it, and it works.

Of course, that's it. I _really_ overlooked it (searched for that option in my
ref card, thinking I had them all -- not true!).

Best regards,
  Seb

-- 
Sébastien Vauban




[O] Reusing the same agenda view

2011-05-12 Thread Matthieu Lemerre

Hello org-mode,

I have noticed a small thing that bothers me about agenda view: every
agenda command just resets the agenda buffer.

What I would really like to do is to start e.g. viewing my global todo
list, moving the point to where I would like to work, stop viewing the
todo list and getting to work, and then getting back to the global todo
list. Eventually while I am working, I might want to use other
org-agenda commands.

To get back to the global todo list, I usually relaunch this command as
it is so fast with org-agenda. But the point is lost and restored to the
beginning of the buffer.


 - Is it possible to always reuse the same todo list buffer, so that my
   point is not lost? I mean using the agenda dispatcher, because I
   could of course use switch-buffer but I don't think it is meant to be
   used that way.
 
 - Or as a fallback, is it is possible to put the point in some special
   place in the todo list using custom agenda commands?

 - Or is my use wrong?

Thanks
Matthieu
 



[O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Alfredo Duplat
Hi there:

I tried to follow carefully all the documentation but I have a problem
using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
sync my phone the Agenda View is empty.  What could be the problem?

Everything works just fine with my gtd.org's file and also the inbox.org.

Thanks,

A.

-- 
Alfredo Duplat



Re: [O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Matthew Jones
It sounds like you are using an old version org-mode what does M-x
org-version say?

the current version is 7.5

http://matburt.net


On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com wrote:

 Hi there:

 I tried to follow carefully all the documentation but I have a problem
 using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
 agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
 sync my phone the Agenda View is empty.  What could be the problem?

 Everything works just fine with my gtd.org's file and also the inbox.org.

 Thanks,

 A.

 --
 Alfredo Duplat




Re: [O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Matthew Jones
You might also want to upgrade your version of MobileOrg... the most recent
version in the android market is 0.5.5

http://matburt.net


On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com wrote:

 Hi there:

 I tried to follow carefully all the documentation but I have a problem
 using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
 agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
 sync my phone the Agenda View is empty.  What could be the problem?

 Everything works just fine with my gtd.org's file and also the inbox.org.

 Thanks,

 A.

 --
 Alfredo Duplat




Re: [O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Matthew Jones
Can you show me some of your org configuration?

On Fri, May 13, 2011 at 12:06 AM, Alfredo Duplat aldup...@gmail.com wrote:

 I upgrade org-mode via M-x list-packages. Also I upgrade MobileOrg.

 Right now, I have another problem: when I run (org-mobile-push) I got
 the following messages:

 Creating agendas...
 OVERVIEW
 mapconcat: Wrong type argument: listp, 58




 On 5/12/11, Alfredo Duplat aldup...@gmail.com wrote:
  You all are right:
 
  Org-mode version 6.33x
 
  I will install the new one... and also the new MobileOrg.
 
  Thanks,
 
 
  On 5/12/11, Matthew Jones bsdmatb...@gmail.com wrote:
  You might also want to upgrade your version of MobileOrg... the most
  recent
  version in the android market is 0.5.5
 
  http://matburt.net
 
 
  On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com
  wrote:
 
  Hi there:
 
  I tried to follow carefully all the documentation but I have a problem
  using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
  agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
  sync my phone the Agenda View is empty.  What could be the problem?
 
  Everything works just fine with my gtd.org's file and also the
  inbox.org.
 
  Thanks,
 
  A.
 
  --
  Alfredo Duplat
 
 
 
 
 
  --
  Alfredo Duplat
 


 --
 Alfredo Duplat