Re: [Orgmode] iPhone app for Org view and capture

2009-09-09 Thread aldrin d'souza
2009/9/8 Richard Moreland 

> I've been working with Carsten on a free iPhone app for Org.
>

Absolutely lovely. I've been waiting for this for long.

Once we feel the basics are worked out, we will solicit a request for beta
> testers and feedback
>

Please count me in.

thanks,
--
ajd.
___
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-agenda-custom-commands - what's wrong with my setup

2009-08-30 Thread aldrin d'souza
hello org-mode users,

for some reason, my agenda export isn't working as it used to in the past.

(setq org-agenda-custom-commands  '(("x" agenda "export to html" nil
("~/agenda.html"

with this in my org configuration, i get 'x' as an accepted keystroke in the
agenda command selection buffer. however, when i use it, it does not export
my agenda. how should i troubleshoot, can someone point me to where do i
start looking? this used to work in the past, but now that i use it after a
gap, it doesn't seem to do its thing.

i use emacs version 23.1.1 and org-mode version - 6.28trans

thanks,
--
ajd.
___
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] compile failure - "Symbol's function definition is void: backup-inhibited"

2009-08-03 Thread aldrin d'souza
hello,

i upgraded my emacs to 23.1.1 and set up an org-mode git repository from
scratch.
now, when i do a "make" i get the following errors:

---
In toplevel form:
lisp/org-ascii.el:29:1:Error: Symbol's function definition is void:
backup-inhibited
make: *** [lisp/org-ascii.elc] Error 1
---

what am i missing?

thanks,
--
ajd.
___
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: UIDs in icalendar export (exporting my agenda)

2009-07-15 Thread aldrin d'souza
Thanks a lot Magnus - your suggestions were helpful. Basically, I didn't
have uuidgen on my machine and that caused the same ID to be generated for
all timestamps. I'm not sure if that's a bug because even though I'm on
Windows, when I evaluate (current-time) it gives me the time up to
milliseconds - something like (19038 42793 57000)

Nick, thanks to you too for pointing out that I need to set
org-icalendar-store-UID. That's exactly what I need to ensure I don't upload
the same event twice.

thanks,
--
ajd.
___
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] UIDs in icalendar export (exporting my agenda)

2009-07-15 Thread aldrin d'souza
hello,

i want to export my org-agenda as an icalendar file so that i can load it
into some online calendar and access it on my phone. however, i'm facing
some issues with the iCalendar files which org is generating. i can
reproduce the problem by using org-export-icalendar-this-file on the
following (simple) org file

---
* <2009-05-24 +1y> bob dylan
* <2009-01-27 +1y> mozart
---

here's the test.ics that gets generated:

---
BEGIN:VCALENDAR
VERSION:2.0
X-WR-CALNAME:test
PRODID:-//my-name//Emacs with Org-mode//EN
X-WR-TIMEZONE:+0530
CALSCALE:GREGORIAN
BEGIN:VEVENT
UID: TS-c7g0uc40uoe0
DTSTART;VALUE=DATE:20090524
DTEND;VALUE=DATE:20090525
RRULE:FREQ=YEARLY;INTERVAL=1
SUMMARY: bob dylan
CATEGORIES:test
END:VEVENT
BEGIN:VEVENT
UID: TS-c7g0uc40uoe0
DTSTART;VALUE=DATE:20090127
DTEND;VALUE=DATE:20090128
RRULE:FREQ=YEARLY;INTERVAL=1
SUMMARY: mozart
CATEGORIES:test
END:VEVENT
END:VCALENDAR
---

if you notice, the UIDs in both the events are same. aren't they supposed to
be different? when i import this file into an online calendar (like google)
one of the event is dropped.
am i missing something? i'm using org 6.28trans on emacs 23.0.94.

thanks,
--
ajd.
___
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-publish and rss/atom feeds..

2009-03-12 Thread aldrin d'souza
hello,

i have setup a small website using org-publish. it works great but
there's one bit missing. i have to generate the rss/atom feed
manually. does anyone know of a better way to generate these feeds
using some extension to the org-publish?

thanks,
--
ajd.


___
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] a problem with org-exp-bibtex

2009-03-12 Thread aldrin d'souza
2009/3/12 Taru Karttunen :
> On 12.03 11:44, Carsten Dominik wrote:
>> Up to now there was o stable way to enforce a fiven internal link target.
>> I have just pushed a change into the git repo that will allow
>>  [[#foobar][description]]
> My repo is updated to support the new link syntax.

thanks a lot Taru and Carsten - with your suggestions I got it working
just the way I wanted it to.

regards,
--
ajd.


___
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] a problem with org-exp-bibtex

2009-03-12 Thread aldrin d'souza
hello,

i use org mode for publishing my notes and i find the org-exp-bibtex
functionality very useful because it allows me to separate my
references cite them neatly using the \cite{} notation. however, i'm
facing an issue with it.

here's a simple org/bibtex combination to reproduce the probem:

--[test.org]--
note
* org-exp-bibtex
i love org. \cite{org}
#+BIBLIOGRAPHY: test plain
--

and here is the bibtex file (test.bib):

--[test.bib]--
@Manual{org,
  title = "org-mode manual",
  url   = "http://orgmode.org/manual";
}
--

when i export the note as html the \cite{org} bit gets replaced by a
link which points to "#sec-1" inside the generated html file. it
should have pointed to "#org" because that's where the cite
description is.

the weird part is that it works fine if i don't have any sections in
the file. for example, if the org file is changed to the following
everything works fine:

--[test.org]--
note
org-exp-bibtex
i love org. \cite{org}
#+BIBLIOGRAPHY: test plain
--

any help in getting this to work for org-files with sections would be great.

thanks,
--
ajd.


___
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