Leo | 1 May 2007 01:40
Face
Picon
Gravatar

Re: Export to PDF

----- Denis Bueno (2007-04-18) wrote:-----

> I'm somewhat mystified that I can't seem to find support for this
> feature in Org mode. I looked through the manual and mailing list, but
> it seems no one has used -- or even wanted -- this feature. However,
> it's one of the (very few) things I can find lacking in org-mode. Is
> there a chance this will be implemented in the future?
>
> LaTeX-heavy files especially would benefit from export-to-pdf (and
> indeed, this is why I want it). The lack of this feature is the one
> thing that gives me pause about using org-mode to take notes in
> college.

I also found this extremely useful. Is it now possible to export .org to
.muse file?

--

-- 
Leo <sdl.web AT gmail.com>                         (GPG Key: 9283AA3F)
Bernt Hansen | 1 May 2007 18:40
Picon
Picon
Favicon

[PATCH] Fix typo in documentation

diff -ru old/org.el new/org.el
--- old/org.el  2007-05-01 12:38:48.000000000 -0400
+++ new/org.el  2007-05-01 12:39:20.000000000 -0400
 <at>  <at>  -1943,7 +1943,7  <at>  <at> 
   :type 'boolean)

 (defcustom org-agenda-start-with-follow-mode nil
-  "The initial value of follwo-mode in a newly created agenda window."
+  "The initial value of follow-mode in a newly created agenda window."
   :group 'org-agenda-startup
   :type 'boolean)

--

-- 
Bernt
Bernt Hansen | 3 May 2007 16:49
Picon
Picon
Favicon

Problem exporting visible with ARCHIVE tag

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
(Continue reading)

Bake Timmons | 3 May 2007 18:04
Favicon

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

diff -ru man/org.texi /tmp/new-man/org.texi
--- man/org.texi	2007-04-19 12:42:53.000000000 -0400
+++ /tmp/new-man/org.texi	2007-05-03 11:55:48.000000000 -0400
 <at>  <at>  -615,7 +615,7  <at>  <at> 
  <at> table  <at> kbd
  <at> kindex  <at> key{TAB}
  <at> item  <at> key{TAB}
- <at> emph{Subtree cycling}: Rotate current subtree between the states
+ <at> emph{Subtree cycling}: Rotate current subtree among the states

  <at> example
 ,-> FOLDED -> CHILDREN -> SUBTREE --.
 <at>  <at>  -637,7 +637,7  <at>  <at> 
  <at> kindex S- <at> key{TAB}
  <at> item S- <at> key{TAB}
  <at> itemx C-u  <at> key{TAB}
- <at> emph{Global cycling}: Rotate the entire buffer between the states
+ <at> emph{Global cycling}: Rotate the entire buffer among the states

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

  <at> example
 ,-> (unmarked) -> TODO -> DONE --.
(Continue reading)

Niels Giesen | 3 May 2007 19:33
Picon
Gravatar

Timestamp increment inside tables

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.000000000 -0100
+++ org2.el	2007-05-03 19:24:00.776923788 -0100
 <at>  <at>  -6495,7 +6495,11  <at>  <at> 
 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))
 <at>  <at>  -6526,5 +6530,8  <at>  <at> 
 	  (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"))))

(Continue reading)

Giovanni Ridolfi | 4 May 2007 11:12
Picon
Favicon

possible bug in org.elc 4.73 ?

Hello Crasten, 
              I have a problem with Org-mode 4.73 compiled
by me.

My emacs version is:
GNU Emacs 22.0.95.1 (powerpc-unknown-linux-gnu, GTK+ Version 2.8.20) 
of 2007-03-02 on malo, modified by Debian 

the org-version shipped with my emacs: org-4-67b

I wanted the latest org version so I compiled org-4.73 
following the instructions in the documentation.
Org-mode didn't work. 
Enabling debugger I got this error:

Debugger entered--Lisp error: (void-variable org-org-menu)
  org-mode()
  set-auto-mode-0(org-mode nil)
  byte-code("ŸÅ‰ƒ/
Giovanni Ridolfi | 4 May 2007 12:56
Picon
Favicon

few bugs in HTML export and wrong links

Hello everybody,
                it seems to me that I found 

3 bugs in the HTML exporter
and 
2 missing links in Crasten's site ;-)

Please, find attached the file that shows such bugs & missing links

Giovanni

------------------- org-file with bug report --------------
#+TITLE:     foo.org
#+LANGUAGE:  en
#+OPTIONS:   H:3 num:t toc:t \n:t  <at> :t ::t |:t ^:t *:t TeX:t LaTeX:nil skip:t
* Org [[http://staff.science.uva.nl/~dominik/Tools/org/org.html][mode]]
** TODO  [0/3] :BUGS:HTML:export:
   + [ ] It does not preserve the links in the TOC for the HTML export
         (see * Org _mode_ )
   + [ ]  the :QUOTED text following a list is indented :-( /needs a 
         blank line + a line with a character to be *not* indented/ :
: is this indented? yes!
   +  please, try it again!
a 
:Now it is not indented anymore
: wow!
   + [ ] option \n:t does not preserve linebreaks I typed after the
     full stops

Now the verse: [with a "\\" linebreak ;-)] \\
(Continue reading)

Carsten Dominik | 1 May 2007 12:59
Picon
Picon
Favicon

Re: feature request: org-table-import without temp files


On Apr 27, 2007, at 20:28, Scott Otterson wrote:

>  Lately, I've been creating a lot of tables from text from text files 
> containing a mix of English text and columnar data (the stuff I'm 
> importing).  This is pretty easy to do in org-mode:  save the columnar 
> data to a temporary file and then run M-x org-table-import.  But it 
> would be even easier if I could import the data without the temp file 
> step.
>
>  One way to do this could be to add a new function, 
> org-table-import-from-kill-ring:
> 	1 	In the original text file, copy the tabular part into the kill 
> ring with C-w or equivalent
> 	2 	In the org file, with the cursor at the place for the new table, 
> type M-x org-table-import-from-kill-ring

     2   In the org-file, with the cursor at the place for a new table,
         type

         C-y           to yank the data
         C-x C-x       to activate the yank as the region
         C-c |         to convert the region to a table.

I guess this is easy enough?

- Carsten

>  Another way could be to add a new function, 
> org-table-import-to-kill-ring
(Continue reading)

Carsten Dominik | 1 May 2007 13:15
Picon
Picon
Favicon

Re: Bug? tasks DONE with DEADLINE show up in diary on DEADLINE

This is on purpose.

The fact that there is a deadline for something on that
date is still shown in the agenda, even if you have done the item
aready.  This is because I use deadline sparsely, only if there is
really a strict date associated with an item.  Maybe you are using
itin a more prolific way?  I guess we could have a variable to make
deadlines associated with DONE items magically disappear...

- Carsten

On Apr 27, 2007, at 15:51, Denis Bueno wrote:

> The following shows up in my diary for today:
>
>    spring2007: 10:30...... Deadline:   DONE CH 23 HW 4
>    spring2007: 10:30...... Deadline:   DONE CH 23 HW 3
>
> That output comes from the following diary sexp entry:
>
>  &%%(org-diary)
>
> I am using Org-mode 4.73 and GNU Emacs 22.0.98.2
> (powerpc-apple-darwin8.9.0, Carbon Version 1.6.0) of 2007-04-23.
>
> -Denis
>
>
> _______________________________________________
> Emacs-orgmode mailing list
(Continue reading)

Carsten Dominik | 1 May 2007 13:54
Picon
Picon
Favicon

Re: Re: A few problems


On Apr 26, 2007, at 16:11, Leo wrote:

> ----- Bastien (2007-04-26) wrote:-----
>
>> - The relevant #+ARCHIVE: is not taken into account when archiving
>> headines in a narrowed buffer.
>
> There is another bug regarding narrowing.
>
> When the buffer is narrowed to a heading and then using remember (`C-u
> C-c C-c') to store a note to another heading will fail.

To another note in the same file?  Your description is not
quite clear to me.  Which buffer is narrowed, where does
the note point and where do you want to store it?

- Carsten

Gmane