[Orgmode] Re: `C-u 2 S-Tab' with `#+STARTUP: odd'

2009-10-13 Thread Michael Brand
There is something more with org-outline-level in org-version 6.31a which I still don't understand because I am not aware of some functions used in its implementation. I drilled down the quite special situation to the following file content. I hope that the indentation of x by three spaces does

[Orgmode] Q: How to search dates within current week

2009-10-13 Thread tan....@juno.com
Q: How to search dates within current week [ I am posting this according to //gmane.org/post.php instructions. I hope this works. ] I am a beginner in using Orgmode. I would like to search for CLOSED items within the current week. The closest posting was in 2007 entitled "search for dates as ta

Re: [Orgmode] ECB and org-mode

2009-10-13 Thread Eric S Fraga
At Tue, 13 Oct 2009 10:00:29 +0200, Carsten Dominik wrote: > > > On Oct 12, 2009, at 5:31 PM, Eric S Fraga wrote: > > > At Mon, 12 Oct 2009 15:06:24 +0200, > > Carsten Dominik wrote: > >> > >> Hi Eric, > >> > >> you would have to find out which function is the one doing the > >> jumping > >> to

[Orgmode] Re: Do we still have XEmacs users?

2009-10-13 Thread Richard KLINDA
> Carsten Dominik writes: > Do we still have XEmacs users around here? Of course! (Sorry for the late reply.) Richard ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu

[Orgmode] Re: `C-u 2 S-Tab' with `#+STARTUP: odd'

2009-10-13 Thread Carsten Dominik
On Oct 12, 2009, at 10:00 PM, Michael Brand wrote: I wonder how the function org-outline-level is intended to work. Should it show the outline level or count the stars like in org- version 6.31a and one has to take into account `odd' himself to get the outline level when implementing own st

Re: [Orgmode] ECB and org-mode

2009-10-13 Thread Carsten Dominik
On Oct 12, 2009, at 5:31 PM, Eric S Fraga wrote: At Mon, 12 Oct 2009 15:06:24 +0200, Carsten Dominik wrote: Hi Eric, you would have to find out which function is the one doing the jumping to the method. With some luck there will be a hook called after jumping somewhere. With no luck, on

[Orgmode] New guidelines for posting about org-babel (was problem with example block and headings)

2009-10-13 Thread Carsten Dominik
On Oct 12, 2009, at 7:01 PM, Eric Schulte wrote: Giovanni Ridolfi writes: --- Lun 12/10/09, Eric S Fraga ha scritto: Footnotes: [1] I wonder whether there should be a separate orb-babel mailing list to avoid too much noise in the org-mode list? what about a tag in the subject line such

Re: [Orgmode] Searching inside of attachments (pdf, odt)?

2009-10-13 Thread Samuel Wales
Hi, My idea is to keep it simple at first. Everybody will come up with great ways to integrate with his favorite IR tool. Here I want to focus on the org interface. The org interface can be the same as any other agenda search, with all the same controls. The back end can use special-purpose te

Re: [Orgmode] Removing time grid lines (invalid function)

2009-10-13 Thread Nick Dokos
Desmond Rivet wrote: > Hi all, > > I'm attempting to use the hack listed on worg titled : "Remove time grid > lines that are in an appointment". I'm having a bit of trouble. I'm > using emacs 23.1. > > I add this to my .emacs file: > >... Try adding this: (load-library "cl-macs") before y

[Orgmode] Removing time grid lines (invalid function)

2009-10-13 Thread Desmond Rivet
Hi all, I'm attempting to use the hack listed on worg titled : "Remove time grid lines that are in an appointment". I'm having a bit of trouble. I'm using emacs 23.1. I add this to my .emacs file: (defun org-time-to-minutes (time) "Convert an HHMM time to minutes" (+ (* (/ time 100) 60) (%

Re: [Orgmode] Searching inside of attachments (pdf, odt)?

2009-10-13 Thread Tim O'Callaghan
FWIW I think this might be handled easier if all that happened would be a grep on the attachments, or directories. The usual grep interface can be used and then it becomes a fast general purpose data mining extension. I can see it being used to search a codebase or website for a text string. I

[Orgmode] org-version from git 6.30 trans

2009-10-13 Thread Greg Newman
I have my configs setup so that org-mode is a git submodule from git://repo.or.cz/org-mode.git I updated my submodule but org-version is still saying 6.30 trans. Is 6.31 on a branch or tag? Greg Newman http://20seven.org twitter: gregnewman___ Ema

[Orgmode] Re: Repeat time ranges

2009-10-13 Thread Matt Lundin
Nicolas Aggelidis writes: > hi org-users! > > i 'am having the following problem. I have some activities that i > organize like this: > > * University calendar > ** Class 1 <2009-10-12 Mon 15:00>-<2009-10-12 Mon 16:00> > > what i want to do, is have this time range repeat itself every week > for

[Orgmode] Re: Emacs startup file

2009-10-13 Thread Memnon Anon
saikari keitele writes: > I'm new to orgmode and quite new to Emacs. Could you please tell me > the exact lines I have to add to the emacs startup file(.emacs.el) to > enable orgmode? Welcome ;) If you are new to emacs, really learn, how to use the integrated documenatation. Its great and alwa

[Orgmode] Re: Emacs startup file

2009-10-13 Thread Bernt Hansen
saikari keitele writes: > Hi, > I'm new to orgmode and quite new to Emacs. > Could you please tell me the exact lines I have to add to the emacs startup > file(.emacs.el) to > enable orgmode? > Thanks http://doc.norang.ca/org-mode.html#Setup -Bernt ___

Re: [Orgmode] Emacs startup file

2009-10-13 Thread Mikael Fornius
saikari keitele writes: > Could you please tell me the exact lines I have to add to the emacs > startup file(.emacs.el) to enable orgmode? ;; The following lines are always needed. Choose your own keys. (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store

[Orgmode] Re: Emacs startup file

2009-10-13 Thread Tassilo Horn
saikari keitele writes: Hi Saikari, > I'm new to orgmode and quite new to Emacs. Welcome! > Could you please tell me the exact lines I have to add to the emacs > startup file (.emacs.el) to enable orgmode? If you use Emacs 23.1, then you don't need to do anything. Simply open a file with .or

[Orgmode] Emacs startup file

2009-10-13 Thread saikari keitele
Hi, I'm new to orgmode and quite new to Emacs. Could you please tell me the exact lines I have to add to the emacs startup file(.emacs.el) to enable orgmode? Thanks ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emac

[Orgmode] LaTeX export of tables

2009-10-13 Thread Francesco Pizzolante
Hi, When exporting tables to LaTeX, I think it would be good to have the following options to be able to define: - the table environment to be used: now we have the option to have tabular and longtable, but I could also use array, tabular*, tabularx, tabulary, etc. The general rule

Re: [Orgmode] Re: LaTeX export of images

2009-10-13 Thread Francesco Pizzolante
Hi Carsten, Sorry for my late reply on this subject. > OK, I have now modified image placement in LaTeX. > > 1. Image in text > >[[./img/x.png]] > > 2. Floating image with caption and modified size and placement > >#+CAPTION: My caption >#+ATTR_LATEX: placement=[H] width=0.6\textwidth

Re: [Orgmode] The Perl color style

2009-10-13 Thread Water Lin
Mikael Fornius writes: > Water Lin writes: > , Emacs will tell me the error: face-attribute: Invalid face: quote Could not find config file "~/.tidyrc". Winging it. > > This looks as a configuration typo or similar problem. > > Maybe you should

Re: [Orgmode] The Perl color style

2009-10-13 Thread Mikael Fornius
Water Lin writes: >>> , Emacs will tell me the error: >>> >>> face-attribute: Invalid face: quote >>> Could not find config file "~/.tidyrc". Winging it. >>> This looks as a configuration typo or similar problem. Maybe you should try to enalble emacs "debug on error"

Re: [Orgmode] The Perl color style

2009-10-13 Thread Water Lin
Carsten Dominik writes: > On Oct 12, 2009, at 11:19 AM, Water Lin wrote: > >> Mikael Fornius writes: >> >>> Water Lin writes: >>> #+BEGIN_SRC perl-mode >>> >>> For me: >>> >>> #+BEGIN_SRC perl >>> >>> is more colorful. >> >> I don't know why, when I am using >> >> #+BEGIN_SRC perl >> >> ,

Re: [Orgmode] Repeat time ranges

2009-10-13 Thread Stephan Schmitt
Hi Nicolas, I think org-clone-subtree-with-time-shift was implemented exactly for this use case: (org-clone-subtree-with-time-shift n &optional shift) Clone the task (subtree) at point n times. The clones will be inserted as siblings. In interactive use, the user will be pr

Re: [Orgmode] Searching inside of attachments (pdf, odt)?

2009-10-13 Thread Karl Maihofer
Hi Samuel, Samuel Wales schrieb: My idea is to use ordinary agenda search like this: 1) agenda search displays the headline that has the attachment. 2) org uses an alist to determine the correct textifier according to extension. e.g. '((".pdf" . "pdf2text")). 3) agenda searches

[Orgmode] Repeat time ranges

2009-10-13 Thread Nicolas Aggelidis
hi org-users! i 'am having the following problem. I have some activities that i organize like this: * University calendar ** Class 1 <2009-10-12 Mon 15:00>-<2009-10-12 Mon 16:00> what i want to do, is have this time range repeat itself every week for 13 occurrences. Is this possible? at least