[OT] gnuplot quality (was Re: [Orgmode] org-plot file export options)

2010-06-12 Thread Eric S Fraga
On Fri, 11 Jun 2010 13:35:52 -0700, Eric Schulte schulte.e...@gmail.com 
wrote:

[...]

 WRT: the ugliness of gnuplot to file, I've wrestled with this myself and
 I know exactly what you mean.  Currently I try to use svg or png images
 when exporting to html, and for pdf I use the gnuplot tikz terminal [2].

John  Eric,

Another approach, which I use and which doesn't require using the
development version of gnuplot for the tikz support, is to generate
encapsulated postscript files:

  set terminal postscript eps enhanced 20
  set output graph.eps

for instance.  Then, if I need bitmap images, I use convert from
ImageMagick to create these from the EPS files with the required
density (depending on intended use, whether screen display or
printing), as in

  convert -quality 95 -density 300 graph.eps graph.png

With EPS, you can get very nice looking text, especially with the
enhanced gnuplot set terminal option and the result is size
independent.
-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [OT] gnuplot quality (was Re: [Orgmode] org-plot file export options)

2010-06-12 Thread Eric S Fraga
On Sat, 12 Jun 2010 11:17:33 +0100, Eric S Fraga ucec...@ucl.ac.uk wrote:

[...]

 for instance.  Then, if I need bitmap images, I use convert from
 ImageMagick to create these from the EPS files with the required
 density (depending on intended use, whether screen display or
 printing), as in
 
   convert -quality 95 -density 300 graph.eps graph.png

Ooops, ignore the -quality 95 as that is only appropriate if you are
creating a lossy format output, such as jpeg!
-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [OT] gnuplot quality (was Re: [Orgmode] org-plot file export options)

2010-06-12 Thread John Hendy
Thanks for both tips -- I'll give these a try on Monday when I'm back at
work. Much appreciated!

On Sat, Jun 12, 2010 at 5:17 AM, Eric S Fraga ucec...@ucl.ac.uk wrote:

 On Fri, 11 Jun 2010 13:35:52 -0700, Eric Schulte schulte.e...@gmail.com
 wrote:

 [...]

  WRT: the ugliness of gnuplot to file, I've wrestled with this myself and
  I know exactly what you mean.  Currently I try to use svg or png images
  when exporting to html, and for pdf I use the gnuplot tikz terminal [2].

 John  Eric,

 Another approach, which I use and which doesn't require using the
 development version of gnuplot for the tikz support, is to generate
 encapsulated postscript files:

  set terminal postscript eps enhanced 20
  set output graph.eps

 for instance.  Then, if I need bitmap images, I use convert from
 ImageMagick to create these from the EPS files with the required
 density (depending on intended use, whether screen display or
 printing), as in

  convert -quality 95 -density 300 graph.eps graph.png

 With EPS, you can get very nice looking text, especially with the
 enhanced gnuplot set terminal option and the result is size
 independent.

 --
 Eric S Fraga
 GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: [OT] gnuplot quality

2010-06-12 Thread Eric Schulte
Eric S Fraga ucec...@ucl.ac.uk writes:

 On Fri, 11 Jun 2010 13:35:52 -0700, Eric Schulte schulte.e...@gmail.com 
 wrote:

 [...]

 WRT: the ugliness of gnuplot to file, I've wrestled with this myself and
 I know exactly what you mean.  Currently I try to use svg or png images
 when exporting to html, and for pdf I use the gnuplot tikz terminal [2].

 John  Eric,

 Another approach, which I use and which doesn't require using the
 development version of gnuplot for the tikz support, is to generate
 encapsulated postscript files:

   set terminal postscript eps enhanced 20
   set output graph.eps


Thanks!

I just tried the above (well technically the below [1]) and it does look
great and scales well.  It's nice to have a light-weight alternative to
tikz -- a great addition to my plotting toolbox.

Best -- Eric


 for instance.  Then, if I need bitmap images, I use convert from
 ImageMagick to create these from the EPS files with the required
 density (depending on intended use, whether screen display or
 printing), as in

   convert -density 300 graph.eps graph.png

 With EPS, you can get very nice looking text, especially with the
 enhanced gnuplot set terminal option and the result is size
 independent.

Footnotes: 
[1]  
--8---cut here---start-8---
#+begin_src gnuplot
  set terminal postscript eps enhanced 20 color
  set output ~/Desktop/graph.eps
  set isosample 30,30
  set title 'bumpy'
  set xrange[-4:4]
  set yrange[-4:4]
  splot sin(x) + sin(y) notitle
#+end_src
--8---cut here---end---8---



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Debate about One clock per user, but user is identified

2010-06-12 Thread Benjamin Andresen
Hey Sébastien,

Sébastien Vauban wxhgmqzgw...@spammotel.com writes:

 Hi all,

 What do you think about all this?

I just read this and before nobody answers, I'll give you a small POC
that should work for you. As far as I can tell it doesn't break
anything.

(defun org-clock-out-mark-clock ()
  (unless remove (insert (format  (%s) user-full-name

(add-hook 'org-clock-out-hook 'org-clock-out-mark-clock)


 Best regards,
   Seb

br,
benny

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] [PATCH] Fix agenda display for late scheduled and deadline tasks

2010-06-12 Thread Bernt Hansen
* lisp/org-agenda.el (org-agenda-get-deadlines):
(org-agenda-get-scheduled):
* lisp/org.el (org-time-string-to-seconds):
For deadline and scheduled agenda display ignore the cyclic repeater
when calculating how many days late the task is.  If you have a weekly
task and miss the date the agenda view will show more than a week late
now instead of resetting on the cyclic repeating date.  This makes it
much more obvious when you missed a repeating task after the repeater.
---
This patch is available at git://git.norang.ca/org-mode.git 
fix-agenda-late-tasks

-Bernt

 lisp/org-agenda.el |4 ++--
 lisp/org.el|   12 +++-
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 93334b6..1977b84 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -4573,7 +4573,7 @@ be skipped.
  pos (1- (match-beginning 1))
  d2 (org-time-string-to-absolute
  (match-string 1) d1 'past
- org-agenda-repeating-timestamp-show-all)
+ org-agenda-repeating-timestamp-show-all t)
  diff (- d2 d1)
  wdays (if suppress-prewarning
(let ((org-deadline-warning-days suppress-prewarning))
@@ -4675,7 +4675,7 @@ FRACTION is what fraction of the head-warning time has 
passed.
  pos (1- (match-beginning 1))
  d2 (org-time-string-to-absolute
  (match-string 1) d1 'past
- org-agenda-repeating-timestamp-show-all)
+ org-agenda-repeating-timestamp-show-all t)
  diff (- d2 d1))
(setq pastschedp (and todayp ( diff 0)))
;; When to show a scheduled item in the calendar:
diff --git a/lisp/org.el b/lisp/org.el
index 5cbd10a..d01bf8a 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -14683,18 +14683,20 @@ days in order to avoid rounding problems.
 (defun org-time-string-to-seconds (s)
   (org-float-time (org-time-string-to-time s)))
 
-(defun org-time-string-to-absolute (s optional daynr prefer show-all)
+(defun org-time-string-to-absolute (s optional daynr prefer show-all 
ignore-cyclic)
   Convert a time stamp to an absolute day number.
-If there is a specifyer for a cyclic time stamp, get the closest date to
-DAYNR.
+If there is a specifier for a cyclic time stamp, get the closest date to
+DAYN.
 PREFER and SHOW-ALL are passed through to `org-closest-date'.
-the variable date is bound by the calendar when this is called.
+the variable date is bound by the calendar when this is called.
+IGNORE-CYCLIC ignores cyclic repeaters so the returned absolute date 
+is based on the original date.
   (cond
((and daynr (string-match \\`%%\\((.*)\\) s))
 (if (org-diary-sexp-entry (match-string 1 s)  date)
daynr
   (+ daynr 1000)))
-   ((and daynr (string-match \\+[0-9]+[dwmy] s))
+   ((and (not ignore-cyclic) daynr (string-match \\+[0-9]+[dwmy] s))
 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
  (time-to-days (current-time))) (match-string 0 s)
  prefer show-all))
-- 
1.7.1.256.g3499


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] [PATCH] Fix agenda display for late scheduled and deadline tasks

2010-06-12 Thread Bernt Hansen
* lisp/org-agenda.el (org-agenda-get-deadlines):
(org-agenda-get-scheduled):
* lisp/org.el (org-time-string-to-seconds):
For deadline and scheduled agenda display ignore the cyclic repeater
when calculating how many days late the task is.  If you have a weekly
task and miss the date the agenda view will show more than a week late
now instead of resetting on the cyclic repeating date.  This makes it
much more obvious when you missed a repeating task after the repeater.
---
Updated patch - fixes DAYN - DAYNR in the docstring.

-Bernt

 lisp/org-agenda.el |4 ++--
 lisp/org.el|   10 ++
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 93334b6..1977b84 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -4573,7 +4573,7 @@ be skipped.
  pos (1- (match-beginning 1))
  d2 (org-time-string-to-absolute
  (match-string 1) d1 'past
- org-agenda-repeating-timestamp-show-all)
+ org-agenda-repeating-timestamp-show-all t)
  diff (- d2 d1)
  wdays (if suppress-prewarning
(let ((org-deadline-warning-days suppress-prewarning))
@@ -4675,7 +4675,7 @@ FRACTION is what fraction of the head-warning time has 
passed.
  pos (1- (match-beginning 1))
  d2 (org-time-string-to-absolute
  (match-string 1) d1 'past
- org-agenda-repeating-timestamp-show-all)
+ org-agenda-repeating-timestamp-show-all t)
  diff (- d2 d1))
(setq pastschedp (and todayp ( diff 0)))
;; When to show a scheduled item in the calendar:
diff --git a/lisp/org.el b/lisp/org.el
index 5cbd10a..f23a9e8 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -14683,18 +14683,20 @@ days in order to avoid rounding problems.
 (defun org-time-string-to-seconds (s)
   (org-float-time (org-time-string-to-time s)))
 
-(defun org-time-string-to-absolute (s optional daynr prefer show-all)
+(defun org-time-string-to-absolute (s optional daynr prefer show-all 
ignore-cyclic)
   Convert a time stamp to an absolute day number.
-If there is a specifyer for a cyclic time stamp, get the closest date to
+If there is a specifier for a cyclic time stamp, get the closest date to
 DAYNR.
 PREFER and SHOW-ALL are passed through to `org-closest-date'.
-the variable date is bound by the calendar when this is called.
+the variable date is bound by the calendar when this is called.
+IGNORE-CYCLIC ignores cyclic repeaters so the returned absolute date
+is based on the original date.
   (cond
((and daynr (string-match \\`%%\\((.*)\\) s))
 (if (org-diary-sexp-entry (match-string 1 s)  date)
daynr
   (+ daynr 1000)))
-   ((and daynr (string-match \\+[0-9]+[dwmy] s))
+   ((and (not ignore-cyclic) daynr (string-match \\+[0-9]+[dwmy] s))
 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
  (time-to-days (current-time))) (match-string 0 s)
  prefer show-all))
-- 
1.7.1.256.g3499


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Debate about One clock per user, but user is identified

2010-06-12 Thread Eric Schulte
Hi Sébastien,

Sébastien Vauban wxhgmqzgw...@spammotel.com writes:

[...]

 I don't ask for multiple clocks running simultaneously, but (as I currently
 envision it -- reason for collecting *your* ideas) for an identifier
 [something like `org-user-identifier'] to be added to the clock lines, so that
 we can filter based on the user, when multiple people have clocked in the same
 documents.


I haven't used any of the clocking features, so I won't speak to that
side of this issue, however, I have been using org-mode files as a point
of collaboration on a couple of projects (including org-babel [1]) and I
think a generalization of something like your proposed
`org-user-identifier' variable could be very useful for many of the org
meta-data items associated with headlines.

For example, it would be great to record the user responsible for every
TODO state change, so that something like

  ** DONE Org-babel should work well when indented
 - State DONE   from TODO   [2010-06-10 Thu 15:48]

would instead be

  ** DONE Org-babel should work well when indented
 - State DONE   from TODO   by eschulte   [2010-06-10 Thu 
15:48]

I think this would be very helpful, and anything that encourages the
spread of Org-mode usage through co-workers is a big win.

Best -- Eric

Footnotes: 
[1]  http://github.com/eschulte/babel-dev/blob/master/development.org


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Debate about One clock per user, but user is identified

2010-06-12 Thread Daniel Martins
I aggree with Eric.

A collaborative point of view is needed to spread the word of org-mode among
a greater set of users.

org-secretary.el from Juan os great but is the start of something more
general

I am leading a group of engineers and it is quite difficult  (even among
Fress Software people) to convince the use of org-mode despite its several
advantages.

Daniel

PS I think the subject of this topic shoud be changed

Org-mode collaborative

is an option

2010/6/12 Eric Schulte schulte.e...@gmail.com

 Hi Sébastien,

 Sébastien Vauban wxhgmqzgw...@spammotel.com writes:

 [...]
 
  I don't ask for multiple clocks running simultaneously, but (as I
 currently
  envision it -- reason for collecting *your* ideas) for an identifier
  [something like `org-user-identifier'] to be added to the clock lines, so
 that
  we can filter based on the user, when multiple people have clocked in the
 same
  documents.
 

 I haven't used any of the clocking features, so I won't speak to that
 side of this issue, however, I have been using org-mode files as a point
 of collaboration on a couple of projects (including org-babel [1]) and I
 think a generalization of something like your proposed
 `org-user-identifier' variable could be very useful for many of the org
 meta-data items associated with headlines.

 For example, it would be great to record the user responsible for every
 TODO state change, so that something like

  ** DONE Org-babel should work well when indented
 - State DONE   from TODO   [2010-06-10 Thu 15:48]

 would instead be

  ** DONE Org-babel should work well when indented
 - State DONE   from TODO   by eschulte   [2010-06-10
 Thu 15:48]

 I think this would be very helpful, and anything that encourages the
 spread of Org-mode usage through co-workers is a big win.

 Best -- Eric

 Footnotes:
 [1]  http://github.com/eschulte/babel-dev/blob/master/development.org


 ___
 Emacs-orgmode mailing list
 Please 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
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Just discovered the date-tree capability of Remember

2010-06-12 Thread Daniel Martins
I am also waiting!!

Daniel

2010/6/9 Uwe Schuerkamp uwe.schuerk...@gmail.com

 On 9 June 2010 03:30, Charles Cave charles_c...@optusnet.com.au wrote:
  Well done!   Maybe I will write a short tutorial.

 Please do, this feature looks rather interesting!

 All the best, Uwe

 ___
 Emacs-orgmode mailing list
 Please 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
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-remember and anything

2010-06-12 Thread Glauber Alex Dias Prado
Hi,
when calling org-remember, after selecting the template org doesnt
provide the right syntax to anything as it is configure for icomplete i
think, dunno what is really involved here as it used to work( i tried it
with both ido completion support on and off):

Sorry if this is not really a org thing:


Debugger entered--Lisp error: (error anything-interpret-value: Symbol must be 
a function or a variable)
  signal(error (anything-interpret-value: Symbol must be a function or a 
variable))
  error(anything-interpret-value: Symbol must be a function or a variable)
  anything-interpret-value(org-remember-template-prompt-history::Brief\ 
Description ((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-get-candidates(((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-get-cached-candidates(((match anything-exact-match 
anything-mp-3p-match anything-mp-3-match) (search anything-exact-search 
anything-mp-3p-search anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  #[nil \306\307\\306\310\\311!\306\312\\211\203\313
\n#\202\n)\314\n\315\232\2042\316\232\203F\317!\211G\fV\203K\320\321\f#\202K\314\322\323\217\210\306\324\\211\203[\313
   $)-\207 [source it anything-pattern matches limit anything-source-name 
assoc-default match name anything-candidate-number-limit pattern-transformer 
anything-composed-funcall-with-source nil  (identity) 
anything-get-cached-candidates subseq 0 (byte-code 
\306\307!\310\f\204\311C\312
!\210\313\314\215\210+\310\207 [source exit cands item-count functions 
anything-match-hash 0 anything-get-cached-candidates nil #[... \302   \\207 
[anything-pattern candidate string-match] 3] clrhash --cl-block-nil-- ...] 3) 
(...) filtered-candidate-transformer functions] 8]()
  anything-compute-matches(((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-process-source(((match anything-exact-match anything-mp-3p-match 
anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
anything-mp-3-search) (name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity) (header-line . anything-persistent-help-string)))
  anything-update()
  anything-read-pattern-maybe(#(Brief Description:  0 17 (fontified nil)) nil 
nil noresume nil)
  byte-code(\306\211\211\307\206     
\310\311\\312\313!B\f\312\314!B\315\316\313\306\\210\317\216\320\321!\210\322!\323
 !\\210\324\325!\210\326   !\210\327\216\330\!# $%\210-?\205_\331 
-\207 [any-buffer anything-buffer case-fold-search anything-quit 
anything-in-persistent-action anything-source-name nil t mapcar #[(v) 
\211JB\207 [v] 2] default-value post-command-hook pre-command-hook (t) 
set-default ((byte-code \306\211  :\203 @\211\21...@\211\nl\210   
a\211\202...@\307\305\fa\\207 [--orig-vars --cl-var-- value var 
--post-command-hook-pair post-command-hook nil set-default] 3)) 
anything-frame/window-configuration save anything-normalize-sources 
anything-initialize-1 anything-hooks setup anything-display-buffer ((byte-code 
\300 \210\301\302!\210\303\304!\207 [anything-cleanup anything-hooks cleanup 
anything-frame/window-configuration restore] 2)) anything-read-pattern-maybe 
anything-execute-selection-action-1 anything-restored-variables 
--pre-command-hook-pair --post-command-hook-pair --orig-vars any-sources 
anything-sources any-resume any-input any-prompt any-preselect any-keymap] 6)
  anythingname . Default) (default-value . ) (action . identity) 
(accept-empty)) ((name . Completions) (candidates) (action . identity) nil 
nil) ((name . History) (candidates . 
org-remember-template-prompt-history::Brief\ Description) nil (action . 
identity)) ((name . #(Brief Description:  0 17 ...)) (dummy) (action . 
identity))) nil #(Brief Description:  0 17 (fontified nil)) noresume nil 
*anything complete*)
  anything-noresumename . Default) (default-value . ) (action . 
identity) (accept-empty)) ((name . Completions) (candidates) (action . 
identity) nil nil) 

[Orgmode] Re: org-remember and anything

2010-06-12 Thread Bernt Hansen
Glauber Alex Dias Prado sma...@gmail.com writes:

 Hi,
 when calling org-remember, after selecting the template org doesnt
 provide the right syntax to anything as it is configure for icomplete i
 think, dunno what is really involved here as it used to work( i tried it
 with both ido completion support on and off):

 Sorry if this is not really a org thing:


 Debugger entered--Lisp error: (error anything-interpret-value: Symbol must 
 be a function or a variable)
   signal(error (anything-interpret-value: Symbol must be a function or a 
 variable))
   error(anything-interpret-value: Symbol must be a function or a variable)

snipped details of backtrace

   remember-mode()
   remember(nil)
   org-do-remember()
   org-remember(nil)
   call-interactively(org-remember nil nil)

I don't think there are enough details here to help.  You should provide
your org-mode and emacs versions and the remember template you are
trying to invoke.

I have no idea what 'anything' is so details of your setup for that
would be helpful as well.

Regards,
Bernt



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] [PATCH] Fix typo in documentation

2010-06-12 Thread Puneeth Chaganti
Hi,

Fixed mis-spelt variable org-columns-skip-archived-trees.

Thanks,
Puneeth

diff --git a/doc/org.texi b/doc/org.texi
index 0ff76b6..eee5c5c 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -6440,9 +6440,9 @@ Archived trees are not exported
(@pxref{Exporting}), only the headline
 is.  Configure the details using the variable
 @code{org-export-with-archived-trees}.
 @item
-...@vindex org-columns-skip-arrchived-trees
+...@vindex org-columns-skip-archived-trees
 Archived trees are excluded from column view unless the variable
-...@code{org-columns-skip-arrchived-trees} is configured to @code{nil}.
+...@code{org-columns-skip-archived-trees} is configured to @code{nil}.
 @end itemize

 The following commands help managing the ARCHIVE tag:
diff --git a/lisp/ChangeLog.01 b/lisp/ChangeLog.01
index 38b1fad..946e533 100644
--- a/lisp/ChangeLog.01
+++ b/lisp/ChangeLog.01
@@ -3343,7 +3343,7 @@
`truncate-lines'.
(org-columns): Remember the value of `truncate-lines'.

-   * org.el (org-columns-skip-arrchived-trees): New option.
+   * org.el (org-columns-skip-archived-trees): New option.

* org-agenda.el (org-agenda-export-html-style): Define color for
org-agenda-done face.

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-remember and anything

2010-06-12 Thread Glauber Alex Dias Prado
Bernt Hansen be...@norang.ca writes:

 Glauber Alex Dias Prado sma...@gmail.com writes:

 Hi,
 when calling org-remember, after selecting the template org doesnt
 provide the right syntax to anything as it is configure for icomplete i
 think, dunno what is really involved here as it used to work( i tried it
 with both ido completion support on and off):

 Sorry if this is not really a org thing:


 Debugger entered--Lisp error: (error anything-interpret-value: Symbol must 
 be a function or a variable)
   signal(error (anything-interpret-value: Symbol must be a function or a 
 variable))
   error(anything-interpret-value: Symbol must be a function or a variable)

 snipped details of backtrace

   remember-mode()
   remember(nil)
   org-do-remember()
   org-remember(nil)
   call-interactively(org-remember nil nil)

 I don't think there are enough details here to help.  You should provide
 your org-mode and emacs versions and the remember template you are
 trying to invoke.

It happens for the simplest template you try(any):
GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.20.0) of
2010-05-20 on jetski
Org-mode version 6.35trans (release_6.35g.161.ga2518)


 I have no idea what 'anything' is so details of your setup for that
 would be helpful as well.
its a very simple setup(if using auto-install):
http://www.emacswiki.org/emacs/AutoInstall

after u install auto-install you can call
M-x auto-install-batch
anything RET

After that:
(require 'anything-startup)


 Regards,
 Bernt



 ___
 Emacs-orgmode mailing list
 Please 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
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-remember and anything

2010-06-12 Thread Thierry Volpiatto
Hi, can you please provide more info on what you do exactly and how you
use anything (which source, function etc...) with org.
Which command give this backtrace?

Glauber Alex Dias Prado sma...@gmail.com writes:

 Hi,
 when calling org-remember, after selecting the template org doesnt
 provide the right syntax to anything as it is configure for icomplete i
 think, dunno what is really involved here as it used to work( i tried it
 with both ido completion support on and off):

 Sorry if this is not really a org thing:


 Debugger entered--Lisp error: (error anything-interpret-value: Symbol must 
 be a function or a variable)
   signal(error (anything-interpret-value: Symbol must be a function or a 
 variable))
   error(anything-interpret-value: Symbol must be a function or a variable)
   anything-interpret-value(org-remember-template-prompt-history::Brief\ 
 Description ((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-get-candidates(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-get-cached-candidates(((match anything-exact-match 
 anything-mp-3p-match anything-mp-3-match) (search anything-exact-search 
 anything-mp-3p-search anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   #[nil \306\307\\306\310\\311!\306\312\\211\203\313
 \n#\202\n)\314\n\315\232\2042\316\232\203F\317!\211G\fV\203K\320\321\f#\202K\314\322\323\217\210\306\324\\211\203[\313
 $)-\207 [source it anything-pattern matches limit 
 anything-source-name assoc-default match name anything-candidate-number-limit 
 pattern-transformer anything-composed-funcall-with-source nil  (identity) 
 anything-get-cached-candidates subseq 0 (byte-code 
 \306\307!\310\f\204\311C\312!\210\313\314\215\210+\310\207 [source exit 
 cands item-count functions anything-match-hash 0 
 anything-get-cached-candidates nil #[... \302\\207 
 [anything-pattern candidate string-match] 3] clrhash --cl-block-nil-- ...] 3) 
 (...) filtered-candidate-transformer functions] 8]()
   anything-compute-matches(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-process-source(((match anything-exact-match anything-mp-3p-match 
 anything-mp-3-match) (search anything-exact-search anything-mp-3p-search 
 anything-mp-3-search) (name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity) (header-line . anything-persistent-help-string)))
   anything-update()
   anything-read-pattern-maybe(#(Brief Description:  0 17 (fontified nil)) 
 nil nil noresume nil)
   byte-code(\306\211\211\307\206
 \310\311\\312\313!B\f\312\314!B\315\316\313\306\\210\317\216\320\321!\210\322!\323
  !\\210\324\325!\210\326 !\210\327\216\330\!# $%\210-?\205_\331 -\207 
 [any-buffer anything-buffer case-fold-search anything-quit 
 anything-in-persistent-action anything-source-name nil t mapcar #[(v) 
 \211JB\207 [v] 2] default-value post-command-hook pre-command-hook (t) 
 set-default ((byte-code \306\211  :\203  @\211\2...@\211\nl\210  
 a\211\202...@\307\305\fa\\207 [--orig-vars --cl-var-- value var 
 --post-command-hook-pair post-command-hook nil set-default] 3)) 
 anything-frame/window-configuration save anything-normalize-sources 
 anything-initialize-1 anything-hooks setup anything-display-buffer 
 ((byte-code \300 \210\301\302!\210\303\304!\207 [anything-cleanup 
 anything-hooks cleanup anything-frame/window-configuration restore] 2)) 
 anything-read-pattern-maybe anything-execute-selection-action-1 
 anything-restored-variables --pre-command-hook-pair --post-command-hook-pair 
 --orig-vars any-sources anything-sources any-resume any-input any-prompt 
 any-preselect any-keymap] 6)
   anythingname . Default) (default-value . ) (action . identity) 
 (accept-empty)) ((name . Completions) (candidates) (action . identity) nil 
 nil) ((name . History) (candidates . 
 org-remember-template-prompt-history::Brief\ Description) nil (action . 
 identity)) ((name . #(Brief Description:  0 17 ...)) (dummy) (action . 
 identity))) nil 

Re: [Orgmode] [PATCH] Fix typo in documentation

2010-06-12 Thread Eric Schulte
Applied Thanks -- Eric

Puneeth Chaganti puncha...@gmail.com writes:

 Hi,

 Fixed mis-spelt variable org-columns-skip-archived-trees.

 Thanks,
 Puneeth


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] sup-mail link

2010-06-12 Thread Daniel Goldin
Anybody know of a way to link to a sup-mail email?

d.
-- 
Daniel Goldin 
213.926.1960

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: [OT] gnuplot quality

2010-06-12 Thread Eric S Fraga
On Sat, 12 Jun 2010 08:23:44 -0700, Eric Schulte schulte.e...@gmail.com 
wrote:
 
 Eric S Fraga ucec...@ucl.ac.uk writes:
 
  On Fri, 11 Jun 2010 13:35:52 -0700, Eric Schulte schulte.e...@gmail.com 
  wrote:
 
  [...]
 
  WRT: the ugliness of gnuplot to file, I've wrestled with this myself and
  I know exactly what you mean.  Currently I try to use svg or png images
  when exporting to html, and for pdf I use the gnuplot tikz terminal [2].
 
  John  Eric,
 
  Another approach, which I use and which doesn't require using the
  development version of gnuplot for the tikz support, is to generate
  encapsulated postscript files:
 
set terminal postscript eps enhanced 20
set output graph.eps
 
 
 Thanks!
 
 I just tried the above (well technically the below [1]) and it does look
 great and scales well.  It's nice to have a light-weight alternative to
 tikz -- a great addition to my plotting toolbox.
 
 Best -- Eric

[...]

 Footnotes: 
 [1]  
 --8---cut here---start-8---
 #+begin_src gnuplot
   set terminal postscript eps enhanced 20 color
   set output ~/Desktop/graph.eps
   set isosample 30,30
   set title 'bumpy'
   set xrange[-4:4]
   set yrange[-4:4]
   splot sin(x) + sin(y) notitle
 #+end_src
 --8---cut here---end---8---
 
 

You're very welcome.  I use a number of methods to generate graphs and
diagrams and gnuplot is definitely one of my favourites.  For the
adventurous, there's a great blog: 

http://gnuplot-tricks.blogspot.com/

Put gnuplot together with org-mode and org-babel and it's yet another
piece in the puzzle that leads to an incredibly powerful desktop
analysis and publishing system!
-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] sup-mail link

2010-06-12 Thread Eric S Fraga
On Sat, 12 Jun 2010 11:25:40 -0700, Daniel Goldin danielgol...@gmail.com 
wrote:
 
 Anybody know of a way to link to a sup-mail email?

What is a sup-mail email?  Sorry if I'm being ignorant here...
-- 
Eric S Fraga
GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] sup-mail link

2010-06-12 Thread Puneeth Chaganti
On Sun, Jun 13, 2010 at 1:49 AM, Eric S Fraga ucec...@ucl.ac.uk wrote:
 On Sat, 12 Jun 2010 11:25:40 -0700, Daniel Goldin danielgol...@gmail.com 
 wrote:

 Anybody know of a way to link to a sup-mail email?

 What is a sup-mail email?  Sorry if I'm being ignorant here...

I think he's referring to this mail client - http://sup.rubyforge.org/

--
Puneeth

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Two bugs in org-indent (plus a fix to correct one of them)

2010-06-12 Thread William Henney
Hi all

I have recently started using org-indent (together with word-wrap) for
new org files. In general, I love it. But there are a couple of small
problems:

1. If one sets org-indent-indentation-per-level to any value other
than the default of 2, then the indentation of lines following a
heading is not correct. I seem to have managed to fix this by changing
line 231 of org-indent.el from

 n (* (or level 0) org-indent-indentation-per-level

to

 n (+ 2 (* (1- (or level 0)) 
org-indent-indentation-per-level)

Tested with org-indent-indentation-per-level = 0, 1, 2, and 3.

2. org-indent fails to play nicely with org-inlinetask in two ways

   i) It destroys the special fontification of the inline task's
leading stars, even if org-indent-mode-turns-on-hiding-stars is set to
nil

   ii) Any text after an inline task's END statement is soft-indented
as though it were part of the inline task, whereas the indentation
should ideally return to what it was before the inline task. Of
course, this is also a problem when org-indent is turned off, if you
try to automatically hard-indent using TAB. However, in that case you
can adjust by hand the indentation of the first line after the inline
task, and then all the following lines will indent correctly. With
org-indent the problem is much worse since there is no way of
adjusting the soft indents by hand.

Cheers

Will

P.S. Has anyone successfully converted a pre-existing org file to a
form suitable for use with org-indent? By which I mean that the
pre-existing file was written with hard line breaks and hard indents.
The task is not trivial since one needs to remove the hard indents due
to the nesting of the org headings, but to leave alone the hard
indents due to the nesting of plain lists.

-- 

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

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: [OT] gnuplot quality

2010-06-12 Thread Alan E. Davis
I use the gri plotting language to make plots.  Does anyone here use this?



I am over my head in trying to use babel as a literate programming tool; yet
that's exactly what I need to do, else at least have a method for
coordinating better comments / notes with the code.

Gnuplot was ok when I didn't need quailty graphs.

I also need to learn to make a number of other types of plots, including
polar plots.  I understand that it is possible with gri, but haven't set
down to try to get my head around the process.

Alan Davis

On Sun, Jun 13, 2010 at 6:16 AM, Eric S Fraga ucec...@ucl.ac.uk wrote:

 On Sat, 12 Jun 2010 08:23:44 -0700, Eric Schulte schulte.e...@gmail.com
 wrote:
 
  Eric S Fraga ucec...@ucl.ac.uk writes:
 
   On Fri, 11 Jun 2010 13:35:52 -0700, Eric Schulte 
 schulte.e...@gmail.com wrote:
  
   [...]
  
   WRT: the ugliness of gnuplot to file, I've wrestled with this myself
 and
   I know exactly what you mean.  Currently I try to use svg or png
 images
   when exporting to html, and for pdf I use the gnuplot tikz terminal
 [2].
  
   John  Eric,
  
   Another approach, which I use and which doesn't require using the
   development version of gnuplot for the tikz support, is to generate
   encapsulated postscript files:
  
 set terminal postscript eps enhanced 20
 set output graph.eps
  
 
  Thanks!
 
  I just tried the above (well technically the below [1]) and it does look
  great and scales well.  It's nice to have a light-weight alternative to
  tikz -- a great addition to my plotting toolbox.
 
  Best -- Eric

 [...]

  Footnotes:
  [1]
  --8---cut here---start-8---
  #+begin_src gnuplot
set terminal postscript eps enhanced 20 color
set output ~/Desktop/graph.eps
set isosample 30,30
set title 'bumpy'
set xrange[-4:4]
set yrange[-4:4]
splot sin(x) + sin(y) notitle
  #+end_src
  --8---cut here---end---8---
 
 

 You're very welcome.  I use a number of methods to generate graphs and
 diagrams and gnuplot is definitely one of my favourites.  For the
 adventurous, there's a great blog:

 http://gnuplot-tricks.blogspot.com/

 Put gnuplot together with org-mode and org-babel and it's yet another
 piece in the puzzle that leads to an incredibly powerful desktop
 analysis and publishing system!

 --
 Eric S Fraga
 GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D

 ___
 Emacs-orgmode mailing list
 Please 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
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] [PATCH] Fix typo in date/time prompt documentation

2010-06-12 Thread Puneeth Chaganti
Hi,

A patch to fix an error in documentation of date/time prompt section.

Thanks,
Puneeth

ps: Interestingly, today is June 13th too. :)

diff --git a/doc/org.texi b/doc/org.texi
index eee5c5c..56728b4 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -5137,7 +5137,7 @@ in @b{bold}.
 2/5/3 -- 2003-02-05
 14-- @b{200...@b{06}-14
 12-- @b{200...@b{07}-12
-2/5   -- @b{2003}-02-05
+2/5   -- @b{2007}-02-05
 Fri   -- nearest Friday (defaultdate or later)
 sep 15-- @b{2006}-09-15
 feb 15-- @b{2007}-02-15

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode