Re: [Orgmode] Spreedsheet and row formulas

2007-05-08 Thread Carsten Dominik

This is a useful idea, but has not (yet?) been implemented.

One reason why row formulas have not been implemented is that
it is not straight forward to exclude columns from applying the
row formula.

For column formulas, it is natural to exclude the table header.

For now, just insert the formula into every field where you want to 
apply it, like this:


In the first field where you want it, type

  :=vsum(@[EMAIL PROTECTED])

or whatever your formula is.  Then select this text and
copy it with M-w.  Then apply and insert it many times with

TAB C-y TAB C-y . C-c C-c

- Carsten

On Apr 26, 2007, at 18:34, Daniel Dehennin wrote:


Hello,

This is a feature request as it doesn't seems to exists.

I would like to have row formulas, like colum formulas.

It's always possible to invert a table to make the formulas on colums
instead of row, but it changes the meaning of the table.

Thanks.
--
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x6A2540D1


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] syntax highlighting of tag string `info'

2007-05-08 Thread Carsten Dominik

Fixed, thanks.

- Carsten

On May 7, 2007, at 5:03, Patrick Drechsler wrote:


Hi,

just a small bug in syntax highlighting the string `info' in tags.

It gives incorrect syntax highlighting in lines 2 and 4 in this
minimal example:

--8<---cut here---start->8---
* bar   :foo:bar:info:
* bar   :foo:info:bar:
* bar   :info:
* bar   :info:foo:
--8<---cut here---end--->8---

Cheers,

Patrick
--
Linus: I'll throw the ball, see?
   Then you go bounding after it and bring it back!
Snoopy: Maybe we should think about this a little more.




___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Installation for novice

2007-05-08 Thread Carsten Dominik

Is there really no-one besides me who can answer this question?

- Carsten

On Apr 28, 2007, at 12:02, Jon Craft wrote:


Hi,

I'm attempting to install, following the instructions.
I have Xemacs and am on a Windows XP computer.

I am not sure what directories to put in the makefile,
since I don't know which ones refer to the location of
the org files an which refer to the location of the
Xemacs files.

Second, I have no idea what to do with the instructions
to 'make' a file.  I know I can't do this at a dos
prompt. So, how do I install on Windows with Xemacs?

Thanks for the help.

Jon



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Timestamp increment inside tables

2007-05-08 Thread Carsten Dominik

Hi Niels,

nice idea, I am taking the patch.  There *could* be a problem if you 
start this command in a table that is not correctly aligned, but I 
don't think it is worth catering for this special case.


Thanks.

- Carsten

On May 3, 2007, at 19:33, Niels Giesen wrote:


Hi Carsten,

Please consider this patch to `org-table-copy-down', serving to 
increment timestamps in

an org-table while copying down, similar to integer icrements:

--- org.el  2007-04-25 08:26:21.0 -0100
+++ org2.el 2007-05-03 19:24:00.776923788 -0100
@@ -6495,7 +6495,11 @@
 column to be filled row-by-row.
 If the variable `org-table-copy-increment' is non-nil and the field 
is an

-integer, it will be incremented while copying."
+integer or a timestamp, it will be incremented while copying.  In the 
case of
+a timestamp, if the cursor is on the year, change the year.  If it is 
on the
+month or the day, change that.  Point will stay on the current date 
field

+in order to easily repeat the interval."
   (interactive "p")
   (let* ((colpos (org-table-current-column))
+(column (- (point) (point-at-bol)))
 (field (org-table-get-field))
 (non-empty (string-match "[^ \t]" field))
@@ -6526,5 +6530,8 @@
  (insert txt)
  (org-table-maybe-recalculate-line)
- (org-table-align))
+ (org-table-align)
+ (when (and org-table-copy-increment (org-at-timestamp-p t))
+   (goto-char (+ (point-at-bol) column))
+   (org-timestamp-up 1)))
   (error "No non-empty field found"

Table alignment does not seem to pose any problems, but this is one 
thing that might

require some critical looking into.

Regards,

Niels Giesen

PS: its use? Making expenses claims for train tickets without having 
to fire up OOo.

--
It's always darkest just before the lights go out.
-- Alex Clark


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [PATCH] Doc fix: use among for > 2 entities

2007-05-08 Thread Carsten Dominik

Thanks!

(I learned something today)

- Carsten

On May 3, 2007, at 18:04, Bake Timmons wrote:


diff -ru man/org.texi /tmp/new-man/org.texi
--- man/org.texi2007-04-19 12:42:53.0 -0400
+++ /tmp/new-man/org.texi   2007-05-03 11:55:48.0 -0400
@@ -615,7 +615,7 @@
 @table @kbd
 @kindex @key{TAB}
 @item @key{TAB}
[EMAIL PROTECTED] cycling}: Rotate current subtree between the states
[EMAIL PROTECTED] cycling}: Rotate current subtree among the states

 @example
 ,-> FOLDED -> CHILDREN -> SUBTREE --.
@@ -637,7 +637,7 @@
 @kindex [EMAIL PROTECTED]
 @item [EMAIL PROTECTED]
 @itemx C-u @key{TAB}
[EMAIL PROTECTED] cycling}: Rotate the entire buffer between the states
[EMAIL PROTECTED] cycling}: Rotate the entire buffer among the states

 @example
 ,-> OVERVIEW -> CONTENTS -> SHOW ALL --.
@@ -2488,7 +2488,7 @@
 @kindex C-c C-t
 @cindex cycling, of TODO states
 @item C-c C-t
-Rotate the TODO state of the current item between
+Rotate the TODO state of the current item among

 @example
 ,-> (unmarked) -> TODO -> DONE --.

Bake


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: A few problems

2007-05-08 Thread Carsten Dominik

Hi Leo,

I believe I have fixed this now - please double-check after the release.

- Carsten

On May 6, 2007, at 19:44, Leo wrote:


,
| * A
| * B
`

and with setting:

,
| (setq org-remember-templates
|   '((?a "* %?\n  %i\n  %a" nil "A")
| (?b "* %?\n  %i\n  %a" nil "B")))
| (setq org-default-notes-file "~/sample.org")
`




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Problem exporting visible with ARCHIVE tag

2007-05-08 Thread Carsten Dominik

Fixed, thanks for the clear description and example of this bug.

- Carsten

On May 3, 2007, at 16:49, Bernt Hansen wrote:


Hi Carsten,

I just today started using the export to HTML feature of org mode
(nice!).

I think I found a bug with the export code when exporting folded  
visible

regions that includes an ARCHIVE tag.

Export to ASCII and export to HTML shows the same behaviour.

I have some archived tasks which cause the task immediately following
the archived task to get attached to the same line as the archived  
task.


Here's my test file to reproduce the problem.

 test.org 
* First Heading
** DONE Project 1B  :ARCHIVE:
   CLOSED: [2007-04-23 Mon 20:29]
* Second Heading
* Third Heading
 end of test.org 

I fold the tasks so they look like this: (hiding the CLOSED: tag on the
archived task)

 folded view of test.org 
* First Heading
** DONE Project 1B  :ARCHIVE:
* Second Heading
* Third Heading
 folded view of test.org 

Then export only the visible region with C-x C-e v a gives:

 export ---
Table of Contents
=
1 First Heading
1.1 Project 1B  :ARCHIVE:* Second  
Heading

2 Third Heading


1 First Heading
~~~

1.1 DONE Project 1B  :ARCHIVE:* Second  
Heading
=== 
===


2 Third Heading
~~~
 end of export ---

The '* Second Heading' task is on the same line as the ARCHIVE tag.

I'm using version 4.73.

Thanks for a great tool!

Bernt



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-mode html export bug with H:4 toc:2

2007-05-08 Thread Carsten Dominik

Fixed, thanks.

- Carsten

On May 2, 2007, at 13:21, Kevin Brubeck Unhammer wrote:


Hi,
I use org-mode (v 4.73) for taking notes, and am loving it so far, but 
I noticed that when I set H:4 and toc:2 in #+OPTIONS, the links from 
the table of contents are all wrong; thought you might want to know 
about this little bug (I didn't see it mentioned anywhere on the web 
site).


By "all wrong", I mean, the fifth toc-link will be to the fifth header 
section, which might be an H4 - I guess with toc:2, H3's and H4's 
should not increase the number of the #sec-anchor. Either that, or 
perhaps the anchor names could be the actual section-numbers?


--
Kevin Brubeck Unhammer

Using Opera's revolutionary e-mail client: http://www.opera.com/mail/




--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Installation for novice

2007-05-08 Thread Leo
- Carsten Dominik (2007-05-08) wrote:-

> Is there really no-one besides me who can answer this question?
>
> - Carsten

Maybe because none of the users use XP.

>
> On Apr 28, 2007, at 12:02, Jon Craft wrote:
>
>> Hi,
>>
>> I'm attempting to install, following the instructions.
>> I have Xemacs and am on a Windows XP computer.
>>
>> I am not sure what directories to put in the makefile,
>> since I don't know which ones refer to the location of
>> the org files an which refer to the location of the
>> Xemacs files.
>>
>> Second, I have no idea what to do with the instructions
>> to 'make' a file.  I know I can't do this at a dos
>> prompt. So, how do I install on Windows with Xemacs?
>>
>> Thanks for the help.
>>
>> Jon

1. unzip your org-4.73.zip
2. Put the following line in your .emacs:

(add-to-list 'load-path "/pathto/org-4.73")

3. Start emacs to use it.

-- 
Leo  (GPG Key: 9283AA3F)



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Installation for novice

2007-05-08 Thread Leo
- Jon Craft (2007-04-28) wrote:-

> Second, I have no idea what to do with the instructions to 'make' a
> file.  I know I can't do this at a dos prompt. So, how do I install on
> Windows with Xemacs?

It requires GNU 'make'¹. However you can still compile .el by using `M-x
byte-compile-file' in Emacs.

Footnotes: 
¹  http://www.gnu.org/software/make/
-- 
Leo  (GPG Key: 9283AA3F)



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Spreedsheet and row formulas

2007-05-08 Thread Daniel Dehennin
Le 4997 Septembre 1993, Carsten Dominik a tapoté:
> One reason why row formulas have not been implemented is that
> it is not straight forward to exclude columns from applying the
> row formula.
>
> For column formulas, it is natural to exclude the table header.

Maybe defining a format for the table, telling that column 1 and row
1 are header ?

Regards.
-- 
Daniel Dehennin
Récupérer ma clef GPG:
gpg --keyserver pgp.mit.edu --recv-keys 0x6A2540D1


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] org-mode as software for Team/Project Management: severalissues

2007-05-08 Thread Ruslan Kosolapov

 >> I need to plan my team work.  I have tried a lot of software, and
 >> the best way I found is wiki using.
 >> org-mode is pretty good for me, but there are several issues which
 >> blocks my attemts to migrate to org-mode.
 EC> Your list of requirements is quite impressive. I don't know how
 EC> easy it is to adapt org-mode to fulfill all your needs.

  Third problem (ability to use formulas in deadline) is a main
  problem.  Other issues are not critical.

 EC> You might want to look at taskjuggler (www.taskjuggler.org).  It
 EC> doesn't have the wiki feel to it but it features text based
 EC> entry, all the project planing tools you could possibly need,
 EC> export to html and ical, handles resources and tasks, etc. It
 EC> also seems to come with a special emacs mode.

  Taskjuggler was a first variant which I choose to migrate on :)
  I dont like it.

  Thnx for response anyway :)

-- 
Ruslan Kosolapov


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] S-up not raising priority

2007-05-08 Thread Scott Jaderholm

I think this is a bug.

S-up in M-x org-todo-list selects a region for me instead of raising
priority.
S-down does decrease priority however.

Thanks,
Scott
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] S-up not raising priority

2007-05-08 Thread Carsten Dominik

Sounds like a problem with CUA-mode.  Are you using that?

- Carsten

On May 8, 2007, at 18:59, Scott Jaderholm wrote:


I think this is a bug.

S-up in M-x org-todo-list selects a region for me instead of raising 
priority.

S-down does decrease priority however.

Thanks,
Scott
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode



--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] shift + tab in a terminal

2007-05-08 Thread Leo
Dear Carsten,

I wonder would it make sense to add the following key binding to org.el:

   (define-key org-mode-map (kbd "") 'org-shifttab)

It enables user to use "shift+tab" in terminals such as rxvt or xterm.

-- 
Leo  (GPG Key: 9283AA3F)



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] S-up not raising priority

2007-05-08 Thread Eddward DeVilla

On a related note, should C-a, C-e M-left move the cursor around in
agenda buffers?

Edd

On 5/8/07, Carsten Dominik <[EMAIL PROTECTED]> wrote:

Sounds like a problem with CUA-mode.  Are you using that?

- Carsten

On May 8, 2007, at 18:59, Scott Jaderholm wrote:

> I think this is a bug.
>
> S-up in M-x org-todo-list selects a region for me instead of raising
> priority.
> S-down does decrease priority however.
>
> Thanks,
> Scott
> ___
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477



___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] S-up not raising priority

2007-05-08 Thread Scott Jaderholm

Thanks Carsten,

I had pc-selection-mode enabled.

I disabled it and S-up still doesn't raise priority. From looking at the
code it looks like S-right is set to do that.

(org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-priority-up)

Perhaps that's a typo or the manual is outdated.

Thanks,
Scott

On 5/8/07, Carsten Dominik <[EMAIL PROTECTED]> wrote:


Sounds like a problem with CUA-mode.  Are you using that?

- Carsten

On May 8, 2007, at 18:59, Scott Jaderholm wrote:

> I think this is a bug.
>
> S-up in M-x org-todo-list selects a region for me instead of raising
> priority.
> S-down does decrease priority however.
>
> Thanks,
> Scott
> ___
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477


___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode