Carsten Dominik
2ec171cc77
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-07-15 07:20:52 +02:00
Carsten Dominik
aa16391451
Minor change
2010-07-15 07:20:26 +02:00
Eric Schulte
2f178148f9
ob-ref: fixed error caused by missing count function, now using org-count
...
* lisp/ob-ref.el (org-babel-ref-resolve-reference): removed an error
introduced while fixing compiler warnings -- required mirroring of
the count cl-seqs function under the org-mode namespace.
* lisp/org.el (org-count): adding an org-mode version of the cl-seqs
count function
2010-07-14 17:59:43 -07:00
Eric Schulte
fb72ef7809
ob-dot: can handle arguments
...
* lisp/ob-dot.el (org-babel-expand-body:dot): now inserts variable
arguments rather than ignoring them
(org-babel-execute:dot): making use of org-babel-expand-body:dot
2010-07-14 16:39:19 -07:00
Eric Schulte
aad9ce99ab
org-reload: now also reloading babel files
...
* lisp/org.el (org-reload): now also reloading babel files
2010-07-14 13:18:02 -07:00
Carsten Dominik
c0eb6cfa88
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-07-14 22:00:16 +02:00
Carsten Dominik
0791edd54a
Capture, fix template files again
...
Note to self: Next time, just trust David ... :-)
2010-07-14 21:59:53 +02:00
Dan Davison
94361a58d6
babel doc: minor edits
2010-07-14 15:20:29 -04:00
Dan Davison
58e355cc17
Merge branch 'master' of git://repo.or.cz/org-mode
2010-07-14 15:01:44 -04:00
Eric Schulte
57bfa1989d
ob-sh: can now handle variable strings which contain newlines
...
* lisp/ob-sh.el (org-babel-sh-var-to-sh): shell can now handle input
strings which contain newlines
2010-07-14 11:42:06 -07:00
Eric Schulte
f904376df4
ob-python: can now handle variable strings with newlines
...
* lisp/ob-python.el (org-babel-python-var-to-python): python can now
handle input strings with newlines
2010-07-14 11:34:30 -07:00
Eric Schulte
e3af061f90
doc: two tiny tweaks to the babel indexing documentation
2010-07-14 11:08:58 -07:00
Eric Schulte
32b7a76d41
babel: cleaned up code and improved documentation of indexing into variables
...
* lisp/ob-ref.el (org-babel-ref-index-list): slight code cleanup, also
now allowing an empty index to mean the entire range
* doc/org.texi (var): updated the documentation of Babel index
referencing to include working examples covering the full range of
index behavior
2010-07-14 11:01:57 -07:00
Eric Schulte
e6a274824d
babel doc: cleaned up documentation on "Evaluating code blocks"
2010-07-14 09:53:59 -07:00
Carsten Dominik
bca27d9215
Capture: Fix the case of using a template file
...
* lisp/org-capture.el (org-capture-set-plist): Make sure txt is a string
before calling `string-match'.
(org-capture-templates): Fix customization type.
Modified from a patch proposal by Johan Friis.
TINYCHANGE
2010-07-14 11:03:27 +02:00
Carsten Dominik
a39e5ef229
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-07-14 10:54:51 +02:00
Carsten Dominik
065468451e
LaTeX export: Make sure \nbsp{} does not create additional space
...
* lisp/org-latex.el (org-export-latex-preprocess): Make a special case for \nbsp.
(org-latex-entities): Remove the entry for \nbsp.
(org-latex-entities-exceptions): Variable removed.
2010-07-14 10:54:39 +02:00
Eric Schulte
39f71206c5
ob-eval: no longer throws errors on non-numeric exit codes
...
* lisp/ob-eval.el (org-babel-eval-error-notify): no longer throws
errors on non-numeric exit codes
2010-07-13 21:16:39 -07:00
Tom Dye
272aefce83
Finished editing Babel docstrings
2010-07-13 16:20:08 -07:00
Tom Dye
3807787aa9
More docstring edits
2010-07-13 16:04:47 -07:00
Tom Dye
c6403e0274
Fixed typo in ob-css.el
2010-07-13 15:58:11 -07:00
Tom Dye
c0a5150b2c
Minor change to ob-css.el
2010-07-13 15:58:00 -07:00
Tom Dye
333526b8aa
Wondering if error messages ought to be standardized?
2010-07-13 15:56:17 -07:00
Carsten Dominik
cb1ab577a2
Fix bookmarking the capture position
...
* lisp/org-capture.el (org-capture-refile): Do not try to manipulate
bookmark list.
* lisp/org.el (org-refile): Use the correct bookmark here.
2010-07-13 14:12:45 +02:00
Carsten Dominik
d5229333cd
Finalize documentation about radio lists
2010-07-13 13:42:03 +02:00
Carsten Dominik
b564a944a7
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-07-13 13:36:37 +02:00
Carsten Dominik
acf44c879a
Fix radio lists
...
* lisp/org-list.el (org-list-send-list): Parse list from its true beginning.
* lisp/org.el (org-ctrl-c-ctrl-c): Maybe send the list when at a list item.
* doc/org.texi (Radio lists): Fix bug in description of radio lists.
2010-07-13 13:36:14 +02:00
Carsten Dominik
acb8bcfba7
Fix relative path creation when making a file link
...
* lisp/org.el (org-insert-link): Correctly determine if we should use
a relative path.
Aidan Gauland writes:
> If I create a link with C-c C-l and give it a relative "file:" link, a
> link is created with an absolute path. For example, C-c C-l
> file:../foo.org <RET> foo puts
> [[file:~/path/to/working-directory/foo.org][foo]] in the buffer. I was
> expecting [[file:../foo.org][foo]].
2010-07-13 13:35:50 +02:00
Eric Schulte
c53fc7d246
babel: consolidate execution messaging into ob.el
...
* lisp/ob.el (org-babel-execute-src-block): consolidate execution
messaging into ob.el rather than spread out amongst all the language
files
2010-07-12 22:26:25 -07:00
Eric Schulte
e3aaaec91c
babel: more informative automatically generated block names in tangled comments
...
* lisp/ob-tangle.el (org-babel-tangle-collect-blocks): more
informative automatically generated block names in comments
2010-07-12 17:07:23 -07:00
Eric Schulte
5570bef368
babel: adding comments to org-babel-header-arg-names
...
* lisp/ob.el (org-babel-header-arg-names): adding comments to
org-babel-header-arg-names
2010-07-12 16:32:24 -07:00
Eric Schulte
9271692869
babel: don't prematurely remove existing results when not caching
...
* lisp/ob.el (org-babel-where-is-src-block-result): be sure not to
remove existing results when the there is no cache header arg
2010-07-12 14:38:35 -07:00
Eric Schulte
e8033b7f04
org-exp: raise an error when trying to export code blocks w/o languages
...
* lisp/ob.el (org-babel-get-src-block-info): ensure that we don't
match (and return info for) source blocks without a language
* lisp/org-exp.el (org-export-replace-src-segments-and-examples):
updated source code block regexp so that the presence of a language
can be explicitly checked. Also now raising an error when a source
block does not have a language.
2010-07-12 12:33:15 -07:00
Eric Schulte
1e50216854
babel: now always updating hash when inserting results
...
* lisp/ob.el (org-babel-where-is-src-block-result): now will replace
the results line when if contains an old hash which is out of date
2010-07-12 12:28:49 -07:00
Carsten Dominik
ceb63ae94e
Fix typo, ORGLIST versus ORGLST
2010-07-12 19:06:14 +02:00
Nicolas Goaziou
3d69093339
Fix radio list templates
...
* lisp/org-list.el (org-list-radio-list-templates): Fix templates.
2010-07-12 19:04:48 +02:00
Carsten Dominik
c1efc0a1d7
Use Slashdot.org as feed example in the documentation
...
* doc/org.texi (RSS Feeds): Use slashdot.org as the example,
and mention atoms feeds as well.
2010-07-12 14:01:35 +02:00
Carsten Dominik
b01660fd51
Fix make_emacs_changelog to include mentioning of tiny changes
2010-07-12 11:57:08 +02:00
Nicolas Goaziou
94689a04b0
Fix regexp for `org-list-send-list'.
...
* lisp/org-list.el (org-list-send-list): regexp defining the start of
a radio list is now on par with the one used for radio tables.
2010-07-12 11:48:44 +02:00
Carsten Dominik
eeab263cb8
Add headline for user-defined entities to `M-x org-entities-help'
...
* lisp/org-entities.el (org-entities-help): Add a headline for
the user-defined entities.
2010-07-12 11:37:39 +02:00
Carsten Dominik
f99f1d4b06
Merge branch 'changes' of git+ssh://repo.or.cz/srv/git/org-mode into changes
...
Conflicts:
ORGWEBPAGE/Changes.org
2010-07-12 11:33:18 +02:00
Carsten Dominik
9dcbdbf8da
Finalize the list of changes for 7.01
2010-07-12 11:30:55 +02:00
Eric Schulte
d2cb09e2e5
updated changes.org to reflect the new Babel security measures
2010-07-12 08:33:29 +02:00
Eric Schulte
d258dffcf5
updated changes.org to reflect new developments in the safety-babel branch
2010-07-12 08:33:29 +02:00
Eric Schulte
3e94fbcdeb
fleshing out "Org Babel is now part of the Org core"
2010-07-12 08:33:29 +02:00
Eric Schulte
83539af9bf
added "Org-babel configuration changes" to "Incomparable Changes"
2010-07-12 08:33:29 +02:00
Carsten Dominik
4f670b53b6
Changes for version 7.00
2010-07-12 08:33:28 +02:00
Dirk-Jan C. Binnema
18161d0310
Add capture to agenda actions
...
* lisp/org-agenda.el (org-agenda-action): Document capture key and add it
to the prompt.
TINYCHANGE
A trivial patch to add some documentation for 'capture' to org-agenda (against
HEAD).
2010-07-12 07:56:26 +02:00
Carsten Dominik
227b24f517
Merge branch 'master' of git+ssh://repo.or.cz/srv/git/org-mode
2010-07-12 07:46:30 +02:00
Carsten Dominik
fb732b2a15
Fix typo ORGLST versus ORGLIST in the manual
...
Reported by Nick Dokos
2010-07-12 07:46:22 +02:00