Re: [Orgmode] Re: Mail files in org

2008-08-29 Thread Tim O'Callaghan
Hi,

Now that Gmail uses statefull mail links, has anyone implemented
linking to Gmail conversations with org?

cheers,

Tim.

2008/8/28 Richard G Riley [EMAIL PROTECTED]:
 Russell Adams [EMAIL PROTECTED] writes:

 On Thu, Aug 28, 2008 at 05:45:38PM +0200, Richard G Riley wrote:

 Gnus supports maildir too although recently I moved to an IMAP server
 which accesses the maildir format created with procmail on my mail
 server.


 I've recently reorganized my folders to be served up by Dovecot so I
 can access my maildir inside VM with Thunderbird. A great hack, and
 Mutt compatible!

 I did use Mutt for a while but being an emacs user I took the plunge and
 went Gnus and never looked back. All the things you are familiar with
 integrate nicely (flyspell, org-mode etc). And, of course, Gnus merges
 the concept of usenet and email which is great when you get it all
 sorted out and configured to your liking. But now its starting to sound
 like I am pimping  Gnus. But as an emacs user I would recommend you take
 the plunge again and retry Gnus.

 I don't do usenet, and I use emacs as the message editor for Mutt. I
 do use BBDB with Mutt via LBDB.

 Perhaps I should review Gnus again, any good references or screenshots
 of it in operation?

 One little picture here showing email and usenet groups with group
 specific colouring and then content highlighting with non empty folders.

 http://richardriley.net/default/projects/images/gnus_scr.png

 and a link to my .gnus here

 http://richardriley.net/default/projects/emacs/

 Using the built in help function on that files contents would be a big
 help I think.



 ___
 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: Mail files in org

2008-08-29 Thread Manish
  On Fri, Aug 29, 2008 at 2:33 PM, Tim O'Callaghan wrote:
   Hi,
  
   Now that Gmail uses statefull mail links, has anyone implemented
   linking to Gmail conversations with org?

I am using (very basic) links to Gmail like this:

[[http://mail.google.com/mail/?zx=146px97qwhfbgshva=1/1webfcb784e8a0ec4#starred][Starred]]
[[http://mail.google.com/mail/?zx=14vpa97q8h1bgshva=1/1lkbfcbs74e1u0hc4#label/L%2Forg-mode][Org
mode]]

Have started looking for some sort of shortcut that can copy the link
to clipboard in one go (possibly formatted for Org.).

-- Manish


___
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] Mail files in org

2008-08-29 Thread Taru Karttunen
On 28.08 09:58, Russell Adams wrote:
 I'd like to follow up on putting a message ID link in org to open
 emails though.

This works with mutt and a suitable version of org-mairix (attached).
And a .emacs configuration (needs to be customized) like:

(require 'org-mairix)
(setq org-mairix-mutt-display-command urxvt -title 'mairix search: %search%' 
-e mutt -f ~/mail/mairix -e \push display-message\ 
  org-mairix-display-hook 'org-mairix-mutt-display-results)


- Taru Karttunen
;;; org-mairix.el - Support for hooking mairix search into Org for different 
MUAs
;;
;; Copyright (C) 2007 Georg C. F. Greve
;; mutt support by Adam Spiers orgmode at adamspiers dot org
;;
;; Author: Georg C. F. Greve greve at fsfeurope dot org
;; Keywords: outlines, hypermedia, calendar, wp, email, mairix
;; Purpose: Integrate mairix email searching into Org mode
;; See http://orgmode.org and http://www.rpcurnow.force9.co.uk/mairix/
;; Version: 0.5
;;
;; This file is Free Software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.

;; It is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
;; License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;
;; USAGE NOTE
;;
;; You will need to configure mairix first, which involves setting up your
;; .mairixrc in your home directory. Once it is working, you should set up
;; your way to display results in your favorite way -- usually a MUA.
;; Currently gnus and mutt are supported.
;;
;; After both steps are done, all you should need to hook mairix, org
;; and your MUA together is to do (require 'org-mairix) in your
;; startup file. Everything can then be configured normally through
;; Emacs customisation.
;;
;

(require 'org)

;;; The custom variables

(defgroup org-mairix nil
  Mairix support/integration in org.
  :tag Org Mairix
  :group 'org)

(defcustom org-mairix-threaded-links t
  Should new links be created as threaded links?
If t, links will be stored as threaded searches.
If nil, links will be stored as non-threaded searches.
  :group 'org-mairix
  :type 'boolean)

(defcustom org-mairix-augmented-links nil
  Should new links be created as augmenting searches?
If t, links will be stored as augmenting searches.
If nil, links will be stored as normal searches.

Attention: When activating this option, you will need
to remove old articles from your mairix results group
in some other way, mairix will not do it for you.
  :group 'org-mairix
  :type 'boolean)

(defcustom org-mairix-display-hook 'org-mairix-gnus-display-results
  Hook to call to display the results of a successful mairix search.
Defaults to Gnus, feel free to add your own MUAs or methods.
  :group 'org-mairix
  :type 'hook)

(defcustom org-mairix-open-command mairix %args% '%search%'
  The mairix command-line to use. If your paths are set up
correctly, you should not need to change this.

'%search%' will get substituted with the search expression, and
'%args%' with any additional arguments.
  :group 'org-mairix
  :type 'string)

;;; The hooks to integrate mairix into org

(org-add-link-type mairix 'org-mairix-open)
(add-hook 'org-store-link-functions 'org-mairix-store-gnus-link)

;;; Generic org-mairix functions

(defun org-mairix-construct-link (message-id)
  Construct a mairix: hyperlink based on message-id.
  (concat mairix:
  (if org-mairix-threaded-links t:)
  (if org-mairix-augmented-links a:)
  @@
  (org-remove-angle-brackets message-id)))

(defun org-store-mairix-link-props (rest plist)
  Take a property list describing a mail, and add mairix link
and description properties so that org can build a mairix link to
it.
  ;; We have to call `org-store-link-props' twice:
  ;;
  ;;   - It extracts 'fromname'/'fromaddress' from 'from' property,
  ;; and stores the updated plist to `org-store-link-plist'.
  ;;
  ;;   - `org-email-link-description' uses these new properties to
  ;; build a description from the previously stored plist.  I
  ;; wrote a tiny patch to `org-email-link-description' so it
  ;; could take a non-stored plist as an optional 2nd argument,
  ;; but the plist provided still needs 'fromname'/'fromaddress'.
  ;;
  ;;   - Ideally we would decouple the storing bit of
  ;; `org-store-link-props' from the extraction bit, but lots of
  ;; stuff in `org-store-link' which calls it would need to be
  

Re: [Orgmode] org-plot (generating graphs from org-mode)

2008-08-29 Thread William Henney
Hi Eric

On Tue, Aug 26, 2008 at 6:09 PM, Eric Schulte [EMAIL PROTECTED] wrote:
 Of course if anyone has any comments, problems, or suggestions please
 let me know.

Org-plot is great! Thank you very much for writing this. I just found
a couple of small problems, as detailed below.

Cheers

Will

** Bugs in org-plot
*** [2008-08-28 Thu] Finding the table to plot
=org-plot/goto-nearest-table= searches backward first, which means
that if point is located in an options line for a following table,
then it will find the previous table instead. This is usually
undesired.

*** [2008-08-28 Thu] Columns with multi-word text
Consider the following table:

#+PLOT: title:Citas ind:0 deps:(3) type:2d with:histograms set:yrange [0:]
| Sede  | Max cites | H-index |
|---+---+-|
| Chile |257.72 |   21.39 |
| Leeds |165.77 |   19.68 |
| São Paolo | 71.00 |   11.50 |
| Stockholm |134.19 |   14.33 |
| Morelia   |257.56 |   17.67 |

In theory, this should plot the third column. However, the data
point for São Paolo comes from the second column
instead. Presumably this is because of the embedded space in Sõo
Paolo. If I replace it with a unicode non-breaking space,
São Paolo, then it works correctly.


-- 

 Dr William Henney, Centro de Radioastronomía y Astrofísica,
 Universidad Nacional Autónoma de México, Campus Morelia


___
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] question concerning table mode / vsum / automatic adjustments of indices

2008-08-29 Thread William Henney
Hi Rainer

On Wed, Aug 27, 2008 at 6:35 AM, Rainer Stengele
[EMAIL PROTECTED] wrote:
 Now I want to add a row after c. Being on the row below c
 when I press M-S-DOWN I get this:

   |---+|
   | items | amount |
   |---+|
   | a |0.5 |
   | b |0.0 |
   | c |0.5 |
   |   ||
   |---+|
   | sum   | 1. |
   |---+|
 #+TBLFM:@6$2=vsum(@[EMAIL PROTECTED])

 which is not what I want. I want @5 as in the case before.
 Is this a bug or a feature? How can I get what I need?


The way you have written the vsum, org has no way of knowing that you
really want to sum all the rows between the previous two horizontal
lines. Instead, you should put vsum(@[EMAIL PROTECTED]) to tell it this
explicitly. That way, you can even add/delete rows by hand and it
will still work.

Hope this helps

Will


-- 

 Dr William Henney, Centro de Radioastronomía y Astrofísica,
 Universidad Nacional Autónoma de México, Campus Morelia


___
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] Unsubscribe Message

2008-08-29 Thread David A. Gershman

FYI to the admin of this list:

  I unsubscribed my current address in favor of this one and got the
following message:

  Good bye.  I hope you had some fun here, but maybe not enough to stay.
  Sorry to loose you.

Thought I'd let you know it's lose not loose.  Although loose did
have some interesting things come to mind. :)

---
David A. Gershman
[EMAIL PROTECTED]
http://dagertech.net/gershman/
It's all about the path! --d. gershman


___
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] Planner Pages Anyone?

2008-08-29 Thread David A. Gershman

Has anyone attempted the exporting or printing of .org data to a
physical planner size page?  I'm looking to get 1) the agenda view to a
planner page, and perhaps 2) any subtree view.


---
David A. Gershman
[EMAIL PROTECTED]
http://dagertech.net/gershman/
It's all about the path! --d. gershman


___
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