And Carsten Dominik writes:
>> git://repo.or.cz/org-mode/ejr.git master
>
> Can you explain to step by step what I would have to do to
> pull these changes from your repository into a local branch in my own
> repository? Thanks.
One long-term version is to add that repo as a named remote:
git r
Hi Jason,
On May 5, 2008, at 3:54 AM, Jason Riedy wrote:
I needed an orgtbl-to-orgtbl transformation when writing up
transformation examples. It seems pretty core, so I've
added it to org-table.el. The function needs a way to
suppress :tstart and :tend strings, so I added support
for explicit
#+TITLE: Using Org-Mode Table Formatting Functions
#+AUTHOR: Jason Riedy
#+EMAIL: [EMAIL PROTECTED]
#+LANGUAGE: en
#+TEXT: *Abstract:* Org-mode's ability to slice one table into many
#+TEXT: separately formatted destinations helps keep documentation
#+TEXT: and data in sync. We provide an example
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 <[EMAIL PROTECTED]>
---
I needed an orgtbl-to-orgtbl transformation when writing up
transformation examples. It seems pretty core, so I've
added it to org-table.el. The function needs a way to
suppress :tstart and :tend strings, so I added support
for explicit nils.
Cleaning up the orgtbl-to-sqlinsert function lead to
Use the default fmt function, collect only the first header
line for field names, and don't call plist-get for the table
name on every line.
Signed-off-by: Jason Riedy <[EMAIL PROTECTED]>
---
contrib/ChangeLog|7 +++
contrib/lisp/orgtbl-sqlinsert.el | 13 +++--
2
Useful for documenting orgtbl transformation and formatting
functions.
Signed-off-by: Jason Riedy <[EMAIL PROTECTED]>
---
ChangeLog |2 ++
lisp/org-table.el | 16
2 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d70bc98..d8
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 <[EMAIL PROTECTED]>
---
ChangeLog |6 ++
lisp/org-t