[Orgmode] [non-bug] org-latex-preview color breaks when "tikz" is in `org-export-latex-packages-alist'

2010-01-25 Thread Eric Schulte
Hi,

This isn't really an Org-mode problem, but I just spent some time
running it down so I figured I'd share.

If "tikz" in included in `org-export-latex-packages-alist' with
something like

  (add-to-list 'org-export-latex-packages-alist '("" "tikz"))

then, the command line -fg switch to dvipng doesn't work, meaning the
foreground color of latex snippet previews will be dark even if Emacs
has a dark background.

luckily it's easy to remove tikz from my package-alist.

Cheers -- Eric


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [babel] error running source code? [6.34trans (release_6.34c.6.gcae0.dirty)]

2010-01-25 Thread Eric Schulte
Hi Martin,

Thanks for reporting this bug.  I just pushed up a fix.

Best -- Eric

"Martin G. Skjæveland"  writes:

> Hi,
>
> I pulled a fresh copy of org-mode this morning and got an error I did
> not have before the pull.
>
> When I export the following to pdf
>
> --begin
> * test
>
> #+begin_src java -n :exports none :tangle test.java
> private void abcdefghi throws IOException
> #+end_src
>
> #+begin_src sh :results output :exports results
> javac -cp "lib/jena/lib/*:lib/pellet/lib/*" test.java
> #+end_src
> --end
>
> the error
>
>   Invalid search bound (wrong side of point)
>
> occurs. The backtrace is attached. Note that I do not get the error
> when reducing the string "abcdefghi" to "abcdefgh".
>
> If I export the document without loading babel, I get no errors.
>
> Let me know if I should do some git bisecting.
>
> Thanks!
> Martin
>
> 
>
> Emacs  : GNU Emacs 23.1.50.1 (i486-pc-linux-gnu, GTK+ Version 2.18.0)
>  of 2009-09-27 on palmer, modified by Debian
> Package: Org-mode version 6.34trans (release_6.34c.6.gcae0.dirty)
>
> current state:
> ==
> (setq
>  org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)
>  org-metaup-hook '(org-babel-load-in-session-maybe)
>  org-after-todo-state-change-hook '(org-clock-out-if-current)
>  org-babel-interpreters '("tex" "n3" "xml" "java" "python" "dot" "sh"
> "emacs-lisp")
>  org-export-latex-format-toc-function 'org-export-latex-format-toc-default
>  org-export-preprocess-hook '((lambda nil
>  (org-set-local
>   (quote org-complex-heading-regexp)
>   "^\\(\\*+\\)[
> ]+\\(?:\\(TODO\\|DONE\\)\\>\\)?\\(?:[ ]*\\(\\[#.\\]\\)\\)?[
> ]*\\(.*?\\)\\(?:[ ]+\\(:[[:alnum:]_@:]+:\\)\\)?[  ]*$")
>  )
> org-export-blocks-preprocess)
>  org-tab-first-hook '(org-babel-hide-result-toggle-maybe
> org-hide-block-toggle-maybe)
>  org-src-mode-hook '(org-src-mode-configure-edit-buffer)
>  org-confirm-shell-link-function 'yes-or-no-p
>  org-export-first-hook '(org-beamer-initialize-open-trackers)
>  org-agenda-before-write-hook '(org-agenda-add-entry-text)
>  org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
> org-cycle-show-empty-lines
> org-optimize-window-after-visibility-change)
>  org-export-preprocess-before-normalizing-links-hook
> (org-remove-file-link-modifiers)
>  org-export-latex-hyperref-format "\\myhref{%s}{%s}"
>  org-use-speed-commands t
>  org-mode-hook '((lambda nil
> (org-add-hook (quote change-major-mode-hook)
>  (quote org-show-block-all) (quote append) (quote local))
> )
>(lambda nil
> (org-add-hook (quote change-major-mode-hook)
>  (quote org-babel-show-result-all) (quote append)
>  (quote local))
> )
>org-babel-result-hide-spec org-babel-hide-all-hashes
>#[nil "\300\301\302\303\304$\207"
>  [org-add-hook change-major-mode-hook org-show-block-all
>   append local]
>  5]
>)
>  org-ctrl-c-ctrl-c-hook '(org-babel-lob-execute-maybe
> org-babel-hash-at-point
> org-babel-execute-src-block-maybe)
>  org-confirm-elisp-link-function 'yes-or-no-p
>  org-export-interblocks '((lob org-babel-exp-lob-one-liners)
> (src org-babel-exp-inline-src-blocks))
>  org-occur-hook '(org-first-headline-recenter)
>  org-from-is-user-regexp "\\"
>  org-export-preprocess-before-selecting-backend-code-hook
> (org-beamer-select-beamer-code)
>  org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc
>  org-beamer-auto-fragile-frames
>  org-beamer-place-default-actions-for-lists)
>  org-metadown-hook '(org-babel-pop-to-session-maybe)
>  org-export-blocks '((src org-babel-exp-src-blocks nil)
>(comment org-export-blocks-format-comment t)
>(ditaa org-export-blocks-format-ditaa nil)
>(dot org-export-blocks-format-dot nil))
>  )
>
> Debugger entered--Lisp error: (error "Invalid search bound (wrong side of 
> point)")
>   re-search-backward("^[  ]*#\\+begin_src[
> ]+\\(tex\\|n3\\|xml\\|java\\|python\\|dot\\|sh\\|emacs-lisp\\)[ 
> ]*\\([^\":\n]*\"[^\"\n*]*\"[^\":\n]*\\|[^\":\n]*\\)\\([^\n]*\\)\n\\([^]+?\\)#\\+end_src"
>  123 t)
>   (and (re-search-backward org-babel-src-block-regexp progress-marker t) 
> (setq progress-marker (match-end 0)) (org-babel-exp-do-export 
> (org-babel-get-src-block-info) (quote block)))
>   (or (and (re-search-backward org-babel-src-block-regexp progress-marker t) 
> (setq prog

Re: [Orgmode] [feature request] Quotation marks in LaTeX export

2010-01-25 Thread Scot Becker
For what it's worth, I also think that an option to do this would be useful.



On Sun, Jan 24, 2010 at 7:22 PM, Sven Bretfeld  wrote:

> Hi
>
> "Sven Bretfeld"  writes:
>
> > Quotation marks like "these" are converted to ``these'' by
> > org-export-latex. It would be much better to use \enquote{these}.
>
> I have seen that org-latex.el links the quotation marks to the LANG
> environment. So far only French and English are supported. I think this
> is more complicated than it needs to be. Anyway, users with a French
> environment also write English texts from time to time. We already have
> a user-configurable, language-sensitive solution with the
> csquotes-package. Why not use it?
>
> On my system, I just changed the respective code in org-latex.el to
> \enquote{}. It's working and it's easy. But it will be gone with the
> next update.
>
> Greetings,
>
> Sven
>
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [Worg] Addition to org-hacks: Remove redundant tags

2010-01-25 Thread Manish
Applied to Worg.

Thanks
-- 
Manish

On Tue, Jan 26, 2010 at 12:53 AM, David Maus wrote:
> Hello,
>
> Attached patch adds a section to the org-hacks page of Worg with a
> function that removes redundant tags, that is: tags that are inherited
> by a parent headline or the #+FILETAGS headline and local to a
> headline.
>
> This function is useful for me as I generally use tags to denote a
> todo's context (priv for private, work for work related etc.) and in
> addition split my agenda files by context, too (work.org,
> private.org). If I file new todo headlines using `org-remember' they
> go in a central file (bucket.org) and I tag them so they show up on
> tags searches.  After refiling the context denoting tags are
> duplicated -- hence I wrote this little function to remove them:
>
> (defun dmj/org-remove-redundant-tags ()
>  "Remove redundant tags of headlines in current buffer.
>
>  A tag is considered redundant if it is local to a headline and
>  inherited by a parent headline."
>  (interactive)
>  (when (eq major-mode 'org-mode)
>    (save-excursion
>      (org-map-entries
>       '(lambda ()
>          (let ((alltags (split-string (org-entry-get (point) "ALLTAGS") ":"))
>                local inherited tag)
>            (dolist (tag alltags)
>              (if (get-text-property 0 'inherited tag)
>                  (push tag inherited) (push tag local)))
>            (dolist (tag local)
>              (if (member tag inherited) (org-toggle-tag tag 'off)
>       t nil
>
> Regards
>
>  -- David
>
> --
> OpenPGP... 0x99ADB83B5A4478E6
> Jabber dmj...@jabber.org
> Email. maus.da...@gmail.com
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: How to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-25 Thread Alan E. Davis
On Tue, Jan 26, 2010 at 4:39 AM, Austin Frank wrote:

> On Sun, Jan 24 2010, Torsten Wagner wrote:
> notebook as I process them.  Nowadays I keep a cheaper flimsier notebook
> in my back pocket at all times [1].  In addition to letting me
> guiltlessly destroy the thing, it's also more comfortable to sit on.
>

I can't offer much in the way of suggestions for syncing org-mode with
meat-space (notebooks).  I do know something about field notebooks,
however.  I am used to carrying around a notebook in a waist pouch (some of
the locals call them "thunder bags"), and have been doing so for years.  The
best notebooks I have found for general use are those I have cut from marble
covered composition books.  At the printer's I pay a couple of dollars to
have a stack of three or four notebooks cut into convenient sizes.  These
books are about 19 x 25 CM.  Whatever works.  I have them cut into sizes
convenient for whichever brand of pouch I am carrying, usually about 7.5 x
4.5 inches (11 x 19 cm, or so), sometimes smaller.  As a side benefit,
leftovers forml smaller notebooks of various sizes.   They are sewn, so no
metal to rust, and the thick cardboard covers are ideal.  They hold up much
better than the little mini-marble notebooks.   Printers use Guillotine
knives, and can easily trim a stack of notebooks to any desired size.  Cheap
and available almost anywhere (?).

After a typhoon destroyed my home some years ago, the only notebooks that
were salvable were these comp books.  Pencil notes are generally readable,
but  not always.  Some people use ball point pens in the tropics.  Duing
three years of undergraduate work, when I was taking notes constantly, I
experimented with many types of fountain pens, for water proof, india and
drawing inks.  I found a Mont Blanc fountain pen in about 1985 that was
fairly cheap at the time (not anymore, I'm afraid) that held up better than
any other, and never clogged, even with India Ink.  Eventually I even used
these pens as a laboratory pen, for writing labels and lab notes.   I don't
know whether Mont Blanc manufactures them anymore, but the pens I have seen
in duty free shops are far too expensive for me.

In my case, field notes were eventually typed into a sort of free-form
database in what linguists refer to as "band format."   I now have a
remember template for transcribing notes into this format.

More than anyone wanted or needed to know, for what it's worth.

Alan Davis
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] [Worg] Addition to org-hacks: Remove redundant tags

2010-01-25 Thread David Maus
Hello,

Attached patch adds a section to the org-hacks page of Worg with a
function that removes redundant tags, that is: tags that are inherited
by a parent headline or the #+FILETAGS headline and local to a
headline.

This function is useful for me as I generally use tags to denote a
todo's context (priv for private, work for work related etc.) and in
addition split my agenda files by context, too (work.org,
private.org). If I file new todo headlines using `org-remember' they
go in a central file (bucket.org) and I tag them so they show up on
tags searches.  After refiling the context denoting tags are
duplicated -- hence I wrote this little function to remove them:

(defun dmj/org-remove-redundant-tags ()
  "Remove redundant tags of headlines in current buffer.

  A tag is considered redundant if it is local to a headline and
  inherited by a parent headline."
  (interactive)
  (when (eq major-mode 'org-mode)
(save-excursion
  (org-map-entries
   '(lambda ()
  (let ((alltags (split-string (org-entry-get (point) "ALLTAGS") ":"))
local inherited tag)
(dolist (tag alltags)
  (if (get-text-property 0 'inherited tag)
  (push tag inherited) (push tag local)))
(dolist (tag local)
  (if (member tag inherited) (org-toggle-tag tag 'off)
   t nil

Regards

 -- David

--
OpenPGP... 0x99ADB83B5A4478E6
Jabber dmj...@jabber.org
Email. maus.da...@gmail.com


0001-org-hacks-Remove-redundant-tags-i.e.-tags-that-are-i.patch
Description: Binary data


pgptbz6m3jUo1.pgp
Description: PGP signature
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-mobile setup

2010-01-25 Thread Monty Zukowski
Ah, I got it backwards.  I thought I was supposed to edit index.org to
have links to files I wanted on my iphone.  Now that I re-read the
documentation I see I need to put file names into org-mobile-files.

Thanks

On Sun, Jan 24, 2010 at 2:28 AM, Carsten Dominik
 wrote:
>
> On Jan 22, 2010, at 11:22 PM, Monty Zukowski wrote:
>
>> When I do an org-mobile push, how does it know where to look for the
>> index.org file on my local machine?  Do I have to be in the index.org
>> buffer when I do the push?  I can see in the documentation how to tell
>> it where the files will go, but I can't see how it knows where they
>> should come from.
>
> index.org is created in the process, not copied from anywhere.
>
> - Carsten
>
>>
>> Thanks,
>>
>> Monty
>>
>>
>> ___
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
> - Carsten
>
>
>
>


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Enhancement : crypt and org-ctrl-c

2010-01-25 Thread Richard Riley

Carsten,

This adds ctrl-c ctrl-c context sensitive processing to pgp blocks
created by org-crypt.

I wasnt entirely sure where to put the regexp func so, since its so
small with the crypt patch, I submit it "neat" rather than as a diff. I
didnt spot another org func which does the same thing. Hopefully not a
duplicate.

regards,

r.

,
|   ; this small routine is handy for all "context" commands I think.
|   (defun pointInRegExp (startRE endRE)
| "returns t if the current point is within a block represented by the reg 
exp pairing of startRE and endRE"
| (interactive)
| (let ((p (point)))
|   (save-excursion
| (and (re-search-backward startRE nil t) (re-search-forward endRE nil 
t) (>= (point) p);
|   
|   ; inside a pgp block in org? if so then decrypt it.
|   (defun org-ctrl-c-encrypted ()
| (interactive)
| (if (pointInRegExp 
|  "^-BEGIN PGP MESSAGE-" 
|  "^-END PGP MESSAGE-")
| (org-decrypt-entry) nil))
|   
|   ; add crypt decryption to org-mode context sensitive processing.
|   (add-hook 'org-ctrl-c-ctrl-c-hook 'org-ctl-c-encrypted)
`

Seems to work fine. Only issue is that after decryption it then things
its on a tag line - not sure if thats to do with where the point
goes after decryption.

-- 
Google Talk : rileyrg...@googlemail.com  http://www.google.com/talk
ASCII ribbon campaign ( )
 - against HTML email  X
 & vCards / \



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: How to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-25 Thread Austin Frank
On Sun, Jan 24 2010, Torsten Wagner wrote:

> What I'am looking for is a smart way to keep both in sync and that
> without big hassle. It has to be something which does the job quite
> quick thus I will do it directly e.g., every morning before starting
> work... instead of pushing and pushing it away from me. Thought maybe
> I simply mark the entries in the paper version whether I added them to
> org-mode already or not and create a tag in org-mode for the vice
> versa reason.

The moleskine notebooks are VERY nice and I love the construction
quality and feel of them.  Unfortunately, this exact feature kept me
From using what ended up being the most effective strategy.  When I'm
being good and keeping analog and org in sync, it's because I am
making one note per page and indiscriminately tearing them out of my
notebook as I process them.  Nowadays I keep a cheaper flimsier notebook
in my back pocket at all times [1].  In addition to letting me
guiltlessly destroy the thing, it's also more comfortable to sit on.

I don't have a great system for going back the other direction, but am
at my computer often enough to make that process less important to me.

HTH,
/au

[1] 
http://www.officedepot.com/a/products/323629/Office-Depot-Brand-Mini-Marble-Composition/

-- 
Austin Frank
http://aufrank.net
GPG Public Key (D7398C2F): http://aufrank.net/personal.asc


pgpnhJXUjwg7d.pgp
Description: PGP signature
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-babel: Managing a bibtex database

2010-01-25 Thread Austin Frank
On Thu, Jan 21 2010, Taru Karttunen wrote:

> I am wondering whether org-babel would be suitable for managing a
> bibtex database of ~1500 entries. I am thinking of making Bibtex
> entries into literate source code and thus have org-mode managing them
> in a more sensible way.

> Has anyone else done something like this? Any better ideas how to
> accomplish this?

As an intermediate step, I'd be interested in seeing integration between
ebib [1, 2] and org-mode.  At the least, it would be great to store a
link in the ebib buffer, have it inserted as a link to the ebib database
when added to the org buffer, and have it exported as a working
reference (at least when exporting to \LaTeX).

Thanks,
/au

[1] http://ebib.sourceforge.net/
[2] http://repo.or.cz/w/ebib.git

-- 
Austin Frank
http://aufrank.net
GPG Public Key (D7398C2F): http://aufrank.net/personal.asc


pgpxtqK2vlCYZ.pgp
Description: PGP signature
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: [babel] Moving to babel the whole configuration

2010-01-25 Thread Manish
On Sat, Jan 23, 2010 at 2:16 AM, Greg Newman wrote:
> Eric, you hit the nail on the head.  Now I'll be spending my
> Friday night redoing my configs (and probably Saturday, and the
> next…)
>
> On Fri, Jan 22, 2010 at 3:44 PM, Eric S Fraga wrote:
>>
>> > Amazing isn't it? I just blew a day by moving to org-babel
>> > for my init file and managed to miss the "+" in my
>> > "#+end_src" marker ... but now its working its all smiles
>> > despite another day configuring rather than doing ;) It's an
>> > emacs problem in general. A shame there are no jobs
>> > "configuring your editor" 
>>
>> Yeah, it's amazing how much time we can spend increasing our
>> productivity... ;-)
>>

there goes my weekend too. :-(

-- 
manish


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] repo.or.cz

2010-01-25 Thread Bastien
Hi Carsten,

Carsten Dominik  writes:

> is there anyone here with an account on repo.or.cz (access with git
> +ssh) who can currently pull or push?  Because I cannot.

I just made a test, works fine here.

-- 
 Bastien


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] repo.or.cz

2010-01-25 Thread Manish
pull works for me but only ends up telling me that org is already
up-to-date.  i was also able to push a typo fix to worg.

regards
-- 
manish

On Mon, Jan 25, 2010 at 10:20 PM, Carsten Dominik wrote:
> Hi everyone,
>
> is there anyone here with an account on repo.or.cz (access with git+ssh) who
> can currently pull or push?  Because I cannot.
>
> Thanks.
>
> - Carsten
>
>
>
>
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [org-beamer] \alert

2010-01-25 Thread Sven Bretfeld
Hello Eric

Eric S Fraga  writes:

> There was a long discussion about this back in November on this
> mailing list.  

Oh sorry, I have missed that.

> Essentially, you can add this functionality yourself:

Thank you,

Sven


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] repo.or.cz

2010-01-25 Thread Carsten Dominik

Hi everyone,

is there anyone here with an account on repo.or.cz (access with git 
+ssh) who can currently pull or push?  Because I cannot.


Thanks.

- Carsten





___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg / WebDAV / Windows 7

2010-01-25 Thread Carl Bolduc
I got it to work on my system, here is what I did:
  - Downloaded and installed latest org-mode version to get mobile functions;
  - Mapped the MyDisk drive by following the instructions described at
mydisk.se (works well even if not Windows 7 specific);
  - Set org-mobile-directory to point to the org folder on the webdav
mapped drive.

Carl


2010/1/25 Brody, William (Buck) :
> I’m trying to get mobileOrg setup with mydisk.se.  The website shows
> instructions for XP and Vista, but nothing for Windows 7.  Any ideas?
>
>
>
> Thanks
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] How to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-25 Thread Jonathan Arkell
I have been using a combined Paper/org-mode system for awhile now.  i think the 
main thing is to have org as your primary system, and the paper system as a 
collection/rumination point.

whenever I have an incoming action item, and I am nowhere near my computer, I 
add it to an on-going todo list inside of my note-book.  Every morning I have a 
repeating task that is to take everything my notebook, and put it inside of the 
relevant place in org-mode.  Once that is done, I check off that item in my 
todo list in my notebook.  It's not that it is DONE per-sae, but it has been 
captured.

I also have a notebook tag, so that if I need to, I can print out an agenda for 
stuffing into my notebook. This is mostly for shopping lists, or things I need 
to spend some time thinking about.  Any action items that come out of that 
would get added to my todo list in my notebook, and then back into the system.

Hope that helps!

__

Jonathan Arkell
Tech Lead
Inspired By Drum & Bass, Scheme, Kawaii

p. 403.206.4377

402 -- 11th Ave SE
Calgary, AB, Canada T2G 0Y4

jonath...@criticalmass.com
criticalmass.com







On Jan 24, 2010, at 7:09 AM, Torsten Wagner wrote:

> Dear all,
>
> I really tried hard over the last year to use org-mode as much as
> possible. It was already mentioned that, due to the incredible
> org-mode features, this becomes fast more a religious rather then a
> working task. Thus, my work flow changed more and more to a org-mode
> flow. And now they even start this babel thing ;)
>
> I'm very very happy with this.
>
> However, not all my work is just in front of a computer. And the world
> is until know still analogue with sometimes even more analogue
> colleagues ;). Often I get some appointments or something I like to
> write down "on the way", at the bus, during the coffee-break, etc. I
> can make some notes on a piece of scratch papers and try to add them
> later to my org-mode system. But you know... no paper... no pen...
> lost the scratch paper... no time to transfer it to the PC etc. For
> many reasons this does not work well for me.
> I tried to a portable version of emacs+org-mode on my PDA. This works
> well, since it is a clamshell keyboard based PDA (Sharp Zaurus). For
> me this is still a bit ineffective compared to a paper and pen
> solution since it would require to sync home- , work-place and the PDA
> constantly (e.g., by using git). However, my PDA is not on-line most
> of the time, due to the lack of wireless access points. And murphys
> law always make sure it run out of juice whenever I need it really
> badly...
>
> Thus, today I bought one of these moleskine paper organizers (no
> advertisement, all other organizers would be nice as well). I hope to
> have it always with me and to use it in all this cases where I do not
> have access to org-mode ( I'm still waiting that someone comes up with
> a org-mode-brain interface).
>
> My question is now. What would be the best way to combine the
> moleskine and org-mode ? Does someone have experience  with a paper
> based and digital mixture system? One of my ideas was to print out the
> weekly or monthly agenda as small as possible and just attach it to
> the molenskine (it has a little card holder at the back). This would
> allow me to check what is in my org-mode agenda. However, I would
> still have two independent systems.
>
> What I'am looking for is a smart way to keep both in sync and that
> without big hassle. It has to be something which does the job quite
> quick thus I will do it directly e.g., every morning before starting
> work... instead of pushing and pushing it away from me. Thought maybe
> I simply mark the entries in the paper version whether I added them to
> org-mode already or not and create a tag in org-mode for the vice
> versa reason.
>
> Any ideas and experience would be welcome.
>
> Best Greetings
>
> Torsten
>
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode


The information contained in this message is confidential. It is intended to be 
read only by the individual or entity named above or their designee. If the 
reader of this message is not the intended recipient, you are hereby notified 
that any distribution of this message, in any form, is strictly prohibited. If 
you have received this message in error, please immediately notify the sender 
and delete or destroy any copy of this message.


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Hook Function Examples

2010-01-25 Thread Nick Dokos
Mark Elston  wrote:

> 
> OK.  From what I read I am assuming that a buffer is created with some
> already-processed (though not completely) org data as its initial
> content.  Then, at some point, these hook functions are called on this
> new buffer.  I assume this is the case since you wouldn't want to go
> modifying the original buffer - though this is not stated anywhere that
> I can find.
> 
> Some hook functions apparently *do* take parameters (e.g.
> org-cycle-hook, etc) and I wasn't sure about the ones that didn't
> mention any.
> 

Yes - it is (in the terminology of the Elisp Ref manual) an "abnormal"
hook and should not be called ``org-cycle-hook'', but the convention is not
enforced.

> I was just trying to find my way and didn't have a map of what was
> where.  Even the org-export-blocks-preprocess()  function is a little
> difficult to wade through for someone not really familiar with elisp.
> I think I have pieced it together, though.  This may give me what I need
> to do what I want (remove some specific kinds of headers when creating
> certain LaTeX files).
> 
> Are my assumptions above correct, then?
> 

I think so.

Nick


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] MobileOrg / WebDAV / Windows 7

2010-01-25 Thread Brody, William (Buck)
I'm trying to get mobileOrg setup with mydisk.se.  The website shows 
instructions for XP and Vista, but nothing for Windows 7.  Any ideas?

Thanks
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-indent-mode + word wrap

2010-01-25 Thread Christer Enfors
I'm having problems with word wrapping when using org-indent-mode and word 
wrapping. The text is wrapped beyond the right side of my 80-column window, 
once I get a few levels of indentation.
So I checked the manual to make sure I was doing everything correctly, and the 
manual says I need emacs version 23.1.50.6 or newer for org-indent-mode. 
Apparently, I'm using (GNU) emacs version 23.1.3, so I guess my emacs is too 
old. But when I check the GNU ftp server, I see nothing newer than emacs 23.1. 
What's going on? Is 23.1.50.6 a beta version, or something?

-- 

Christer Enfors


  ___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: How to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-25 Thread Christian Egli
Manish  writes:

> I am also beginning with something similar.  My plan is to print the
> day's agenda every morning (or previous night) and may be fold it
> like pocketmod [1] using Christian Egli's org2pocketMod [2].  Then

org2pocketMod has been renamed to org2hpda and has been included in
org-mode for ages (see
http://repo.or.cz/w/org-mode.git/blob/HEAD:/contrib/scripts/org2hpda).

I'm not using it anymore, so I can't comment on its usefulness.

-- 
Christian Egli
Swiss Library for the Blind, Visually Impaired and Print Disabled
Grubenstrasse 12, CH-8045 Zürich, Switzerland



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] [org-beamer] \alert

2010-01-25 Thread Eric S Fraga
(mistakenly sent this only to the OP... resending to list as well)

At 24 Jan 2010 20:10:03 +0100,
Sven Bretfeld wrote:
> 
> Hi
> 
> Is there any Symbol in org-beamer for \alert{Text}? In presentations
> \alert is recommended instead of italics. We could even think of
> translating text enclosed in slashes / ... / to \alert{} by default in
> the beamer class.

There was a long discussion about this back in November on this
mailing list.  Essentially, you can add this functionality yourself:

--8<---cut here---start->8---
(setq org-emphasis-alist (quote (("*" bold "" "") 
 ("/" italic "" "")
 ("_" underline "" "")
 ("=" org-code "" "" verbatim)
 ("~" org-verbatim "" "" verbatim)
 ("+" (:strike-through t) "" "")
 ("@" org-warning "" "")))
  org-export-latex-emphasis-alist (quote 
   (("*" "\\textbf{%s}" nil)
("/" "\\emph{%s}" nil) 
("_" "\\underline{%s}" nil)
("+" "\\texttt{%s}" nil)
("=" "\\verb=%s=" nil)
("~" "\\verb~%s~" t)
("@" "\\alert{%s}" nil)))
  )
--8<---cut here---end--->8---

Note the last entry in each of these variables; the other elements in
each are their default values.

HTH,
eric


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Make archived headers unavailable as refile targets?

2010-01-25 Thread Paul Mead
Hi

Is there any way of excluding archived headers as refile targets? 

I'd like to restrict refiling to those projects which are current.

Thanks
Paul



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Orgmode manual - available in *.org / emacs format?

2010-01-25 Thread Ian Barton

I had a look at Publishing and the 2 contained sample configurations.
Will following these examples give the left-hand scrollable TOC like
it's visible on the http://orgmode.org/manual page?

I think it depends on the css. Have a look on it ;-)

If you didn't know, you can easily get the css by doing View source" in 
your browser then searching for the style sheet. In org's case this is 
http://orgmode.org/org.css. You can open this in a browser window and 
then save it somewhere.


This is a very useful technique for copying other people's web site 
styling:)


Ian.


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] How to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-25 Thread Eric S Fraga
At Sun, 24 Jan 2010 23:09:27 +0900,
Torsten Wagner wrote:
> However, not all my work is just in front of a computer. And the world

[...]

> My question is now. What would be the best way to combine the
> moleskine and org-mode ? Does someone have experience  with a paper

[...]

> Any ideas and experience would be welcome.

In the "olden days" (as my son says), I used to run a mixed system
(well beore org-mode days, mind you).  The best working scenario for
me was the following:

- every Sunday, I would go through my paper diary, a Filofax (tm), and
  transfer any new/changed items to my electronic version.
- I would then print off the next month's calendar in "week per two
  pages" form compatible my Filofax.
- during the week, I would tend to work only on paper if I wasn't at
  my desk but, even at the desk, I would update both paper and
  computer simultaneously with new/changed entries.  Any such entries
  would be "ticked" on the paper so that I knew that I had already
  incorporated them into the computer version.

Eventually, I gave up and bought a Psion 3 (the original incarnation,
then a 3a and finally a 3mx) which I carried with me all the time!  My
3mx died early this century and I have been struggling ever since.
The Psion was absolutely fantastic, an example of engineering (both
hardware and software) at its best!

I now have org-mode which is fantastic in terms of the software end
(and in many ways is reminiscent of the Psion) but the hardware end is
lagging [1].  I now use a combination of systems: desktop PCs at work
and home, netbook (Asus EEE) on the move with a Nokia internet tablet
(N810) for those times when the netbook is too inconvenient
(e.g. impromptu lunchtime meetings).  Everything is synchronised using
git.

This all works well enough but I still would like a single pocketable
computer that I could use in all scenarios.  The Nokia's keyboard and
screen are just a little too small, especially the keyboard.  I am
hopeful that a more usable system will come out this year as many
mobile internet devices [MID] and ultra-mobile PCs (UMPC) were
announced last year.  The UMID &co. look promising.  Maybe the
Pandora!  Possibly one of the Android phones but probably not.

I won't get an iPhone as I don't like the proprietary nature of the
software [2].  I want Linux or equivalent with org-mode!

HTH,
eric


Footnotes: 
[1]  and this is *not* Carsten's fault ;-)

[2]  yes, the Psion ran proprietary software as well but, partly
 because of being orphaned by them, I no longer am willing to end
 up beholden to a single company's system!



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Orgmode manual - available in *.org / emacs format?

2010-01-25 Thread Giovanni Ridolfi
Erwin Panen  writes:

Hi, Erwin

> I thought I read somewhere the orgmode manual is included with emacs /
> org or downloadable as org document?

you may look at the org.texi file, in the doc directory of org-V.ersion,
(zip? tgz?) and convert it to the format you want. 
man texinfo
I believe in the doc directory the manual is already in pdf.

>
> It seems contained in \home\emacs-23.1\info\info
> However when I open this file with file->open file
> the outlook is totally different than opening it via
> menu-> Org-> Documentation-> Info Documentation
yes because the "org" file is in info format
and Emacs does "convert" it to a browsable 
format (is like viewing a html source file  or displaying
it in a browser, pretty different, don't you think? ;-)

> Is the web / html version of the manual made by publishing Info
> Documentation? Can someone confirm?
of course. 

> I had a look at Publishing and the 2 contained sample configurations.
> Will following these examples give the left-hand scrollable TOC like
> it's visible on the http://orgmode.org/manual page?
I think it depends on the css. Have a look on it ;-)

>
> If you have any other links or tutorials covering publishing / LateX,
the LaTeX tutorial is missing, but the manual seems pretty complete
to me
cheers
Giovanni


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: How to combine the analogue (Moleskine) world with digital (org-mode) world ?

2010-01-25 Thread Ian Barton



I bought an A5 sized (5.5 x 8/5 inches / 14 x 21cm)
student diary - one week to an opening with the 7 days on the
left and a page for notes on the right. I use this for note taking
and writing in very important dates, but I still refer to the 
org-mode file as the master reference.  This diary cost $3.50 ...

quite a bargain.


For the same reason I bought the moleskine. A bit more expensive but I thought 
it has to hold the harsh environments in my pocket for one year and I noticed 
that mid of January shops like to get rid of calendars urgently and greatly 
discount them ;)



My other idea capture and note taking tool are 3 x 5 inch
system cards. I cut up scrap paper into this size and keep several
handy in my shirt pocket and a pencil. I can jot down notes any time
and transfer what is important when I am back at the computer.


I tried this but always messed up with lost cards, messed up cards, etc. Thus 
I was looking for a more "stable" version.


You might want to look at dial2do.com and reqall.com. Not sure if they 
have local servers in your location. I find them useful for short notes. 
I simply phone them, leave my message and it gets transcribed into 
something approaching what I actually said. I then run a script which 
downloads the rss feed from the service and adds it to my task list.


There is org-feed.el and my Python script on github, either of which can 
grab the rss feed and append new items to an org file.


Ian.


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Absolute paths in exported files

2010-01-25 Thread Andrea Crotti

Ok forget about the sh problem, I just deleted it..
The absolute path is another mystery, I thought the problem was that I
wasn't using a project but it's exactly the same thing with a project.

Paths will only be absolutes, I also added
:include ("java")
but still the same, no code included and exported pages only works on my
machine, very strange there must be an easy explanation



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Orgmode manual - available in *.org / emacs format?

2010-01-25 Thread Erwin Panen

Hi Everyone,

Just a quick question:
I'm looking to improve my emacs specifically my orgmode skills.
I thought I read somewhere the orgmode manual is included with emacs / 
org or downloadable as org document?


It seems contained in \home\emacs-23.1\info\info
However when I open this file with file->open file
the outlook is totally different than opening it via
menu-> Org-> Documentation-> Info Documentation
Is the web / html version of the manual made by publishing Info 
Documentation? Can someone confirm?


I had a look at Publishing and the 2 contained sample configurations.
Will following these examples give the left-hand scrollable TOC like 
it's visible on the http://orgmode.org/manual page?


If you have any other links or tutorials covering publishing / LateX, 
much obliged.


Thanks a lot!

Erwin


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-babel and emacs init

2010-01-25 Thread Richard Riley

What approach have you taken to loading multiple files using the
org-babel method?

The example on the babel page searches out all org files and then
untangles the elisp snippets and rewrites files with a .el extensions
loading them as it goes.

But how to order  this or how best to load /decode/execute at run time
in say an autoload or eval after load? Simply call org-babel-load-file
instead of require? 

e.g say I wanted to keep my (typically large) .gnus.el file as an org
file. How best to deal with that? Currently I have an eval after load
with all the code in that used to be in my .gnus.el in my
emacs-init.org. Other approaches?

Would there be a way to get the load system to check for an org file
first and call org-babel-load-file?

Should possibly writing the org file auto create the .el file? Or is
that best left to load time?

Any opinions or discussions/pointers appreciated.

regards,

r.




___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode