Carsten Dominik
0c397ae5f4
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-17 08:27:11 +01:00
Carsten Dominik
f7ecc80702
Search View: Fix bug with searching full words in headlines
...
Patch by Peter Povinec
2010-02-17 08:27:03 +01:00
Eric Schulte
753d1402d8
babel: avoid infinite loop in org-babel-execute-buffer -- Thanks to Stephan Schmitt
2010-02-16 13:34:09 -07:00
Eric Schulte
574f1b590e
babel: adding support for the OZ programming language -- Thanks to Torsten Anders!
...
For information on the OZ programming language see
http://www.mozart-oz.org/ , for information on using Org-babel with
OZ see the OZ specific documentation on Worg at
http://orgmode.org/worg/org-contrib/babel/languages/org-babel-doc-oz.php
2010-02-16 13:28:08 -07:00
Carsten Dominik
ca19fab380
Fix minor bug.
2010-02-16 17:59:57 +01:00
Carsten Dominik
8bb407117b
Better detection if point is inside a latex macro
...
Ruud Brekelmans writes about problems with spurious footnotes:
> I still find similar behavior when exporting to LaTeX with:
>
> #+BEGIN_LaTeX
> \newcommand{\norm}[1]{\lVert#1\rVert}
> #+END_LaTeX
2010-02-16 05:41:12 +01:00
Carsten Dominik
449e6b4560
Fix bug when hiding archived subtrees
...
Emilio Arias writes:
> egallego@babel.ls.fi.upm.es (Emilio Jess Gallego Arias) writes:
>
> To reproduce save this minimal org file:
>
> #+STARTUP: even
> * A
> :PROPERTIES:
> :ARCHIVE: a
> :END:
> ** B :ARCHIVE:
> Some text
>
> and hit TAB when in the * A headline; then the ** B headline contents
> will be incorrectly shown.
>
> I've found the culprit in org-hide-archived-subtrees:
>
> ,----
> | (defun org-hide-archived-subtrees (beg end)
> | "Re-hide all archived subtrees after a visibility state change."
> | (save-excursion
> | (let* ((re (concat ":" org-archive-tag ":")))
> | (goto-char beg)
> | (while (re-search-forward re end t)
> | (and (org-on-heading-p) (org-flag-subtree t))
> | (org-end-of-subtree t)))))
> `----
>
> The problem is that the RE matches the first archive "property" and
> then does an org-end-of-subtree which skips all the subtrees of the
> parent tree where the ARCHIVE property is located.
>
> I've replaced this part
>
> | (and (org-on-heading-p) (org-flag-subtree t))
> | (org-end-of-subtree t)))))
>
> by
>
> | (when (org-on-heading-p)
> | (org-flag-subtree t)
> | (org-end-of-subtree t)))))))
>
> so org-end-of-subtree is only called if we are really in a headline. I
> think that makes sense.
>
2010-02-16 05:30:49 +01:00
Carsten Dominik
c9d7c2e966
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-15 20:23:14 +01:00
Carsten Dominik
203ad53b46
Avoid side effects on text properties
2010-02-15 20:23:05 +01:00
Dan Davison
1e96482389
babel: check pdf file existence before deleting
2010-02-15 10:29:56 -07:00
Dan Davison
747f425f00
babel: only add srcname property for source blocks which actually have names
2010-02-15 10:07:23 -07:00
Carsten Dominik
b856f57331
Fix some typos
2010-02-15 07:55:51 +01:00
Carsten Dominik
f3e0f1e8b7
Slight cleanup of previous commit
2010-02-14 22:41:54 +01:00
Carsten Dominik
9d76d9c308
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-14 22:34:23 +01:00
Andy Lutomirski
36268491a0
org-agenda: Allow finer control of ignored todos.
...
Add new options to org-agenda-todo-ignore-{scheduled,deadlines}.
These will be convenient for users who want to see only todos
that need attention.
2010-02-14 22:33:40 +01:00
Eric Schulte
692c569215
babel: smarter `org-babel-ref-split-args' -- fixes bug parsing indexed function-style args
2010-02-14 11:48:28 -07:00
Carsten Dominik
b3e92a8193
Make sure the org-goto buffer comes up in the current frame
2010-02-12 18:55:27 +01:00
Carsten Dominik
6e33c3fc3c
ASCII export: Remove narrowing of columns for export
2010-02-12 18:48:16 +01:00
Carsten Dominik
eefb8ef4f7
Fix deadline/scheduled updating if there is a repeater in *another* stamp
...
Patch by Paul Holocomb.
2010-02-12 18:29:22 +01:00
Carsten Dominik
bb71f9f1b0
Agenda: Don't add a face to the space characters before tags
...
Reported by Tassilo Horn
2010-02-12 18:17:05 +01:00
Carsten Dominik
8628e6e8a8
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-12 09:19:08 +01:00
Carsten Dominik
d2f219fd41
LaTeX export: When exporting to a buffer only, do not require a file name
2010-02-12 08:34:00 +01:00
Eric Schulte
25f76ffa44
babel: now including source code block arguments w/source name on export
...
This change provides for better export of named source-code blocks,
with specific support for more attractive html export. The arguments
are included with the source code name, and both the source code name
and code body are wrapped in a div to support styling with css. For
example the following CSS can be used to associate a source-code block
name with it's code body, and to slightly indent the body.
.org-src-container {
border-left: 4px solid gray;
padding: 0.5em 0.5em 0.5em 1em; }
.org-src-container pre {
margin-left: 1em; }
2010-02-10 13:34:00 -07:00
Carsten Dominik
d731a52651
Clarify docstring
2010-02-10 13:17:23 +01:00
Carsten Dominik
9196dc9bbe
Fix list export in org-export-generic
...
Patch by Robert Goldman
2010-02-10 11:36:58 +01:00
Eric Schulte
2531d704c0
babel: now able to reference links as results
2010-02-09 20:30:28 -07:00
Eric Schulte
db1fe2a619
babel: greatly simplified block exportation
2010-02-09 19:09:19 -07:00
Dan Davison
7c686465b5
Widen before exiting edit buffers
2010-02-09 16:10:06 -05:00
Carsten Dominik
facd02f812
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-09 00:13:24 +01:00
Carsten Dominik
f5459505a3
Have quote and verse blocks be fontified again
2010-02-09 00:13:15 +01:00
Eric Schulte
df418de954
babel-clojure: slight change allowing strings to be passed in as variables
2010-02-08 13:17:37 -07:00
Eric Schulte
2829f77e2b
babel: org-babel-load-file no longer fails when `file-truename' returns nil
2010-02-08 13:17:06 -07:00
Eric Schulte
b59ebe6ec2
babel: org-babel-load-file will no longer strip portions of file names which appear to be extensions
2010-02-07 11:42:55 -07:00
Eric Schulte
a60a83fbb6
babel: better handling of table in shell scripts
2010-02-07 10:17:20 -07:00
Eric Schulte
047ac8ab1b
babel: shell command used by org-babel-sh is now configurable using the org-babel-sh-command variable
2010-02-07 09:36:56 -07:00
Eric Schulte
e4bc599745
org-babel-latex: allow pdf/png generation directly from latex source blocks
2010-02-06 09:54:10 -07:00
Eric Schulte
3ce4962447
babel: added :shebang and :comments header arguments for finer control over tangled output
2010-02-05 19:04:50 -07:00
Carsten Dominik
c780fe59fe
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-05 07:12:40 +01:00
Carsten Dominik
503fac51d3
Fix documentation bug
2010-02-05 07:12:31 +01:00
Eric Schulte
131441dbd2
babel: load-file works for symlinks -- Thanks to Martin Kühl
2010-02-04 09:43:11 -07:00
Carsten Dominik
fd6cc29909
Make org-export-generic.el provide org-export-generic
...
This is in addition to providing org-generic.
2010-02-04 07:33:27 +01:00
Carsten Dominik
32a009d2ed
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-02-04 05:35:47 +01:00
Carsten Dominik
a101c144e5
Document that Remember.el is part of Emacs
2010-02-04 05:35:32 +01:00
Eric Schulte
19fec33d9d
org-babel: on html export, removed newline after source-name which tricks up line numbering
2010-02-03 09:42:27 -07:00
Carsten Dominik
2d87c80bce
Fix bug with opening a radio link in headlines
2010-02-03 16:58:44 +01:00
Carsten Dominik
d16b7cd8a7
Extract times when storing new diary entries from the agenda
2010-02-03 16:23:41 +01:00
Carsten Dominik
ac719d6853
Fix a typo/duplication in org-html-entities
2010-02-03 16:14:30 +01:00
Carsten Dominik
6a15c45544
Use \providecommand to make sure \alert is defined
2010-02-03 16:13:49 +01:00
Carsten Dominik
a64058130f
Throw an error when creating an image from a LaTeX snippet fails
2010-02-03 16:12:51 +01:00
Carsten Dominik
2cd16d4cd5
Make org-store-link point to directory in a dired buffer
...
When the cursor is not in a line listing a file, that is.
2010-02-02 07:22:27 +01:00