Re: [Orgmode] exporting tables with row and column labels?

2008-12-05 Thread Carsten Dominik

No, this is not possible...

- Carsten

On Dec 4, 2008, at 5:02 PM, Eric S Fraga wrote:


Hello,

I've been through the documentation but cannot find what I am looking
for (probably my fault).  I've also searched this mailing list to no
avail.

I would like to export a table (to LaTeX format) including the row and
column labels that are displayed by ^c}.  Is this possible?

Many thanks!

--  
Eric S Fraga, UCL
BF >++[>++>+++[<]>-]>++.>.<-.+ 
+.--.




___
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] Activating radio links when agenda called

2008-12-05 Thread Carsten Dominik

Hi Matt,

wow, this was a serious bug, fixed now, thanks.

- Carsten

On Dec 4, 2008, at 4:05 PM, Matthew Lundin wrote:



Hi everyone,

When I load an org file into a buffer using find-file, radio targets
(i.e., triple bracket targets such as <<>>) are
automatically activated and the corresponding plain text (My Target)
is turned into a link.

However, when my org files are loaded into buffers by calling the
agenda for the first time, radio targets are not activated. Instead, I
have to use C-c C-c to activate the links.

Since I usually open all my org files by calling the agenda, I'd like
to have the links activated right away. Is there perhaps a setting
that will change this behavior?

Regards,

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] Spreadsheet question

2008-12-05 Thread Carsten Dominik

Hi Tassilo,

I can see that this could be confusing, and maybe it should throw an  
error.


The use-ase fo this are running means as column formulas
that would be undefined for he first few rows in.  Consider
the following table:


| i | nn | mean of last 3 |
|---++|
| 1 |  4 |   4.00 |
| 2 |  7 |   5.50 |
| 3 |  2 |   4.33 |
| 4 |  4 |   4.33 |
| 5 |  5 |   3.67 |
| 6 |  7 |   5.33 |
| 7 |  9 |   7.00 |
| 8 | 22 |  12.67 |
#+TBLFM: $3=vmean([EMAIL PROTECTED]);%.2f

I am not sure how common this use is and who would
be hurt by turning this behavior into an error.

- Carsten

On Dec 4, 2008, at 11:49 AM, Tassilo Horn wrote:


Carsten Dominik <[EMAIL PROTECTED]> writes:

Hi Carsten,


@-1 references the row above the current.  If that is a hline, if
actually references the current line.


Yes, I see that, but I wonder if that's actually the right thing to  
do.
IMO defaulting to some cell/row/column which is not referenced  
correctly

might obscure wrong formulas.

For example, in my case the first calculation gave 2 which is correct
and only the second recalculation shows me that the forumla is wrong.
So I'd prefer an #ERROR if a reference doesn't exist.

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


Re: [Orgmode] Args out of range, XEmacs 21.4.21

2008-12-05 Thread Carsten Dominik

Fixed, thanks, in particular for the partial analysis
which helped to quickly find the problem.

- Carsten

On Dec 5, 2008, at 8:56 AM, Hugh Daschbach wrote:


I'm a late comer.  Just found Carston's presentation at Google.  Nice
piece of work.  Many thanks.

Unfortunately, the first thing I did failed with an "Args out of range
error".  I've worked through that (described below).  And have just
finished converting all my sticky notes to org-mode.  Label me a
convert.

The "Args out of range" error is specific to XEmacs [running 21.4
(patch 21)].  I'm running org-mode from the git repository:

$ git-describe
release_6.13a-23-g269c5a8

My first experiment consisted of:

* 1234
* 4567 Meta-Up

That deleted the second line of text and threw the args range  
exception

  #, 0, 1

Here's the traceback:

Debugger entered--Lisp error: (args-out-of-range #  
0 1)

 map-extents((lambda (ex ignored) (if (< ... beg) (if ... ... ...)
(if ... ... ...))) # 0 1 nil end-closed outline)
 (save-excursion (map-extents (function ...) (current-buffer) beg end
nil (quote end-closed) (quote outline)))
 outline-discard-extents(0 1)
 outline-flag-region(0 1 nil)
 org-move-subtree-down(-1)
 org-move-subtree-up(1)
 call-interactively(org-move-subtree-up)
 org-metaup(nil)
 call-interactively(org-metaup)

Here's what I did to noutline.el to mask the issue:

diff --git a/xemacs/noutline.el b/xemacs/noutline.el
index f9ea1da..2463011 100644
--- a/xemacs/noutline.el
+++ b/xemacs/noutline.el
@@ -735,6 +735,8 @@ BEG and END default respectively to the beginning
and end of buffer."
If FLAG is nil then text is shown, while if FLAG is t the text is  
hidden."

  (when (< to from)
(setq from (prog1 to (setq to from
+  (when (< from (point-min))
+(setq from (point-min)))
  ;; first clear it all out
  (outline-discard-extents from to)
  (when flag

I doubt this is a proper fix.  It likely just masks the real issue.
The line in org-move-subtree-down that called outline-flag-region with
FROM set to zero is:

   (outline-flag-region (1- (point)) (point) nil)

I haven't dug into why this isn't already reported or why it doesn't
occur with FSF Emacs.

But many thank for an excellent tool.


___
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] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Michaël Parienti

Hi

First, thanks you for this great software! I’m very happy with
it.

Most of the time I use keyboard to navigate into a document, but
today I wanted to use the mouse and I was not able to to change
the visibility of an heading.

I think it would be great if a click on an heading made an
subtree cycling, like the .


Regards,

-- 
Michaël Parienti
gpg:D4C8 F73D A000 71C7 44EF  27E6 8982 4991 7126 3CE3


___
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] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Peter BARABAS
Hello,


Check out org-mouse.el, bundled with org-mode.


On Fri, Dec 5, 2008 at 09:49, Michaël Parienti <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> First, thanks you for this great software! I'm very happy with
> it.
>
> Most of the time I use keyboard to navigate into a document, but
> today I wanted to use the mouse and I was not able to to change
> the visibility of an heading.
>
> I think it would be great if a click on an heading made an
> subtree cycling, like the .
>
>
> Regards,
>
> --
> Michaël Parienti
> gpg:D4C8 F73D A000 71C7 44EF  27E6 8982 4991 7126 3CE3
>
>
> ___
> 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
>



-- 
'(Yours parenthetically
"peter barabas")


___
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] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Michaël Parienti
Le Fri, 5 Dec 2008 10:17:50 +0100
"Peter BARABAS" <[EMAIL PROTECTED]> a écrit:

> Hello,
> 
> 
> Check out org-mouse.el, bundled with org-mode.


With the debian version of org-mode, after a (require 'org-mouse)
I get the context menu with the right mouse button, but nothing
happen with the left button.

Has anyone uses this feature with success?

-- 
Michaël Parienti
gpg:D4C8 F73D A000 71C7 44EF  27E6 8982 4991 7126 3CE3


___
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] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Sebastian Rose
Hi Michael,


As most of the times, Debian is a bit behind the pace. I don't mean to
disparage Debian (I use Debian and I love it), it's just because of
their policies (unstable -> testing -> stable).

Most Org-users here uses the git-version - which is unproblematic.


Regards,
 
   Sebastian



Michaël Parienti <[EMAIL PROTECTED]> writes:
> Le Fri, 5 Dec 2008 10:17:50 +0100
> "Peter BARABAS" <[EMAIL PROTECTED]> a écrit:
>
>> Hello,
>> 
>> 
>> Check out org-mouse.el, bundled with org-mode.
>
>
> With the debian version of org-mode, after a (require 'org-mouse)
> I get the context menu with the right mouse button, but nothing
> happen with the left button.
>
> Has anyone uses this feature with success?

-- 
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover

Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Email: s.rose emma-stil de, sebastian_rose gmx de
Http:  www.emma-stil.de


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Carsten Dominik

Hi Sebastian, Michael,


this should be fine also in older versions.  Did you read the  
documentation in org-mouse?  You need to click on the stars.


- Carsten

On Dec 5, 2008, at 12:56 PM, Sebastian Rose wrote:


Hi Michael,


As most of the times, Debian is a bit behind the pace. I don't mean to
disparage Debian (I use Debian and I love it), it's just because of
their policies (unstable -> testing -> stable).

Most Org-users here uses the git-version - which is unproblematic.


Regards,

  Sebastian



Michaël Parienti <[EMAIL PROTECTED]> writes:

Le Fri, 5 Dec 2008 10:17:50 +0100
"Peter BARABAS" <[EMAIL PROTECTED]> a écrit:


Hello,


Check out org-mouse.el, bundled with org-mode.



With the debian version of org-mode, after a (require 'org-mouse)
I get the context menu with the right mouse button, but nothing
happen with the left button.

Has anyone uses this feature with success?


--
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449  
Hannover


Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Email: s.rose emma-stil de, sebastian_rose gmx de
Http:  www.emma-stil.de


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
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] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Carsten Dominik
We should actually write a section about org-mouse for the manual.   
Any volunteers?  Piotr?


- Carsten

On Dec 5, 2008, at 12:57 PM, Carsten Dominik wrote:


Hi Sebastian, Michael,


this should be fine also in older versions.  Did you read the  
documentation in org-mouse?  You need to click on the stars.


- Carsten

On Dec 5, 2008, at 12:56 PM, Sebastian Rose wrote:


Hi Michael,


As most of the times, Debian is a bit behind the pace. I don't mean  
to

disparage Debian (I use Debian and I love it), it's just because of
their policies (unstable -> testing -> stable).

Most Org-users here uses the git-version - which is unproblematic.


Regards,

 Sebastian



Michaël Parienti <[EMAIL PROTECTED]> writes:

Le Fri, 5 Dec 2008 10:17:50 +0100
"Peter BARABAS" <[EMAIL PROTECTED]> a écrit:


Hello,


Check out org-mouse.el, bundled with org-mode.



With the debian version of org-mode, after a (require 'org-mouse)
I get the context menu with the right mouse button, but nothing
happen with the left button.

Has anyone uses this feature with success?


--
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449  
Hannover


Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Email: s.rose emma-stil de, sebastian_rose gmx de
Http:  www.emma-stil.de


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode




___
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] Strange output from export - two head-sections

2008-12-05 Thread Sebastian Rose
Hi,


this is, what I get as an result from export.

1. There is this new navigation table on top (following an empty
   head section). How can I turn that off? It shows the entire content
   of WEB-folder! I added the `database.php' as demo.

2. There are two DOCTYPE lines and two head sections which seems too
   experimental to me :-)

3. Those DOCTYPE lines denote different doctypes.

4.  is depricated (while still in HTML 3.2). But I don't
   want HTML 3.2.


I just pulled again and still the same result.






=> --->8->8->8---



 
  Index of /devel/jobs/some-customer/map/docs
 
 
Index of /devel/jobs/some-customer/map/docs
NameSizeDescription

Parent Directory  - 
mouseover.png 91K
org-info.js 70K
sitemap.html1.8K
stylesheet.css4.2K
database.php  0 


zoom.png 13K


http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
http://www.w3.org/1999/xhtml";
lang="de" xml:lang="de">

README





 





<= ---8<-8<-8<---



Regards,

  Sebastian




-- 
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover

Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Email: s.rose emma-stil de, sebastian_rose gmx de
Http:  www.emma-stil.de


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Spreadsheet question

2008-12-05 Thread Carsten Dominik

Actually, thinking more about this, I think that Tassilo is right.

Therefore, from now on, this condition will throw an error.
I would like to make this #ERROR in the table cell, but
this is not easy, so for the time being, it really stops
the evaluation with an error message.

Thanks, Tassilo, for pointing to this issue.

- Carsten

On Dec 5, 2008, at 8:26 AM, Carsten Dominik wrote:


Hi Tassilo,

I can see that this could be confusing, and maybe it should throw an  
error.


The use-ase fo this are running means as column formulas
that would be undefined for he first few rows in.  Consider
the following table:


| i | nn | mean of last 3 |
|---++|
| 1 |  4 |   4.00 |
| 2 |  7 |   5.50 |
| 3 |  2 |   4.33 |
| 4 |  4 |   4.33 |
| 5 |  5 |   3.67 |
| 6 |  7 |   5.33 |
| 7 |  9 |   7.00 |
| 8 | 22 |  12.67 |
#+TBLFM: $3=vmean([EMAIL PROTECTED]);%.2f

I am not sure how common this use is and who would
be hurt by turning this behavior into an error.

- Carsten

On Dec 4, 2008, at 11:49 AM, Tassilo Horn wrote:


Carsten Dominik <[EMAIL PROTECTED]> writes:

Hi Carsten,


@-1 references the row above the current.  If that is a hline, if
actually references the current line.


Yes, I see that, but I wonder if that's actually the right thing to  
do.
IMO defaulting to some cell/row/column which is not referenced  
correctly

might obscure wrong formulas.

For example, in my case the first calculation gave 2 which is correct
and only the second recalculation shows me that the forumla is wrong.
So I'd prefer an #ERROR if a reference doesn't exist.

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


Re: [Orgmode] Feature request: Visibility cycling with the mouse

2008-12-05 Thread Michaël Parienti
Le Fri, 5 Dec 2008 12:57:23 +0100
Carsten Dominik <[EMAIL PROTECTED]> a écrit:

> this should be fine also in older versions.  Did you read the  
> documentation in org-mouse? 

I just read the header of the org-mode.el file.


> You need to click on the stars.

Ok, it works! Sorry for the noise.


-- 
Michaël Parienti
gpg:D4C8 F73D A000 71C7 44EF  27E6 8982 4991 7126 3CE3


___
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] Strange output from export - two head-sections

2008-12-05 Thread Sebastian Rose
Sorry,


if I had checked the solution fast enough, I'd kept this as an april
joke.

The following happened:

The file I wanted to publish was named 'README.org'. When I pointed my
browser to the publishing-directory, there was no index.html in it
yet. Since this is a local directory, I allow apache to show an
directory index there. Apache in turn appends any file named 'README*'
to it's directory index.

:-D


Regards,


   Sebastian



Sebastian Rose <[EMAIL PROTECTED]> writes:
> Hi,
>
>
> this is, what I get as an result from export.
>
> 1. There is this new navigation table on top (following an empty
>head section). How can I turn that off? It shows the entire content
>of WEB-folder! I added the `database.php' as demo.
>
> 2. There are two DOCTYPE lines and two head sections which seems too
>experimental to me :-)
>
> 3. Those DOCTYPE lines denote different doctypes.
>
> 4.  is depricated (while still in HTML 3.2). But I don't
>want HTML 3.2.
>
>
> I just pulled again and still the same result.
>
>
>
>
>
>
> => --->8->8->8---
>
> 
> 
>  
>   Index of /devel/jobs/some-customer/map/docs
>  
>  
> Index of /devel/jobs/some-customer/map/docs
>  href="?C=N;O=D">NameSize href="?C=D;O=A">Description
>
>  href="/devel/jobs/some-customer/map/">Parent Directory align="right">  - 
>  href="mouseover.png">mouseover.png 91K
>  href="org-info.js">org-info.js 70K
>  href="sitemap.html">sitemap.html1.8K
>  href="stylesheet.css">stylesheet.css4.2K
>  href="database.php">database.php  0 
>
>
>  href="zoom.png">zoom.png 13K
> 
> 
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
> http://www.w3.org/1999/xhtml";
> lang="de" xml:lang="de">
> 
> README
> 
> 
> 
> 
> 
>     html { font-family: Times, serif; font-size: 12pt; }
>   .title  { text-align: center; }
>   .todo   { color: red; }
>   .done   { color: green; }
>   .tag{ background-color:lightblue; font-weight:normal }
>   .target { }
>   .timestamp { color: grey }
>   .timestamp-kwd { color: CadetBlue }
>   p.verse { margin-left: 3% }
>   pre {
>   border: 1pt solid #AEBDCC;
>   background-color: #F3F5F7;
>   padding: 5pt;
>   font-family: courier, monospace;
> font-size: 90%;
> overflow:auto;
>   }
>   table { border-collapse: collapse; }
>   td, th { vertical-align: top; }
>   dt { font-weight: bold; }
>
>   .org-info-js_info-navigation { border-style:none; }
>   #org-info-js_console-label { font-size:10px; font-weight:bold;
>white-space:nowrap; }
>   .org-info-js_search-highlight {background-color:#00; color:#00;
>  font-weight:bold; }
>  ]]>
> 
>
> 
> 
>
> <= ---8<-8<-8<---
>
>
>
> Regards,
>
>   Sebastian

-- 
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover

Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Email: s.rose emma-stil de, sebastian_rose gmx de
Http:  www.emma-stil.de


___
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Export without TODO keywords

2008-12-05 Thread Daniel Clemente
Carsten Dominik <[EMAIL PROTECTED]> writes:

>
> (setq org-export-with-timestamps nil)
>
>
> also removes the DEADLINE and SCHEDULED keywords.

Nice! And it has the equivalent
#+OPTIONS: <:nil

  Then only „log notes“ exporting is not configurable.


Daniel


___
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] Release 6.14

2008-12-05 Thread Carsten Dominik

 Version 6.14
 

Date: 2008-12-06 07:44:20 CET


Overview
=

   - New relative timer to support timed notes
   - Special faces can be set for individual tags
   - The agenda shows now all tags, including inherited ones.
   - Exclude some tags from inheritance.
   - More special values for time comparisons in property searches
   - Control for exporting meta data
   - Cut and Paste with hot links from w3m to Org
   - LOCATION can be inherited for iCalendar export
   - Relative row references crossing hlines now throw an error

Incompatible Changes
=

Relative row references crossing hlines now throw an error
---

Relative row references in tables look like this: "@-4" which
means the forth row above this one.  These row references are
not allowed to cross horizontal separator lines (hlines).  So
far, when a row reference violates this policy, Org would
silently choose the field just next to the hline.

Tassilo Horn pointed out that this kind of hidden magic is
actually confusing and may cause incorrect formulas, and I do
agree.  Therefore, trying to cross a hline with a relative
reference will now throw an error.

If you need the old behavior, customize the variable
`org-table-error-on-row-ref-crossing-hline'.

Details


New relative timer to support timed notes
--

Org now supports taking timed notes, useful for example while
watching a video, or during a meeting which is also recorded.

- `C-c C-x .' ::
  Insert a relative time into the buffer.  The first time
  you use this, the timer will be started.  When called
  with a prefix argument, the timer is reset to 0.

- `C-c C-x -' ::
  Insert a description list item with the current relative
  time.  With a prefix argument, first reset the timer to 0.

- `M-RET' ::
  Once the time list has been initiated, you can also use the
  normal item-creating command to insert the next timer item.

- `C-c C-x 0' ::
  Reset the timer without inserting anything into the buffer.
  By default, the timer is reset to 0.  When called with a
  `C-u' prefix, reset the timer to specific starting
  offset.  The user is prompted for the offset, with a
  default taken from a timer string at point, if any, So this
  can be used to restart taking notes after a break in the
  process.  When called with a double prefix argument
  `C-c C-u', change all timer strings in the active
  region by a certain amount.  This can be used to fix timer
  strings if the timer was not started at exactly the right
  moment.

Thanks to Alan Dove, Adam Spiers, and Alan Davis for
contributions to this idea.

Special faces can be set for individual tags
-

You may now use the variable `org-tag-faces' to define the
face used for specific tags, much in the same way as you can
do for TODO keywords.

Thanks to Samuel Wales for this proposal.

The agenda shows now all tags, including inherited ones.
-

This request has come up often, most recently it was
formulated by Tassilo Horn.

If you prefer the old behavior of only showing the local
tags, customize the variable `org-agenda-show-inherited-tags'.

Exclude some tags from inheritance.


So far, the only way to select tags for inheritance was to
allow it for all tags, or to do a positive selection using
one of the more complex settings for
`org-use-tag-inheritance'.  It may actually be better to
allow inheritance for all but a few tags, which was difficult
to achieve with this methodology.

A new option, `org-tags-exclude-from-inheritance', allows to
specify an exclusion list for inherited tags.

More special values for time comparisons in property searches
--

In addition to `', `', `', and
`', there are more special values accepted now in
time comparisons in property searches:  You may use strings
like `<+3d>' or `<-2w>', with units d, w, m, and y for day,
week, month, and year, respectively

Thanks to Linday Todd for this proposal.

Control for exporting meta data


All the metadata in a headline, i.e. the TODO keyword, the
priority cookie, and the tags, can now be excluded from
export with appropriate options:

  VariablePublishing property   OPTIONS  
switch
 ---+- 
+

  org-export-with-todo-keywords   :todo-keywordstodo:
  org-export-with-tags:tags ta

Re: [Orgmode] Export without TODO keywords

2008-12-05 Thread Carsten Dominik

Hi Daniel,
On Dec 5, 2008, at 4:34 PM, Daniel Clemente wrote:


Carsten Dominik <[EMAIL PROTECTED]> writes:



(setq org-export-with-timestamps nil)


also removes the DEADLINE and SCHEDULED keywords.


Nice! And it has the equivalent
#+OPTIONS: <:nil

 Then only „log notes“ exporting is not configurable.


True, but this is not really metadata, but notes, which could
easily be confused with normal plain text.

I think I will stop here adding options for this purpose.

You can try to write a small function which removes these
as well, and call it from `org-export-preprocess-hook'.

- 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