Re: [Orgmode] [PATCH] Fix iswitchb completion when virtual buffers are enabled

2009-09-17 Thread Tassilo Horn
Carsten Dominik carsten.domi...@gmail.com writes:

 Applied, thanks.

But at least not committed or pushed.

 On Sep 16, 2009, at 8:04 PM, Tassilo Horn wrote:

 Hi Carsten,

 there's a typo in org.el which prevents deactivation of virtual buffers
 when the iswitchb completion is used in org.  Here's a patch.

 --8---cut here---start-8---
 diff --git a/lisp/org.el b/lisp/org.el
 index 4ef4a09..c364f1d 100644
 --- a/lisp/org.el
 +++ b/lisp/org.el
 @@ -7724,7 +7724,7 @@ Use TAB to complete link prefixes, then RET for
 type-specific completion support
   Use iswitch as a completing-read replacement to choose from choices.
 PROMPT is a string to prompt with.  CHOICES is a list of strings to choose
 from.
 -  (let* ((switchb-use-virtual-buffers nil)
 +  (let* ((iswitchb-use-virtual-buffers nil)
   (iswitchb-make-buflist-hook
(lambda ()
  (setq iswitchb-temp-buflist choices
 --8---cut here---end---8---

 Bye,
 Tassilo



 ___
 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] org-agenda-suffix-format ?

2009-09-17 Thread Manish
On Thu, Sep 17, 2009 at 6:57 AM, Eraldo Helal wrote:
 In one of my agenda views I have org-agenda-prefix-format setup like this:
 (org-agenda-prefix-format  %-8:c )
 The whole thing then looks like that:
 eraldo:  TODO clean garage
 In this example eraldo is the name of the org file  eraldo.org
 I would like to have the same thing just not at the begining of the like...
 like this:
 TODO clean garageeraldo
 Is that possible?

You could use FILETAGs.

-- 
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] Re: Build issue with latest git version - org-crypt.el

2009-09-17 Thread Carsten Dominik

I forgot to push, did it now...

- Carsten

On Sep 17, 2009, at 7:19 AM, Ian Barton wrote:




Mark Elston m_els...@comcast.net writes:

However, for those who won't be using org-crypt as a normal
part of their daily operation it is probably simpler to make
the build/installation of org-crypt optional.  That way the
normal maintenance for those who do simple things stays,
uh, simple.


I also think that org-crypt should be optional, or at least put in  
the
contrib directory.  I didn't realize it was going to cause build  
issues.


That said, here is a patch for the Makefile so I could build the  
latest

org-mode:

diff --git a/Makefile b/Makefile
index f1b541b..085951d 100644
--- a/Makefile
+++ b/Makefile
@@ -30,6 +30,7 @@ infodir = $(prefix)/share/info

BATCH=$(EMACS) -batch -q -no-site-file - 
eval \

 (progn (add-to-list (quote load-path) \$(lispdir)\) \
+  (add-to-list (quote load-path) \$(lispdir)/epg\) \
  (add-to-list (quote load-path) (expand-file-name \./lisp/ 
\)))


# Specify the byte-compiler for compiling org-mode files
epg is not part of older versions of Emacs, look like mark is using  
Emacs 22?
I have changed org-crypt.el so that it will compile without loading  
epg.

So an error will only happen if anyone actually uses it.


I am still getting this problem with the latest git version:

emacs -batch -q -no-site-file -eval (progn (add-to-list (quote load- 
path) \~/.emacs-lisp/org\) (add-to-list (quote load-path) (expand- 
file-name \./lisp/\))) -f batch-byte-compile lisp/org-crypt.el


In toplevel form:
lisp/org-crypt.el:69:1:Error: Cannot open load file: epg
make: *** [lisp/org-crypt.elc] Error 1

I have both emacs 22 and emacs 23 (the Ubuntu packages installed). I  
removed the easypg package for emacs 22 because it conflicts with  
the built in support for gpg in emacs 23.


I assume my problem is caused by having both emacs 22 and 23  
installed.


Ian.


___
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: Build issue with latest git version - org-crypt.el

2009-09-17 Thread Ian Barton

Carsten Dominik wrote:

I forgot to push, did it now...


Thanks. Now compiles without any errors.

Ian.


___
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] Re: Org-mode version 6.30trans (release_6.30d.822.g738ba); Many DONE items missing from agenda view

2009-09-17 Thread Paul Mead
Bernt Hansen be...@norang.ca writes:


  org-agenda-todo-ignore-scheduled t

  org-agenda-todo-ignore-with-date t

  org-agenda-todo-ignore-deadlines t

 Are the missing ones the tasks with SCHEDULED: or DEADLINE: dates?
 If so you can create a custom agenda view that turns off these variables
 so all tasks show up.

 -Bernt

That's great, I've now got the following custom agenda and it works
fine, many thanks!

(setq org-agenda-custom-commands
   '((a Custom block Agenda
  ((agenda )
   (todo STARTED)))
 (d todo DONE
  ((org-agenda-todo-ignore-scheduled nil)
   (org-agenda-todo-ignore-with-date nil)
   (org-agenda-todo-ignore-deadlines nil)))
))

Paul



___
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] column view bug

2009-09-17 Thread Giovanni Ridolfi
--- Mer 16/9/09, Carsten Dominik carsten.domi...@gmail.com ha scritto:
 On Sep 13, 2009, at 7:57 PM, George Pearson wrote:
 
  Running org 6.30e and emacs 22.3.1.  Running
 under fully updated
  Windows XP.

GNU Emacs 23.1.1 (i386-mingw-nt5.1.2600) of 2009-07-30 on SOFT-MJASON
Org-mode version 6.30e
Windows XP SP 2

 I cannot
 reproduce this problem, it works just fine for me.
 
 Could someone else please try as well?  Thanks!

I cannot reproduce it as well; at least with the file below,
I hope the file is correct.

Giovanni


file:--
* [2009-09-17 gio]  test columns
#+STARTUP: odd
#+STARTUP: hidestars
#+STARTUP: logdone
#+SEQ_TODO: TODO NEXT PENDING | DONE(d!) CANCELLED(c@)
#+CATEGORY: Test

(setq org-columns-default-format %CATEGORY %35ITEM %Effort{:} %PRIORITY 
%ALLTAGS)

* C-x C-e on the setq line

* Test
*** TODO task 1
   SCHEDULED: 2009-09-15 Tue
*** TODO task 2
   SCHEDULED: 2009-09-17 Thu

* Agenda view: C-c a  a
This is the agenda weekly view:

Week-agenda (W38):
Monday 14 September 2009 W38
Tuesday15 September 2009
  Test:   Scheduled:  TODO task 1
Wednesday  16 September 2009
Thursday   17 September 2009
  Test:   Sched. 3x:  TODO task 1
  Test:   Scheduled:  TODO task 2
Friday 18 September 2009
Saturday   19 September 2009
Sunday 20 September 2009
* column view: C-c C-x C-c
CATE | ITEM   | E | P | A |
Week-agenda (W38):
Monday 14 September 2009 W38
 | Tuesday15 September 2009   | . |   |   |
 Test| TODO task 1
Wednesday  16 September 2009
 | Thursday   17 September 2009| . |   |   |
 Test| TODO task 1 | . |   |   |
 Test| TODO task 2 | . |   |   |
Friday 18 September 2009
Saturday   19 September 2009
Sunday 20 September 2009
--

 
  Summary:  in column view of a weekly agenda, the
 rows showing the
  days in the week are positioned differently depending
 on whether
  or not there is any item for the day.
 
  For a test file (see below), this is what I see in
 column view
  for the weekly agenda.  (You'll need a
 fixed-width font to view it
  properly).
 
  CATE | ITEM           
                
     | E | P | A |
  Week-agenda (W37-W38):
  Sunday     13 September 2009
  Monday     14 September 2009 W38
     | Tuesday    15 September
 2009        | .
 |   |   |
  Test | TODO task 1         
            
    |   |   |   |
  Wednesday  16 September 2009
     | Thursday   17 September
 2009        | .
 |   |   |
  Test | TODO task 2         
            
    |   |   |   |
  Friday     18 September 2009
  Saturday   19 September 2009
 
  Note the alignment difference between Tuesday and
 Thursday and
  the other dates.
 
  Note also I am including the CATEGORY in the display,
 via:
 
  (org-columns-default-format %CATEGORY %35ITEM
 %Effort{:} %PRIORITY
  %ALLTAGS)
 
  The problem is *NOT* VISIBLE if the %CATEGORY is
 removed, so one
  MUST include it to view the problem.
 
  This is probably not a issue with a normal agenda, in
 which there
  are tasks to do every day.  I actually discovered
 this problem using
  a custom view, intended to show only appointments for
 the week.  But
  the test file shows that the problem can be seen even
 without
  a custom agenda.
 
  By the way, I couldn't show it in this posting, but
 the Tuesday and
  Thursday lines, along with their TODO items, have a
 light grey
  background, whereas everything else has a white
 background.  This
  shading problem is odd in appearance, and it happens
 WHETHER OR NOT
  %CATEGORY is use, and so would be a separate, but
 related, fix.
 
  Here's the test .org file I used:
 
  #+STARTUP: odd
  #+STARTUP: hidestars
  #+STARTUP: logdone
  #+SEQ_TODO: TODO NEXT PENDING | DONE(d!)
 CANCELLED(c@)
 
  #+CATEGORY: Test
  * Test
  *** TODO task 1
   SCHEDULED: 2009-09-15 Tue
  *** TODO task 2
   SCHEDULED: 2009-09-17 Thu
 
  ===
 
  To display the result shown at the top of this
 message, I open
  the test.org file in emacs, then type:
 
  C-a  a
 
  Then in the resulting agenda window, switch to weekly
 if not
  already, and get column mode with
 
  C-c C-x C-c
 

__
Do You Yahoo!?
Poco spazio e tanto spam? Yahoo! Mail ti protegge dallo spam e ti da tanto 
spazio gratuito per i tuoi file e i messaggi 
http://mail.yahoo.it


___
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] Re: Org-mode version 6.30trans (release_6.30d.822.g738ba); Many DONE items missing from agenda view

2009-09-17 Thread Bernt Hansen
Paul Mead paul.d.m...@googlemail.com writes:

 So, how would I go about creating a custom agenda view? No wait, I'm
 going to go off and see if I can figure this out before I ask for more help.

C-c a C

-Bernt


___
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] Re: Org-mode version 6.30trans (release_6.30d.822.g738ba); Many DONE items missing from agenda view

2009-09-17 Thread Paul Mead
Bernt Hansen be...@norang.ca writes:

 Any ideas?

 snip

  org-agenda-todo-ignore-scheduled t

  org-agenda-todo-ignore-with-date t

  org-agenda-todo-ignore-deadlines t

 Are the missing ones the tasks with SCHEDULED: or DEADLINE: dates?
 If so you can create a custom agenda view that turns off these variables
 so all tasks show up.

 -Bernt

Yes, that was the answer, I just removed the scheduled date from one of
the items and it appeared after next refresh. Thanks for spotting that!

So, how would I go about creating a custom agenda view? No wait, I'm
going to go off and see if I can figure this out before I ask for more help.

Thanks
Paul


___
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] lisp/org-agenda.el:33:1:Error: Key sequence C-c C-x m g starts with non-prefix key C-c C-x m

2009-09-17 Thread Jeff Kowalczyk
At 3651c206ee118d67ce1ee4b4dad0278b08356c37, my system sees a compilation error 
in org-agenda.el:

 Compiling source in /var/tmp/portage/app-emacs/org-mode-/work/org-mode 
 ...
make -j2 
emacs -batch -q -no-site-file -eval (progn (add-to-list (quote load-path) 
\/usr/local/share/emacs/site-lisp\) (add-to-list (quote load-path) 
(expand-file-name \./lisp/\))) -f batch-byte-compile lisp/org.el
emacs -batch -q -no-site-file -eval (progn (add-to-list (quote load-path) 
\/usr/local/share/emacs/site-lisp\) (add-to-list (quote load-path) 
(expand-file-name \./lisp/\))) -f batch-byte-compile lisp/org-agenda.el

In toplevel form:
lisp/org-agenda.el:33:1:Error: Key sequence C-c C-x m g starts with non-prefix 
key C-c C-x m
make: *** [lisp/org-agenda.elc] Error 1
make: *** Waiting for unfinished jobs


  



___
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-invoice tutorial

2009-09-17 Thread henry atting
Hi all,

is there anywhere a tutorial about org-invoice? Or at least a more
detailed description?

henry

-- 
http://literaturlatenight.de


___
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] Startup option for Show all, including drawers

2009-09-17 Thread Jeff Kowalczyk
When doing extensive search-replace in org files I find it is easier with 
visibility M-x show-all (C-u C-u C-u TAB). The files often remain in a 
bulk-editing phase for more than one session.

Could we have a startup option for show all, including drawers?

Thanks,
Jeff

P.S. Thanks for org-clock-clocktable-default-properties, it's a real timesaver.



  



___
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] Re: no annual agenda entries for repeater interval year

2009-09-17 Thread Bernt Hansen
I have the same symptoms as Steffen.  All other repeaters seem to work
but not +1y.  Most of my annual repeaters are defined with
diary-anniversary and they work fine.

Org-mode version 6.30trans (release_6.30d.818.g9dcc)
GNU Emacs 22.2.1 (i486-pc-linux-gnu, GTK+ Version 2.12.11) of 2008-11-09
on raven, modified by Debian

,
| ** TODO Test task
|SCHEDULED: 2009-09-17 Thu +1y
`

-Bernt

Carsten Dominik carsten.domi...@gmail.com writes:

 Hi Steffen,

 I cannot reproduce this, all those future dates show up just fine.
 This behavior is regulated by the variable

 org-agenda-repeating-timestamp-show-all

 HTH

 - Carsten

 On Sep 16, 2009, at 6:43 PM, Steffen Prochnow wrote:


 Hi,

 I defined a repeater interval of one year, e.g., 2009-09-16 Wed +1y,
 for an existing headline item. Opening the agenda view this headline
 is
 shown for the 2009-09-16. But, it's missing for any annual repetition,
 i.e., there is no entry on 2010-09-16, 2011-09-16, etc.

 Regards
 Steffen Prochnow


 Emacs  : GNU Emacs 22.3.1 (i486-pc-linux-gnu, X toolkit, Xaw3d
 scrollbars) of 2009-06-26 on rivendell, modified by Debian
 Package: Org-mode version 6.30trans (release_6.30d.822.g738ba)

 current state:
 ==
 (setq
 org-agenda-files '(~/tmp/tmp.org)
 org-after-todo-state-change-hook '(org-clock-out-if-current)
 org-export-preprocess-hook '(org-export-blocks-preprocess)
 org-tab-first-hook '(org-hide-block-toggle-maybe)
 org-src-mode-hook '(org-src-mode-configure-edit-buffer)
 org-confirm-shell-link-function 'yes-or-no-p
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-agenda-start-with-follow-mode t
 org-cycle-hook '(org-cycle-hide-archived-subtrees
 org-cycle-hide-drawers org-cycle-show-empty-lines
org-optimize-window-after-visibility-change)
 org-mode-hook '((lambda nil (org-add-hook (quote
 change-major-mode-hook) (quote org-show-block-all) (quote append)
 (quote local)))
   (lambda nil (make-variable-buffer-local (quote
 yas/trigger-key)) (setq yas/trigger-key [tab])
(define-key yas/keymap [tab] (quote
 yas/next-field-group)) (flyspell-mode 1))
   turn-on-font-lock)
 org-confirm-elisp-link-function 'yes-or-no-p
 org-occur-hook '(org-first-headline-recenter)
 )



 ___
 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


___
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] org-babel: load-path question and indentation of blocks

2009-09-17 Thread Sebastian Rose
Eric Schulte schulte.e...@gmail.com writes:
 Sebastian Rose sebastian_r...@gmx.de writes:

 Hi Dan and Eric,


 I'm an org-babel fan now :)


 Here are two little things I noticed and that I want to discard from my
 todo list.


 * load-path

   Why is load modified only temporarily in org-babel-init.el?

   Wouldn't this here make sense?


 Yes, I originally wasn't sure about load-path etiquette so I was
 hesitant to change the user's load path.  However I suppose it is better
 to change the load path, then to force the user to manually add the
 babel/lisp/langs directory.  Your patch is now applied (org-babel adds
 it's lisp directories to the user's load path).


Hi Eric,


sorry for the bull shit I've sent before (the load-path patch) :-/

I saw you did the right think anyway. Thanks!


Best wishes,

  Sebastian


___
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] column view bug

2009-09-17 Thread George Pearson
On 17 Sep 2009 at 3:08, Giovanni Ridolfi wrote:

 --- Mer 16/9/09, Carsten Dominik carsten.domi...@gmail.com ha scritto:

  I cannot
  reproduce this problem, it works just fine for me.
 
  Could someone else please try as well?  Thanks!

 I cannot reproduce it as well; at least with the file below,
 I hope the file is correct.

But wait - you HAVE reproduced it!  Look at your result below,
and note the vertical bar | in front of the Tuesday and
Thursday date lines.

 * column view: C-c C-x C-c
 CATE | ITEM   | E | P | A |
 Week-agenda (W38):
 Monday 14 September 2009 W38
  | Tuesday15 September 2009   | . |   |   |
  Test| TODO task 1
 Wednesday  16 September 2009
  | Thursday   17 September 2009| . |   |   |
  Test| TODO task 1 | . |   |   |
  Test| TODO task 2 | . |   |   |
 Friday 18 September 2009
 Saturday   19 September 2009
 Sunday 20 September 2009
 --

Incidentally, I have NOT seen the recurrence of Task 1 on
Thursday, as seen in your results.  Possibly the result of
some option setting?




___
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] Re: LaTeX export bugs?

2009-09-17 Thread Sébastien Vauban
Hi Carsten,

Francesco Pizzolante wrote:

 indeed, it looks like I did make a mistake when recently trying to fix
 this.

 I believe I have got it right this time (current git version), please
 verify.

 It works perfectly now.

Not exactly the same problem, but very similar IMHO, there is (now or still?)
a problem of highlighting with `#+BEGIN' meta info not starting in column 0.

Just test with the following:

--8---cut here---start-8---
* 2009-09

#+BEGIN: clocktable :maxlevel 2 :scope file :block yesterday
Clock summary at [2009-09-16 Wed 17:27], for Tuesday, September 15, 2009.

| L | Headline | Time   |  |
|---+--++--|
|   | *Total time* | *7:25* |  |
|---+--++--|
| 1 | 2009-09  | 7:25   |  |
| 2 | Some project || 7:25 |
#+END:
--8---cut here---end---8---

Best regards,
  Seb

-- 
Sébastien Vauban



___
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: ignoring non-existent agenda files

2009-09-17 Thread Daniel Clemente
On Mon, Sep 14, 2009 at 10:44 AM, andrea Crotti
andrea.crott...@gmail.com wrote:
 But why did you get this error?
 Maybe you were setting manually all the agenda files?

  Yes, I set some agenda files by hand because some live in very
different directories. Some are used only eventually and therefore I
don't have them at each computer; my .emacs is however the same.

  I used a code to check all my agenda files lists in order to remove
the files which don't exist in the current computer.


___
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] Possibly a feature request - inline tasks without arrows?

2009-09-17 Thread Paul Mead
I've finally 'got' inline tasks and found that they solve a problem
which I've been putting up with for some time :-)

The only downside is the arrows that are inserted when I export.

I'm using org in this case to contain a running set of meeting minutes
which also feed into my agenda. After each monthly meeting, I export to
text and pdf for publication to the attendees. Inline tasks work so much
better in this context than normal todos, but the arrows are wasteful of
page width in pdf and just silly in ascii
(/rightarrow/rightarrow/rightarrow)

I am manually editing the .txt and .tex files to remove them using query
replace, but would love to be able to set org-inlinetask-export to noarrow
instead.

Is this possible, or is there another way I haven't thought of to make
this easier?

Thanks
Paul



___
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 student hopes to learn more about the Org-Mode Community and free/open source software

2009-09-17 Thread David Bremner
At Thu, 17 Sep 2009 11:46:26 -0400,
Tiebing Shi wrote:
 !--
  /* Font Definitions */
  @font-face
   {font-family:#23435;#20307;;
   panose-1:2 1 6 0 3 1 1 1 1 1;

The first thing you'll find out is that we are a bit fussy about
email. I suggest you switch to an email client that understands how to
send plain text, and send only plain text to mailing lists. As I'm
sure you understand, every community has its own definitions of
professionalism.

Although the community is different, you may find the following page helpful:

  http://people.debian.org/~mjr/surveys.html




___
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] Re: Documentation wishlist items

2009-09-17 Thread Ethan
On Wed, Sep 16, 2009 at 11:46 PM, Matt Lundin m...@imapmail.org wrote:

 O.K. So I went a little crazy and added a bunch of definitions to the
 glossary.

  - http://orgmode.org/worg/org-glossary.php

 Perhaps it's not so much a glossary any more as an shorter introduction
 to the basic concepts of org-mode.


I just wanted to say thank you! This was amazingly, amazingly helpful.

Just one thought: The section on Archiving says that C-u C-c C-x C-s is an
alternate version of the C-c C-x C-s command, but C-u C-c C-x C-s doesn't
archive the current headline but its subtrees.

Thanks again!

Ethan
___
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] Interesting (?) tidbit...

2009-09-17 Thread Nick Dokos
LWN reports[1] on the availability of Mark Pilgrim's Dive into Python
3, which in itself would be interesting to Pythonistas here (I think
the earlier edition was a very good exposition of Python, so I have high
hopes for this one). The book is available on dead trees, on the web and
as a Mercurial repository (follow links from the LWN article if
interested), so I cloned it and found the following:

...
diveintopython3.org
...

It doesn't look as if he did much with Org-mode, but it was interesting
to find that nevertheless.

Nick


[1] http://lwn.net/Articles/353199/


___
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] checkbox aggregation issues

2009-09-17 Thread Michael Brand

I drilled down some issues of org-version 6.30e to

1) with this file content

-*- mode: org -*-
#+STARTUP: overview
* a [100%]
 - [X] b
* x [100%]
 - [X] y

and `C-u C-c #' the checkbox aggregation of the first heading gets hidden but I 
expect it to stay visible. Both values stay at 100% like expected. No new 
message in the Messages buffer.

2) with this file content

-*- mode: org -*-
#+STARTUP: overview
* a [100%]
** DONE b
* x [100%]
** DONE y

and `C-u C-c #' the checkbox aggregation of the first heading gets hidden but I expect it 
to stay visible. Both values change to 0% unlike expected. The Messages buffer shows 
byte-code: This should not happen.

- Michael


___
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] Re: Documentation wishlist items

2009-09-17 Thread Matthew Lundin
Ethan ethan.glasser.c...@gmail.com writes:

 On Wed, Sep 16, 2009 at 11:46 PM, Matt Lundin m...@imapmail.org wrote:

 O.K. So I went a little crazy and added a bunch of definitions to
 the
 glossary.

  - http://orgmode.org/worg/org-glossary.php

 Perhaps it's not so much a glossary any more as an shorter
 introduction
 to the basic concepts of org-mode.

 I just wanted to say thank you! This was amazingly, amazingly helpful.

I'm glad it helped! I think I might add some further reading links to
some of the more important items. For instance, it might be helpful to
Bernt's use of categories to that of Charles Cave, etc.

 Just one thought: The section on Archiving says that C-u C-c C-x C-s is
 an alternate version of the C-c C-x C-s command, but C-u C-c C-x C-s
 doesn't archive the current headline but its subtrees.

Fixed it.

Thanks,
Matt


___
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] no annual agenda entries for repeater interval year

2009-09-17 Thread Steffen Prochnow

 ...because you'll need to schedule the entry?
 The entry has to be a TODO, and scheduled or a deadline. After you
 switched it to DONE ('S-RIGHT'), the entry shows up as done this year,
 and as TODO next year.
 Note, that `S-RIGHT' will switch the state from TODO to STARTED to TODO again
 
 * TODO some headline
   SCHEDULED: 2009-09-16 Wed +1y
 
 C-RIGHT C-RIGHT
 
 * TODO Headline
   SCHEDULED: 2010-09-16 Do +1y 
   - State DONE   from STARTED[2009-09-17 Do 00:38]
   :LOGBOOK:
   :END:
   :PROPERTIES:
   :LAST_REPEAT: [2009-09-17 Do 00:38]
   :END:

Shifting the date by the specified time interval
(marking DONE) works for me!

I'm missing the repeated year entry in the agenda. E.g.,

* headline
SCHEDULED: 2009-09-17 Thu +12m

produces repeated agenda entries for 2010-09-17, etc. But,

* headline
SCHEDULED: 2009-09-17 Thu +1y

does not.

-- Steffen


___
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] no annual agenda entries for repeater interval year

2009-09-17 Thread Steffen Prochnow
Darlan Cavalcante Moreira wrote:
 I'm using org-mode for only a month, but I also had this problem (version
 6.28e). I created some headlines for birthdays and other special dates with
 active timestamps (not in the headline) that had a repeater of ++1y, but it 
 only
 appeared on the current year. After changing to ++12m everything worked
 fine. However, seeing your E-Mail I decided to change it back to ++1y and it
 worked.

I also changed the repeater interval from +1y to +12m and reverse. But,
unfortunately without any effect on the agenda for expressions like +1y.

(Following the org-mode manual specifications like ++1y are different
from +1y. I do indeed want to express +1y.)

-- Steffen


___
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] no annual agenda entries for repeater interval year

2009-09-17 Thread Steffen Prochnow
Carsten Dominik wrote:
 
 I cannot reproduce this, all those future dates show up just fine.
 This behavior is regulated by the variable
 
 org-agenda-repeating-timestamp-show-all

I set the variable to t. But, the behavior didn't change and the
expected agenda repetitions are not shown for +1y. (All works fine for
+12m and for diary-anniversary entries).

Bernt obeserved the same point (he also uses Debian emacs).

-- Steffen



___
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] Re: Hoisting (so to speak)

2009-09-17 Thread Matt Lundin
timetrap timet...@gmail.com writes:

 One of my favorite features in the vim out liner was the ability to
 hoist a sparse tree into a new temporary buffer.

 Is there a way to do this in org-mode?

Of course there is. This is emacs. ;) 

Use C-x n s to narrow to the current subtree.

Use C-x n w to go back to the whole buffer (widen).

Use C-c x b to create a new buffer containing only the current subtree.

See http://orgmode.org/worg/org-faq.php#indirect-buffers

Note: I can't recall if the vim outliner's hoisting includes
temporarily/artificially raising the headline level/indentation of the
narrowed subtree. Org-mode does not do this (and intentionally so).

Best,
Matt


___
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] Hoisting (so to speak)

2009-09-17 Thread Russell Adams
C-c C-x b puts the current headline and descendants into a new
buffer. Editing can continue there, but it is just a view into the
total file.

On Thu, Sep 17, 2009 at 04:04:20PM -0400, timetrap wrote:
 One of my favorite features in the vim out liner was the ability to
 hoist a sparse tree into a new temporary buffer.
 
 Is there a way to do this in org-mode?
 
 
 ___
 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
 


--
Russell Adamsrlad...@adamsinfoserv.com

PGP Key ID: 0x1160DCB3   http://www.adamsinfoserv.com/

Fingerprint:1723 D8CA 4280 1EC9 557F  66E8 1154 E018 1160 DCB3


___
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] Re: Hoisting (so to speak)

2009-09-17 Thread Matthew Lundin
Matt Lundin m...@imapmail.org writes:

 timetrap timet...@gmail.com writes:

 One of my favorite features in the vim out liner was the ability to
 hoist a sparse tree into a new temporary buffer.

 Is there a way to do this in org-mode?

 Of course there is. This is emacs. ;) 

O.K. I just realized I missed the sparse tree in your question. I
assume you mean by this org-mode definition of sparse trees (i.e.,
trees with visibility limited to certain TODO, tags, or regexp matches)?
I don't recall anything like org-mode sparse trees in the vim outliner,
but it may have changed since I last used it.

You can export only the visible portions of an org-mode outline by
typing C-c C-e v [SPACE], but this will create a new, independent
org-mode buffer. Any changes you make in this buffer will not affect the
original file.

- Matt


___
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] Re: no annual agenda entries for repeater interval year

2009-09-17 Thread Carsten Dominik


On Sep 17, 2009, at 2:09 PM, Bernt Hansen wrote:


I have the same symptoms as Steffen.  All other repeaters seem to work
but not +1y.


Indeed, I believe now there was a bug, which is fixed now.  Please  
verify,

and also keep your eyes open if this change does break anything.

You too, Steffen, please!

- Carsten



Most of my annual repeaters are defined with
diary-anniversary and they work fine.




Org-mode version 6.30trans (release_6.30d.818.g9dcc)
GNU Emacs 22.2.1 (i486-pc-linux-gnu, GTK+ Version 2.12.11) of  
2008-11-09

on raven, modified by Debian

,
| ** TODO Test task
|SCHEDULED: 2009-09-17 Thu +1y
`

-Bernt

Carsten Dominik carsten.domi...@gmail.com writes:


Hi Steffen,

I cannot reproduce this, all those future dates show up just fine.
This behavior is regulated by the variable

org-agenda-repeating-timestamp-show-all

HTH

- Carsten

On Sep 16, 2009, at 6:43 PM, Steffen Prochnow wrote:



Hi,

I defined a repeater interval of one year, e.g., 2009-09-16 Wed  
+1y,

for an existing headline item. Opening the agenda view this headline
is
shown for the 2009-09-16. But, it's missing for any annual  
repetition,

i.e., there is no entry on 2010-09-16, 2011-09-16, etc.

Regards
Steffen Prochnow


Emacs  : GNU Emacs 22.3.1 (i486-pc-linux-gnu, X toolkit, Xaw3d
scrollbars) of 2009-06-26 on rivendell, modified by Debian
Package: Org-mode version 6.30trans (release_6.30d.822.g738ba)

current state:
==
(setq
org-agenda-files '(~/tmp/tmp.org)
org-after-todo-state-change-hook '(org-clock-out-if-current)
org-export-preprocess-hook '(org-export-blocks-preprocess)
org-tab-first-hook '(org-hide-block-toggle-maybe)
org-src-mode-hook '(org-src-mode-configure-edit-buffer)
org-confirm-shell-link-function 'yes-or-no-p
org-agenda-before-write-hook '(org-agenda-add-entry-text)
org-agenda-start-with-follow-mode t
org-cycle-hook '(org-cycle-hide-archived-subtrees
org-cycle-hide-drawers org-cycle-show-empty-lines
  org-optimize-window-after-visibility-change)
org-mode-hook '((lambda nil (org-add-hook (quote
change-major-mode-hook) (quote org-show-block-all) (quote append)
(quote local)))
 (lambda nil (make-variable-buffer-local (quote
yas/trigger-key)) (setq yas/trigger-key [tab])
  (define-key yas/keymap [tab] (quote
yas/next-field-group)) (flyspell-mode 1))
 turn-on-font-lock)
org-confirm-elisp-link-function 'yes-or-no-p
org-occur-hook '(org-first-headline-recenter)
)



___
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




___
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] Possibly a feature request - inline tasks without arrows?

2009-09-17 Thread Carsten Dominik

Hi Paul,

how about an example and a proposed output?

- Carsten

On Sep 17, 2009, at 5:35 PM, Paul Mead wrote:


I've finally 'got' inline tasks and found that they solve a problem
which I've been putting up with for some time :-)

The only downside is the arrows that are inserted when I export.

I'm using org in this case to contain a running set of meeting minutes
which also feed into my agenda. After each monthly meeting, I export  
to
text and pdf for publication to the attendees. Inline tasks work so  
much
better in this context than normal todos, but the arrows are  
wasteful of

page width in pdf and just silly in ascii
(/rightarrow/rightarrow/rightarrow)

I am manually editing the .txt and .tex files to remove them using  
query
replace, but would love to be able to set org-inlinetask-export to  
noarrow

instead.

Is this possible, or is there another way I haven't thought of to make
this easier?

Thanks
Paul



___
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] checkbox aggregation issues

2009-09-17 Thread Carsten Dominik

Hi,

I am not able to reproduce this!

- Carsten

On Sep 17, 2009, at 7:47 PM, Michael Brand wrote:


I drilled down some issues of org-version 6.30e to

1) with this file content

-*- mode: org -*-
#+STARTUP: overview
* a [100%]
- [X] b
* x [100%]
- [X] y

and `C-u C-c #' the checkbox aggregation of the first heading gets  
hidden but I expect it to stay visible. Both values stay at 100%  
like expected. No new message in the Messages buffer.


2) with this file content

-*- mode: org -*-
#+STARTUP: overview
* a [100%]
** DONE b
* x [100%]
** DONE y

and `C-u C-c #' the checkbox aggregation of the first heading gets  
hidden but I expect it to stay visible. Both values change to 0%  
unlike expected. The Messages buffer shows byte-code: This should  
not happen.


- Michael


___
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


[Orgmode] Bug in subtree narrowing

2009-09-17 Thread Samuel Wales
Hi Carsten,

org-tree-to-indirect-buffer does not include the final
newline.  This causes sorting to run two lines together.
For example, a headline can get joined to an :END: line.
This can cause a task to not be recognized.

Sorting makes a lot of changes, so some users will not
notice the bug until much later.

org-narrow-to-subtree appears similar.

A lot of user code might assume, as perhaps org-sort does,
that the final line has a newline.

The choice of solution I will leave to you :).

My preference is for the final newline to exist.  This is
because it feels normal to me as a user.  If I go to the end
of the buffer, then up, I usually expect to be on the last
line.  If I manually kill a subtree (or a paragraph) I kill
to the beginning of the next line.  m-x mark-paragraph
appears to do this.  So does m-x kill-paragraph.

However, I will not file a bug on outline.
outline-mark-subtree (which org users use also) does not include the
final newline.
outline-end-of-subtree does (forward-char -1), which means
that it is deliberate.  There are likely to be factors that
I have not considered.

Org-mode version 6.30trans (release_6.30d.814.gdacd) .

Thanks.


Samuel


-- 
Myalgic encephalomyelitis causes death (Jason et al. 2006)
and severe suffering.  Conflicts of interest are destroying
research.  What people know is wrong.  Silence = death.
http://www.meactionuk.org.uk/What_Is_ME_What_Is_CFS.htm


___
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] Re: Hoisting (so to speak)

2009-09-17 Thread timetrap
I seemed to have mixed my metaphors AND my text editors in my original
statement.

C-x n s
C-x n w
C-x n b

All work perfectly! And combined with the export command:

C-c C-e v

I can now print only the portions I want.

Thanks everyone!



On Thu, Sep 17, 2009 at 4:49 PM, Matthew Lundin m...@imapmail.org wrote:
 Matt Lundin m...@imapmail.org writes:

 timetrap timet...@gmail.com writes:

 One of my favorite features in the vim out liner was the ability to
 hoist a sparse tree into a new temporary buffer.

 Is there a way to do this in org-mode?

 Of course there is. This is emacs. ;)

 O.K. I just realized I missed the sparse tree in your question. I
 assume you mean by this org-mode definition of sparse trees (i.e.,
 trees with visibility limited to certain TODO, tags, or regexp matches)?
 I don't recall anything like org-mode sparse trees in the vim outliner,
 but it may have changed since I last used it.

 You can export only the visible portions of an org-mode outline by
 typing C-c C-e v [SPACE], but this will create a new, independent
 org-mode buffer. Any changes you make in this buffer will not affect the
 original file.

 - Matt



___
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] Re: no annual agenda entries for repeater interval year

2009-09-17 Thread Bernt Hansen
Carsten Dominik carsten.domi...@gmail.com writes:

 On Sep 17, 2009, at 2:09 PM, Bernt Hansen wrote:

 I have the same symptoms as Steffen.  All other repeaters seem to work
 but not +1y.

 Indeed, I believe now there was a bug, which is fixed now.  Please
 verify,
 and also keep your eyes open if this change does break anything.

 You too, Steffen, please!

This works for me.  Thanks!

-Bernt


___
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] indirect buffer idea and proto-bug

2009-09-17 Thread Samuel Wales
I would find it useful if org-cycle-agenda-files included
indirect buffers that pointed to agenda buffers.

By the way, with (org) indirect buffers, emacs leaves lock
files around even when all buffers are saved.  I do not know
what circumstances cause it.  It does not happen all the
time.  Maybe somebody can edit in an org indirect buffer to
confirm.  Carbon Emacs 22.

Thanks.

-- 
Myalgic encephalomyelitis causes death (Jason et al. 2006)
and severe suffering.  Conflicts of interest are destroying
research.  What people know is wrong.  Silence = death.
http://www.meactionuk.org.uk/What_Is_ME_What_Is_CFS.htm


___
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