[Orgmode] Makefile: update

2009-06-02 Thread Konstantin Antipin
Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up to date with orgmode - development? like so: update: git pull make clean make all sudo make install It would be convenient... best,

Re: [Orgmode] Should 'QUOTE' turn off in-buffer mark-up?

2009-06-02 Thread Carsten Dominik
On Jun 1, 2009, at 11:38 PM, Daniel J. Sinder wrote: I just cut-and-pasted a table from the IETF RTP RFC into orgmode as follows: * QUOTE RTP Header Format 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1

Re: [Orgmode] Makefile: update

2009-06-02 Thread Carsten Dominik
On Jun 2, 2009, at 8:27 AM, Konstantin Antipin wrote: Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up to date with orgmode - development? like so: update: git pull make clean make all

Re: [Orgmode] Re: Org protocol and new frame for remember

2009-06-02 Thread Sebastian Rose
Matthew Lundin m...@imapmail.org writes: My apologies for the initial post fragment. (Note to self: C-c C-c binding for jumping to footnote reference does not work in Gnus!) Let's try this again: Hi all, I've recently begun to use org-protocol. I've been using it with the intriguing

Re: [Orgmode] Makefile: update

2009-06-02 Thread Konstantin Antipin
Super! Thanks. Kostya On Tue, Jun 2, 2009 at 10:30 AM, Carsten Dominik carsten.domi...@gmail.com wrote: On Jun 2, 2009, at 8:27 AM, Konstantin Antipin wrote: Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up

Re: [Orgmode] Makefile: update

2009-06-02 Thread Friedrich Delgado Friedrichs
It might seem like a nitpick, but your up2 target assumes that the program to process makefiles is called make (and not e.g. gmake and it's in the PATH). I propose: up2: update sudo $(MAKE) install As make sets the variable MAKE [see info (make)MAKE Variable ] and it's simpler to just list

[Orgmode] Re: Makefile: update

2009-06-02 Thread Bernt Hansen
Konstantin Antipin antipin.konstan...@googlemail.com writes: Hi, I have a very simple feature request. Can we add additional target to the makefile in order to simplify process of keeping up to date with orgmode - development? like so: update: git pull make clean make

Re: [Orgmode] Makefile: update

2009-06-02 Thread Carsten Dominik
Done. - Carsten On Jun 2, 2009, at 1:14 PM, Friedrich Delgado Friedrichs wrote: It might seem like a nitpick, but your up2 target assumes that the program to process makefiles is called make (and not e.g. gmake and it's in the PATH). I propose: up2: update sudo $(MAKE) install As make

Re: [Orgmode] Did Anyone Ever Get This Working ... ?

2009-06-02 Thread Jason Schadel
Looks like you received some other examples but here's how I did it: (require 'trac-wiki) (trac-wiki-define-project project-trac https://trac.project.com/trac; username) (autoload 'trac-wiki trac-wiki Trac wiki editing entry-point. t) ;;; - start orgstruct minor mode when trac-wiki is loaded.

[Orgmode] How to switch to a specific state when clocking out?

2009-06-02 Thread Manish
Hello! Does anyone know of a counterpart to org-clock-in-switch-to-state that can switch to a specific state when clocking out of an item? Thanks -- Manish ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list.

[Orgmode] Saving the *Org Edit Src Example* buffer

2009-06-02 Thread Dan Davison
Following on from the recent improvements to the *Org Edit Src Example* buffer, I have one more proposal: I have remapped C-x C-s so that it saves the code in the org buffer, rather than offering to save the Edit buffer itself (as it used to be with the indirect edit buffer). I find this

[Orgmode] Re: How to switch to a specific state when clocking out?

2009-06-02 Thread Manish
On Tue, Jun 2, 2009 at 7:14 PM, Bernt Hansen wrote: Manish mailtomanish.sha...@gmail.com writes: Hello! Does anyone know of a counterpart to org-clock-in-switch-to-state that can switch to a specific state when clocking out of an item? Hi Manish! As far as I know

Re: [Orgmode] Did Anyone Ever Get This Working ... ?

2009-06-02 Thread Tennis Smith
Thanks! That's a big help as well. Making it automatic is my preference. -T On Tue, Jun 2, 2009 at 6:11 AM, Jason Schadel jason.scha...@gmail.comwrote: Looks like you received some other examples but here's how I did it: (require 'trac-wiki) (trac-wiki-define-project project-trac

[Orgmode] Re: Org protocol and new frame for remember

2009-06-02 Thread Matthew Lundin
Sebastian Rose sebastian_r...@gmx.de writes: Matthew Lundin m...@imapmail.org writes: But I thought it might be a nice addition to org-protocol if there were a variable that accomplishes this (e.g., org-protocol-remember-in-new-frame). I'd be eager to know if I am missing a current way to

Re: [Orgmode] org mode and preview-latex

2009-06-02 Thread Marvin Doyley
(setq org-export-with-LaTeX-fragments t) thanks M On Jun 2, 2009, at 5:46 AM, Carsten Dominik wrote: What is your value of org-export-with-LaTeX-fragments ?? - Carsten On May 31, 2009, at 12:12 AM, Marvin Doyley wrote: dvipng is installed on my system, it is included with texlive 2008 I

Re: [Orgmode] Saving the *Org Edit Src Example* buffer

2009-06-02 Thread Dan Davison
Dan Davison davi...@stats.ox.ac.uk writes: Following on from the recent improvements to the *Org Edit Src Example* buffer, I have one more proposal: I have remapped C-x C-s so that it saves the code in the org buffer, rather than offering to save the Edit buffer itself (as it used to be with

Re: [Orgmode] Cycling visibility of blocks

2009-06-02 Thread Carsten Dominik
Hello, Isn't there something wrong with the regexp as the snippet is not working well when #+END_SOMETHING is followed right away by a new line ? I mean #+BEGIN_QUOTE Test etn ntes thens hsne htsne nste thnes sne thsne htse nthes ehtse hntse hents #+END_QUOTE  --- notice the space

Re: [Orgmode] Cycling visibility of blocks

2009-06-02 Thread Eric Schulte
Good catch, I'm not sure what is causing this problem, but the attached patch which changes the regexp seems to solve it. Thanks -- Eric diff --git a/lisp/org.el b/lisp/org.el index 1c3dfe5..6792bed 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -5146,8 +5146,7 @@ Optional argument N means, put

Re: [Orgmode] Cycling visibility of blocks

2009-06-02 Thread Nicolas Goaziou
Hum, 1. My apologies for the From: header in my previous post, I just realized I had messed up badly with my gnus-posting-style variable; 2. While I'm at it: two line -- two lines. -- Nicolas Goaziou ___ Emacs-orgmode mailing list Remember: use

Re: [Orgmode] Re: How to switch to a specific state when clocking out?

2009-06-02 Thread Carsten Dominik
On Jun 2, 2009, at 3:44 PM, Bernt Hansen wrote: Manish mailtomanish.sha...@gmail.com writes: Hello! Does anyone know of a counterpart to org-clock-in-switch-to-state that can switch to a specific state when clocking out of an item? Hi Manish! As far as I know that functionality does

Re: [Orgmode] Saving the *Org Edit Src Example* buffer

2009-06-02 Thread Carsten Dominik
Hi Dan, On Jun 2, 2009, at 5:02 PM, Dan Davison wrote: Following on from the recent improvements to the *Org Edit Src Example* buffer, I have one more proposal: I have remapped C-x C-s so that it saves the code in the org buffer, rather than offering to save the Edit buffer itself (as it

Re: [Orgmode] Cycling visibility of blocks

2009-06-02 Thread Carsten Dominik
Applied, thanks. - Carsten On Jun 2, 2009, at 6:47 PM, Eric Schulte wrote: Good catch, I'm not sure what is causing this problem, but the attached patch which changes the regexp seems to solve it. Thanks -- Eric diff --git a/lisp/org.el b/lisp/org.el index 1c3dfe5..6792bed 100644 ---

Re: [Orgmode] Saving the *Org Edit Src Example* buffer

2009-06-02 Thread Carsten Dominik
Applied, thanks. - Carsten On Jun 2, 2009, at 5:49 PM, Dan Davison wrote: Dan Davison davi...@stats.ox.ac.uk writes: Following on from the recent improvements to the *Org Edit Src Example* buffer, I have one more proposal: I have remapped C-x C-s so that it saves the code in the org

[Orgmode] problems with startup visibility, affecting agenda view

2009-06-02 Thread Eric S Fraga
Hello, with recent org from git: commit a5dc9456ddfe94554996eefdaf01402800a96b67 Author: Carsten Dominik carsten.domi...@gmail.com Date: Tue Jun 2 17:01:11 2009 +0200 I am having problems opening org files and getting the default agenda view. The problem goes away if I set

Re: [Orgmode] problems with startup visibility, affecting agenda view

2009-06-02 Thread Carsten Dominik
With this little information, I cannot reproduce any of these problems and therefore not do anything about them. - Carsten On Jun 2, 2009, at 7:15 PM, Eric S Fraga wrote: Hello, with recent org from git: commit a5dc9456ddfe94554996eefdaf01402800a96b67 Author: Carsten Dominik

[Orgmode] A tool for creating source code files from example and src blocks in org files

2009-06-02 Thread Eric H. Neilsen, Jr.
Hi, First, thank you Carsten and others, for putting this thing together; org-mode is the most useful tool I've run across in a long time. I recently put together a few commands to create source code files from SRC and EXAMPLE blocks in org-mode files. The original idea is to be able to

[Orgmode] application switching hook

2009-06-02 Thread Austin Frank
Hi all-- I'd like to extend my time tracking to some activities outside of emacs. More specifically, I'd like to be prompted to log a note in the active time clock block whenever I change to an application outside of emacs. I'm trying to be honest with myself about why I move from one application

Re: [Orgmode] Re: How to switch to a specific state when clocking out?

2009-06-02 Thread Manish
On Tue, Jun 2, 2009 at 9:35 PM, Carsten Dominik wrote: On Jun 2, 2009, at 3:44 PM, Bernt Hansen wrote: Manish writes: Hello! Does anyone know of a counterpart to org-clock-in-switch-to-state that can switch to a specific state when clocking out of an item? Hi