0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-24 11:10:43 +00:00
Commit graph

11544 commits

Author SHA1 Message Date
Dan Davison cf31c1f134 Trying to write a project overview at top of rorg.org 2009-02-08 13:11:22 -05:00
Carsten Dominik bc5b23def7 org-choose.el: Append new interpretation for custom widget
org-choose.el did prepend its new interpretation to the list of
possible interpretations.  Now it appends, as it should.
2009-02-08 14:12:56 +01:00
Carsten Dominik 56692965b7 Add Tom Breton's org-choose.el as a contributed package 2009-02-08 13:57:37 +01:00
Carsten Dominik 36d39ad374 Add release dates to NEWS section 2009-02-08 10:26:28 +01:00
Carsten Dominik 4698e1bc0b Arrrgh, another css mistake 2009-02-08 10:13:22 +01:00
Carsten Dominik c19f315030 CSS: Make compatible with the FAQ 2009-02-08 09:38:46 +01:00
Bernt Hansen 3015cd1fb7 Fix grammar in description of org-refile-targets 2009-02-07 16:47:25 +01:00
Carsten Dominik f963dc3672 Website: Minor modification of test 2009-02-07 15:22:57 +01:00
Carsten Dominik 86c8daa1f6 Utilities: Make sure that version number changes do not touch snapshot links. 2009-02-07 15:20:32 +01:00
Carsten Dominik c92a7825b7 Website: Document the existence of snapshot release files. 2009-02-07 15:19:59 +01:00
Carsten Dominik 8be2c90ead Export: Fix problem with => in clock lines triggering verbatim text.
Reported by Daniel Clemente.
2009-02-07 12:33:37 +01:00
Carsten Dominik 1b3352c153 Website: Install Sebastian's new css file. 2009-02-07 01:03:59 +01:00
Eric Schulte bdae433d69 I added a couple of things listed below. I happy with the way this is
progressing so far.  It's nice to work on a project where everyone
uses org-mode.

additions:
- proposal for how we should implement the R-source-code blocks
- example of source code evaluation using org-eval-light.el
- notes section on evaluation of R code
- some scattered thoughts/suggestions
2009-02-06 15:45:59 -08:00
Carsten Dominik 521281bf3d Export: Count levels relative when doing subtree export.
William Henney writes:

    Consider a structure like this:

    * first
    ** second
    *** third
    **** fourth

    Currently, if I export the "third" sub-tree to html (via "C-c @
    C-x C-e h"), then "third" becomes an <h1> heading, but "fourth"
    becomes an <h5> heading. I would rather it were <h2>, i.e. that
    all heading levels be relative to the root of the sub-tree. Is
    there any way to achieve this?

This was not possible so far, but this commit measures the first
headline of the subtree and applies an offset to all level values.
2009-02-06 18:15:42 +01:00
Carsten Dominik 6eed51c304 Export: Fix regular expression for extracting drawers
Reported by Rainer Stengele.
2009-02-06 17:14:34 +01:00
Carsten Dominik 5f68200625 Tables: Allow sorting inactive time stamps.
Hsui-Khuern Tang writes:

   I have a table where one column consists of inactive dates, such as
   this:

     | Date             | OK? |
     |------------------+-----|
     | [2009-01-30 Fri] | x   |
     | [2009-01-27 Tue] | x   |
     | [2009-01-28 Wed] | x   |

   I can't sort the table by that column.  If I change the dates to
   active, then sorting (by time) works fine.  Is this behavior
   intentional?

Yes, intentional, because the same routine also does sorting of
entries and should prefer active time stamps.  However, I realize that
we can still look for an inactive time stamp when no active one can be
found.   This is what this commit implements.
2009-02-06 16:50:35 +01:00
Carsten Dominik 244084b33f Makefile: Fix snapshot release. 2009-02-06 16:47:41 +01:00
Carsten Dominik 717c7b22f5 Column View: Fix bug with capturing column view. 2009-02-06 15:01:36 +01:00
Carsten Dominik c1ecf88788 Improve documentation of `org-directory'. 2009-02-06 15:01:02 +01:00
Carsten Dominik 125a10319c ATTACH: Fix error in file commentary. 2009-02-06 15:00:27 +01:00
Carsten Dominik 1a66ae5445 Makefile: Implement making snapshots. 2009-02-06 14:59:56 +01:00
Carsten Dominik 477141d43c Export: Fix bug with exporting text before first heading
Skipping text before the first heading was broken, now it works again.
2009-02-06 12:44:52 +01:00
Carsten Dominik 44ed0394c4 Export: Stop LaTeX fragment processing in protected examples
LaTeX fragments like math environments were still matched inside
protected code examples.  Fixed now.
2009-02-06 08:24:18 +01:00
Dan Davison 0c418c5e2a rorg.org additions 2009-02-05 21:15:09 -05:00
Austin F. Frank eeaecdf7ee merge Eric and Austin's notes on special block types 2009-02-05 20:07:09 -05:00
Austin F. Frank 6201f77b1c rearrange Eric's notes 2009-02-05 19:59:19 -05:00
Austin F. Frank f173099443 merge Eric's notes and mine 2009-02-05 19:56:26 -05:00
Austin F. Frank cf1996f365 explanation and implementation notes for editing R code in org 2009-02-05 19:37:17 -05:00
Austin F. Frank 9ea78cd580 lisp file to give processing of #+BEGIN_R blocks. (require 'org-sweave) to use. 2009-02-05 19:26:07 -05:00
Austin F. Frank b0f2fe3390 ignore R history and R data files 2009-02-05 19:09:05 -05:00
Eric Schulte 79ca346be8 adding to rorg.org 2009-02-05 16:00:05 -08:00
Austin F. Frank a7c75dd901 Filled in more details about first objective. 2009-02-05 18:54:46 -05:00
Austin F. Frank 133b3b9748 Filled in first objective, linked to current implementation. 2009-02-05 18:47:20 -05:00
Eric Schulte 4985075c28 I was able to export the testing.Rorg example with org-exp-blocks.el
the results are in existing_tools/exp-blocks/example-for-r.html.  To
get this working I had to make two changes...

First in testing.Rorg, I changed every block as follows

from

 #+BEGIN_R:

 #+END_R

to

 #+BEGIN_R

 #+END_R

Second I fixed a broken regexp in org-exp-blocks.el

This is capable of running calculations on the R blocks and the inline
\R{} segments, but is not yet able to handle the image generation
commands.
2009-02-05 15:46:06 -08:00
Eric Schulte a3cf89b5b2 initial commit 2009-02-05 15:04:09 -08:00
Carsten Dominik 058265c32a Clock: Document persistence.
David Lord writes:

    I can see that org-clock-persistence-insinuate appeared in 6.11
    but I can't find it in the manual.  Does it need to be added?

Yes, right.
2009-02-05 14:52:24 +01:00
Carsten Dominik 5e9d37949b Export: Use color values in CSS for validation. 2009-02-04 23:54:46 +01:00
Carsten Dominik 723ac9ab57 Pullback: org-return-follows-link back to nil.
Setting this to t causes some issues which I need to think more
carefully about.
2009-02-04 23:48:36 +01:00
Carsten Dominik be9557bf44 Allow chaining sibling's scheduled time.
Patch by Andrew Hyatt

Andrew Hyatt writes:

    I like to schedule items I'm supposed to be working on, so I like
    when I complete a task that the next sibling task gets the
    schedule from the previous one.  This implements that kind of
    workflow with the org-depend contrib package.

    I've also added a few methods to org.el to make working with
    schedules & deadlines easier.
2009-02-04 15:37:58 +01:00
Carsten Dominik 4e973c6b82 Agenda: New skipping conditions timestamp and nottimestamp.
The org-agenda-skip-xxx-if functions can now also handle a `timestamp'
and a `nottimestamp' condition.
2009-02-04 15:19:21 +01:00
Carsten Dominik 05d460cfb5 Bugfix: Add provide to contrib/lisp/org-exp-blocks.el 2009-02-03 00:08:19 +01:00
Carsten Dominik 93ec228f36 Push version number to 6.21trans 2009-02-03 00:06:22 +01:00
Carsten Dominik 0cea6e3186 Website: Document the final version of Org in Emacs 23.1
It will be 6.21b.  No further features, just bug fixes will go into
Emacs CVS during the pretest that is now running.
2009-02-02 22:56:53 +01:00
Carsten Dominik c81bdc7757 Fix typos. 2009-02-02 22:19:59 +01:00
Carsten Dominik 0b424cb238 Release 6.21b 2009-02-02 21:42:20 +01:00
Carsten Dominik cb06e86d67 Fix typo. 2009-02-02 21:40:40 +01:00
Carsten Dominik 0edabb9408 TODO statistics: Fix bug with counting and hook calling
When there were multiple cookies in a headline, the counting would be
double.  Also the hook got called always, even if no cookie was
present.
Fixed now.
2009-02-02 21:40:29 +01:00
Carsten Dominik 2fa17ebf74 Release 6.21a 2009-02-02 14:23:54 +01:00
Carsten Dominik c11a0b2de9 Dependencies: Make them work reliably even if variables are set too late.
Turns out a number of people set their variables too late so that
activating dependencies does not work correctly.  We now double-check
in the mode hook that everything is in order.....
2009-02-02 13:47:18 +01:00
Carsten Dominik cdc6824199 Minor fixes. 2009-02-02 13:33:42 +01:00