[Orgmode] Bug fix release 4.59

2006-12-08 Thread Carsten Dominik

Org-mode 4.59 is available at

http://www.astro.uva.nl/~dominik/Tools/org/

This release fixes the issues reported by Bastien and Eddward during 
the last few days.


Please note the the variable regulating indirect buffer display
has been renamed and is now called `org-indirect-buffer-display'.

- Carsten

--
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: Bug fix release 4.59

2006-12-08 Thread J. David Boyd
Carsten Dominik <[EMAIL PROTECTED]> writes:

> Org-mode 4.59 is available at
>
> http://www.astro.uva.nl/~dominik/Tools/org/
>
> This release fixes the issues reported by Bastien and Eddward during
> the last few days.
>
> Please note the the variable regulating indirect buffer display
> has been renamed and is now called `org-indirect-buffer-display'.
>

I have a question related to the newest updates that come out.

I have been downloading the update, then extracting it, and setting it in my
.emacs.d directory under a symbolic link called org.

Then I stop and restart emacs.

Is there anyway to reload the new org code without stopping emacs?  I usually
have many other things going on, and don't really like to stop and restart
unless I have to.

Any ideas?

Dave



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


Re: [Orgmode] Re: Bug fix release 4.59

2006-12-08 Thread Carsten Dominik

M-x load-library RET org RET

This will re-read org.elc.  Then do

M-x org-mode RET

in each org-mode buffer, and you should be transparently switched
to the new version.

This should almost always do the right thing.  There are a few 
exceptions,

but not enough to burden you with.

How often do you restart Emacs?  Once a week?

- Carsten

On Dec 8, 2006, at 16:26, J. David Boyd wrote:


Carsten Dominik <[EMAIL PROTECTED]> writes:


Org-mode 4.59 is available at

http://www.astro.uva.nl/~dominik/Tools/org/

This release fixes the issues reported by Bastien and Eddward during
the last few days.

Please note the the variable regulating indirect buffer display
has been renamed and is now called `org-indirect-buffer-display'.



I have a question related to the newest updates that come out.

I have been downloading the update, then extracting it, and setting it 
in my

.emacs.d directory under a symbolic link called org.

Then I stop and restart emacs.

Is there anyway to reload the new org code without stopping emacs?  I 
usually
have many other things going on, and don't really like to stop and 
restart

unless I have to.

Any ideas?

Dave



___
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: Bug fix release 4.59

2006-12-08 Thread Carsten Dominik

On Dec 8, 2006, at 17:00, Eddward DeVilla wrote:


   For me, on my work desktop I pretty much only restart emacs to get
the newest versions of org-mode after testing them out on my laptop.
:-)

   Think it would work if I wrote a function to reload org and then
iterate through the buffers, restarting org-ode in the org-mode
buffers or would the function still hold on to the version of org that
was active when it was called?  Would there be an easy/automated way
to restart the agenda buffer without messing up the buffer-window
mapping?


For sure this would work, if you take some care like actually selecting
the *window* displaying the agenda before refreshing it.
Something like (untested):

(defun org-upgrade ()
  "Reload org.el and renew the mode in all applicable buffers."
  (interactive)
  (load-library "org")
  (let ((buffers (buffer-list))
(cwin (selected-window))
(org-inhibit-startup t) ; avoid re-folding of the buffers
buf win)
(while (setq buf (pop buffers))
  (when (buffer-live-p buf)
(with-current-buffer buf
  (and (eq major-mode 'org-mode) (org-mode)
(when (setq win (get-buffer-window org-agenda-buffer-name))
  (select-window win)
  (org-agenda-redo))
(select-window cwin)
(message "All buffers upgraded to org-mode version %s"
 org-version)))



- Carsten



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


[Orgmode] Re: Bug fix release 4.59

2006-12-08 Thread J. David Boyd
Carsten Dominik <[EMAIL PROTECTED]> writes:

> M-x load-library RET org RET
>
> This will re-read org.elc.  Then do
>
> M-x org-mode RET
>
> in each org-mode buffer, and you should be transparently switched
> to the new version.
>
> This should almost always do the right thing.  There are a few
> exceptions,
> but not enough to burden you with.
>
> How often do you restart Emacs?  Once a week?
>

Oh no.  Daily.  I am connecting to my home box running linux from my work box
running windows XP.  I don't trust the connection on the windows box enough to
leave it running while I'm not gone.  I also wouldn't want anyone to walk up
to my machine while I was gone and have access to my home box.

I start emacs when I get to work in the morning.
I shut it down before I go home at night.
So, it runs for ~9 hours every day.

Thanks for the method to reload org.

Dave



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


Re: [Orgmode] Re: Bug fix release 4.59

2006-12-08 Thread Xiao-Yong Jin
[EMAIL PROTECTED] (J. David Boyd) writes:

> Carsten Dominik <[EMAIL PROTECTED]> writes:
>
>> M-x load-library RET org RET
>>
>> This will re-read org.elc.  Then do
>>
>> M-x org-mode RET
>>
>> in each org-mode buffer, and you should be transparently switched
>> to the new version.
>>
>> This should almost always do the right thing.  There are a few
>> exceptions,
>> but not enough to burden you with.
>>
>> How often do you restart Emacs?  Once a week?
>>
>
> Oh no.  Daily.  I am connecting to my home box running linux from my work box
> running windows XP.  I don't trust the connection on the windows box enough to
> leave it running while I'm not gone.  I also wouldn't want anyone to walk up
> to my machine while I was gone and have access to my home box.
>
> I start emacs when I get to work in the morning.
> I shut it down before I go home at night.
> So, it runs for ~9 hours every day.

You might be interested in this post
http://article.gmane.org/gmane.emacs.help/35474

> Thanks for the method to reload org.
>
> Dave
>
>
>
> ___
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>

-- 
   ,,,
  (o o)
---ooO-(_)-Ooo---


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


[Orgmode] tags alignment

2006-12-08 Thread Eddward DeVilla

Hi,

 There is an option org-tags-column to align tags in an org file to a
column.  This value can be positive or negative to say if you want the
left or right side of the tags to be anchored.  There is another
option org-agenda-align-tags-to-column that does about the same thing
for the agenda buffer.  It does not support the negative alignment.
Is there a reason to not allow that?

Edd


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


[Orgmode] archive tag/agenda bug

2006-12-08 Thread Eddward DeVilla

Hi,

   I think I found a new bug.  This may be another emacs 21 visibility issue.

Using a file like so:
--
* projects
*** TODO Something that was never meant to be   :ARCHIVE:
--

add the file to you agenda files list, show all in the buffer and open
a todo view with C-c a t.  The todo entry will not show up in the
agenda view as expected.
--
Global list of TODO items of type: ALL
Available with `N r': (0)ALL (1)TODO (2)DONE
--

Now you can fold projects and hide the todo entry or just kill the
buffer holding the entry.  Refresh the agenda view to see
--
* projects ...
--

--
Global list of TODO items of type: ALL
Available with `N r': (0)ALL (1)TODO (2)DONE
 test3:  TODO Something that was never meant to be  :ARCHIVE:
--

It looks like the ARCHIVE tag is only honored when the entry is visible.

Edd


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


[Orgmode] another bug, sorry

2006-12-08 Thread Eddward DeVilla

Hi all,

Sorry for all the clutter.  Using the menu, agenda or key binding to
open a sub-tree in an indirect buffer kicks me into the debugger.  I
don't think I even have the debugger option on.

Here's the stack I get.  I'm not sure what to make of it.

Debugger entered: nil
 (let ((cbuf ...) (cwin ...) (pos ...) (bname ...) beg end level
heading ibuf) (save-excursion (org-back-to-heading t) (when ... ...
... ...) (setq beg ... heading ...) (org-end-of-subtree t) (setq end
...)) (if (and ... ...) (kill-buffer org-last-indirect-buffer)) (setq
ibuf (org-get-indirect-buffer cbuf) org-last-indirect-buffer ibuf)
(cond (... ... ... ... ...) (... ... ... ... ...) (... ...) (... ...)
(t ...)) (if (featurep ...) (save-excursion ... ...))
(narrow-to-region beg end) (show-all) (goto-char pos) (debug) (and
(window-live-p cwin) (select-window cwin)))
 org-tree-to-indirect-buffer(nil)
* call-interactively(org-tree-to-indirect-buffer)


The second to last expression in org-tree-to-indirect-buffer has me a
little suspicious though.  Seems to work without the call to debug.

Edd


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


[Orgmode] Re: Bug fix release 4.59

2006-12-08 Thread J. David Boyd
Xiao-Yong Jin <[EMAIL PROTECTED]> writes:

> [EMAIL PROTECTED] (J. David Boyd) writes:
>
>> Carsten Dominik <[EMAIL PROTECTED]> writes:
>>
>>> M-x load-library RET org RET
>>>
>>> This will re-read org.elc.  Then do
>>>
>>> M-x org-mode RET
>>>
>>> in each org-mode buffer, and you should be transparently switched
>>> to the new version.
>>>
>>> This should almost always do the right thing.  There are a few
>>> exceptions,
>>> but not enough to burden you with.
>>>
>>> How often do you restart Emacs?  Once a week?
>>>
>>
>> Oh no.  Daily.  I am connecting to my home box running linux from my work box
>> running windows XP.  I don't trust the connection on the windows box enough 
>> to
>> leave it running while I'm not gone.  I also wouldn't want anyone to walk up
>> to my machine while I was gone and have access to my home box.
>>
>> I start emacs when I get to work in the morning.
>> I shut it down before I go home at night.
>> So, it runs for ~9 hours every day.
>
> You might be interested in this post
> http://article.gmane.org/gmane.emacs.help/35474
>

Thanks, I will check that out.




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


[Orgmode] recurring events, alternative to shift modifier, tag positions, smart [ ], and org-publish questions

2006-12-08 Thread Scott Jaderholm

First let me say that I've really enjoyed using org-mode for the past month
or so. Thank you to all those who have contributed to it!

I've had fun customizing the faces a little and this is what I came up with
http://jaderholm.com/screens/org-colors.jpg

1. Is there a way to do recurring events? Even if it were just a function
that could rewrite the dates every day/week/month I find it hard to believe
that so many people use org-mode as a planner without this functionality.

2. I use org-mode over ssh and since shift doesn't work along with other
modifiers many of the keystrokes do not work. Has anyone come up with
alternate keystrokes not involving shift that they could share?

3. How do you make it so that tags appear farther to the right? I'm hoping
that will keep them more inline, as long headings tend to interfere with the
default position.

4. Has anyone written a smart function for smart adding [ ] to lines, kind
of like C-c C-t does with TODO? Ideally it would be smart enough to put it
after a - if there were one.

* org-publish questions

5. I'm using org-export and I have been unable to link to an image and have
it show up as an image in the exported html.
[[http://foo.com/bar.jpg]]
shows up as a link and @http://foo.com/bar.jpg"; /> shows up with
the markup as text and the url as a link.

6. I've had problems with lists (- items) not ending correctly and the next
line, even if separated with a blank line, is considered part of the list.
Do I have to explicitly end the list or has anyone seen this problem? The
closest I can get to reproducing it at this moment is that if I have:

text:
- 1
- 2

more text

the "text:" is in a  but the "more text" is not in a .

7. Is there a way to change how the page title is exported so that it will
use a span instead of an h1?

Thank you very much,
Scott
___
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] another bug, sorry

2006-12-08 Thread Carsten Dominik
Oh well, this is just the "usual" forgetting a (debug) in the code.  if  
something like this happens, edit org.el and find a line


   (debug)

and remove it.  It is just left over from testing, I forgot to take it  
out.


4.59b has this fixed.  Thanks for the report.

- Carsten


On Dec 8, 2006, at 19:43, Eddward DeVilla wrote:


Hi all,

Sorry for all the clutter.  Using the menu, agenda or key binding to
open a sub-tree in an indirect buffer kicks me into the debugger.  I
don't think I even have the debugger option on.

Here's the stack I get.  I'm not sure what to make of it.
--- 
-

Debugger entered: nil
 (let ((cbuf ...) (cwin ...) (pos ...) (bname ...) beg end level
heading ibuf) (save-excursion (org-back-to-heading t) (when ... ...
... ...) (setq beg ... heading ...) (org-end-of-subtree t) (setq end
...)) (if (and ... ...) (kill-buffer org-last-indirect-buffer)) (setq
ibuf (org-get-indirect-buffer cbuf) org-last-indirect-buffer ibuf)
(cond (... ... ... ... ...) (... ... ... ... ...) (... ...) (... ...)
(t ...)) (if (featurep ...) (save-excursion ... ...))
(narrow-to-region beg end) (show-all) (goto-char pos) (debug) (and
(window-live-p cwin) (select-window cwin)))
 org-tree-to-indirect-buffer(nil)
* call-interactively(org-tree-to-indirect-buffer)
--- 
-


The second to last expression in org-tree-to-indirect-buffer has me a
little suspicious though.  Seems to work without the call to debug.

Edd


___
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] org-mode bug reports

2006-12-08 Thread Jason Dunsmore

Hi, I'm new to org-mode.  Thanks so much for this great software.
It's so much easier to use than planner.   Here are some bugs/issues
I've been having with version 4.56 on GNU Emacs 21.4.1:

1. Killing a line above lines containing links kills them also.  For
example, type

* title
[[http://url.com][link]]
[[http://url.com][link]]

...then go to the title line, pres C-k C-k, and the lines after it
will be killed also.  It should take six presses of C-k to kill 3
lines with their corresponding hard line breaks.

2. If you put a link at the end of a bullet, it there is no "..." at
the end of the line when that section is folded.  For example:

* title [[http://url.com][link]]
text

3. Links are sometimes shown twice, when there's actually only one
link.  I haven't figured out exactly when this happens, but pressing
C-l (refresh display) fixes it.

4. Agenda mode doesn't work.  When I schedule tasks for the current
week and enter the agenda, it only shows the days of the week, there
are no entries.  I followed the steps from the tutorial.

Jason


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


Re: [Orgmode] Bug fix release 4.59

2006-12-08 Thread Tim O'Callaghan

This is the first time I've tried it, but C-c C-k - edit outline in
dedicated frame, does not work under XEmacs.

Tim.


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


[Orgmode] Specifying style sheets for HTML Export. ... error in documentation

2006-12-08 Thread Charles Cave

On the bottom of page 61 of the Org Mode 4.57 manual
there is an example of including a style sheet for
HTML export.

Each of the lines is prefixed with # but I found it
is necessary to remove these for the style sheet to
work. The documentation needs to be corrected!

My style sheet section looks like this:


* COMMENT HTML style specifications

# Local Variables:
# org-export-html-style: " 
 html {
 font-family: Verdana, Times, serif;
 font-size: 10pt;
 margin-left: 20pt;
 margin-right: 50pt;
   }
 pre {
   border: 1pt solid #AEBDCC;
   background-color: #F3F5F7;
   padding: 5pt;
   font-family: courier, monospace;
  font-size: 10pt;
  margin-left: 45pt;
  margin-right: 45pt;
   }
 p,li {
 margin-left: 1.5 cm;
 margin-right: 1.5 cm;
}
 .author, .date {
  font-size: 8pt;
  margin-left: 0pt;
}
   h1 {color: darkblue;
   margin-top: 3.0 cm;
  }

  "
# End:



Charles


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