Re: [O] Weaving a budget with Org & ledger

2014-02-20 Thread Alan Schmitt
Erik Hetzner writes: > Users of ledger and Org may be interested in this tutorial on how I > manage an envelope style budget with those two excellent tools. > > http://orgmode.org/worg/org-tutorials/weaving-a-budget.html Thank you very much for this! My current setup (using Moneywell) is start

[O] Conditional in table formula with times

2014-02-20 Thread Loris Bennett
Hi, I'm trying to keep track of total time spend at work, but I am having trouble with a conditional in table formula: | *Day*| *Came* | *Went* | *Worked* | *Required* | *Diff* | |--+++--++--| | [2014-01-06 Mon] | 8:00 |

[O] Weaving a budget with Org & ledger

2014-02-20 Thread Erik Hetzner
Hi, Users of ledger and Org may be interested in this tutorial on how I manage an envelope style budget with those two excellent tools. http://orgmode.org/worg/org-tutorials/weaving-a-budget.html Thanks! best, Erik -- Sent from my free software system .

Re: [O] [export] Tables in ox-reveal export

2014-02-20 Thread Yujie Wen
Hi, Alexander, You can specify the appearance of tables in an extra .css file and tell ox-reveal to use that .css file by specifying #+REVEAL_EXTRA_CSS. For example, say I have a table.org and a table.css in the same directory. The contents of the two files are: table.org --

Re: [O] Non-interactive export

2014-02-20 Thread John Hendy
On Thu, Feb 20, 2014 at 4:12 PM, Simon Thum wrote: > Hi all, > > I have a server over which I sync my Org files and provide drops for other > clients, chiefly iCal and vCard. Therefore I need non-interactive export. > > Things recently stopped working however, and although I acknowledge it is > li

[O] orgstruct-mode and strange keybindings

2014-02-20 Thread Bart Bunting
Good morning, I have just started to use orgstruct-mode and have a very strange thing happening. I have built from the org-mode git repo as of just now. Org-struct mode works but appears to have taken over the m and c keys. Stranger than that it looks like meta and control is a prefix. I mean a

Re: [O] org-export-latex-hyperref-options-format

2014-02-20 Thread Joe Hirn
With recommended changes. BEGIN PATCH * diff --git a/ox-latex.el b/ox-latex.el index 19f055e..f6e5a09 100644 --- a/ox-latex.el +++ b/ox-latex.el @@ -103,7 +103,7 @@ (:latex-class-options "LATEX_CLASS_OPTIONS" nil nil t) (:latex-header "LATEX_HEADER" nil nil newline) (:

Re: [O] [RFC] Move ox-koma-letter into core?

2014-02-20 Thread Alan L Tyree
On 21/02/14 00:29, Rasmus wrote: Viktor Rosenfeld writes: Hi Tom, Am 17.02.14 22:56, schrieb Thomas S. Dye: FWIW, as a small businessman, the indemnification clause looks fairly standard to me. The contracts for archaeological services that we routinely sign typically have a clause like t

[O] Non-interactive export

2014-02-20 Thread Simon Thum
Hi all, I have a server over which I sync my Org files and provide drops for other clients, chiefly iCal and vCard. Therefore I need non-interactive export. Things recently stopped working however, and although I acknowledge it is likely not Org's fault maybe here I can find somewone more in

[O] [ANN] Lazy cache synchronization

2014-02-20 Thread Nicolas Goaziou
Hello, I just pushed an update for parser cache. Until then, synchronization was the weak spot of the cache mechanism, as it happened in one row after each buffer change, with a linear complexity by the number of elements in cache after point. In other words, editing a very large buffer near its

Re: [O] org-export-latex-hyperref-options-format

2014-02-20 Thread Joe Hirn
I really appreciate your review. Sorry for the pedestrian code submission. I don't get candid critical feedback on my e-lisp, so it's great to learn more about its idioms and conventions. I'll incorporate your feedback into a new patch. On Thu, Feb 20, 2014 at 2:51 PM, Nicolas Goaziou wrote: >

Re: [O] Does org export have something like Lisp quasiquote and unquote?

2014-02-20 Thread Alan Schmitt
Eric Schulte writes: > Oleh writes: > >>> >>> Think of code blocks as macros with optional interactive expansion. If >>> you don't execute the code block you need not ever see the results, >>> however with an additional ":exports results" header argument the code >>> block will be executed and

Re: [O] Simple question re: use of conditional in cell formula

2014-02-20 Thread Michael Brand
Hi Subhan On Thu, Feb 20, 2014 at 9:05 PM, Subhan Tindall wrote: > What I'd like to do, but can't seem to find the proper syntax for, > is use a conditional assignment so that when there is no Effort > value only a blank, or "***", or similar is in the destination cell. > SImilarly, when there is

Re: [O] org-export-latex-hyperref-options-format

2014-02-20 Thread Nicolas Goaziou
Hello, Joe Hirn writes: > I was able to test this on my local machine and it seems to work as we > discussed. > > If there are any other changes to the patch you'd like to see, please let > me know. Thank you for the patch. Here are a few comments. > - (:latex-hyperref-p nil "texht" org-late

[O] Simple question re: use of conditional in cell formula

2014-02-20 Thread Subhan Tindall
Here's my clockreport setup: '(org-agenda-clockreport-parameter-plist (quote (:link t :maxlevel 3 :formula "$9=$2-$6;t::$8=$2-$5;t::$7=$2-$4;t" :properties (\ "Effort" portion of table output follows (as you can see my effort estimates are sporadic, and vary in level What I'd like to do, but

[O] iCal-Export: Strange Results

2014-02-20 Thread G. Martin Butz
Hi, today I tried to setup iCal-Export of one org file contributing to my agenda. As I use Mozilla Sunbird (resp. Iceowl) to keep track of my company dates synchronizing with a remote ical file, it seemed to be a good idea to have also my org dates available in Iceowl. While importing and vi

Re: [O] Does org export have something like Lisp quasiquote and unquote?

2014-02-20 Thread Eric Schulte
Oleh writes: >> >> Think of code blocks as macros with optional interactive expansion. If >> you don't execute the code block you need not ever see the results, >> however with an additional ":exports results" header argument the code >> block will be executed and replaced with it's results on e

Re: [O] org-export-latex-hyperref-options-format

2014-02-20 Thread Joe Hirn
Hi Nicholas. I was able to test this on my local machine and it seems to work as we discussed. If there are any other changes to the patch you'd like to see, please let me know. Thanks for your help. I really appreciate it. BEGIN PATCH** diff --git a/ox-late

Re: [O] Does org export have something like Lisp quasiquote and unquote?

2014-02-20 Thread Oleh
> > Think of code blocks as macros with optional interactive expansion. If > you don't execute the code block you need not ever see the results, > however with an additional ":exports results" header argument the code > block will be executed and replaced with it's results on export. > > Take a lo

Re: [O] Does org export have something like Lisp quasiquote and unquote?

2014-02-20 Thread Eric Schulte
Oleh writes: >> The following will do what you want. >> >> set the value >> #+begin_src lisp :results silent >> (defvar foo '(defun square (x) (* x x))) >> #+end_src >> >> #+begin_src lisp :results output pp code >> foo >> #+end_src >> >> #+RESULTS: >> #+BEGIN_SRC lisp >> >> (DEFUN SQUARE (X) (*

Re: [O] for your amusement

2014-02-20 Thread Eric Abrahamsen
"Nicolas Richard" writes: > Eric Abrahamsen writes: >> Gosh, where did you guys dig this thread up from? :) > > Oops, I didn't notice the date of your original message. I answered > because of Kevin's answer. If we're still using (and improving) the snippet, it's still a relevant thread!

Re: [O] [RFC] Move ox-koma-letter into core?

2014-02-20 Thread Rasmus
Viktor Rosenfeld writes: > Hi Tom, > > Am 17.02.14 22:56, schrieb Thomas S. Dye: > >> FWIW, as a small businessman, the indemnification clause looks fairly >> standard to me. The contracts for archaeological services that we >> routinely sign typically have a clause like this, usually coupled wi

Re: [O] org-export-latex-hyperref-options-format

2014-02-20 Thread Joseph Hirn
Ok. I was hesitant to require anything additional but I should be able to knock this out. Thx again. Sent from my iPhone > On Feb 20, 2014, at 4:22 AM, Nicolas Goaziou wrote: > > Hello, > > Joe Hirn writes: > >> Hi just sat down to code this up. I assume the keywords are so we can use >> data

Re: [O] for your amusement

2014-02-20 Thread Nicolas Richard
Eric Abrahamsen writes: > Gosh, where did you guys dig this thread up from? :) Oops, I didn't notice the date of your original message. I answered because of Kevin's answer. -- Nico.

Re: [O] for your amusement

2014-02-20 Thread Eric Abrahamsen
"Nicolas Richard" writes: > [fu2 gmane.emacs.bbdb.user] > > Eric Abrahamsen writes: >> Incidentally, I'm using `ido-everywhere', and would like to write this >> function so that it didn't _rely_ on ido, but made use of ido when >> `ido-everywhere' was true. Ie, I'd like to replace the >> `ido-co

Re: [O] for your amusement

2014-02-20 Thread Nicolas Richard
[fu2 gmane.emacs.bbdb.user] Eric Abrahamsen writes: > Incidentally, I'm using `ido-everywhere', and would like to write this > function so that it didn't _rely_ on ido, but made use of ido when > `ido-everywhere' was true. Ie, I'd like to replace the > `ido-completing-read' calls with something m

Re: [O] org-export-latex-hyperref-options-format

2014-02-20 Thread Nicolas Goaziou
Hello, Joe Hirn writes: > Hi just sat down to code this up. I assume the keywords are so we can use > data within the plist argument (info) passed to `org-latex-template'. But > I'm not exactly sure what you mean by %k for keywords. > > Are you suggesting we could do something like: > > "\\hyper

[O] encrypted items, but not timestamp

2014-02-20 Thread David Belohrad
Dear all, I have followed this: http://orgmode.org/worg/org-tutorials/encrypting-files.html to encrypt subtree of my journal. So e.g. something like this: testing subree encryption :crypt: this text should be encrypted when saved on the disk using my pr