Re: [O] Using Code Blocks in Org Tables

2011-08-28 Thread Henri-Paul Indiogine
Hi Eric! 2011/8/28 Eric Schulte : > > #+source: last-of-stuff > #+begin_src sh :var input=stuff >  echo "$input" |tail -1 > #+end_src > > | one | > | two | > | 3   | > #+TBLFM: @3$1='(sbe last-of-stuff) Your solution works very well. Thanks! Henri-Paul -- Henri-Paul Indiogine Curriculum & I

Re: [O] Underline ONLY the first character of a word?

2011-08-28 Thread Michael Hannon
> I don't think the following trick has come up yet.  If you are > only exporting to HTML, you can do: > > @e@vent Thanks, Carsten.  That works nicely. -- Mike

Re: [O] The Orgfather

2011-08-28 Thread John Hendy
Loved it. Make them *all* sign the FSF papers. On Sat, Aug 27, 2011 at 10:05 AM, Bastien wrote: > Hi folks, > > http://lumiere.ens.fr/~guerry/theorgfather.html > > Enjoy! > > -- >  Bastien > >

Re: [O] org-agenda-custom-commands clarification on filters needed

2011-08-28 Thread Eric Abrahamsen
On Sun, Aug 28 2011, Thomas Wallrafen wrote: > Hi org'ers, > > I am currently trying to figure out a way to build a composite view for > an agenda containing agenda and todos, which works well but when it > comes to setting filters... > > In the first example (agenda and todo list below) the filte

[O] time-up/down in org-agenda-sorting-strategy seems to have no effect?

2011-08-28 Thread Richard Lawrence
Hi everyone, I've just started using custom agenda views in earnest, and I would like to be able to control how several custom views are sorted. I have tried to set org-agenda-sorting-strategy to reflect what I want, but it seems to have no effect on how items are sorted. I'm wondering if I'm mi

[O] [PATCH 2/2] org-odt.el: Put table style and col sizes under direct user control

2011-08-28 Thread Jambunathan K
> I have worked up a patch which intends to give users more control over > how tables are formatted. The patch modifies files that I don't own so > the changes will take sometime to hit the repo. >From 046a2d1793c50c99b5b58b3874540632513e4562 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Mo

[O] [PATCH 1/2] Parse and store both col align and col width spec for later use

2011-08-28 Thread Jambunathan K
> I have worked up a patch which intends to give users more control over > how tables are formatted. The patch modifies files that I don't own so > the changes will take sometime to hit the repo. >From 8bae4b059a3063a866260ed2958e6c1e05365901 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Mo

Re: [O] org->odt/html table export: adjusting default behaviour?

2011-08-28 Thread Jambunathan K
Matt > It would be nice if I could code the table formatting into the org > file so that I don't have to hand-fix the formatting on each > iteration. Thanks for your feedback. I have worked up a patch which intends to give users more control over how tables are formatted. The patch modifies f

[O] PATCH Make org-open-at-point only ask once

2011-08-28 Thread Anders Waldenborg
Hi! If an org buffer is narrowed, and one tries to do org-open-at-point on a link that points to outside of the restriction it asks: "No match - create this as a new heading?". When answering no the buffer is widened and the reseach is done, and if the link still can't be resolved the question is

Re: [O] [PATCH] Library of Babel source block

2011-08-28 Thread Thomas S. Dye
Pieter Praet writes: > On Sun, 28 Aug 2011 07:11:36 -1000, t...@tsdye.com (Thomas S. Dye) wrote: >> [...] >> I tried to follow Bastien's suggestion about adding a change log to the >> commit message, but ended up with something that looks different than >> his example. I'm not sure why--perhaps

Re: [O] [PATCH] Library of Babel source block

2011-08-28 Thread Pieter Praet
On Sun, 28 Aug 2011 07:11:36 -1000, t...@tsdye.com (Thomas S. Dye) wrote: > [...] > I tried to follow Bastien's suggestion about adding a change log to the > commit message, but ended up with something that looks different than > his example. I'm not sure why--perhaps Bastien is not working in mag

Re: [O] [PATCH] Library of Babel source block

2011-08-28 Thread Eric Schulte
> > Here is the patch that adds the booktabs-notes source block. Applied, thanks. > I took the liberty of editing the description of the booktabs source > block, which contained a contradiction about the number of required > and optional arguments. Take a look to make sure I resolved the > contr

Re: [O] Export issue: Text not exportet to latex but to html (emacs23.2 windows and orgmode 7.7)

2011-08-28 Thread Nick Dokos
Markus Grebenstein wrote: > Dear List, > > I've been fighting the whole night but I' can't get > it fixed: > > I have a simple and short file (to test why the big > document >70 pages is not exported completely) which > I want to export to latex. But if I do so, a portion > of text is missing (

Re: [O] Bug: wrong-type-argument when changing TODO state [7.7]

2011-08-28 Thread Nick Dokos
Stelian Iancu wrote: > > I am trying to switch between TODO and DONE states with Shift-Right > Arrow and I get a (wrong-type-argument stringp nil) error. > > Please find attached the backtrace. > > > Emacs : GNU Emacs 23.2.1 (i486-pc-linux-gnu, GTK+ Version 2.20.0) > of 2010-12-11 on raven,

[O] [PATCH] Library of Babel source block

2011-08-28 Thread Thomas S. Dye
Eric Schulte writes: > Hi Tom, > > This sounds great, would you mind submitting this as a patch to the > library-of-babel.org file in the git repository, with some included > usage instructions in the same subtree as the code block? > > Thanks! -- Eric > > t...@tsdye.com (Thomas S. Dye) writes: >

Re: [O] difference between "#+source" and "#+srcname"; passing parameters to Awk.

2011-08-28 Thread Eric Schulte
Feiming Chen writes: > Hi, I'd like to ask two questions. > > 1. What's the difference between header options "#+source" and "#+srcname"? > They seem to have identical utilities. > No difference, these are synonyms for the same thing. > > 2. I'd like to pass parameters (filenames) to Awk (lan

Re: [O] Library of Babel function

2011-08-28 Thread Eric Schulte
Hi Tom, This sounds great, would you mind submitting this as a patch to the library-of-babel.org file in the git repository, with some included usage instructions in the same subtree as the code block? Thanks! -- Eric t...@tsdye.com (Thomas S. Dye) writes: > Hi Eric, > > The booktabs-notes func

Re: [O] Using Code Blocks in Org Tables

2011-08-28 Thread Eric Schulte
Henri-Paul Indiogine writes: > Hi Eric! > > 2011/8/26 Eric Schulte : >> sh code blocks are different in that they don't really have a ":results >> value" option in the same way as most code blocks.  Two options would be >> to either >> 1. remove the "echo $HOME" line from your code blocks, or >>

Re: [O] The Orgfather

2011-08-28 Thread Tom Davey
I LOLd: "And this unicorn? Does it really look queer?" -- Tom Davey t...@tomdavey.com New York NY USA

Re: [O] Small patch for org-lparse.el -- Macro edebug spec

2011-08-28 Thread David Maus
At Sun, 28 Aug 2011 16:06:49 +0200, David Maus wrote: > > Attached patch for org-lparse.el adds an edebug specification to > `with-org-lparse-preserve-paragraph-state'. And here's the patch. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber dmj...@jabber.org Email. dm...@ictsoc.de

[O] Small patch for org-lparse.el -- Macro edebug spec

2011-08-28 Thread David Maus
Attached patch for org-lparse.el adds an edebug specification to `with-org-lparse-preserve-paragraph-state'. Best, -- David -- OpenPGP... 0x99ADB83B5A4478E6 Jabber dmj...@jabber.org Email. dm...@ictsoc.de pgpdNxPKq8hcd.pgp Description: PGP signature

Re: [O] [PATCH 2/5] Immediately return if scope is region but no region is active

2011-08-28 Thread David Maus
Hi Carsten, At Thu, 25 Aug 2011 07:43:48 +0200, Carsten Dominik wrote: > > > On 25.8.2011, at 06:25, David Maus wrote: > > > * org.el (org-map-entries): Immediately return if scope is region but > > no region is active. > > --- > > lisp/org.el | 116 > > ++

Re: [O] [PATCH 0/5] loop over headlines in active region

2011-08-28 Thread David Maus
Hi Carsten, At Thu, 25 Aug 2011 08:13:21 +0200, Carsten Dominik wrote: > I am wondering, why did you choose to skip invisible headlines? > I would worry that this introduces inconsistent behavior and also > makes it hard to use this feature in a programmatic way. Good points. I though of skipping

Re: [O] [PATCH 0/5] loop over headlines in active region

2011-08-28 Thread David Maus
At Thu, 25 Aug 2011 12:08:42 +0200, Štěpán Němec wrote: > > On Thu, 25 Aug 2011 06:25:29 +0200 > David Maus wrote: > > > As for the macro: What stop me to implement a macro for the generic > > operation is that for now the macro would depend on the global > > customization variable. That's not a

[O] [PATCH] org-crypt: when running org-decrypt-entry, only run auto-save-mode check if on an encrypted entry

2011-08-28 Thread Pieter Praet
* lisp/org-crypt.el (org-crypt-check-auto-save): New function, see next change. * lisp/org-crypt.el (org-decrypt-entry): Break the auto-save-mode check out into a separate function, and call it at a later point, to assure it only runs when visiting an encrypted entry. Currently `org-decrypt-en

[O] org-agenda-custom-commands clarification on filters needed

2011-08-28 Thread Thomas Wallrafen
Hi org'ers, I am currently trying to figure out a way to build a composite view for an agenda containing agenda and todos, which works well but when it comes to setting filters... In the first example (agenda and todo list below) the filter "+home" for the agenda does not take effect. When reorde

Re: [O] disable "org-decrypt: auto-save-mode may cause leakage"

2011-08-28 Thread Pieter Praet
On Sun, 28 Aug 2011 09:02:58 +0200, Achim Gratz wrote: > Pieter Praet writes: > > Apparently not config-related. > > So it does happen with just "emacs -Q"? I cannot reproduce this. Well, not quite... :) Some minimal config is required. 1. Run EMACS like this: (don't forget to adjust the l

[O] Bug: wrong-type-argument when changing TODO state [7.7]

2011-08-28 Thread Stelian Iancu
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. -

Re: [O] Underline ONLY the first character of a word?

2011-08-28 Thread Niels Giesen
What about using something well-structured like a table or a (definition) list and CSS :first-letter pseudoselector and text-decoration: underline? e.g. td:first-child { font-weight:bold; } td~td:first-letter { text-decoration:underline; } for a two-column table. On Fri, Aug 26, 2011 at 10:

Re: [O] Is it possible to markup one character in a word?

2011-08-28 Thread Niels Giesen
> The whitespace module seems not to support this kind of spaces. > Is there any centralized feature to show/hide those things? > > The whitespace module does support this, see the variable `whitespace-display-mappings'. Something like this should do the trick (if not done via M-x customize-variab

Re: [O] a new way to navigate your org files

2011-08-28 Thread suvayu ali
On Sun, Aug 28, 2011 at 10:44 AM, Stelian Iancu wrote: >>> The code is on EmacsWiki for easier downloed: >>> >>> http://www.emacswiki.org/emacs/org-occur-goto.el >>> >>> > > Sorry for the stupid question, but how do I enable this? > Something like this in your `org-mode-hook' maybe? ;; keybindin

Re: [O] a new way to navigate your org files

2011-08-28 Thread Stelian Iancu
On 08/27/2011 09:26 AM, Nathan Neff wrote: I just found this and it's great -- thanks! On Mon, Apr 25, 2011 at 2:25 PM, Tom wrote: Suvayu Ali gmail.com> writes: This is very useful. I made some enhancements in the attached patches. The first one adds a very basic minibuffer histor

[O] Hints for contributors -- correct ChangeLog entries

2011-08-28 Thread Bastien
Dear all, here is a quick summary of things to keep in mind when submitting a patch to Org-mode: - prefer `git format-patch': it makes it easy to apply patches without having to manually amend the patch (with the author's name, etc.) - always add an emacs ChangeLog in the commit message: you c

[O] Away from today till sept. 5th

2011-08-28 Thread Bastien
Dear all, I will be quite offline next week, I won't be able to address urgent matters -- I will still read/write my emails once a day. Keep up with the flow of bug reports and ideas! And thanks for taking care of the nice atmosphere here. Thanks a lot, -- Bastien

[O] Export issue: Text not exportet to latex but to html (emacs23.2 windows and orgmode 7.7)

2011-08-28 Thread Markus Grebenstein
Dear List, I've been fighting the whole night but I' can't get it fixed: I have a simple and short file (to test why the big document >70 pages is not exported completely) which I want to export to latex. But if I do so, a portion of text is missing (in the tex file! So it doesn't seem to

Re: [O] disable "org-decrypt: auto-save-mode may cause leakage"

2011-08-28 Thread Achim Gratz
Pieter Praet writes: > Apparently not config-related. So it does happen with just "emacs -Q"? I cannot reproduce this. Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+ Wavetables for the Waldorf Blofeld: http://Synth.Stromeko.net/Downloads.html#BlofeldUs