[Orgmode] Re: publish not working in git version

2008-12-02 Thread Bernt Hansen
Richard Riley <[EMAIL PROTECTED]> writes: > Hi Sebastion, > > Do you have latest git head and publish to an ssh destination via tramp? I do ... and it works for me. -Bernt ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to th

Re: [Orgmode] publish not working in git version

2008-12-02 Thread Richard Riley
Sebastian Rose <[EMAIL PROTECTED]> writes: > Carsten Dominik <[EMAIL PROTECTED]> writes: >> Anyone else having trouble with publishing recently? > > Publishing is great - and works here. Hi Sebastion, Do you have latest git head and publish to an ssh destination via tramp? > > > Regards, --

Re: [Orgmode] searchable refcard

2008-12-02 Thread Sebastian Rose
Hi Robert, those functions you mentioned are on my list for long winter nights :-) Robert Goldman <[EMAIL PROTECTED]> writes: > (let ((cell (find-if (lambda (lst) (eval `(,(first lst > org-context-help-map))) > (when cell > (eval `(,(second cell) > > The find avoids the need to do

Re: [Orgmode] publish not working in git version

2008-12-02 Thread Sebastian Rose
Carsten Dominik <[EMAIL PROTECTED]> writes: > Anyone else having trouble with publishing recently? Publishing is great - and works here. Regards, -- Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover Tel.: +49 (0)511 - 36 58 472 Fax: +49 (0)1805 - 233633 - 11044 mobil:

[Orgmode] BUG - Archiving to the archive sibling duplicates tasks

2008-12-02 Thread Bernt Hansen
Hi Carsten, I've found a bug with the archive process. ,[ test.org ] | * One | ** One One | ** One Two | ** One Three | ** One Four ` If you put the point on line 2 (The ** One One task) and then hit C-c C-x A 4 times in a row to archive the four subtasks to the archive sibling I g

Re: [Orgmode] Re: publish not working in git version

2008-12-02 Thread Richard Riley
Carsten Dominik <[EMAIL PROTECTED]> writes: > Hi Richard, the new backtrace shows that your project does not define > a base directory. I'll take a look, but this is very strange since it works fine with the release version. Its only the git version it falls over on. Thanks, r. > > - Carste

Re: [Orgmode] Re: publish not working in git version

2008-12-02 Thread Carsten Dominik
Hi Richard, the new backtrace shows that your project does not define a base directory. - Carsten On Dec 2, 2008, at 5:32 PM, Richard Riley wrote: Bernt Hansen <[EMAIL PROTECTED]> writes: Carsten Dominik <[EMAIL PROTECTED]> writes: Anyone else having trouble with publishing recently?

Re: [Orgmode] Re: publish not working in git version

2008-12-02 Thread Richard Riley
Bernt Hansen <[EMAIL PROTECTED]> writes: > Carsten Dominik <[EMAIL PROTECTED]> writes: > >> Anyone else having trouble with publishing recently? > > Publishing seems to work for me. > Hi Carsten, Still the same. I removed the elc from org code as you requested. Latest git, following a publish

Re: [Orgmode] map bug

2008-12-02 Thread Carsten Dominik
Fixed, thanks for the report. Please note that aside from bigs in the mapping function, also the example in the manual was wrong. You should use this: (length (org-map-entries t "/+WAITING" 'agenda)) HTH - Carsten On Nov 30, 2008, at 7:37 AM, Samuel Wales wrote: Manual says: The f

[Orgmode] Re: publish not working in git version

2008-12-02 Thread Bernt Hansen
Carsten Dominik <[EMAIL PROTECTED]> writes: > Anyone else having trouble with publishing recently? Publishing seems to work for me. -Bernt ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org htt

Re: [Orgmode] publish not working in git version

2008-12-02 Thread Carsten Dominik
Hi Richard, I cannot reproduce this problem. Can you try to make a backtrace with uncompiled code so that I can at least identify the exact place where this bug is happening? Also your org-publish-alist would be good, and the project where this happens. Thanks. Anyone else having trou

[Orgmode] searchable refcard

2008-12-02 Thread Robert Goldman
I tried it the stupid way, just to see it working: (defun org-context-help () "Context help for org-mode" (interactive) (if (org-at-table-p) (info "(org)tables") (if (org-at-timestamp-p) (info "(org)timestamps") (if (org-at-item-checkbox-p) (info "(org)Chec

[Orgmode] problem (with emacs 21)

2008-12-02 Thread Luis Finotti
Dear all, I've been trying to install "org-6.13a" on two computers, both running emacs 21, and having the same error when opening a new file "a.org": "File mode specification error: (void-function org-mode)" I followed the instructions on the manual to create a backtrace, but it doesn't give any

Re: [Orgmode] searchable refcard?

2008-12-02 Thread Sebastian Rose
Carsten, thanks for the hint! Maybe I'll try to learn a little more elisp between the years :-) I tried it the stupid way, just to see it working: (defun org-context-help () "Context help for org-mode" (interactive) (if (org-at-table-p) (info "(org)tables") (if (org-at-timest

[Orgmode] Re: [PATCH] Clean up the description of org-archive-location

2008-12-02 Thread Bernt Hansen
Christian Egli <[EMAIL PROTECTED]> writes: > Hi > > Carsten Dominik <[EMAIL PROTECTED]> writes: > >> I think I am ripe for a little lecture about remote repositories >> and tracking them, so that I do not need to type the location of >> your repo each time... :-) > > Can't you just do > > g

Re: [Orgmode] searchable refcard?

2008-12-02 Thread Carsten Dominik
On Dec 2, 2008, at 1:28 PM, Sebastian Rose wrote: Just courious: How would I reveal the context at point? Would I use those predicates as `org-at-xxx-p'? C-h f org-context RET We can extend this function if needed for context help. - Carsten ___

[Orgmode] Re: [PATCH] Clean up the description of org-archive-location

2008-12-02 Thread Christian Egli
Hi Carsten Dominik <[EMAIL PROTECTED]> writes: > I think I am ripe for a little lecture about remote repositories > and tracking them, so that I do not need to type the location of > your repo each time... :-) Can't you just do git remote add bernt git://git.norang.ca/org-mode and then

Re: [Orgmode] searchable refcard?

2008-12-02 Thread Sebastian Rose
Carsten Dominik <[EMAIL PROTECTED]> writes: > Hi Sebastian, > > On Dec 1, 2008, at 3:38 PM, Sebastian Rose wrote: > >> Hi Carsten, Alan & Co, >> >> >> sorry for not following this thread closely. If the idea here is deleted >> from your list already or is not feasable, just ignore it. >> >> >> >>

Re: [Orgmode] searchable refcard?

2008-12-02 Thread Carsten Dominik
Hi Sebastian, On Dec 1, 2008, at 3:38 PM, Sebastian Rose wrote: Hi Carsten, Alan & Co, sorry for not following this thread closely. If the idea here is deleted from your list already or is not feasable, just ignore it. Refcard as info file How about maintaining th