Re: [Orgmode] [PATCH] little fixes for attachment git commiting

2010-02-19 Thread Carsten Dominik


On Feb 16, 2010, at 8:04 PM, Łukasz Stelmach wrote:


Hello.

There are two very small commits which iron some wrinkles. Both on
org-attach-git-commit branch of
git://github.com/steelman/steelman-org-mode.git

The first prevents git from running on an empty set of deleted files.


Why is that a problem?  I am hesitating to apply this patch, because
on my Mac OS 10.5, xargs does know the --no-run-if-empty argument.

- Carsten



___
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] Problem with org-agenda-goto and inline tasks

2010-02-19 Thread Carsten Dominik


On Feb 19, 2010, at 4:46 AM, Matt Lundin wrote:


Hi Carsten,

I'd like to report a minor issue with org-agenda-goto and inline  
tasks.

Let's say one has the following file:


Hi Matt,

I do understand the problem, however, don't have a good solution
for it, and I doubt that there is one.

What I do in such situations is `show-all' which in Org-mode can
be reached with: C-u C-u C-u TAB
Another option is to use global cycling - in this case you'd have
to press S-TAB four times - but that may still be faster than going
to the parent.

But in fact, maybe org-reveal should be able to deal with this

If you pull again, there will now be a third possibility, C-u C-u C-c  
C-r
i.e. org-reveal with a double prefix argument.  That will go back to  
the parent and show the subtree.


HTH

- Carsten



--8---cut here---start-8---
* Here is an entry.
Blah blah blah blah.
*** Here is an inline task.
*** END
Blah blah blah blah blah.
*** TODO Here is a second inline task.
*** END
Blah blah blah blah blah.
*** Here is a third inline task
*** END
Blah blah blah blah blah.
--8---cut here---end---8---

Let's say one also has the following settings:

--8---cut here---start-8---
(setq org-show-hierarchy-above t)
(setq org-show-siblings '((default . nil) (isearch . t) (agenda . t)))
(setq org-show-entry-below '((default . nil) (isearch . t) (agenda .  
t)))

--8---cut here---end---8---

If 1) one tries to jump to the TODO from the agenda and 2) the entry  
is

currently folded, org-show-context reveals only the headlines. E.g.,

--8---cut here---start-8---
* Here is an entry.
*** Here is an inline task.
*** END...
*** TODO Here is a second inline task.
*** END...
*** Here is a third inline task
*** END...
--8---cut here---end---8---

Invoking org-cycle on the END headline does nothing, since all  
headlines

deeper than org-inlinetask-min-level are exempted from cycling. As a
result, the only way to reveal the text in the entry is to cycle the
parent twice (first to close, then to reveal).

Thanks,
Matt



___
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


- Carsten





___
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: Shortcut for adding text item?

2010-02-19 Thread Stephan Schmitt
Hi Łukasz,

 Stephan Schmitt drmab...@cs.tu-berlin.de writes:
 
 Also sprach Nathan Neff:
 For example, I have a headline, with the cursor at cursor position:

 * Somecursorthing

 And I want to add a text line under the heading, with proper indentation.

 Currently, I press Ctrl-E, then Return, but I'd like to have a
 shortcut like M-j or something like that.
 put this in your dotemacs file:

 (eval-after-load org
   '(org-defkey org-mode-map (kbd M-j)
 (lambda () (interactive) (end-of-line) (org-return-indent


Also sprach Łukasz Stelmach:
 
 How about unfolding subtree?
 

good point...

(org-defkey org-mode-map (kbd M-j)
'(lambda () (interactive)
   (org-show-subtree) (end-of-line) (org-return-indent)))

Greetings,
Stephan


___
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] schedule repeated reminder on multiple days for multiple weeks

2010-02-19 Thread Richard Riley

What would the best approach be to schedule something like a radio
program which is on monday to friday at a certain time for the next 20
weeks?




___
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: [PATCH] little fixes for attachment git commiting

2010-02-19 Thread Łukasz Stelmach
Carsten Dominik carsten.domi...@gmail.com writes:

 On Feb 16, 2010, at 8:04 PM, Łukasz Stelmach wrote:

 There are two very small commits which iron some wrinkles. Both on
 org-attach-git-commit branch of
 git://github.com/steelman/steelman-org-mode.git

 The first prevents git from running on an empty set of deleted files.

 Why is that a problem?  I am hesitating to apply this patch, because
 on my Mac OS 10.5, xargs does know the --no-run-if-empty argument.
   ^[*]

When xargs launches git rm without file arguments git emmits usage

--8---cut here---start-8---
usage: git rm [options] [--] file...

-n, --dry-run dry run
-q, --quiet   be quiet
--cached  only remove from the index
-f, --force   override the up-to-date check
-rallow recursive removal
--ignore-unmatch  exit with a zero status even if nothing
-matched
--8---cut here---end---8---

message which in this situation is a bit confusing and *suggests*
somehting might have gone wrong. And of course a shell output buffer
pops up.

[*] does || doesn't?

-- 
Miłego dnia,
Łukasz Stelmach



___
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] schedule repeated reminder on multiple days for multiple weeks

2010-02-19 Thread Carsten Dominik

Hi RIchard,

a good start would be the last example in

http://orgmode.org/worg/org-faq.php#diary-sexp-in-org-files

On Feb 19, 2010, at 10:47 AM, Richard Riley wrote:



What would the best approach be to schedule something like a radio
program which is on monday to friday at a certain time for the next 20
weeks?





___
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: [PATCH] little fixes for attachment git commiting

2010-02-19 Thread Carsten Dominik


On Feb 19, 2010, at 11:59 AM, Łukasz Stelmach wrote:


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


On Feb 16, 2010, at 8:04 PM, Łukasz Stelmach wrote:


There are two very small commits which iron some wrinkles. Both on
org-attach-git-commit branch of
git://github.com/steelman/steelman-org-mode.git

The first prevents git from running on an empty set of deleted  
files.


Why is that a problem?  I am hesitating to apply this patch, because
on my Mac OS 10.5, xargs does know the --no-run-if-empty argument.

  ^[*]

When xargs launches git rm without file arguments git emmits usage

--8---cut here---start-8---
usage: git rm [options] [--] file...

   -n, --dry-run dry run
   -q, --quiet   be quiet
   --cached  only remove from the index
   -f, --force   override the up-to-date check
   -rallow recursive removal
   --ignore-unmatch  exit with a zero status even if nothing
   -matched
--8---cut here---end---8---

message which in this situation is a bit confusing and *suggests*
somehting might have gone wrong. And of course a shell output buffer
pops up.

[*] does || doesn't?


Does not.

Do you actually get to see this error message?  Where?

- Carsten




___
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: schedule repeated reminder on multiple days for multiple weeks

2010-02-19 Thread Łukasz Stelmach
Richard Riley rileyrg...@gmail.com writes:

 What would the best approach be to schedule something like a radio
 program which is on monday to friday at a certain time for the next 20
 weeks?

--8---cut here---start-8---
* Incredible Radio Show 20:00-20:55
%%(and 
 (and ( 0 (calendar-day-of-week date))
  ( (calendar-day-of-week date) 6))
  (diary-block 2010 3 1 2010 7 18))
--8---cut here---end---8---

The time is in the heading, you can use am/pm style too.

The %%( introduces diray sexp (an elisp snippet evaluated during the
porcess of building agenda view). This one is true, which makes the
event appear, when all of following conditions ar met:

+ the day of week obtained with calendar day of week is greater than
  0 (0: sunday, 6: saturday), and less than 6.

+ the date is between 2010-03-01 (March 1) and 2010-07-18 (July 18)

Note that:

+ you have to calculate the end date by hand (maybe there is a
  function for this, but the sexp would be longer),

+ the order of numbers in diary block expression depends on the
  value of calendar-date-style variable. This one is iso style.


Refere to:
info:(org)Timestamps
info:(org)Weekly/daily agenda
info:(emacs)Special Diary Entries
info:(org)Time-of-day specifications
info:(emacs)Date Formats

-- 
Miłego dnia,
Łukasz Stelmach



___
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: [PATCH] little fixes for attachment git commiting

2010-02-19 Thread Łukasz Stelmach
Carsten Dominik carsten.domi...@gmail.com writes:

 On Feb 19, 2010, at 11:59 AM, Łukasz Stelmach wrote:

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

 On Feb 16, 2010, at 8:04 PM, Łukasz Stelmach wrote:

 There are two very small commits which iron some wrinkles. Both on
 org-attach-git-commit branch of
 git://github.com/steelman/steelman-org-mode.git

 The first prevents git from running on an empty set of deleted
 files.

 Why is that a problem?  I am hesitating to apply this patch, because
 on my Mac OS 10.5, xargs does know the --no-run-if-empty argument.
   ^[*]

 When xargs launches git rm without file arguments git emmits usage

 --8---cut here---start-8---
 usage: git rm [options] [--] file...
[...]
 --8---cut here---end---8---

 message which in this situation is a bit confusing and *suggests*
 somehting might have gone wrong. And of course a shell output buffer
 pops up.

 [*] does || doesn't?

 Does not.

 Do you actually get to see this error message?  Where?

Everytime I attach a file and there is no deleted files which git
ls-files --deleted would list.  Try running

git ls-files --deleted -z | xargs -0 git rm

when there is no deleted uncommited files in a repository. git's return
code is 123 so Emacs thinks it is an error.


-- 
Miłego dnia,
Łukasz Stelmach



___
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] Problem with org-agenda-goto and inline tasks

2010-02-19 Thread Matthew Lundin
Carsten Dominik carsten.domi...@gmail.com writes:

 On Feb 19, 2010, at 4:46 AM, Matt Lundin wrote:

 I'd like to report a minor issue with org-agenda-goto and inline
 tasks.
 Let's say one has the following file:

 I do understand the problem, however, don't have a good solution
 for it, and I doubt that there is one.

 What I do in such situations is `show-all' which in Org-mode can
 be reached with: C-u C-u C-u TAB
 Another option is to use global cycling - in this case you'd have
 to press S-TAB four times - but that may still be faster than going
 to the parent.

 But in fact, maybe org-reveal should be able to deal with this

 If you pull again, there will now be a third possibility, C-u C-u C-c 
 C-r
 i.e. org-reveal with a double prefix argument.  That will go back to
 the parent and show the subtree.

That works perfectly. As always, many thanks for all the work you put
into org-mode!

Best,
Matt


___
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] listing tasks with no TODO keyword in global TODO list

2010-02-19 Thread Manish
hello!

i've been unable to find the variable that controls whether
items/tasks with no TODO keyword should be treated like the ones with
TODO so they can appear in the global TODO list.  can someone please
point me in the right direction?

thanks
-- 
manish


___
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: schedule repeated reminder on multiple days for multiple weeks

2010-02-19 Thread Richard Riley
Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes:

 Richard Riley rileyrg...@gmail.com writes:
 What would the best approach be to schedule something like a radio
 program which is on monday to friday at a certain time for the next 20
 weeks?



 * Incredible Radio Show 20:00-20:55
 %%(and 
  (and ( 0 (calendar-day-of-week date))
   ( (calendar-day-of-week date) 6))
   (diary-block 2010 3 1 2010 7 18))



 The time is in the heading, you can use am/pm style too.

 The %%( introduces diray sexp (an elisp snippet evaluated during the
 porcess of building agenda view). This one is true, which makes the
 event appear, when all of following conditions ar met:

 + the day of week obtained with calendar day of week is greater than
   0 (0: sunday, 6: saturday), and less than 6.

 + the date is between 2010-03-01 (March 1) and 2010-07-18 (July 18)

 Note that:

 + you have to calculate the end date by hand (maybe there is a
   function for this, but the sexp would be longer),

 + the order of numbers in diary block expression depends on the
   value of calendar-date-style variable. This one is iso style.

 Refere to:
 info:(org)Timestamps
 info:(org)Weekly/daily agenda
 info:(emacs)Special Diary Entries
 info:(org)Time-of-day specifications
 info:(emacs)Date Formats

Eek! ;) Thanks to both you and Carsten.



___
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] Footnotes in headings results in strange entries in the table of contens of the latex - pdf export

2010-02-19 Thread Geralt
Hi,

if I put a footnote in a heading and export to pdf via C-c C-e d the
table of contents entry for that heading is garbled. As an example
consider the following minimal org-file:
* This is a simple heading [fn:1]

* Footnotes

[fn:1] A footnote



And here's what I get in the pdf (copy 'n pasted from evince, so it's
not pretty but still readable):

test
  19 February 2010
Contents
1section.1
 1
1 This is a simple heading
   1
 A footnote



As you can see the entry in the table of contents does not name the
heading but 1section.1. I'm using Emacs 23.1 and the Org-mode
version shipped with it. Is there a way to fix that?




Thanks,
Geralt.


___
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] Tables in ASCII export

2010-02-19 Thread Michael Gauland
carsten.dominik this behavior is now the default, controlled by the new user 
option
carsten.dominik `org-export-ascii-table-widen-columns'.

Thanks. That's a start, but what I really want is to have long cells folded, so
that one table row might become several lines in the ASCII export. For example,
if my table looks like this in org:

| / | 10R | 20 |
|   | 1 | The quick brown fo= |
|   | 2 | Now is the time for  |


I want my ASCII export to look like this:

  1   The quick brown fox
  jumped over the lazy
  dogs.
  2   Now is the time for
  all good me to come
  to the aid of the
  party.

I've started looking at org-table-align to get a feel for how org deals with
tables, but I'm still trying to puzzle out where this folding should be done. 
Any advice on that?

Thanks,
Mike


___
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: Shortcut for adding text item?

2010-02-19 Thread Nathan Neff
2010/2/19 Stephan Schmitt drmab...@cs.tu-berlin.de

 Hi Łukasz,

  Stephan Schmitt drmab...@cs.tu-berlin.de writes:
 
  Also sprach Nathan Neff:
  For example, I have a headline, with the cursor at cursor position:
 
  * Somecursorthing
 
  And I want to add a text line under the heading, with proper
 indentation.
 
  Currently, I press Ctrl-E, then Return, but I'd like to have a
  shortcut like M-j or something like that.
  put this in your dotemacs file:
 
  (eval-after-load org
'(org-defkey org-mode-map (kbd M-j)
  (lambda () (interactive) (end-of-line)
 (org-return-indent
 

 Also sprach Łukasz Stelmach:
 
  How about unfolding subtree?
 

 good point...

 (org-defkey org-mode-map (kbd M-j)
'(lambda () (interactive)
(org-show-subtree) (end-of-line) (org-return-indent)))


Thanks a million.  I'm getting the hang of the macro-style stuff
 (e.g. using (end-of-line) followed by  (org-return-indent))

--Nate


 Greetings,
 Stephan


 ___
 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] Wiki?

2010-02-19 Thread Andrea Crotti

Today I had to modify some wiki pages for a project and I realized how
it sucked..
Stupid editor, annoying markup language, difficult to remember/track
down what you've written and so on.

So wouldn't be great to do something like this

* Wiki stuff
** Page1
   This is a wiki page, automatically created if not existing
   - item
   - item

** Page2
   Another page.

Than with one command like org-export-to-wiki look if the page is
existing, if not create it, convert it to the right format and it's
done!

I think it should involve some rpc php stuff which is not directly
related, and also if the page is modified by someone else is not so
easy (unless we're able to update our org-version).
But to create new pages it would be great (for me at least).
What do you think?

Thanks



___
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] Wiki?

2010-02-19 Thread Ryan Thompson
If you want to edit existing Wiki pages with such a system, this would
require a complete conversion of all Wiki syntax to an Org-mode
equivalent, or else a way to leave unknown wiki syntax alone.
Otherwise you would clobber any formatting that Org-mode doesn't know
about when you edit the page.

On Fri, Feb 19, 2010 at 2:24 PM, Andrea Crotti
andrea.crott...@gmail.com wrote:

 Today I had to modify some wiki pages for a project and I realized how
 it sucked..
 Stupid editor, annoying markup language, difficult to remember/track
 down what you've written and so on.

 So wouldn't be great to do something like this

 * Wiki stuff
 ** Page1
   This is a wiki page, automatically created if not existing
   - item
   - item

 ** Page2
   Another page.

 Than with one command like org-export-to-wiki look if the page is
 existing, if not create it, convert it to the right format and it's
 done!

 I think it should involve some rpc php stuff which is not directly
 related, and also if the page is modified by someone else is not so
 easy (unless we're able to update our org-version).
 But to create new pages it would be great (for me at least).
 What do you think?

 Thanks



 ___
 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] listing tasks with no TODO keyword in global TODO list

2010-02-19 Thread Jan Böcker
On 19.02.2010 16:44, Manish wrote:
 hello!
 
 i've been unable to find the variable that controls whether
 items/tasks with no TODO keyword should be treated like the ones with
 TODO so they can appear in the global TODO list.  can someone please
 point me in the right direction?
 
 thanks

Your question seems a bit confusing to me. Headlines without TODO
keywords are by definition not a todo item, so they should not appear in
the global todo list.

You can schedule them or put a deadline on them, and they will appear in
the agenda view, but not in the todo list (C-c a t).

Please clarify how you distinguish an item/task with no TODO keyword
from an ordinary headline used to structure the outline.

Also, take a look at custom agenda views. You could define an agenda
view that lists the todo list, and additionally includes the results of
a search (e.g. all items with a certain tag) below that.

HTH, Jan


___
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] Deadline-scheduled workflow

2010-02-19 Thread Ryan Thompson
This is cool. I'll test this out. My personal preference would be that
a scheduled date should simply suppress deadline warnings before that
date, and have no effect after it. I'll see if I can implement this as
an option.

-Ryan

On Wed, Feb 17, 2010 at 2:43 PM, Norbert Zeh n...@cs.dal.ca wrote:
 Carsten Dominik [2010.02.17 2328 +0100]:
 Hi Norbert,

 Robert Goldman had the same request - that makes two of you.

 Implemented now, please use the variable

 Thanks a million, Carsten.  I don't know how I would make it through the
 day without org-mode!

 Cheers,
 Norbert


 ___
 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: Wiki?

2010-02-19 Thread Ben Finney
Andrea Crotti andrea.crott...@gmail.com writes:

 Today I had to modify some wiki pages for a project and I realized how
 it sucked.. Stupid editor,
[…]

This much, at least, can be fixed by the “It's All Text” add-on for
Firefox URL:https://addons.mozilla.org/en-US/firefox/addon/4125.

-- 
 \  “I guess we were all guilty, in a way. We all shot him, we all |
  `\   skinned him, and we all got a complimentary bumper sticker that |
_o__) said, ‘I helped skin Bob.’” —Jack Handey |
Ben Finney



___
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] MobileOrg Body Content trucated

2010-02-19 Thread David A. Gershman

For a particular heading, the body of the heading was truncated to only
6 lines.  Any way to set that?

My .org file is:

  * Heading 1
- item 1
- item 2
 ...
- item n

When I view the Agendas.org file generated by org-mobile-push, I get:

***  Heading 1beforecalendar:   21:00-23:00/before
   :PROPERTIES:
   :ID:   a9e7d938ad66cdb074749bf8e4d2c203
   :END:
   2010-02-19 Fri 21:00-23:00 +1d
   - Item 1
   - Item 2
   - Item 3
   - Item 4
   - Item 5
   - Item 6
   :PROPERTIES:
   :ORIGINAL_ID: a9e7d938ad66cdb074749bf8e4d2c203
   :END:


David A. Gershman
gersh...@dagertech.net
http://dagertech.net/gershman/
It's all about the path! --d. gershman


___
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: Wiki?

2010-02-19 Thread Andrea Crotti
Ben Finney ben+em...@benfinney.id.au writes:

 This much, at least, can be fixed by the “It's All Text” add-on for
 Firefox URL:https://addons.mozilla.org/en-US/firefox/addon/4125.

Yes I know and it's really nice but on OSX I never use firefox, I really
prefer Safari to it...



___
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] listing tasks with no TODO keyword in global TODO list

2010-02-19 Thread Manish
On Sat, Feb 20, 2010 at 4:07 AM, Jan Böcker wrote:
 On 19.02.2010 16:44, Manish wrote:
 hello!

 i've been unable to find the variable that controls whether
 items/tasks with no TODO keyword should be treated like the
 ones with TODO so they can appear in the global TODO
 list.  can someone please point me in the right direction?

 thanks

 Your question seems a bit confusing to me. Headlines without
 TODO keywords are by definition not a todo item, so they should
 not appear in the global todo list.

i seem to recall that there was an instance where an item without a TODO
keyword could be treated as if it was an unDONE item but i can't seem to
find it anymore.


 You can schedule them or put a deadline on them, and they will
 appear in the agenda view, but not in the todo list (C-c a t).

 Please clarify how you distinguish an item/task with no TODO
 keyword from an ordinary headline used to structure the
 outline.

i understand what you're saying.  imho, for those who use outlines
solely for the purposes of defining the projects and tasks treating an
item without TODO as if it was an unDONE one if configured with a
variable and at least for the purposes of appearing in a global TODO
list makes sense.


 Also, take a look at custom agenda views. You could define an
 agenda view that lists the todo list, and additionally includes
 the results of a search (e.g. all items with a certain tag)
 below that.

i'll look into how i can pull together such items/tasks with a search
perhaps using FILETAGS.

thanks
-- 
manish


___
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] Wiki?

2010-02-19 Thread Manish
On Sat, Feb 20, 2010 at 3:54 AM, Andrea Crotti wrote:

 Today I had to modify some wiki pages for a project and I
 realized how it sucked..  Stupid editor, annoying markup
 language, difficult to remember/track down what you've written
 and so on.

 So wouldn't be great to do something like this

 * Wiki stuff ** Page1 This is a wiki page, automatically
 created if not existing - item - item

 ** Page2 Another page.

 Than with one command like org-export-to-wiki look if the page
 is existing, if not create it, convert it to the right format
 and it's done!

 I think it should involve some rpc php stuff which is not
 directly related, and also if the page is modified by someone
 else is not so easy (unless we're able to update our
 org-version).
 But to create new pages it would be great (for me at least).

have you tried Wes Hardaker's generic exporter?  C-c C-e g RET.  it
should already be able to do a lot of what you want.

-- 
manish


___
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: listing tasks with no TODO keyword in global TODO list

2010-02-19 Thread Matt Lundin
Manish mailtomanish.sha...@gmail.com writes:

 On Sat, Feb 20, 2010 at 4:07 AM, Jan Böcker wrote:
 On 19.02.2010 16:44, Manish wrote:

 i've been unable to find the variable that controls whether
 items/tasks with no TODO keyword should be treated like the
 ones with TODO so they can appear in the global TODO
 list.  can someone please point me in the right direction?


 Your question seems a bit confusing to me. Headlines without
 TODO keywords are by definition not a todo item, so they should
 not appear in the global todo list.

 i seem to recall that there was an instance where an item without a TODO
 keyword could be treated as if it was an unDONE item but i can't seem to
 find it anymore.

Assuming that you only use DONE as an inactive todo, I believe you can
get all headings *not* marked done with the following search:

C-c a m /-DONE

Are you perhaps thinking of the default setting for stuck projects?

(setq org-stuck-projects 
  '(+LEVEL=2/-DONE (TODO NEXT NEXTACTION) nil ))

This defines projects based on their level (i.e., all level two items
not marked DONE).

Best,
Matt


___
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] MobileOrg Push gives Invalid argument type (on Linux)

2010-02-19 Thread David A. Gershman

I'm confused.  My .emacs file worked fine on a Windows box and I work
very hard to keep it all 'generic' enough to work on Windows or Linux. 
When I issue 'org-mobile-push', I get the following error on my Linux
machine (Windows is fine):
  
  Wrong type argument: stringp, nil

Here is the portion of my .emacs, dealing with MobileOrg:

 '(org-directory ~/)
 '(org-id-method (quote uuidgen))
 '(org-mobile-directory ~/webdav)
 '(org-mobile-files (quote (file1.org file2.org)))
 '(org-mobile-inbox-for-pull pullinbox)

Any ideas?  Thanks.



David A. Gershman
gersh...@dagertech.net
http://dagertech.net/gershman/
It's all about the path! --d. gershman


___
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