Carsten Dominik
2c0291287a
Push version number to 6.11pre01.
...
We are moving toward the next release, please test!
2008-11-06 09:14:14 +01:00
Carsten Dominik
6bccfbc7d5
Remove forgotten (debug) form.
...
The last push contained a debug form which I had put there for testing.
2008-11-06 09:11:56 +01:00
Carsten Dominik
de9e605297
Allow links to contain brackets
...
Links in the standard form [[link][description]] are allowed to have
brackets in them when these are escapes %5B and %5D. Creating links
through the Org link interface automatically does this conversion.
However, as noticed by Paul R, there is a bug when actually following
such links, when the link will be cut off at the first closing bracket
in the link.
This patch fixes this problem by adjusting the appropriate regexp.
2008-11-06 08:56:13 +01:00
Carsten Dominik
a1d457133e
Protect the attachment directory from getting a final newline.
...
This is a first attempt to fix a strange bug reported by Bernt Hansen,
where two attachment directories are created, one of them with a final
newline.
2008-11-05 23:43:04 +01:00
Carsten Dominik
413264882c
Introduce function to create links to attachments.
...
This patch introduces two new functions in org-attach.el,
`org-attach-expand', and `org-attach-expand-link'. Both take a file
name as an argument, assume that this file is an attachment of the
current entry, and return the full path to this file or a
"file:..." link to it, respectively.
With these functions, it becomes very easy to use link abbreviations
to create a new link type to attachments:
After
(setq org-link-abbrev-alist '(("att" . org-attach-expand-link)))
links like [[att:file.txt]] will work.
2008-11-05 17:54:59 +01:00
Carsten Dominik
c4e9626bf4
Show state changes in agenda logbook mode.
...
Org records (depending on setup) various information about progress
achieved with projects and tasks. It can record when an item is done
(when it is "closed"), it can record time spent working on these
entries (clocking), and it can record state changes.
In the daily/weekly agenda, turning on logbook mode with the `l' key
will lists the tasks closed or clocked on a day.
This patch implements showing recorded state changes in the agenda
logbook. By default, showing state changes is not turned on. But you
can configure the new variable `org-agenda-log-mode-items' to trigger
inclusion of state changes. An alternative way is to press `C-u l' in
the agenda, to temporarily force inclusion of all possible entries
(closed, clock, state) into the agenda display.
In passing, this patch renames the function `org-agenda-get-closed' to
the now more appropriate `org-agenda-get-progress'. The old name
continues to be available as an alias, but its use is deprecated.
2008-11-05 17:26:52 +01:00
Carsten Dominik
8787f59cef
`C-u C-u C-c C-o' forces opening in an external application
...
Org-mode uses a special setup with a number of different customization
variables to specify how a file should be opened when following a
:file:..." link with `C-c C-o'. By using a `C-u' prefix, it was
possible to overrule the customized setup and to force opening the
file in Emacs.
Samuel Wales requested to amend this process, so that a double prefix
argument would do the opposite: force opening the application *outside*
of Emacs, using a system default application. This is what this patch
implements.
Internally this works through a new entry in system specific constants
`org-file-apps-defaults-gnu', org-file-apps-defaults-macosx', and
`org-file-apps-defaults-windowsnt'. The new entry has the car
`system' and specifies the command that should be used for the double
C-u calls. As before, the user option `org-file-apps' can overrule
these default settings.
Note that all this only applies to following "file:" links, and does
not make a difference for, for example, "http:" links.
2008-11-05 10:46:20 +01:00
Carsten Dominik
a80b84425b
Abbreviate absolute file names in links.
...
This is a bug fix. When the option `org-link-file-path-type' has the
value `adaptive', absolute file names would not be abbreviated if they
are relative to the users home directory. For any other values of
this variable except `noabbrev', absolute links are in fact
abbreviated, so the previous behavior is an inconsistency,
as noticed by Matt Lundin.
This patch fixes this problem and makes sure that also in this case,
file names are abbreviated.
Finally, the patch also fixes a structural bug that would ignore
the double C-u prefix if it was given.
2008-11-04 09:43:58 +01:00
Carsten Dominik
7d1e644715
Fix inserting headlines at the end of the buffer.
...
When the cursor is at the end of the buffer but not at the beginning
of a line, inserting a new headline with C-RET did insert the stars
into the last line, without adding the needed newline. The new line
is now added.
2008-11-03 22:18:25 +01:00
Carsten Dominik
b87eb74600
Fix a typo in docstring.
...
Thanks to Ben Alexander for the patch.
2008-11-03 22:12:58 +01:00
Carsten Dominik
9d13e3c536
Improve XHTML validation.
...
Horizontal rules are not allowed inside a <p>...</p> structure.
We now explicitly exit paragraph mode before inserting the <hr/> tag.
2008-11-03 21:54:28 +01:00
Carsten Dominik
01989e543a
Fix quoting bug TODO state change code.
...
In a recent patch, I forgot to quote a new variable in an expression
which tests if the variable is bound. This has been fixed now.
2008-11-03 21:38:49 +01:00
Carsten Dominik
ca27c1d0b3
Reverse the changes that quoted " to "
...
This change inerferred with other functionality of the exporter,
causing all kinds of issues.
2008-11-03 21:08:02 +01:00
Carsten Dominik
c9cd22e861
Collect footnotes in HTML export.
...
All footnotes are now collected and put into a separate <div> at the
end of the HTML document, but before the footer.
2008-11-03 21:05:12 +01:00
Carsten Dominik
15b4ae9038
Process link descriptions in HTML export like any content.
...
Link descriptions where so far exported literally. However, really
they need to escape special characters and have TeX-like macros
interpreted and emphasis enabled just like any other text.
This patch makes sure link descriptions are passed through a new
filter, `org-export-html-format-desc' which does just that.
This fix is a follow-up to a report by Sebastian Rose.
2008-11-03 14:26:18 +01:00
Carsten Dominik
cceb998feb
Fix return value of `org-publish-find-title'.
...
My previous patch to remove buffers created just for retrieving the
page title did mess up the return value of this function. This has
now been fixed.
2008-11-03 13:52:16 +01:00
Carsten Dominik
0dc772285e
Cleanup to make the compiler happy.
...
This is a regular task. Follow up on the compiler message and try to
fix them so that the compiler will compile these files happily and
silently.
2008-11-03 13:44:42 +01:00
Carsten Dominik
293d3311d6
Check for horizontally-split windows when shrinking a window.
...
So far, Org used either `fit-window-to-buffer' or
`shrink-window-if-larger-than-buffer' without any further checks when
displaying one of its many help and selection buffers. This can cause
problems if the user has set up Emacs to split windows horizontally
rather than vertically, because the window being shrunken then may be
side-by-side with another window, and shrinking the height of one will
also change the other.
With this patch, shrinking a window always goes through the new
function `org-fit-window-to-buffer' which only acts if the current
window spans the whole width of the frame.
Furthermore, this function also helps with compatibility, because it
falls back to `shrink-window-if-larger-than-buffer' if
`fit-window-to-buffer' does not exist, as is the case on older version
of Emacs and XEmacs.
2008-11-03 13:38:25 +01:00
Carsten Dominik
413d9b73b0
Make href's in XHTML output valid.
...
field (or in any other attribute value) must be written as "&" in
order to be valid XHMTL. This patch implements a new filter function
through which every href value is passed, and which enforces this
standard.
This is was triggered by a report by Sebastian Rose.
2008-11-03 12:05:30 +01:00
Carsten Dominik
d7a7ad915f
intermediate
2008-11-03 09:14:10 +01:00
Carsten Dominik
0bbf3a9bd6
Improve feedback when completing repeated tasks from agenda view.
...
When marking a repeated entry DONE in the daily or weekly agenda, that
task would previously still be shown as TODO, because the repeater
immediately restores the TODO state after moving the time stamp. This
is bad feedback.
This problem was hard to fix. Because the same line may be present in
other lines in the same weekly agenda, we cannot simply update all
lines related to this entry.
What we do now is this: Before the repeater does its work in shifting
the time stamp and resetting the TODO keyword, we take a snapshot of
the headline as it looks then. And then, when we update the agenda
view, we change only the line at the cursor instead of all lines
related to this entry. We also make sure that this is only so if the
cursor is in a daily/weekly agenda, on TODAY's date.
There still remain possible inconsistencies. For example, if you have
a daily repeating task in the weekly agenda, and you move the cursor a
few days into the future and mark it DONE there, the entry will
actually be marked DONE for today, but still show up in today's task
list as TODO. refreshing the agenda will fix the display in such an
unlikely case.
Thanks to Jack ??? for noticing and reporting this issue.
2008-11-03 08:36:30 +01:00
Carsten Dominik
cb1bbaf244
Don't keep buffers visited during index publishing.
...
The index generation of org-publish does briefly visit all files in
order to extract the correct page title. Visiting is necessary,
because the title may be set by the first line in the buffer, by a
Before this patch, this would cause the generation of a large number
of buffers, one for each file mentioned in the index. This patch
arranges for these buffers to be removed again. However, buffers
which were already present will not be removed.
There is still one open problem: The files to be published are
visited twice, one for publishing them, a second time for creating the
index. Visiting causes some overhead, and we would like to limit this
overhead. For now, however, this is not done.
2008-11-02 17:13:25 +01:00
Carsten Dominik
bdc93a9cd2
Mark style definitions as unparsed CDATA.
...
Org-mode does sometimes included CSS definitions directly
into an exported XHTML file. To pass validation tests
for XHTML, these sections need to be wrapped in
order to pass as CDATA, not PCDATA. This patch
(written by Sebastian Rose) does implement this change.
It also fixes some typos.
2008-11-02 17:01:50 +01:00
Carsten Dominik
d1f91f7e93
Re-introduce the org-publish-validate-link function.
2008-11-02 16:20:40 +01:00
Carsten Dominik
960ba70e7f
ChangeLogs for the recent org-plot updates.
2008-11-02 15:10:18 +01:00
Carsten Dominik
35265f29f6
Fix problems with heading creation when subtree is hidden.
2008-11-02 08:43:18 +01:00
Carsten Dominik
33ea179f50
Stop linking to directories in sitemap.
2008-11-02 08:08:32 +01:00
Charles Sebold
94c3bfd4e7
org-plot and timestamps
...
On 28 Oct 2008, Eric Schulte wrote:
> Hi Charles, The patch looks great, I vote we drop it 'as is' into
> org-plot.el. The only enhancement that comes to mind would be to
> expose the `time-ind' variable as a plot option. Allowing users to
> specify different time formats, but really if they're that
> sophisticated in their use of gnuplot, then they can do that on their
> own through the `set:' option. Thanks for the addition! -- Eric
If I understand you correctly, then what we want to expose is the
"timefmt" that is put into the data file and then passed to gnuplot.
The following patch is a complete one against current which adds this
(it works for me, at least), and documents the new +PLOT option
behavior.
The one thing I'm not sure about is my method of passing the timefmt
parameter all the way into the temp file creation function. I made a
buffer-local variable there to do it. That seemed the least intrusive
way to accomplish this, but it seemed like poor practice. Thoughts?
You know, I really ought to allow a person to customize this variable (I
mean, using customize).
------------------------------------------------------------------------
Changes in origin/master
Modified doc/org.texi
2008-11-02 08:01:13 +01:00
Carsten Dominik
8c1e5c2d17
Improve XHTML validation.
2008-11-02 07:59:09 +01:00
Carsten Dominik
d3ad08bcc0
Fix bug when changing timestamp type.
2008-11-01 14:45:06 +01:00
Carsten Dominik
fde28dbdb1
Remove language attribute from script tag.
...
This did cause validation problems.
2008-11-01 13:55:59 +01:00
Carsten Dominik
b52b4159dc
Removed filtered text from the exported agenda.
2008-11-01 13:48:54 +01:00
Carsten Dominik
e3be5a3c08
Speed-up access to TODO keywords during tag searches.
...
Using a property-like expression like TODO="NEXT" it a tag
search now bypasses the property API and is therefore fast.
2008-10-31 09:11:52 +01:00
Carsten Dominik
75402a383e
Fix bug when testing CLOSED property.
2008-10-29 17:42:58 +01:00
Carsten Dominik
c6455acf3f
New function org-fit-window-to-buffer.
...
This function only does its job if no side-by-side
window would be affected as well. Also, if
fit-window-to-buffer is not defined, use
shrink-window-if-larger-than-buffer instead.
2008-10-29 14:55:22 +01:00
Carsten Dominik
17c55f1b10
Make gnus links use message-id.
2008-10-29 09:54:15 +01:00
Carsten Dominik
8f00f6226f
Set HTML tags for ~verbatim~ emphasis.
2008-10-28 20:29:28 +01:00
Carsten Dominik
f116b0f325
Merge branch 'for-carsten' of git://git.norang.ca/org-mode
2008-10-28 20:10:00 +01:00
Carsten Dominik
13d2cb4638
Fix bug with redirecting remember target using prefix arguments.
2008-10-28 18:12:56 +01:00
Bernt Hansen
cbc72efe27
Fix typo and documentation for remember filing to clocking functions
2008-10-28 12:03:01 -04:00
Carsten Dominik
73d6659faa
Allow to turn off the default style.
2008-10-28 16:35:51 +01:00
Carsten Dominik
cff8571c31
Fix priority bug in icalendar export.
2008-10-28 15:39:45 +01:00
Carsten Dominik
99572d93b2
Bug fixes.
2008-10-28 09:52:52 +01:00
Carsten Dominik
7c40034fd8
Remove the dependence on time-stamp.el.
2008-10-28 09:46:42 +01:00
Carsten Dominik
07657f3e80
Yank adjusted trees.
...
When yanking a cut/copied subtree or a series of trees, even
the nomal yank key `C-y' does now adjust the level of the tree
to make it fit into the current outline position, without
loosing its identity, and without swallowing other subtrees.
This uses the command `org-past-subtree'. An additional
change in that command has been implemented: Normally, this
command picks the right outline level from the surrounding
*visible* headlines, and uses the smaller on. So it the
cursor is between a level 4 and a level 3 headline, the tree
will be pasted as level 3. Now, if the cursor is actually
*at* the beginning of a headline, the level of that headline
will be used. So lets say you have a tree like this:
* Level one
** Level two
(1)
(2)* Level one again
with (1) and (2) indicating possible cursor positions for the
insertion. When at (1), the tree will be pasted as level 2.
When at (2), it will be pasted as level 1.
If you do not like `C-y' to behave like this, configure the
variable `org-yank-adjusted-subtrees'.
Thanks to Samuel Wales for this idea and a partial implementation.
2008-10-28 09:07:56 +01:00
Carsten Dominik
8cc9b150c8
Implement automatic level adjustment for yanked subtrees.
2008-10-28 08:49:37 +01:00
Carsten Dominik
67070b0289
Initial documentation of the new clock features.
2008-10-28 07:36:33 +01:00
James TD Smith
6ca2053982
Add clock persistence.
...
Clock-related data are saved when exiting emacs ands restored when emacs
is restarted. The data saved include the contents of `org-clock-history',
and the running clock, if there is one.
To use this, you will need to add
(require 'org-clock)
(org-clock-persistence-insinuate)
to your .emacs and either add
(setq org-clock-persist t)
(setq org-clock-in-resume t)
or set those options to t in custom.
This patch requires the clock resume patch.
Add missing blank line to changelog
2008-10-27 23:04:25 +00:00
James TD Smith
a70426f115
Add clock resuming.
...
If the option `org-clock-resume' is t, and the first clock line in an entry is is
open, clocking into that task resumes the clock from that time.
2008-10-27 23:03:10 +00:00
Carsten Dominik
407a84af1b
Yank subtree back in a level-adjusted way.
...
Now C-y does insert subtrees intelligently.
2008-10-27 17:57:53 +01:00
Carsten Dominik
2eb3594c5f
Allow inactive time stamps in time comparisons.
2008-10-27 12:14:37 +01:00
Carsten Dominik
3a9dc0c5ea
Unhide locations visited by saveplace.el
2008-10-27 09:41:37 +01:00
Carsten Dominik
8c022e1b72
Fix lockfile/symlink problem in org-publish.
...
Richard Riley and Sebastian Rose hunted down this bug.
2008-10-27 07:44:12 +01:00
Carsten Dominik
0df8bfb77c
Fix site-map directory bug.
...
Report and patch by Sebastian Rose.
2008-10-26 07:45:13 +01:00
Carsten Dominik
1f892af3e6
Fix typo.
2008-10-26 06:58:28 +01:00
Carsten Dominik
523cf1fe31
Release 6.10c.
2008-10-25 12:56:42 +02:00
Carsten Dominik
3794f574e2
Release 6.10b.
2008-10-25 12:54:49 +02:00
Carsten Dominik
d374f9e217
Fix bug in tags filter related to case-sensitive comparisons.
2008-10-25 12:40:13 +02:00
Carsten Dominik
88d4405e86
Release 6.10a.
2008-10-24 23:16:42 +02:00
Carsten Dominik
2569aee1d3
Cleanup some typos in ChangeLog.
...
Patch by James TD Smith.
2008-10-24 07:03:15 +02:00
Carsten Dominik
794839f1da
Release 6.10.
2008-10-23 09:19:43 +02:00
Carsten Dominik
6b10b1931b
Fix typo.
2008-10-23 07:09:54 +02:00
Carsten Dominik
78d2d64353
Bug fix.
...
Patch from Peter Jones.
2008-10-23 07:07:01 +02:00
Carsten Dominik
e22ac452ad
Fix ASCII export bug when exporting from indirect buffer.
2008-10-22 17:37:24 +02:00
Carsten Dominik
7d30bd5c47
Fixed bug with timestamp increment during S-RET copy in tables.
2008-10-22 17:29:27 +02:00
Carsten Dominik
b7db897e6d
Moving toward the 6.10 release.
2008-10-22 09:57:42 +02:00
Carsten Dominik
722cbe8f5f
Make some features of org-mouse optional.
...
New variable org-mouse-features.
2008-10-22 09:41:15 +02:00
Carsten Dominik
61cf8cd7ac
Modify behavior at headling insertion.
...
C-RET now always inserts a heading, never an item.
The folding state of the heading before the newly inserted one
is preserved.
Patch by Peter Jones.
2008-10-22 07:53:22 +02:00
Carsten Dominik
69bf8ef2b4
Fix bug with sibling archiving on top level.
2008-10-21 22:29:03 +02:00
Carsten Dominik
5f432e324c
Fix parenthesis bug.
2008-10-21 20:15:09 +02:00
Carsten Dominik
e630e2c559
Fix bug.
2008-10-21 18:57:03 +02:00
Carsten Dominik
6b76356beb
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-10-21 18:22:46 +02:00
Carsten Dominik
337d2f2762
Fix a giant, horrible bug in org-publish.
...
When publishing, org was more or less trying to export random files.
2008-10-21 18:21:52 +02:00
Carsten Dominik
b4f50fc988
Minor changes, to keep the compiler happy.
2008-10-21 17:54:04 +02:00
Bastien Guerry
8ba8432e46
Added \usepackage{graphicx} to the list of default packages.
2008-10-21 10:57:52 +02:00
Carsten Dominik
2dc6b163c2
Fixed bugs in filtering, and made filtering persist through agenda refresh.
2008-10-21 07:53:01 +02:00
Carsten Dominik
a086743480
Merge branch 'filtering'
...
Conflicts:
lisp/ChangeLog
2008-10-20 23:32:22 +02:00
Carsten Dominik
aead878b46
Implement narrowing existing agenda filters, and effort filters.
2008-10-20 23:01:23 +02:00
Carsten Dominik
713328eb60
Intermediate
2008-10-20 09:38:23 +02:00
Carsten Dominik
c7ff3d46e1
Fix bug with missing state notes when calling org-todo with prefix arg.
...
Reported by Robert Goldman.
2008-10-20 08:21:41 +02:00
Carsten Dominik
24d80b3928
Add CATEGORY as an retrievable entry property.
2008-10-20 08:10:13 +02:00
Carsten Dominik
a6e5bc531d
Fix bug in positioning notes.
...
Patch by James Smith.
2008-10-20 07:47:16 +02:00
Carsten Dominik
666d64ba82
Include changes from downstream Emacs.
2008-10-19 20:55:36 +02:00
Carsten Dominik
2f3e5eaa2b
Fix bug with table tag in table html export.
...
Reported by
2008-10-18 18:04:38 +02:00
Carsten Dominik
a669549843
Make PDF export work under windows.
2008-10-18 15:21:02 +02:00
Carsten Dominik
79e0ca32d2
The the problem of partial name matches with LaTeX entities.
2008-10-18 10:44:41 +02:00
Carsten Dominik
25b227e5ca
Fix sub/superscript issues in LaTeX export.
2008-10-17 19:32:30 +02:00
Carsten Dominik
9197aa42b0
Better format for negative time ranges.
2008-10-17 08:37:06 +02:00
Carsten Dominik
a0d9ca6c52
Autoload the new export commands.
2008-10-17 08:36:46 +02:00
Carsten Dominik
b19428d110
Bind variable sign.
2008-10-17 07:25:25 +02:00
Carsten Dominik
c9c61151a1
Autoload the org-publish-project alias.
2008-10-17 07:23:26 +02:00
Carsten Dominik
fe57640127
Compute negative clock intervals correctly.
...
Patch by Chris Leyton.
2008-10-17 07:22:58 +02:00
Carsten Dominik
07f51279b2
Make drawer skipping for note insertion more sensible.
2008-10-16 18:35:17 +02:00
Carsten Dominik
f70127dd3f
Allow org-clock-in-switch-to-state to be a function.
...
Allow org-clock-in-switch-to-state to be a function. This lets you have
different clocked in states for different TODO keyword sets, for example
(defun ahkt-clock-state (state)
(cond ((string= state "TOREAD") "READING")
((string= state "TOWATCH") "WATCHING")
(t state)))
Also fix indentation on clock lines, and empty clock drawers when they are
inserted.
2008-10-16 18:26:43 +02:00
Carsten Dominik
0fc4cdd17d
Fixed typo.
2008-10-16 16:50:28 +02:00
Carsten Dominik
55b4aa403a
Setting tags is now on `C-c C-q'.
...
C-c C-c still works with the cursor in a headline,
but I wanted a special binding as the default, mainly
in order to be able to set tags in a remember buffer.
2008-10-16 14:04:04 +02:00
Carsten Dominik
329a7a7d34
Implement tag changes triggered automatically by TODO state changes.
2008-10-16 09:54:30 +02:00
Carsten Dominik
a1d3086419
New option `org-log-state-notes-insert-after-drawers'.
...
Default is nil.
2008-10-16 06:49:55 +02:00
Carsten Dominik
52fa7f817b
Add commands to export to PDF.
...
This works by creating LaTeX first, and then processing it.
2008-10-15 17:21:52 +02:00
Carsten Dominik
fd4df45133
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-10-15 13:12:03 +02:00
Carsten Dominik
491702483a
Fix table parsing bug.
2008-10-15 13:11:48 +02:00
Bastien Guerry
b9c707b844
Added arch-tags from upstream Emacs for org-plot.el, org-list.el and org-attach.el
2008-10-15 10:20:24 +02:00
Carsten Dominik
f0340c404a
*** empty log message ***
2008-10-15 09:18:03 +02:00
Carsten Dominik
926054b3e5
Fix bug with LaTeX lists export in protected regions.
2008-10-15 09:17:43 +02:00
Carsten Dominik
b9f84eca4c
require cl in org-agenda.el.
2008-10-14 20:45:31 +02:00
Carsten Dominik
10fc47f234
Make note about case-fold-search
2008-10-14 18:41:58 +02:00
Carsten Dominik
16e030620a
Improve environment quoting for LaTeX export.
2008-10-14 18:11:01 +02:00
Carsten Dominik
f3dda5ba2c
Fix infinite loop when rescheduling from agenda with tags filtering.
2008-10-14 16:50:02 +02:00
Carsten Dominik
0cfc76df3f
Allow sections to be represented as environments in LaTeX export.
2008-10-13 07:26:05 +02:00
Carsten Dominik
a5b97f431e
Set coding system of org-plot to unix.
2008-10-12 15:25:56 +02:00
Carsten Dominik
4574d894ce
Release 6.09a.
2008-10-12 07:36:18 +02:00
Carsten Dominik
5fc664d683
Documentation updates.
2008-10-10 20:59:57 +02:00
Carsten Dominik
5515343107
New default for `org-file-apps'.
...
The new default asks to open all those files in Emacs, for which
`auto-mode-alist' does contain an entry. The reasoning is that
Org-mode users are Emacs users and probably like to use exactly
this setup. The only exception configured as such by default is
that files with html or xhtml extensions will be opened using
the system default, most likely a browser.
2008-10-10 13:07:36 +02:00
Carsten Dominik
d6542dba1a
Merge branch 'fix-latex-internal-links'
...
Conflicts:
lisp/ChangeLog
2008-10-10 11:43:21 +02:00
Carsten Dominik
5b6a8a55e8
Fix problems with internal links for LateX export.
2008-10-10 11:42:01 +02:00
Carsten Dominik
76bc40a6e3
Keep artist-mode editing from eating empty lines.
2008-10-10 08:50:23 +02:00
Carsten Dominik
1e3198b821
intermediate
2008-10-10 08:46:05 +02:00
Carsten Dominik
5ebc1a7982
Release 6.09.
2008-10-09 13:18:25 +02:00
Carsten Dominik
82f1c863ee
Cleaning up attachment support.
...
Among other things, introduce a security query before deleting
the entire attachment directory. And add a new method to delete
a single attachment.
2008-10-09 12:19:43 +02:00
Carsten Dominik
b0ce57d27d
Fix bug with getting list of attachments.
2008-10-08 14:59:14 +02:00
Carsten Dominik
6fe6819fa4
Make recording attachment list in property optional.
2008-10-08 12:46:40 +02:00
Carsten Dominik
1da27893e9
Make strings in `org-file-apps' being interpreted as regexps.
...
Also, a new way to make org-file-apps direct all files for
which Emacs has a major mode to be edited by Emacs itself.
2008-10-08 12:46:09 +02:00
Carsten Dominik
57e912c275
Push version number to 6.09pre01.
2008-10-07 15:45:58 +02:00
Carsten Dominik
8518c9ed81
Allow different methods to get an attachment into the directory.
...
Supported methods are copy, link, and move.
2008-10-07 14:28:21 +02:00
Carsten Dominik
5548357d71
Fix bug with anniversaries in org-bbdb.el.
2008-10-06 20:45:02 +02:00
Carsten Dominik
dc71bfc007
Fix reverse interpretation of the list value o `org-use-tag-inheritance'.
2008-10-06 18:53:51 +02:00
Carsten Dominik
2d33de3600
Tag entries that have attachments.
2008-10-06 09:38:50 +02:00
Carsten Dominik
4c55b885d5
Documentation fixes.
2008-10-05 12:57:01 +02:00
Carsten Dominik
e195a3ee4b
Release 6.08a.
2008-10-05 08:31:54 +02:00
Carsten Dominik
c0292f955e
Release 6.08.
2008-10-05 08:27:53 +02:00
Carsten Dominik
37fe05df9c
Remove left-over debugging code.
2008-10-05 07:34:01 +02:00
Carsten Dominik
e71f9d0a62
Make the keypad work with orgtbl-mode.
2008-10-04 15:49:27 +02:00
Carsten Dominik
7b7ad51618
Fix bug with title extraction during export when first line is headline.
2008-10-03 11:51:42 +02:00
Carsten Dominik
e9a39cf1cd
Merge branch 'latex-preamble'
...
Conflicts:
lisp/ChangeLog
2008-10-02 23:56:49 +02:00
Carsten Dominik
8d8403399e
Fix bug that could push note into a child.
...
Reported by Bernt Hansen.
2008-10-02 18:15:46 +02:00
Carsten Dominik
be1a210045
Merge branch 'jd7'
2008-10-02 18:07:45 +02:00
Carsten Dominik
2a8dac9f70
Store remember notes under the current clock entry with `C-2 C-c C-c'.
...
Patch from James TD Smith, but modified.
2008-10-02 18:07:12 +02:00
Carsten Dominik
20364d043a
Implement #+LATEX_HEADER special.
...
Proposed by Austin Frank and apparently also by Russel Adams.
2008-10-02 15:00:14 +02:00
Carsten Dominik
7c0e0189f0
Fix property inheritance marker.
...
Now the function that retrieves a property with inheritance makes
sure that this function does not point anywhere if there was
no match.
2008-10-01 21:31:24 +02:00
Carsten Dominik
0ec6021080
Fix bug.
2008-10-01 12:44:50 +02:00
Carsten Dominik
c50a7b312f
Intermediate.
2008-10-01 12:43:55 +02:00
Carsten Dominik
b1d5e6c62d
Allow multiple #+STYLE lines in the buffer.
2008-10-01 11:41:00 +02:00
Carsten Dominik
d043e31182
Integrate John Wiegley's org-attach.el.
2008-10-01 09:25:18 +02:00
Carsten Dominik
46246169bf
When moving items, keep the column position.
...
Reported by Rainer Stengele.
2008-09-29 12:46:15 +02:00
Carsten Dominik
d5b9c3e04f
Remove properties from `initial' text in remember.
...
This is to make sure that no bad properties end up in the remember buffer.
Report by Richard Riley.
2008-09-29 08:27:13 +02:00
Carsten Dominik
f640c8982a
Remove useless call to `wl-thread-open-all'.
2008-09-27 17:55:51 +02:00
Carsten Dominik
7b122d4342
Now really fix the bottom bug.....
2008-09-27 07:56:45 +02:00
Carsten Dominik
4e6b862560
Fix bug with remember template `bottom' location.
...
Reported by Ethan Blanton.
2008-09-27 07:44:43 +02:00
Carsten Dominik
7e7d79d60a
Require bbdb in `org-bbdb-anniversaries'.
2008-09-26 18:38:27 +02:00
Carsten Dominik
fcff45bc35
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
...
Conflicts:
lisp/ChangeLog
2008-09-26 18:28:45 +02:00
Carsten Dominik
b1e7ec5010
Fix bug with updating parent statistics when children are hidden.
...
Report by Charles Sebold.
2008-09-26 17:06:17 +02:00
Bastien Guerry
0e0f5bba8c
Cleaner message when repeating an entry.
2008-09-25 11:27:36 +02:00
Carsten Dominik
45cee29929
Fix bug, Patch by Bernt Hansen.
2008-09-24 19:21:54 +02:00
Carsten Dominik
7b54d28c30
Avoid rounding errors whe summing table columns.
2008-09-24 17:33:10 +02:00
Carsten Dominik
990a549370
Protect keyword-selecting variabels during mapping.
2008-09-24 16:31:56 +02:00
Carsten Dominik
68faba083f
Remove testing code.
2008-09-24 13:01:51 +02:00
Carsten Dominik
5512533560
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-09-23 23:30:10 +02:00
Carsten Dominik
1ca9628125
Make org-remember work in a minimal even if remember.el is not available.
2008-09-23 23:29:19 +02:00
Bastien Guerry
ff52989cd4
Make sure org-agenda-to-app checks all files.
2008-09-23 09:37:38 +02:00
Carsten Dominik
0ee4410452
Minor fixes.
2008-09-23 08:13:32 +02:00
Carsten Dominik
f0f34d4985
Split out org-list.el from org.el and org-export-latex.el.
2008-09-23 08:03:13 +02:00
Carsten Dominik
6f86eb35a5
New option `org-edit-src-region-extra'.
2008-09-23 04:53:21 +02:00
Carsten Dominik
f26330fdc5
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
...
Conflicts:
lisp/ChangeLog
2008-09-22 10:02:14 +02:00
Carsten Dominik
a8741db759
Fix bug in appointment generation for appointments before 1am.
...
Reported by Richard Riley.
2008-09-22 08:40:32 +02:00
Bastien Guerry
a8a499ed2d
Removed buggy reference to org-quote-chars.
2008-09-22 08:30:27 +02:00
Carsten Dominik
575c5523b1
Fix bug with agend autoloads.
2008-09-22 06:03:36 +02:00
Carsten Dominik
a7febf233e
Make plotting work for tables starting with hline.
2008-09-22 05:56:34 +02:00
Carsten Dominik
d670d20af2
Simplyfy links in imenu and refile display.
...
Patch by James TD Smith.
2008-09-21 21:39:28 +02:00
Carsten Dominik
d6d72b3436
Merge branch 'js'
2008-09-21 08:34:45 +02:00
Carsten Dominik
feab6c1348
Change version number to 6.08-pre01
2008-09-21 08:34:23 +02:00
Carsten Dominik
a8b3081610
Release 6.07b.
2008-09-21 08:26:30 +02:00
Carsten Dominik
7e0dbb6191
New escape for remember templates to add properties.
...
Patch by James TD Smith.
2008-09-21 08:05:33 +02:00
Carsten Dominik
8892d9a4bc
Skip all drawers when adding a note.
...
Patch by James TD Smith.
2008-09-21 07:57:16 +02:00
Carsten Dominik
bd8cbef200
Show resulting clocked time in agenda display.
...
Patch by James TD Smith.
2008-09-21 07:41:49 +02:00
Carsten Dominik
c9bf924246
Get x-clipboard in a way that is compatible with Emacs 21.
2008-09-21 07:35:39 +02:00
Carsten Dominik
e6630ed359
Limit length of clock string and make it clickable.
...
Patch from James TD Smith.
2008-09-21 07:35:01 +02:00
Bastien Guerry
e3ded815b6
Update ChangeLog.
...
(Okay, I always forget that C-x v v in Emacs does only
commit on a file per file basis. I should really use
the command line when committing several files.)
2008-09-20 14:50:02 +02:00
Bastien Guerry
10a9556db5
Fix bug about list delimitation.
...
A list now ends when a line contains an indentation that is shorter than
the expected indentation of an item for this list.
`org-export-latex-list-beginning-re' renamed to `org-list-beginning-re'
and `org-list-item-begin' renamed to `org-list-item-beginning'.
Some code clean up: silent checkdoc, fix typos.
2008-09-20 14:45:11 +02:00
Carsten Dominik
66373c350d
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-09-20 12:33:05 +02:00
Carsten Dominik
43e6633a15
Fix bug with tag inheritance.
...
This bug caused (org-get-tags-at) to return no tags at all
when inheritance was turned off, even if the entry
does have local tags.
2008-09-20 12:32:35 +02:00
Bastien Guerry
b5d5a21b1b
Updated the Changelog to reflect last changes on org-export-latex.el
2008-09-20 12:14:01 +02:00
Carsten Dominik
6697584704
Fix refiling to the last entry in the buffer.
2008-09-20 06:55:40 +02:00
Bastien Guerry
57d80846b3
Implement export of descriptive lists.
...
Prevent special chars from being converted when in a LaTeX
environment. Fix a bug about conversion of "&" conversion
in tables.
2008-09-19 21:48:47 +02:00
Carsten Dominik
b777e88fd6
Release 6.07a.
2008-09-19 16:19:32 +02:00
Carsten Dominik
08e7428858
Revert the change to `org-indent-line-function'.
...
This change was to avoid indentation in source code regions,
but the overhead is too large.
2008-09-19 16:14:09 +02:00
Carsten Dominik
df098ce3f2
Improve documentation of `org-agenda-fontify-priorities'.
...
This was a patch by Rafael Laboissiere.
2008-09-19 16:10:09 +02:00
Carsten Dominik
58325c8df0
Bug fixes.
2008-09-19 12:40:15 +02:00
Carsten Dominik
1448aa2449
Bind some variables.
2008-09-19 08:30:22 +02:00
Carsten Dominik
194faab2b6
Bumping up the version number to 6.07.
2008-09-19 08:25:13 +02:00
Carsten Dominik
04419cca3d
Make sure tags matching is case-insensitive.
2008-09-19 08:07:50 +02:00
Carsten Dominik
17bdd57209
Fix docstrings in org-plot.el.
2008-09-18 18:26:11 +02:00
Carsten Dominik
07a6432d52
Fixing final issue with org-plot.el.
...
Eric Schulte sent me a new version.
2008-09-18 18:22:08 +02:00
Carsten Dominik
f3d15d8b7c
Fixing typos.
2008-09-18 17:57:10 +02:00
Carsten Dominik
8ad796156e
More options for categories in iCalendar export.
...
Tags and the todo state can now be listed as categories.
2008-09-18 17:35:55 +02:00
Carsten Dominik
0e41007840
Remove the version requirement, this is part of Org.
2008-09-18 17:34:39 +02:00
Carsten Dominik
7b0f0c497c
Implement sorting by TODO keyword sequence position.
2008-09-18 13:45:49 +02:00
Carsten Dominik
8833885abb
Make S-right/left work in column view for any timestamp
...
value of a property.
2008-09-18 10:24:57 +02:00
Carsten Dominik
cad6c4dc3f
Protect slashes during outline-path-completion.
2008-09-17 17:57:43 +02:00
Carsten Dominik
2491b7e55d
Fix typos.
2008-09-17 17:57:18 +02:00
Carsten Dominik
a76ebd2bb2
Fix bug with tags filtering.
...
So far, we had mad invisible the line including the \n after it.
This is a bad idea. When the cursor is at the beginning of the
line that is preceded by an invisible line, the local text
properties are actually those of the invisible line
just before the current.
Now we make invisible the line together with the \n *before* it,
this should fix things all right.
2008-09-17 16:28:44 +02:00
Carsten Dominik
1b23a3fd20
Get rid of some compiler messages by fixing bugs and definitions.
2008-09-17 13:55:59 +02:00
Carsten Dominik
ad7e092f98
Allow tags to select parts of a document for export.
2008-09-17 13:47:18 +02:00
Carsten Dominik
951a80987b
Talk about MATCH view rather than TAGS view.
2008-09-17 13:39:24 +02:00
Carsten Dominik
56b7b3f3ce
New file org-plot.el.
2008-09-17 13:35:21 +02:00
Carsten Dominik
47aea69a79
Allow project components to have components.
2008-09-17 13:32:32 +02:00
Carsten Dominik
8e2b65bdef
Intermediate
2008-09-16 16:52:21 +02:00
Carsten Dominik
97e9305f4f
Make sure no startup is run in remember buffer.
2008-09-15 10:31:25 +02:00
Carsten Dominik
53693652b0
Make C-y insert subtrees in folded state.
2008-09-14 08:03:55 +02:00
Carsten Dominik
5aaccd93c4
New yank function.
2008-09-13 21:02:01 +02:00
Carsten Dominik
5dde398b92
Avoid changing indentation in regions that are external source code.
2008-09-13 20:10:07 +02:00
Carsten Dominik
d6cabfc6b2
Better compliance with `org-extend-today-until'.
2008-09-13 19:59:23 +02:00
Carsten Dominik
238d0d1880
Improve consistency for inserting new headlines.
2008-09-13 19:22:33 +02:00
Carsten Dominik
785cde4d2b
Incude note when clock entry gets moved into a drawer.
2008-09-13 18:35:57 +02:00
Carsten Dominik
936296e386
Make sure org-mode in remember buffer starts without startup stuff.
2008-09-11 17:03:05 +02:00
Carsten Dominik
c6962bc9d7
Fix duplicate key definition.
2008-09-11 17:02:03 +02:00
Carsten Dominik
120cf0c101
Implement uuidgen as a method for id creation.
2008-09-11 16:56:37 +02:00
Carsten Dominik
21ff23736c
Merge changes from downstream emacs.
2008-09-10 11:10:21 +02:00
Carsten Dominik
c522625d44
Minor changes.
2008-09-10 08:37:10 +02:00
Carsten Dominik
136693f7e3
Allow filtering for no tags at all with SPACE.
2008-09-09 11:59:27 +02:00
Carsten Dominik
5c3d809701
Add archive to sibling to the menu.
2008-09-08 20:18:37 +02:00
Carsten Dominik
e862a5cd58
Protect increment-by-copying in tables.
2008-09-08 20:18:18 +02:00
Carsten Dominik
3f1062a15d
Save and restore formulas for column view capture.
2008-09-08 09:43:41 +02:00
Carsten Dominik
4aa23cfb0c
Bug fix.
2008-09-07 18:30:50 +02:00
Carsten Dominik
e1ed8cf2e9
Make sure text before the first headline is in <p>.
2008-09-07 17:37:56 +02:00
Carsten Dominik
87292441ab
Remove the #+TEXT field from the export template.
2008-09-07 17:27:29 +02:00
Carsten Dominik
3cbdda0e07
Do not remove existing buffers during publishing.
...
Also, do not set a major mode for a buffer that will be killed anyway.
2008-09-07 12:24:47 +02:00
Carsten Dominik
c20336b4f6
Show empty lines after folding the archive sibling.
2008-09-07 08:39:31 +02:00
Carsten Dominik
f03ea46b3a
The note buffer for clocking out now mentions the task.
2008-09-07 08:29:16 +02:00
Carsten Dominik
d276209c49
New option to force additional keybindings.
...
Patch by Samuel Wales.
2008-09-07 08:05:06 +02:00
Carsten Dominik
ba2e31dad0
Modified the new agenda tag filtering command.
2008-09-07 07:49:09 +02:00
Carsten Dominik
5b740fb681
Fixed two strange typos.
2008-09-06 22:45:54 +02:00
Carsten Dominik
2efb6d127a
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-09-05 23:01:34 +02:00
Carsten Dominik
7482b04df0
Implemented filtering of an existing agenda view with respect to a tag.
2008-09-05 19:02:14 +02:00
Carsten Dominik
4ddd0d9ec6
Remove angular brackets from date in export options template.
2008-09-05 17:33:20 +02:00
Bastien Guerry
cf9a05052f
Fix bug about LaTeX export of QUOTE and VERSE environments. Also allow completion for *_QUOTE *_VERSE and *_SRC keywords.
2008-09-05 09:36:07 -05:00
Carsten Dominik
089ac08747
Implement using artist-mode to edit fixed-width sections.
2008-09-05 13:37:33 +02:00
Carsten Dominik
d5ceac5848
Fix bug in compatibility code for `org-remember-templates'.
2008-09-05 08:19:43 +02:00
Carsten Dominik
696e77a1ed
Fix bug with time stamp format for calc.
2008-09-05 07:57:12 +02:00
Carsten Dominik
c58950050d
Fix typos.
2008-09-05 06:06:03 +02:00
Carsten Dominik
5fdbd4d63f
Fix typo.
2008-09-04 17:12:11 +02:00
Carsten Dominik
c24383d1c6
Fix bugs with time extraction of deadlines.
2008-09-04 17:08:50 +02:00
Carsten Dominik
22a6e1718c
Ignore TODO keywords and Priorities when sorting headlines.
...
This applies to numeric and alphanumeric sorting.
2008-09-04 10:35:53 +02:00
Carsten Dominik
9ab3d5554e
Document default for `org-refile-targets'.
2008-09-04 10:20:24 +02:00
Carsten Dominik
905fced617
Revised interpretation of prefix arg when storing remember note.
2008-09-04 10:19:46 +02:00
Carsten Dominik
ac7d8fa752
New face `org-scheduled'
...
This face is used in the agenda for entries that are
scheduled on a day that is not today.
2008-09-03 13:23:31 +02:00
Carsten Dominik
dc193b76e7
Remove incorrect declaration in org-wl.el.
2008-09-03 11:23:33 +02:00
Carsten Dominik
d74855408f
Implement the :to and :toname keywords for gnus links.
...
Patch from Gregory Sullivan.
2008-09-03 11:17:49 +02:00
Carsten Dominik
5d7adb4a62
Fix typo.
2008-09-03 11:16:48 +02:00
Carsten Dominik
e8394dcbcf
Fix example indentation for export.
...
Patch from Bernt Hansen.
2008-09-03 10:50:10 +02:00
Carsten Dominik
e16cbbb5e2
Fix some typos.
2008-09-03 10:36:21 +02:00
Carsten Dominik
b831ab8ef5
Allow the file component in a remember template to be a function.
2008-09-03 10:36:03 +02:00
Carsten Dominik
1e79189212
Support searching in backward headlines with isearch.
2008-09-03 10:11:36 +02:00
Carsten Dominik
5a890b3473
Minor fixes.
2008-09-03 09:10:17 +02:00
Carsten Dominik
339e5fb010
Erase buffer for txt export.
2008-09-02 13:46:07 +02:00
Carsten Dominik
19b5215b81
Update org-mairix.el to version 0.5.
2008-09-02 09:35:20 +02:00
Carsten Dominik
ce88fc8273
Allow {} to terminate a tex macro inside a word.
...
For example, you can now write \Aacute{}stor.
2008-09-01 16:45:11 +02:00
Carsten Dominik
4daef5679d
Fixed typos.
2008-09-01 11:20:49 +02:00
Carsten Dominik
badb19e1c7
Base org-iswitchb buffer selection on major-mode.
...
This was a request by Mike Newman.
2008-07-28 17:05:04 -07:00
Carsten Dominik
d172a1ccc5
Minor documentation fixes.
2008-07-28 12:12:50 -07:00
Carsten Dominik
c542119a2a
Fixed bug with malformed face properties.
...
Patch by Steven E. Harris.
2008-07-26 07:49:31 -07:00
Carsten Dominik
b87ec4c0f1
Added default styles for org-info.js
2008-07-26 07:30:44 -07:00
Carsten Dominik
c4375970d7
Minor fixes.
2008-07-25 20:41:02 -07:00
Carsten Dominik
caa2788b26
Allow a user-defined filter for the values in column view.
2008-07-25 17:05:37 -07:00
Carsten Dominik
2c26217b88
Release 6.06b.
2008-07-25 14:58:41 -07:00
Carsten Dominik
c258c33780
Fix typo.
2008-07-25 14:18:54 -07:00
Carsten Dominik
6de2032ff7
Fix typo.
2008-07-25 14:17:35 -07:00
Carsten Dominik
d2697cf11e
Fix bug with recursive publishing and the publishing directory.
...
This one has haunted us for a long time......
2008-07-25 14:04:26 -07:00
Carsten Dominik
10bdab790b
Fix bug with adding appointments to diary in Emacs 23.
...
Patch from Andrew Hyatt.
2008-07-25 00:27:41 -07:00
Carsten Dominik
b8b821336e
Restart font-lock after local editing in different mode.
2008-07-24 17:23:41 -07:00
Carsten Dominik
68fcc0b493
Allow setting creator flag in OPTIONS line.
2008-07-24 12:58:47 -07:00
Carsten Dominik
7a3557b80b
Make org-jsinfo use style-extra.
2008-07-24 12:18:17 -07:00
Carsten Dominik
a66568abb9
Add attributes also to mailto and ftp links.
2008-07-24 11:24:48 -07:00
Carsten Dominik
3cf6fc4393
Fix autoloading bug with `org-dblock-write:columnview'.
2008-07-24 10:11:29 -07:00
Carsten Dominik
177e154e6c
Release 6.06a.
2008-07-24 06:42:03 -07:00
Carsten Dominik
14ffcc8b9a
Release 6.06.
2008-07-24 06:26:02 -07:00
Carsten Dominik
0be85cda60
Fix bug when exporting links with attributes.
2008-07-23 16:04:01 -07:00
Carsten Dominik
5ea6de59a1
Protect call to dvipng.
2008-07-23 13:41:39 -07:00
Carsten Dominik
66a41c6298
Fix bug with region export.
2008-07-23 10:40:21 -07:00
Carsten Dominik
fa9a48df3b
Fix bug with parsing org-agenda-custom-commands.
...
This bug occurred when trying to batch-export agenda views.
Reported by Jan Seeger.
2008-07-22 12:27:26 -07:00
Carsten Dominik
01619f0278
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
...
Conflicts:
lisp/org.el
2008-07-20 08:05:13 -07:00
Carsten Dominik
6321ab8a85
Test for the existence of narrow-map.
2008-07-20 08:01:58 -07:00
Bastien Guerry
3dd3df19df
Applied Juri Linkov's change from upstream Emacs CVS.
...
* org.el (narrow-map): Bind `org-narrow-to-subtree' to "s" on the
new keymap `narrow-map' instead of binding "\C-xns".
See the message <E1KKMJ4-0007CK-V2@cvs.savannah.gnu.org>
from the [Emacs-commit] mailing list.
2008-07-20 14:23:28 +02:00
Carsten Dominik
45e6f57af9
New option org-open-directory-means-index-dot-org.
2008-07-18 13:55:18 -07:00
Carsten Dominik
4fcad403bd
Make sure LaTeX export works in the presence of link attributes.
2008-07-17 15:07:14 -07:00
Carsten Dominik
3db122fdbb
Allow attributes in hyperlinks.
2008-07-17 14:29:26 -07:00
Carsten Dominik
ea71ffc237
New function to convert a table to a lisp structure.
2008-07-17 10:08:53 -07:00
Carsten Dominik
323b54472e
Fixed bug with inserting headlines into a narrowed buffer region.
2008-07-17 09:57:50 -07:00
Carsten Dominik
95cb6cea45
Ass "example" class to exported examples.
2008-07-17 09:27:30 -07:00
Carsten Dominik
bdcafa20a3
Fixed bug for customization of user-defined skipping condition.
...
The customize setup for this was broken. Reported by Max Mikhanosha.
2008-07-17 09:24:02 -07:00
Carsten Dominik
c780c3e550
Add language-specific class to source code examples.
2008-07-17 09:22:49 -07:00
Carsten Dominik
caed6e1889
Fixed typo.
2008-07-16 10:40:33 -07:00
Carsten Dominik
30e5143fd2
Fix bug in imenu-after-jump-hook.
2008-07-16 07:05:48 -07:00
Carsten Dominik
b94b1def2c
Better default format for HTML export time stamp.
2008-07-14 12:14:23 -07:00
Carsten Dominik
63bf841e91
Automatic overflow handling for <pre> fields.
...
This is a change in the default HTML style. Fields that
are too wide will not get a scroll bar.
2008-07-14 12:00:43 -07:00
Carsten Dominik
ba5621b2a8
Bug fix for table export.
...
No longer requires a heading above the table.
2008-07-14 11:55:47 -07:00
Carsten Dominik
523f8986e7
Bug fix for plain lists starting in first line of a buffer.
2008-07-14 11:23:57 -07:00
Carsten Dominik
989b2b6865
Fixed typo in docstring.
2008-07-09 11:37:25 -07:00
Carsten Dominik
223f37f07e
New option :index-style for publishing.
...
Patch from Manuel Hermenegildo.
2008-07-09 09:55:00 -07:00
Carsten Dominik
3c45a98032
Bug fix in org-publish, with index file names.
...
Patch from Sebastian Rose.
2008-07-08 18:38:13 -07:00
Carsten Dominik
1f7cf667c9
Fix typo in function call in org-publish.
...
Patch by Bernt Hansen.
2008-07-08 06:38:38 -07:00
Carsten Dominik
869aa0d628
Use SHA1 hashes to encode file names in the timestamp directory.
...
This will cause all files to be publish again, once, to update
to the new structure.
2008-07-07 14:35:54 -07:00
Carsten Dominik
8c0dec35cf
Be verbose about files skipped by org-publish.
2008-07-05 08:27:29 -07:00
Carsten Dominik
7ac36c7e66
Fix bug with link normalization and link abbrev expansion.
2008-07-05 08:06:10 -07:00
Carsten Dominik
012cc447a3
Add ChangeLog entry.
2008-07-04 22:53:39 -07:00
Carsten Dominik
db2736f045
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-07-04 22:52:18 -07:00
Carsten Dominik
ed98782f9d
Fix bug with non-existing timestamp directory.
...
Patch from Dan Davison.
2008-07-04 22:51:21 -07:00
Bastien Guerry
b68b57c99f
Small doc fixes from Emacs (Juanma Barranquero) and a bug fix in org-exp.el.
...
See <E1KE2Mh-0005EC-CF@cvs.savannah.gnu.org> in emacs-commit@:
* org.el (org-agenda-skip-unavailable-files):
* org-clock.el (org-clock-out-when-done): Doc fixes.
The bug affected the exportation of commented subtree: case cannot be
ignored when checking for the COMMENT cookie ("Comment" is a frequent
word in french, and has a completely different meaning.)
2008-07-04 04:09:00 +02:00
Carsten Dominik
4636a4d5e4
Fix bug with export of tags in headlines.
2008-07-03 10:36:32 -07:00
Carsten Dominik
9919ff82a0
Fix bugs in the BEGIN_VERSE environment.
...
This did not work at all - now it does.....
2008-07-02 15:14:12 -07:00
Carsten Dominik
b5ed7fca04
Version number bumped to 6.06pre01.
2008-07-02 13:34:26 -07:00
Carsten Dominik
3d59326fcf
Allow prefixes in include file statements.
2008-07-02 13:29:45 -07:00
Carsten Dominik
3d80ceb6d9
Fixed typos.
2008-07-02 10:43:35 -07:00
Carsten Dominik
7becc742cd
Time comparisons for property searches.
2008-07-01 16:23:17 -07:00
Carsten Dominik
507700505a
Main HTML style has moved into a constant.
...
The variable `org-export-html-style' now only specified
deviations from this default style.
2008-07-01 16:22:57 -07:00
Carsten Dominik
5f39979bbe
New variable to add to the default HTML style.
...
Instead of overwriting the default style, you can now simply add to it
using the variable `org-export-html-style-extra'.
2008-06-29 17:20:17 +02:00
Carsten Dominik
f02b4baab3
New option to turn off creator info.
2008-06-26 06:04:44 +02:00
Carsten Dominik
e1165fd8f3
Added org-export.el to experimental, fixed a few bugs.
2008-06-25 10:13:50 +02:00
Carsten Dominik
112489aafb
Bug fix with monthly repeaters.
2008-06-25 09:32:59 +02:00
Carsten Dominik
be38bc3316
Fixed bug in capturing column view.
...
Patch from Peter Jones.
2008-06-25 06:22:12 +02:00
Carsten Dominik
9b084b22f5
Allow omitting the "file:" prefix in some file links.
...
The file path must be absolute, or it must start with "./" or "../".
2008-06-24 08:37:50 +02:00
Carsten Dominik
ec5b77ccd2
Implement better handling of deadlines in iCalendar Export.
...
Deadlines in TODO entries are now used as DUE dates.
2008-06-23 09:08:08 +02:00
Carsten Dominik
e6b8a60432
Fix bug with "yesterday" in clocktables.
2008-06-23 05:46:33 +02:00
Carsten Dominik
0d6b79dea0
Include changes from downstream Emacs.
2008-06-20 14:11:50 +02:00
Carsten Dominik
21499409c3
Release 6.05b.
2008-06-20 00:21:15 +02:00
Carsten Dominik
f41be4b87d
Implement including archives into agenda.
...
trees that are marked with the ARCHIVE tag and even archive files
can now temporarily be included into an agenda view.
Press `v' in the agenda to get trees with ARCHIVE tags.
Press `C-u v' to get archive files included.
2008-06-20 00:20:12 +02:00
Carsten Dominik
a13bbf18c8
Fix bugs related to transporting whitespace with entries.
2008-06-18 18:33:05 +02:00
Carsten Dominik
a9ac84c16c
Fixed typos.
2008-06-18 09:24:05 +02:00
Carsten Dominik
2a8f099e7e
Release 6.05a.
2008-06-17 17:06:16 +02:00
Carsten Dominik
29677fc7af
Including changes from downstream Emacs CVS.
2008-06-17 17:05:23 +02:00
Carsten Dominik
5c9de5a038
Fix some typos.
2008-06-17 12:35:24 +02:00
Carsten Dominik
672bfc4e49
Bug fix for next-allowed-value in column view.
2008-06-16 18:23:18 +02:00
Carsten Dominik
e1c22570b7
Version number 6.05, this will be released soon.
2008-06-16 17:51:04 +02:00
Carsten Dominik
7416ed17aa
Make agenda log mode also show the end time of a CLOCK entry.
2008-06-16 17:49:53 +02:00
Carsten Dominik
0aa74caefc
Improve sitemap publishing with org-publish.
...
Patch from Sebastian Rose.
2008-06-16 17:23:03 +02:00
Carsten Dominik
be026ff5ad
Implement actions tied to cursor date in agenda.
2008-06-16 16:26:30 +02:00
Carsten Dominik
e8202bf861
Version number 6.05pre01, with a detailed list of changes.
...
Yes, the 6.05 release is just around the corner.
2008-06-15 09:44:21 +02:00
Carsten Dominik
a56d512036
Fix compilation problems in org-publish.el.
2008-06-15 08:50:10 +02:00
Carsten Dominik
9db8450a90
Don't allow org-schedule/deadline to clobber repeaters.
2008-06-15 08:04:14 +02:00
Carsten Dominik
15ff91c3e4
Small fixes and extensions for org-publish.
2008-06-15 08:03:45 +02:00
Carsten Dominik
2c3ac24e03
New remember escapes hat use calendar date as default.
...
When calling a remember template from the agenda or from the
calendar, the cursor date becomes the default for %v and %V.
2008-06-15 07:09:12 +02:00
Carsten Dominik
2003d83370
Use agenda/calendar date as default for remember templates.
...
This applies only when the remember process gets started in the
agenda or calendar buffer.
2008-06-15 07:07:41 +02:00
Carsten Dominik
d915190dec
Use string width to center headline in ascii export.
2008-06-15 06:44:27 +02:00
Carsten Dominik
a476426a73
Small bug fixes for inserting tabulators and for cursor positioning.
2008-06-15 06:43:21 +02:00
Carsten Dominik
02fab14a70
Bug fix with return value of `org-mhe-get-message-folder-from-index'.
...
Patch from Thomas Baumann.
2008-06-13 23:13:08 +02:00
Carsten Dominik
da4f268b84
New hook that is called before saving an exported iCalendar file.
2008-06-13 12:25:50 +02:00
Carsten Dominik
aa57d06982
Fix bug with removing ical buffer too early.
...
The problem was that the function that did kill the buffer was called
inside the loop - it should really be called outside!
2008-06-13 10:39:37 +02:00
Carsten Dominik
058b918ad6
Cleaning up template code for remember.
...
You can now define templates that file to the beginning/end of the file,
as level 1 entries. Also some documentation issue are fixed now.
2008-06-13 10:22:09 +02:00
Carsten Dominik
f7f1a7f085
BBDB anniversaries are now links.
...
Feature request from Rares Vernica, implementation by Thomas Baumann.
2008-06-12 16:30:35 +02:00
Carsten Dominik
b7502705a3
Make bbdb-abbiversary entries links to the BBDB database entry.
...
The links can be accessed with C-c C-o. If there are several links,
a prefix arg can be used to select one.
2008-06-12 15:09:03 +02:00
Carsten Dominik
097782f7e6
Fixed bug in the clock-in implementation fro the agenda.
...
This bug was reported by Raimar Finken.
2008-06-12 13:59:54 +02:00
Carsten Dominik
c16d17d0e6
Bug fixed.
2008-06-12 12:46:52 +02:00
Carsten Dominik
b8c3e861ae
Make sure the region in XEmacs stays when using Org's special
...
beginning-of-line and end-of-line commands.
2008-06-12 07:49:39 +02:00
Carsten Dominik
e3132e37b7
Completing the mapping API.
...
This is documented in the new appendix "Using the mapping API".
2008-06-11 23:27:22 +02:00
Carsten Dominik
f1d1cb8c2c
First shot at a mapping API.
...
Some details still need to be worked out.
2008-06-11 16:18:21 +02:00
Carsten Dominik
52bd68a47a
New escape %& in remember templates, to visit note after storing it.
...
This was a request by Adam Spiers.
2008-06-11 07:15:56 +02:00
Carsten Dominik
edfd4f8abf
Fixed bug with file tags.
...
This bug was reported by Manuel Hermenegildo. There
were really two issues: The parsing of the FILETAGS line
was broken, and the function `org-get-tags-at' did ignore
these tags. Both problems are fixed now.
2008-06-10 13:42:27 +02:00
Carsten Dominik
d821bf13b1
Make the format of section number configurable.
...
This was a request by Adam Spiers.
2008-06-10 10:05:15 +02:00
Carsten Dominik
5d70b8f761
Fix bug with removing xomments during export.
...
Reported by Adam Spiers.
2008-06-10 09:02:57 +02:00
Carsten Dominik
83218b1432
Fixed typos the first lines of some lisp files.
...
Reported by Levin Du.
2008-06-10 08:26:09 +02:00
Carsten Dominik
b78d39350c
Bug fix: Org hangs upon export when the end_example line is missing.
2008-06-09 17:10:18 +02:00
Carsten Dominik
049b5931dd
Make 1-9,0 access allowed values in column view.
...
This was proposed by Levin Du, I implemented a modified version of his
patch.
2008-06-09 09:53:19 +02:00
Carsten Dominik
2ea87b7883
Allow installation prefix to be set on the command line.
...
Patch from Peter Jones.
2008-06-09 09:09:26 +02:00
Carsten Dominik
9a8d39d865
Bug fixes.
2008-05-30 09:30:43 +02:00
Carsten Dominik
2f60e2b921
Fix bugs with ellipsis generation in column view.
...
Ellipsis generation can now be controlled with `org-columns-ellipses'.
2008-05-30 06:04:29 +02:00
Carsten Dominik
4178a34c48
Refresh the agenda when redoing the column view.
2008-05-29 08:50:44 +02:00
Carsten Dominik
82e14ee963
Fixed bug with pressing "e" in agenda column view.
2008-05-29 07:21:07 +02:00
Carsten Dominik
19f4b1815e
Use ellipses in narrow column-view columns.
2008-05-29 06:55:01 +02:00
Carsten Dominik
68cca55732
Cleanup ITEM when used in column view in the agenda.
2008-05-28 23:58:53 +02:00
Carsten Dominik
236396ebf8
Split the export pre-processor into a zillion small functions.
2008-05-28 16:59:17 +02:00
Carsten Dominik
18eba42709
Fix typo in Changes.org.
2008-05-28 14:11:57 +02:00
Carsten Dominik
236f6c7ff9
Improve error message for invalid rows in org-table.el.
2008-05-28 14:11:33 +02:00
Carsten Dominik
07e361b172
Add org-id to the list of autoloaded modules.
2008-05-27 08:24:02 +02:00
Carsten Dominik
53ccd4f053
Fix bugs in customization and docstring of `org-archive-save-context-info'.
...
This follows a report from Brian van der Broek.
2008-05-27 08:19:33 +02:00
Carsten Dominik
c9ea8bc470
Release 6.04c.
2008-05-27 08:09:31 +02:00
Carsten Dominik
cd16b87216
Make C-c ' edit even more things around point.
2008-05-27 08:08:28 +02:00
Carsten Dominik
f9fa54fcf4
Improvements to source code snippet editing.
2008-05-26 19:45:43 +02:00
Carsten Dominik
174cc21d08
Bug fix for removal of comments during export.
2008-05-25 16:15:25 +02:00
Carsten Dominik
3b2b3556b7
Use C-c ' to exit source code editing.
2008-05-25 14:54:53 +02:00
Carsten Dominik
0950127491
Release 6.04.
2008-05-25 09:08:46 +02:00
Carsten Dominik
6a2dbbec3f
Implement editing source code examples in the native mode.
2008-05-25 09:07:23 +02:00
Carsten Dominik
9bd2896c94
Version number to 6.04pre01
...
We are preparing for another release.....
2008-05-24 22:35:23 +02:00
Carsten Dominik
9dbaf463d8
Handle :index-title property during publishing.
...
Patch from Manuel Hermenegildo.
2008-05-24 21:54:37 +02:00
Carsten Dominik
60eba43cdf
Attempt to implement dynamic indentation.
...
This only lead to a contributed file, this is neither robust nor fast.
But maybe throwing the existing code into a contrib file
will make someone come up with an idea.
2008-05-24 11:18:40 +02:00
Carsten Dominik
332191cc13
Properties can be used to confiugre subtree export.
2008-05-21 09:49:04 +02:00
Carsten Dominik
bd8d5b51c0
Implement EXPORT_TITLE property.
2008-05-20 19:22:00 +02:00
Carsten Dominik
94bddfe621
Bug fix: Also jump to last remember note in narrowed buffer.
...
Report by Bernt Hansen.
2008-05-20 17:10:44 +02:00
Carsten Dominik
26a35c28a6
Implement file tags, tags that apply to all entries in a file.
2008-05-19 19:48:52 +02:00
Carsten Dominik
2e634d82d9
Bugfix: Close paragraph after footnote.
...
Patch by Madhu.
2008-05-19 14:25:08 +02:00
Carsten Dominik
2c0812caf1
Implement TODO statistics.
...
This uses the same cookies as Checkbox statistics, [%] and [/]
2008-05-19 14:11:47 +02:00
Carsten Dominik
24fd4650de
Implement proper UIDs for iCalendar export.
...
This works now fine except for sexp entries which don't
get reusable UIDs, but fresh ones each time they are exported......
2008-05-19 08:22:51 +02:00
Carsten Dominik
24a400df76
Fix Norwegian language settings.
...
Patch from Peder Stray
2008-05-18 07:06:07 +02:00
Carsten Dominik
f4b66bd8fc
Fix bug in org-mhe.el.
...
Patch from Thomas Baumann.
2008-05-18 07:02:04 +02:00
Carsten Dominik
21678fb411
Mask more properties with `org-column'.
...
Also added a detailed description on how this face is used
an why background properties might shine through, and
how to avoid this.
2008-05-16 22:38:11 +02:00
Carsten Dominik
02aa965e1d
Improve handling of searches in org-mhe.el.
...
Patch by Nick Dokos.
2008-05-16 16:25:52 +02:00
Carsten Dominik
155213dc11
Create publishing directory if it does not yet exist.
...
Patch from Sebastian Rose.
2008-05-16 16:01:31 +02:00
Carsten Dominik
8ee2a8b7d8
Default format for calc changed to (fload 8)
...
This gives better accuracy and less surprises.
2008-05-16 12:34:24 +02:00
Carsten Dominik
56a96e0364
Clock/add_time Format
...
Replace all occurrences of the format string "%d:%02d" with
org-time-clocksum-format, which contains the same string by default.
This allows anyone to customize the appearance of clock summaries.
For example:
(setq org-time-clocksum-format "%02d:%02d")
2008-05-16 07:36:27 +02:00
Carsten Dominik
6d8ffe91e8
Better outline-path completion.
...
This now is more like file name completion.
2008-05-16 07:24:19 +02:00
Carsten Dominik
110b336275
Moved org-id.el to the core. Can now force UIDs in iCalendar export.
2008-05-15 10:28:38 +02:00
Carsten Dominik
6ba68246c0
Include domain name into newly created IDs.
2008-05-15 09:39:34 +02:00
Carsten Dominik
849a778c3b
Change clock time in mode line when editing time stamp.
2008-05-15 08:40:33 +02:00
Carsten Dominik
b4159c5017
Release 6.03.
2008-05-15 04:40:55 +02:00
Carsten Dominik
80fb3351de
Make the colon in "ORGTBL: SEND" optional.
2008-05-14 14:28:08 +02:00
Carsten Dominik
d2795c72c8
Make sure structure commands can be either case.
2008-05-14 14:23:44 +02:00
Carsten Dominik
c3a01489ad
Do not include the colon in the include template.
...
In fact, it is optional, but BEGIN_SRC does not have it either.
2008-05-14 14:22:10 +02:00
Carsten Dominik
4b36c8d470
Fixed bug with date ranges in iCalendar export.
...
When there are no time-of-day infos, the appointment
ended up being too short by one day. Fixed now.
2008-05-14 14:03:02 +02:00
Carsten Dominik
4b8f738e62
Version number pumped to 6.03pre03
2008-05-14 10:32:24 +02:00
Carsten Dominik
f3e075ed62
Support for Muse-like structure tags.
2008-05-14 09:50:53 +02:00
Carsten Dominik
36a4a26f2f
Fixed typos in docstrings.
2008-05-13 16:43:00 +02:00
Carsten Dominik
4d99cbe28e
Better fontification and auto-indentation of description lists.
2008-05-13 16:20:48 +02:00
Carsten Dominik
bb53613c9f
Implement the verse environment.
2008-05-13 15:57:23 +02:00
Carsten Dominik
9abd45ebab
initial steps
2008-05-12 16:18:23 +02:00
Carsten Dominik
20fcf5c321
Bug fixes for colored example export.
2008-05-12 07:32:57 +02:00
Carsten Dominik
6ecd659335
Documentation fixes for table exporter.
2008-05-12 07:31:21 +02:00
Carsten Dominik
6193d1538b
Implement FIXED_TOC option for org-info.js.
2008-05-12 07:30:34 +02:00
Carsten Dominik
9c8aabbf81
New functions to export tables to csv and tsv.
...
The new functionas are orgtbl-to-csv and orgtbl-to-tsv.
2008-05-10 13:40:25 +02:00
Carsten Dominik
1e042b511a
Improve interactive use and documentation of table export.
2008-05-10 07:54:45 +02:00
Carsten Dominik
0a9c180b63
Bug fixes.
2008-05-09 22:21:40 +02:00
Carsten Dominik
77f1f31c99
Remove special characters as selection keys for clock history.
...
Patch from Bernt Hansen.
2008-05-09 21:40:50 +02:00
Carsten Dominik
939051fd3f
Bug fix.
2008-05-09 13:59:37 +02:00
Carsten Dominik
b00babf8aa
Bug fix.
2008-05-09 13:55:25 +02:00
Carsten Dominik
201ec4d22b
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
...
Conflicts:
lisp/ChangeLog
2008-05-09 13:39:07 +02:00
Carsten Dominik
de39ac51ee
Improve running htmlize.el in batch-mode.
2008-05-09 13:38:01 +02:00
Bastien Guerry
f91d59c1ad
Applied Juanma Barranquero minor typos fixes from emacs-commits.
...
See <E1Ju8Wc-0008Qb-TG@cvs.savannah.gnu.org> on emacs-diffs@gnu.org .
Here is the complete ChangeLog entry:
2008-05-08 Juanma Barranquero <lekktu@gmail.com>
* org/org.el (org-modules, org-format-latex-options):
* org/org-archive.el (org-archive-stamp-time)
(org-archive-save-context-info):
* org/org-faces.el (org-hide):
* org/org-irc.el (org-irc-parse-link):
* org/org-macs.el (org-call-with-arg, org-autoload):
* org/org-mew.el (org-mew-store-link):
* org/org-remember.el (org-remember-store-without-prompt)
(org-remember-templates): Fix typos in docstrings.
* org/org-info.el (org-info-store-link): Remove leftover docstring.
* org/org-bbdb.el (org-bbdb-export): Remove leftover docstring.
(org-bbdb-anniversary-field, org-bbdb-extract-date-fun)
(org-bbdb-anniv-split): Fix typos in docstrings.
* org/org-publish.el (org-publish-project-alist): Doc fixes.
(org-publish-use-timestamps-flag): Reflow docstring.
(org-publish-files-alist): Fix typos in docstring.
2008-05-09 06:08:45 +02:00
Carsten Dominik
d4812f088b
Organize Changes.org.
2008-05-08 18:20:28 +02:00
Carsten Dominik
66f801cbff
Version number change to 6.03pre01.
...
Yes, we are moving to the 6.03 release.
2008-05-08 17:17:58 +02:00
Carsten Dominik
c49834bb2a
2 Bug fixes, following report and patch from Thomas Morgan.
2008-05-08 15:02:25 +02:00
Carsten Dominik
e46016b469
Cleanup after name change.
2008-05-08 14:45:47 +02:00
Carsten Dominik
40d2056646
Delete org-infojs.el.
2008-05-08 14:43:51 +02:00
Carsten Dominik
6924742ea6
Rename org-infojs.el to org-jsinfo.el.
...
This was necessary to guarantee uniqueness in the 8+3
name scheme.
2008-05-08 14:41:15 +02:00
Carsten Dominik
b6eb2bc65b
Allow properties to influence startup visibilities.
2008-05-08 14:32:10 +02:00
Carsten Dominik
3696f5498e
ChangeLog entry.
2008-05-08 09:41:09 +02:00
Carsten Dominik
9703398065
Fix bug with archiving to a subdirectory.
...
Reported by Wanrong Lin.
2008-05-08 09:19:05 +02:00
Carsten Dominik
7f769d5feb
Split ChangeLog file into parts.
...
Now we have separate ChangeLog files in the lisp and doc
directories. Also, in the lisp directory, all the old changes
have moved into ChangeLog.01.
These changes will help me to simplify synchronization with Emacs.
2008-05-08 08:16:38 +02:00
Carsten Dominik
9cad371bc4
Implement setup inclusion from external file.
...
The #+STARTUP etc lines that define settings on a per-file
basis can now be collected in a separate file and included
with a line:
#+SETUPFILE: "/path/to/setup.org"
This has been a frequent request in the past, now it is
finally possible.
2008-05-07 16:26:01 +02:00
Carsten Dominik
38cc3e2a48
Merge branch 'complete-structure-meta-code'
...
Conflicts:
ChangeLog
2008-05-07 14:21:45 +02:00
Carsten Dominik
ed25bd08fa
Implement completion for some export structure elements.
...
This is an experimental feature and does not really fit
into Org, so it may go away in the future.
2008-05-07 14:18:15 +02:00
Carsten Dominik
a738e446be
Implement include files for export.
2008-05-07 13:57:00 +02:00
Carsten Dominik
d41a1cda91
Allow spaces when entering property values.
...
Because entering property value wit the command `org-set-property'
offers completion on existing values of the property,
space was treated as a completion command in the minibuffer.
This is now fixed. Also, completion is now case-insensitive here.
2008-05-07 07:24:48 +02:00
Carsten Dominik
5d675ca8bd
Hmmmmmmm
2008-05-06 21:18:40 +02:00
Carsten Dominik
b928ce51f8
Remove duplicate entry for org-mew.el in org-modules.
...
This had happened because we recently moved this package from
contrib to core.
2008-05-06 15:57:46 +02:00
Carsten Dominik
7972356d09
Allow up to 42 elements for the clock history.
2008-05-06 15:08:35 +02:00
Carsten Dominik
fe5c248122
Sync copyright fixes from downstream Emacs
2008-05-06 14:47:44 +02:00
Carsten Dominik
1f7360c584
Provide an *orgtbl-default-fmt* for entries not in a fmt plist.
...
The *orgtbl-default-fmt* is a hook for orgtbl transformations to
ensure a destination-sensible default for columns not present in
a fmt plist. The leaving the value at nil changes no existing
behavior.
Signed-off-by: Jason Riedy <jason@acm.org>
Conflicts:
ChangeLog
2008-05-06 14:17:53 +02:00
Carsten Dominik
5316cbbf05
Allow an explicitly nil :tstart and :tend to suppress the strings.
...
Passing explicit nils to leave out start and end strings feels
natural. Also, transforming org-mode tables into other org-mode
tables can use :tstart and :tend to specify directives, so I
don't want to change the default splice setting for those.
Signed-off-by: Jason Riedy <jason@acm.org>
Conflicts:
ChangeLog
2008-05-06 14:16:45 +02:00
Carsten Dominik
54188f8618
Add an orgtbl-to-orgtbl transformation.
...
Useful for documenting orgtbl transformation and formatting
functions.
Signed-off-by: Jason Riedy <jason@acm.org>
Conflicts:
ChangeLog
2008-05-06 14:15:45 +02:00
Carsten Dominik
08ac32fafd
Minor fixes.
2008-05-06 13:56:34 +02:00
Carsten Dominik
6634107b0e
Apply patch from Thomas Baumann, to use a hash for anniversaries.
...
This should speed up the agenda significantly when using BBDB
as the database for anniversaries.
2008-05-06 12:46:51 +02:00
Carsten Dominik
6fdfd10c18
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2008-05-06 09:33:57 +02:00
Carsten Dominik
a547c0f50b
Merge branch 'improve-markup-documentation'
2008-05-06 09:32:29 +02:00