John Wiegley | 1 Oct 2007 03:25
Gravatar

Fix to org-nnml.el

I found that org-nnml doesn't quite work when you go to visit the links!  This
is fixed in version 1.1, pasted below.  To make this work, make sure to search
through your org-mode file for occurences of "nnml://" to "nnml:".

John

;;; org-nnml.el - Support for links to nnml messages by Message-ID

;; version 1.1, by John Wiegley <johnw <at> gnu.org>

(require 'org)

(eval-when-compile
  (require 'nnml)
  (require 'gnus-sum))

(org-add-link-type "nnml" 'org-nnml-open)

(add-hook 'org-store-link-functions 'org-nnml-store-link)

(defun org-nnml-open (message-id)
  "Visit the nnml message with the given Message-ID."
  (let ((info (nnml-find-group-number message-id)))
    (gnus-summary-read-group (concat "nnml:" (car info)) 100 t)
    (gnus-summary-goto-article (cdr info) nil t)))

(defun org-nnml-store-link ()
  "Store a link to an nnml e-mail message by Message-ID."
  (when (memq major-mode '(gnus-summary-mode gnus-article-mode))
    (and (eq major-mode 'gnus-article-mode) (gnus-article-show-summary))
(Continue reading)

T. V. Raman | 1 Oct 2007 05:18

Re: org-mode and Google Calendar

For possible ways of syncing with Google Calendar, see gcal.el --
which is part of my emacs-g-client package
http://emacspeak.googlecode.com/svn/trunk/lisp/g-client

Note that the above code is independent of Emacspeak --- but  has
only been tested under Emacs 22.

>>>>> "Vagn" == Vagn Johansen <gonz808 <at> hotmail.com> writes:
    Vagn> Bastien <bzg <at> altern.org> writes:
    >> Cezar <cezar <at> mixandgo.ro> writes:
    >> 
    Vagn> 
[...]
    Vagn> 
    >> I'm not really *syncing* my Org agenda files with Google
    >> Calendar.
    >> 
    >> I don't use Google Calendar to add new events; I just use
    >> it to check events that I have in my Org agenda files.
    Vagn> 
    Vagn> Me too
    Vagn> 
    >> So what I basically do, is that I export my agenda files
    >> to a single .ics file, then ask Google to import this as a
    >> new calendar.
    >> 
    >> I've cron'ed this script:
    Vagn> 
    Vagn> [...]
    Vagn> 
(Continue reading)

Bastien | 1 Oct 2007 18:58
Gravatar

Re: Set priority by S-<up> or S-<down> does not seem to work in an indirect buffer in the first todo headline

Rainer Stengele <rainer.stengele <at> diplan.de> writes:

> as the subjct already says ... S-up does not do in the indirect buffer
> what it does in the "direct" buffer.
>
> Instead of a priority I get "Beginning of buffer". Is this a bug?

Yes.  

`org-shiftup' calls `org-at-timestamp-p' (among others) which tries to
go backward while deciding if the cursor is on a timestamp.

This tiny patch provides a temporary workaround by being a bit more
liberal about the narrowed region:

Attachment (org.el.patch): text/x-diff, 589 bytes

But I guess Carsten will find a more general solution.

--

-- 
Bastien
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
(Continue reading)

Bastien | 1 Oct 2007 19:00
Gravatar

Re: org-mode and erc

Richard G Riley <rileyrgdev <at> googlemail.com> writes:

> Is there a customisation somewhere to support adding links to ERC
> buffers?

What would be the expected behavior when opening such links? Opening the
ERC with the right server/channel information?

--

-- 
Bastien

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Bastien | 1 Oct 2007 19:05
Gravatar

Re: export all linked images with a certain property or tag

Fabian Braennstroem <f.braennstroem <at> gmx.de> writes:

> I am looking for a way to export linked images with a certain property
> to html.

More generally, we could implement a way to restrict the exported text
to some headlines, given certain conditions on the headline itself (and
its text properties) and the properties in :PROPERTIES:.

Would that suit your specific needs?

--

-- 
Bastien

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Richard G Riley | 1 Oct 2007 19:52

Re: org-mode and erc

Bastien <bzg <at> altern.org> writes:

> Richard G Riley <rileyrgdev <at> googlemail.com> writes:
>
>> Is there a customisation somewhere to support adding links to ERC
>> buffers?
>
> What would be the expected behavior when opening such links? Opening the
> ERC with the right server/channel information?

Yes. I have no idea if you can store user name at least in this
instance. Is the user name stored per buffer? I don't know. Sorry. I
know planner had links to erc buffers.

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Fabian Braennstroem | 1 Oct 2007 22:34
Picon
Picon

Re: export all linked images with a certain property or tag

Hi Bastien,

Bastien schrieb am 10/01/2007 05:05 PM:
> Fabian Braennstroem <f.braennstroem <at> gmx.de> writes:
> 
>> I am looking for a way to export linked images with a certain property
>> to html.
> 
> More generally, we could implement a way to restrict the exported text
> to some headlines, given certain conditions on the headline itself (and
> its text properties) and the properties in :PROPERTIES:.
> 
> Would that suit your specific needs?

Sounds good for me, maybe it would be good to add some kind
off 'comment-region', which will not be exported by default.
A small example:

* Pictures
** Germany :Project1:
:PROPERTIES:
 :Datum:2007
:END:
|-- Some Comment Begin ------------------------
- some text
|-- Some Comment End ------------------------

[[file:image.png]]
|-- Some Comment Begin ------------------------
- some text
(Continue reading)

Carsten Dominik | 1 Oct 2007 20:34
Picon
Picon
Favicon

Re: Set priority by S-<up> or S-<down> does not seem to work in an indirect buffer in the first todo headline


On Sep 30, 2007, at 20:10, Rainer Stengele wrote:

> as the subjct already says ... S-up does not do in the indirect buffer 
> what it does in the "direct" buffer.
>
> Instead of a priority I get "Beginning of buffer".
> Is this a bug?

It sure is.  Fixed for next version, thanks.

- Carsten

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Carsten Dominik | 1 Oct 2007 20:36
Picon
Picon
Favicon

Re: org-mode and erc


On Sep 30, 2007, at 2:39, Richard G Riley wrote:

>
> Is there a customisation somewhere to support adding links to ERC 
> buffers?

Not yet, but you are welcome to write one.  The appendix of the manual
shows how (Adding link types...), and I think planner.el has erc links,
so you could study how they do it and port this to org-mode, writing
org-erc.el.

- Carsten

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Wanrong Lin | 1 Oct 2007 07:14
Picon

Unschedule a TODO

Hi,

Instead of manually delete the "SCHUDLED" line for a TODO item, is there 
any org command to do it? If not, I think it would be useful to do it by 
using "nil" in the org-schedule date/time input, or using a prefix in 
the command.

Wanrong

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode <at> gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Gmane