[Orgmode] Re: Release 6.30

2009-09-06 Thread Carsten Dominik

Hi Rainer,

On Sep 5, 2009, at 4:08 PM, Rainer Stengele wrote:


Hi Carsten,

excellent, thanks a lot!

I now have have started with this regexp:

...
'(org-agenda-entry-text-exclude-regexps (quote (^.*- State \DONE 
\.*\n ^.*erzeugt:.*\n)))

...


which works except in cases like these:

...
- State DONE   [2008-02-24 So 20:52]
- State DONE   [2008-02-24 So 20:52]
erzeugt: [2008-01-12 Sa 21:40]
...

or

...
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:50]
- State DONE   [2008-02-24 So 20:50]
erzeugt: [2008-01-12 Sa 21:40]
...


The agenda weeds out alle lines except the last line erzeugt 


The reason for this was that the last line did not have a newline  
after it,

because that is being removed before the regular expressions are
applied.  I have changed this now, so that the \n is still present.
Another fix would have been to make the final newline optional by
adding ? to the regexp.

- Carsten





Rainer


Carsten Dominik schrieb:

Hi Rainer,
On Sep 4, 2009, at 12:03 PM, Rainer Stengele wrote:

Hi Carsten,

Thanks for releasing all the new features!
It is amazing to see new features - which mostly make a lot of  
sense for me - coming up all the time.



Carsten Dominik schrieb:

Hi,
I am releasing Org-mode version 6.30.
Enjoy!
- Carsten
   Changes in Version 6.30
   ===

...

New mode to show some entry body text in the agenda

There is now a new agenda sub-mode called
`org-agenda-entry-text-mode'.  It is toggled with the `E' key.
When active, all entries in the agenda will be accompanied by a
few lines from the outline entry.  The amount of text can be
customized with the variable `org-agenda-entry-text-maxlines'.



this already avoids displaying drawer lines.
I also see lines like:

   - State DONE   from WARTEN [2009-08-04 Di 16:19]
   - State DONE   from WARTEN [2009-07-02 Do 09:43]
...

and in my remeber templates I always create lines like:

created: [2009-08-03 Mo 11:46]

with the creation date of the entry.
Would it be possible and make sense to set up a variable for a  
regexp to exclude lines like the ones above from showing?

Yes, I agree this would make sense.
There is now a variable and a hook for this purpose:
org-agenda-entry-text-exclude-regexps
org-agenda-entry-text-cleanup-hook
HTH
- Carsten


rainer

___
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: PATCH: proposed improvements to org-src-mode

2009-09-06 Thread Carsten Dominik

Hi Dan,

thanks for doing such a careful job.  I applied all three parts.

- Carsten

On Sep 5, 2009, at 7:33 PM, Dan Davison wrote:


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


Hi Dan,

OK, I have now applied the patch.  If you don't mind, could
you please double-check the commit?


[Re.: commit 4b6988bf36cb458c9d113ee4332e016990c1eb04 ]

Thanks Carsten, I looked over the commit and it looked good. However
after using it a bit over the last week I have discovered two bugs  
and a

code issue. These follow below, together with proposed patches. There
are 3 separate patches. Just in case you want to accept all 3 of them,
I've created a single patch against current git right at the bottom of
the email.

But first, there are a couple of aesthetic choices being made here  
that

others might have better ideas for than the ones I've come up with so
far. Firstly, how should we name edit buffers? At the moment we're  
using
my proposal of (actually I just added spaces inside the square  
brackets)


(concat *Org Src  org-buffer-name [  lang  ]*)

e.g.

*Org Src testing.org[ python ]*

Secondly, how shall we name edit buffers for Fixed Width / ASCII  
drawing

regions? The patch below uses

(concat *Org Src  org-buffer-name [  Fixed Width  ]*)

e.g.

*Org Src testing.org[ Fixed Width ]*

(Maybe Literal would be better? Neither seems perfect.)

Now for the bugs  patches.

* Bug 1: C-x s switches active buffer
 1. open two edit buffers simultaneously and modify them
 2. now issue C-x s in one of the edit buffers
 3. when it comes to saving the second edit buffer, it will steal  
focus.


Would an appropriate solution be to wrap the body of org-edit-src-save
in a save-window-excursion, as in this patch? I've tried it quickly
and it seems to have the desired effect.

--8---cut here---start-8---
diff --git a/lisp/org-src.el b/lisp/org-src.el
index fbf395f..df09f39 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -474,14 +474,15 @@ the language, a switch telling of the content  
should be in a single line.

(defun org-edit-src-save ()
  Save parent buffer with current state source-code buffer.
  (interactive)
-  (let ((p (point)) (m (mark)) msg)
-(org-edit-src-exit)
-(save-buffer)
-(setq msg (current-message))
-(org-edit-src-code)
-(push-mark m 'nomessage)
-(goto-char (min p (point-max)))
-(message (or msg 
+  (save-window-excursion
+(let ((p (point)) (m (mark)) msg)
+  (org-edit-src-exit)
+  (save-buffer)
+  (setq msg (current-message))
+  (org-edit-src-code)
+  (push-mark m 'nomessage)
+  (goto-char (min p (point-max)))
+  (message (or msg )
--8---cut here---end---8---


* Bug 2: org-edit-src-find-buffer fails to find buffer
 - Use C-c ' to switch to an edit buffer and make a modification
 - Return to the org buffer without killing edit buffer
 - Try C-c ' on the same code block
 - You are now in a new edit buffer instead of returning to the  
original one!


 This is because it had not been updated to reflect the new edit  
buffer

 naming scheme. I propose that we ensure consistency by creating a new
 function org-src-construct-edit-buffer-name which takes the parent
 buffer name and the language and generates the edit buffer name, as  
in

 this patch.

--8---cut here---start-8---
diff --git a/lisp/org-src.el b/lisp/org-src.el
index df09f39..b0932c1 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -185,7 +185,8 @@ the edited version.
   (org-delete-overlay org-edit-src-overlay)))
 (kill-buffer buffer))
   (setq buffer (generate-new-buffer
- (concat *Org Src  (file-name-nondirectory  
buffer-file-name) [ lang ]*)))

+ (org-src-construct-edit-buffer-name
+  (file-name-nondirectory buffer-file-name)  
lang)))

   (setq ovl (org-make-overlay beg end))
   (org-overlay-put ovl 'face 'secondary-selection)
   (org-overlay-put ovl 'edit-buffer buffer)
@@ -231,13 +232,17 @@ the edited version.
(if buf (switch-to-buffer buf)
  (error Something is wrong here

+(defun org-src-construct-edit-buffer-name (org-buffer-name lang)
+  Construct the buffer name for a source editing buffer
+  (concat *Org Src  org-buffer-name [  lang  ]*))
+
(defun org-edit-src-find-buffer (beg end)
  Find a source editing buffer that is already editing the region  
BEG to END.

  (catch 'exit
(mapc
 (lambda (b)
   (with-current-buffer b
-(if (and (string-match \\`*Org Edit  (buffer-name))
+(if (and (string-match \\`*Org Src  (buffer-name))
 (local-variable-p 'org-edit-src-beg-marker (current- 
buffer))
 (local-variable-p 'org-edit-src-end-marker (current- 
buffer))

 (equal beg org-edit-src-beg-marker)
@@ -289,7 +294,9 @@ the fragment in the Org-mode buffer.
   (if 

Re: [Orgmode] Re: Org-mode version 6.30trans (release_6.30d.5.gc125); make fails on org-ascii.el

2009-09-06 Thread Carsten Dominik


On Sep 5, 2009, at 3:06 PM, Daniel Martins wrote:

Is it not possible to pu tsome directive in the Makefile in order to  
make


check the presence of *.elc without corresponding *.el and deleting  
them BEFORE or simultaneously with recompilation process?


It should improve the compilation process.

Maybe it could be create a new directive such as

make clean-install

to keep make install with backward compatibility.


There is already the update target...

- Carsten



Unfortunately I do not master makefile issues to do this by myself.

The phrase omitting the make clean has the potential to cause  
problems may lead to bogus bugs here in the list. These king of  
bugs are really hard ti find.


Daniel

2009/9/5 Matt Lundin m...@imapmail.org
Hi Daniel,

Daniel Martins daniel...@gmail.com writes:

 On the other hand: Shouldn't a simple `make' do everything  
needed

 to succeed?

 On How do I keep current with Org mode development?

 http://orgmode.org/worg/org-faq.php#
 keeping-current-with-Org-mode-development

 it is suggested the following commands

 git pull  make clean  make  make doc  make install

 I've put together with a command which updaes a bunch of svn
 repositories from my students.

 The problem is: make clean before make FORCES recompiling the same
 files again and not only the updated files!

 As org-mode is updated very often and the the compiling process is a
 bit slow and always annoying
 I decide to change the comand to

 git pull   make   make install

 I dropped make doc because it seems that there is som problem with
 texinfo files of these new version.

 The problem of omitting make clean isthat: if a file disappears its
 compiled maybe will not disappear and cause problems.

 Therefore I repeat Sebastien request:

 Shouldn't a simple `make' do everything needed to succeed?

I can't say anything definitive. All I know is that a simple make 
make install usually works for me.

But, as far as I understand it, omitting the make clean has the
potential to cause problems, because org source files are occasionally
renamed or made obsolete. So if you run into any problems after an
install, you should run make clean.

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




___
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] Stuck in a folded section when subtree is folded

2009-09-06 Thread Carsten Dominik


On Sep 5, 2009, at 4:05 PM, PT wrote:


If a header has some text content under it and the cursor is in
the text then pressing TAB folds the content, but it doesn't
change the cursor position, so the cursor is stuck in the folded
part and, for example, beginning-of-line doesn't work, you can
only get out from the folded part if you press cursor up/down


Have you customized the variable org-cycle-emulate-tab?

- Carsten



Isn't it a bug?



If I stand on a header which has only subheaders under it and I
press TAB then the subtree is folded and the cursor is put back
to the beginning of the header line apparently to avoid leaving
the cursor in the folded part which is a nice gesture.

Shouldn't the same happen when textual content is folded?




___
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] Clock Table filter by tag or property

2009-09-06 Thread Carsten Dominik


On Sep 3, 2009, at 5:11 PM, Miguel Fernando Cabrera wrote:


Hi Everyone,

First I want to thank all the people that make Org-Mode possible. I  
have been using it almost 8 months and it is a life changer. Every  
week I add something new to my workflow thanks to Org-Mode  
capabilities. My setup can be found in github[1] if anyone is  
interested in in. I hope to document it soon.


I was wondering if there is a way to make a clock table to show only  
entries with an specify a property or tag. I think it could be  
useful, for example,  I have to give support to some users (e.g  
support on application servers and support on custom software  
libraries) which can be in different projects. I want to check how  
much time I have spent providing support no matter what project It  
is related to. So I could use a tag (i.e support) and generate a  
clock report showing the time spentn in all the entries tagged with  
support.


Hi Miguel,

I don't think  this is possible currently in clock tables,
and not so easy to implement.  What you can do is this:

The other, better possibility:  Make an agenda search for
that tag (or a more complex on where you also restrict to
certain people, for example), then switch to column view
with a columns format that contains %CLOCKSUM{:} as a
field.

This will at least show you those times, and the total of them.

HTH

- Carsten


___
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] Publishing clocked time

2009-09-06 Thread Carsten Dominik

Hi Ivan,

clocking lines are considered ugly and are therefore not included
during publishing.  I could make an option for it...  Are there
more people interested?

- Carsten

On Sep 4, 2009, at 5:32 PM, Ivan Chernetsky wrote:


Hello,

is it possible to publish clocked time of a TODO item? For instance, I
have a TODO item like this:

** TODO todo item title   :NEXT:
  - State STARTED  from TODO  [2009-09-04 Fri 15:56]
  - State STARTEDfrom TODO   [2009-09-04 Fri 14:52]
  CLOCK: [2009-09-04 Fri 14:52]--[2009-09-04 Fri 15:56] =  1:04

When I publish a project that contains a file with this item, I
doesn't see last line with clocked time info. I have the following
settings regarding publishing:

(setq org-clock-persist t)
(org-clock-persistence-insinuate)
(setq org-clock-in-resume t)
(setq org-clock-into-drawer nil)
(setq org-clock-out-remove-zero-time-clocks t)
(setq org-clock-out-when-done nil)
(setq org-agenda-log-mode-items '(clock))

(setq org-todo-keywords '((sequence TODO(t) STARTED(s!) |  
DONE(d!/!))

  (sequence WAITING(w@/!) SOMEDAY(S!) | 
CANCELLED(c@/!
(setq org-use-fast-todo-selection t)
(setq org-todo-state-tags-triggers
 '((CANCELED (CANCELLED . t))
(WAITING (WAITING . t) (NEXT))
(SOMEDAY (WAITING . t))
(DONE (NEXT) (WAITING))
(TODO (WAITING) (CANCELLED))
(STARTED (WAITING) (NEXT . t
(setq org-tag-alist
 '((NEXT . ?N)
(WAITING . ?W)
(CANCELLED . ?C)))
(setq org-fast-tag-selection-single-key 'expert)
(setq org-agenda-custom-commands
 '((s Started Tasks todo STARTED
((org-agenda-todo-ignore-with-date nil)))
(w Tasks waiting on something tags WAITING
((org-use-tag-inheritance nil)))
(n Next tags NEXT-WAITING-CANCELLED/! nil)))
(setq org-agenda-repeating-timestamp-show-all t)
(setq org-agenda-show-all-dates t)
(setq org-agenda-sorting-strategy
 '((agenda time-up priority-down effort-up category-up)
(todo priority-down)
(tags priority-down)))


;; (setq org-agenda-include-diary t)
;; (setq org-agenda-include-all-todo t)

(setq org-agenda-files '(~/org/work/dooster.org))
(setq org-directory ~/org/)

;; publishing
(setq org-publish-project-alist
 '((work
 :base-directory ~/org/work
 :publishing-directory ~/org/published/work
 :recursive t
 :base-extension org
 :publishing-function org-publish-org-to-html
 :auto-index t)))
(setq org-export-author-info nil)
(setq org-export-creator-info nil)
(setq org-export-html-use-infojs nil)
(setq org-export-with-drawers t)
(setq org-export-html-inline-images t)

Thanks in advance!


___
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] Re: Stuck in a folded section when subtree is folded

2009-09-06 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes:
 
 Have you customized the variable org-cycle-emulate-tab?
 

No, it's nil. 

It's org 6.30, btw.



___
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] Clock Table filter by tag or property

2009-09-06 Thread Miguel Fernando Cabrera
On Sun, Sep 6, 2009 at 6:41 AM, Carsten Dominik
carsten.domi...@gmail.comwrote:


 On Sep 3, 2009, at 5:11 PM, Miguel Fernando Cabrera wrote:

  Hi Everyone,

 First I want to thank all the people that make Org-Mode possible. I have
 been using it almost 8 months and it is a life changer. Every week I add
 something new to my workflow thanks to Org-Mode capabilities. My setup can
 be found in github[1] if anyone is interested in in. I hope to document it
 soon.

 I was wondering if there is a way to make a clock table to show only
 entries with an specify a property or tag. I think it could be useful, for
 example,  I have to give support to some users (e.g support on application
 servers and support on custom software libraries) which can be in different
 projects. I want to check how much time I have spent providing support no
 matter what project It is related to. So I could use a tag (i.e support)
 and generate a clock report showing the time spentn in all the entries
 tagged with support.


 Hi Miguel,

 I don't think  this is possible currently in clock tables,
 and not so easy to implement.  What you can do is this:

 The other, better possibility:  Make an agenda search for
 that tag (or a more complex on where you also restrict to
 certain people, for example), then switch to column view
 with a columns format that contains %CLOCKSUM{:} as a
 field.

 This will at least show you those times, and the total of them.

 HTH

 - Carsten


That sounds good enough for me. I hadn't thought of getting the times that
way. Thank you Carsten!


-- 
Miguel Fernando Cabrera Granados
http://mfcabrera.com
Analista de Arquitectura
Gerencia de Desarrollo - Suramericana
http://www.sura.com.co
Cel: (+ 57) 300-492-8461
Tel:  (+ 57 4)  4938620
A los hombres fuertes les pasa lo que a los barriletes; se elevan cuando es
mayor el viento que se opone a su ascenso. - José Ingenieros
___
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: Stuck in a folded section when subtree is folded

2009-09-06 Thread Carsten Dominik


On Sep 6, 2009, at 4:22 PM, PT wrote:


Carsten Dominik carsten.dominik at gmail.com writes:


Have you customized the variable org-cycle-emulate-tab?



No, it's nil.


Wrong answer:  The correct answer would have been:

Yes, it is nil!

Because the default value is t!.  The default value means
that TAB will not at all fold an entry when the
cursor is not in the headline.  Maybe this is really the
setting you want?

- Carsten



It's org 6.30, btw.



___
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] Re: Stuck in a folded section when subtree is folded

2009-09-06 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes:

 
 Wrong answer:  The correct answer would have been:
 
 Yes, it is nil!
 
 Because the default value is t!.  The default value means
 that TAB will not at all fold an entry when the
 cursor is not in the headline.  Maybe this is really the
 setting you want?

You are correct, I set it to nil, but this was not the issue. I
thought you ask it because of some strange interaction.

I'm happy with the current setting. I want TAB to fold
everywhere. The problem is if I'm standing in a place like this


* header

some text cursor is here some other text


and press TAB then the subtree is folded properly, but the cursor
is stuck in the folded section:


* header cursor appears here, it is in the folded section...



and I think it should be put to the beginning of line to avoid leaving 
it in the folded section after a fold:


cursor* header...


Maybe I was not clear enough in the first post.
 



___
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.30d; Hide stars

2009-09-06 Thread Tassilo Horn
Scott Otterson sco...@sharpleaf.org writes:

Hi Scott  all others having that problem,

 I also see this problem.  In addition, links are rendered in plain
 text instead of being hidden.  I'm using emacs 23 on OS X.

This bug is more than strange.  Till now, neither Carsten nor me was
able to reproduce it, but people with different emacs versions on
different platforms were bitten by it.

Could you please all try to reproduce the problem this way:

1. Create a file test.el with these contents:

--8---cut here---start-8---
(add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
(require 'org-install)
(add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
--8---cut here---end---8---

2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

3. Open some org file and check if the problem still occurs.

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


[Orgmode] Re: Release 6.30

2009-09-06 Thread Rainer Stengele

Carsten Dominik schrieb:

Hi Rainer,

On Sep 5, 2009, at 4:08 PM, Rainer Stengele wrote:


Hi Carsten,

excellent, thanks a lot!

I now have have started with this regexp:

...
'(org-agenda-entry-text-exclude-regexps (quote (^.*- State 
\DONE\.*\n ^.*erzeugt:.*\n)))

...


which works except in cases like these:

...
- State DONE   [2008-02-24 So 20:52]
- State DONE   [2008-02-24 So 20:52]
erzeugt: [2008-01-12 Sa 21:40]
...

or

...
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:51]
- State DONE   [2008-02-24 So 20:50]
- State DONE   [2008-02-24 So 20:50]
erzeugt: [2008-01-12 Sa 21:40]
...


The agenda weeds out alle lines except the last line erzeugt 


The reason for this was that the last line did not have a newline after it,
because that is being removed before the regular expressions are
applied.  I have changed this now, so that the \n is still present.
Another fix would have been to make the final newline optional by
adding ? to the regexp.

- Carsten



Carsten, it works now!
Thanx for being the fastest maintainer I know at all!
It's plain fun to continue to see org getting better all the time.


- Rainer



___
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] run emacs.exe - point to specific .emacs

2009-09-06 Thread Erwin Panen




Hi Group,

First off all thanks a lot for org-mode! I am trying to use it now for
a couple of weeks, and it (Emacs AND org-mode) is really compelling:-)
I've tried a lot from Outlook over Shadow-Plan and EccoPro. I'm using a
mix of Linux and M$ XP, mainly XP at the time :-(

Goal:
- set up emacs as a portable app on a portable 2.5" drive (or USB
stick for that matter) to run on windows
- sync the org-mode files with a location on a server (GIT , is a
directory sufficient, or does GIT need any installation on a linux box?)
- sync the same org-mode files n a linux laptop
- lastly, use the same USB drive org-mode files on a linux laptop.

Actions:
- tried to combine emacs with portable apps, but was unable to properly
get this running (the .emacs location on the USB stick did not work out)
- alternatively tried to combine emacs with pstart (http://www.pegtop.net/start/) 
 - this works best now, tried this on a couple different
machines, inspite of the drive picking up different drive letters (G,
K, etc)
   Pstart enables me to set the proper variable to point to my
\\usbstick\home\emacs-23.1\.emacs file.




Questions: 
- Is there any command line parameter to point emacs to a specific
/dir/subdir/.emacs_2 file?
 This would allow me to experiment with various subsets of .emacs
settings?
- I realize emacs can be run in 'server - client' mode; is it possible
to run emacs as a server on a windows box and remotely connect to this
server from another windows box?
- GIT; could anybody point out a good git tutorial to get this up and
running on a mixed windows / linux platform?

There's plenty of other questionmarks, but I don't want to overdo it
and take it from here..

Thanks a lot for your help!

Erwin


___
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: Release 6.30

2009-09-06 Thread Rainer Stengele

Carsten Dominik schrieb:

...



The reason for this was that the last line did not have a newline after it,
because that is being removed before the regular expressions are
applied.  I have changed this now, so that the \n is still present.
Another fix would have been to make the final newline optional by
adding ? to the regexp.

- Carsten






Hi Carsten,

sorry to come up again with this. I have lines in my org file like these 
(headlines only, no content):


 TODO [#B] Heizungskeller: Abluftrohr einbauen
 TODO [#B] Briefkasten abdichten mit transparentem Silikon
 TODO [#B] Badewanne OG1 abdichten

Showing these in my agenda with the new E option results in:

 TODO [#B] Heizungskeller: Abluftrohr einbauen
    TODO [#B] Briefkasten abdichten mit transparentem Silikon
 TODO [#B] Briefkasten abdichten mit transparentem Silikon
    TODO [#B] Badewanne OG1 abdichten
 TODO [#B] Badewanne OG1 abdichten

it looks like if there is no body line at all the next line appearing 
will be taken even if it is a headline.



- Rainer


___
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: Org-mode version 6.30trans (release_6.30d.5.gc125); make fails on org-ascii.el

2009-09-06 Thread Sebastian Rose
Carsten Dominik carsten.domi...@gmail.com writes:
 On Sep 5, 2009, at 3:06 PM, Daniel Martins wrote:

 Is it not possible to pu tsome directive in the Makefile in order to make

 check the presence of *.elc without corresponding *.el and deleting them
 BEFORE or simultaneously with recompilation process?

 It should improve the compilation process.

 Maybe it could be create a new directive such as

 make clean-install

 to keep make install with backward compatibility.

 There is already the update target...

That should be enough :) Thank's for the hint. (I should have done a
`grep -F clean Makefile')


  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


[Orgmode] Re: Release 6.30

2009-09-06 Thread Carsten Dominik

Fixed, thanks.

- Carsten

On Sep 6, 2009, at 8:58 PM, Rainer Stengele wrote:


Carsten Dominik schrieb:

...

The reason for this was that the last line did not have a newline  
after it,

because that is being removed before the regular expressions are
applied.  I have changed this now, so that the \n is still present.
Another fix would have been to make the final newline optional by
adding ? to the regexp.
- Carsten




Hi Carsten,

sorry to come up again with this. I have lines in my org file like  
these (headlines only, no content):


 TODO [#B] Heizungskeller: Abluftrohr einbauen
 TODO [#B] Briefkasten abdichten mit transparentem Silikon
 TODO [#B] Badewanne OG1 abdichten

Showing these in my agenda with the new E option results in:

 TODO [#B] Heizungskeller: Abluftrohr einbauen
   TODO [#B] Briefkasten abdichten mit transparentem Silikon
 TODO [#B] Briefkasten abdichten mit transparentem Silikon
   TODO [#B] Badewanne OG1 abdichten
 TODO [#B] Badewanne OG1 abdichten

it looks like if there is no body line at all the next line  
appearing will be taken even if it is a headline.



- Rainer




___
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: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Mark Elston

Yep.  Still see it.

Mark

Tassilo Horn wrote:

Scott Otterson sco...@sharpleaf.org writes:

Hi Scott  all others having that problem,


I also see this problem.  In addition, links are rendered in plain
text instead of being hidden.  I'm using emacs 23 on OS X.


This bug is more than strange.  Till now, neither Carsten nor me was
able to reproduce it, but people with different emacs versions on
different platforms were bitten by it.

Could you please all try to reproduce the problem this way:

1. Create a file test.el with these contents:

--8---cut here---start-8---
(add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
(require 'org-install)
(add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
--8---cut here---end---8---

2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

3. Open some org file and check if the problem still occurs.

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] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Melton Low
Yep problem still there.
I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
org-mode build from git pull this morning
Mac OS X 10.5.8 Intel

On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn tass...@member.fsf.orgwrote:

 Scott Otterson sco...@sharpleaf.org writes:

 Hi Scott  all others having that problem,

  I also see this problem.  In addition, links are rendered in plain
  text instead of being hidden.  I'm using emacs 23 on OS X.

 This bug is more than strange.  Till now, neither Carsten nor me was
 able to reproduce it, but people with different emacs versions on
 different platforms were bitten by it.

 Could you please all try to reproduce the problem this way:

 1. Create a file test.el with these contents:

 --8---cut here---start-8---
 (add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
 (require 'org-install)
 (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
 --8---cut here---end---8---

 2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

 3. Open some org file and check if the problem still occurs.

 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] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Melton Low
Sorry I made a mistake.
I only see it if I reverted org-mode back to 6.30d.  Works fine with this
morning's git pull.

Mel

On Sun, Sep 6, 2009 at 4:32 PM, Melton Low softw@gmail.com wrote:

 Yep problem still there.
 I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
 org-mode build from git pull this morning
 Mac OS X 10.5.8 Intel

 On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn tass...@member.fsf.orgwrote:

 Scott Otterson sco...@sharpleaf.org writes:

 Hi Scott  all others having that problem,

  I also see this problem.  In addition, links are rendered in plain
  text instead of being hidden.  I'm using emacs 23 on OS X.

 This bug is more than strange.  Till now, neither Carsten nor me was
 able to reproduce it, but people with different emacs versions on
 different platforms were bitten by it.

 Could you please all try to reproduce the problem this way:

 1. Create a file test.el with these contents:

 --8---cut here---start-8---
 (add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO YOUR NEEDS
 (require 'org-install)
 (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
 --8---cut here---end---8---

 2. Start emacs like this:

  $ emacs -Q -l ~/path/to/test.el

 3. Open some org file and check if the problem still occurs.

 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


[Orgmode] representation of clients

2009-09-06 Thread Richard Riley

People using org-mode to maintain tasks, order, reminders , notes etc,
how do you represent clients? By a TAG? by a separate category? Separate
file?

In my case I'm writing some SW for a few small companies and am humming
and harring on how best to model the work process, requests, meetings
and cases which arise.

Any pointers/ links appreciated.

-- 
googletalk/jabber : rileyrg...@googlemail.com


___
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] representation of clients

2009-09-06 Thread Russell Adams
I'd suggest a file each. Agenda easily compiles schedules from
multiple files. Remember mode as well.

On Mon, Sep 07, 2009 at 05:20:24AM +0200, Richard Riley wrote:
 
 People using org-mode to maintain tasks, order, reminders , notes etc,
 how do you represent clients? By a TAG? by a separate category? Separate
 file?
 
 In my case I'm writing some SW for a few small companies and am humming
 and harring on how best to model the work process, requests, meetings
 and cases which arise.
 
 Any pointers/ links appreciated.
 
 -- 
 googletalk/jabber : rileyrg...@googlemail.com
 
 
 ___
 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


Re: [Orgmode] Re: Org-mode version 6.30d; Hide stars

2009-09-06 Thread Mark Elston

Melton Low wrote:

Sorry I made a mistake.

I only see it if I reverted org-mode back to 6.30d.  Works fine with 
this morning's git pull.




Hmm.  Well, as it turns out, so does mine.  Whatever the problem *was*
it appears to have gone away now.

Mark


Mel

On Sun, Sep 6, 2009 at 4:32 PM, Melton Low softw@gmail.com 
mailto:softw@gmail.com wrote:


Yep problem still there.

I'm using cvs build of Emacs 23.50.1 on Sept 3rd.
org-mode build from git pull this morning
Mac OS X 10.5.8 Intel

On Sun, Sep 6, 2009 at 11:47 AM, Tassilo Horn
tass...@member.fsf.org mailto:tass...@member.fsf.org wrote:

Scott Otterson sco...@sharpleaf.org
mailto:sco...@sharpleaf.org writes:

Hi Scott  all others having that problem,

  I also see this problem.  In addition, links are rendered in
plain
  text instead of being hidden.  I'm using emacs 23 on OS X.

This bug is more than strange.  Till now, neither Carsten nor me was
able to reproduce it, but people with different emacs versions on
different platforms were bitten by it.

Could you please all try to reproduce the problem this way:

1. Create a file test.el with these contents:

--8---cut here---start-8---
(add-to-list 'load-path ~/path/to/org-mode/lisp/) ;; EDIT TO
YOUR NEEDS
(require 'org-install)
(add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
--8---cut here---end---8---

2. Start emacs like this:

 $ emacs -Q -l ~/path/to/test.el

3. Open some org file and check if the problem still occurs.

Bye,
Tassilo



___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org mailto: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