[O] fastest way to remove the time from a timestamp

2012-04-02 Thread Detlef Steuer
Hi! I find myself often in a situation where I have to reschedule an appointement to another day. I.e. there is a line in my agenda view for today: ... unsorted: 13:00-14:00 Scheduled: APPT testproject ... Normally I reschedule with S-right etc., but that keeps the *time* information. Often

Re: [O] Ukrainian language export strings (patch attached)

2012-04-02 Thread Bastien
Hi Yuri, Yury Bulka writes: > I want to send you a little patch containing the export strings (like > "Author", "Table of Contents" etc.) for Ukrainian. Applied, thanks. -- Bastien

Re: [O] [patch] Re: meaning of body-only in org-export-as-html

2012-04-02 Thread Bastien
Hi Chris, Chris Gray writes: >> I see one problem in that it would be then be inconsistent with >> org-export-as-ascii which considers the TOC to be part of the header. I >> would like to be able to export just the TOC (as ascii, and I understand >> a new ascii exporter has been written lately)

Re: [O] ATTR_HTML for a clickable image, howto?

2012-04-02 Thread Bastien
Hi François, pin...@iro.umontreal.ca (François Pinard) writes: > then I get the display I wanted. Is there a way for having #+ATTR_HTML > to be applied to the inner tag instead of the outer one? Not -- it would not make sense. I suggest you fix your css instead. Best, -- Bastien

Re: [O] Problems with (defvar foo) and Emacs 23

2012-04-02 Thread Bastien
Hi Nick, Nick Dokos writes: > Agreed, but the point is that each and every variable renaming will need > to be checked in the light of these criteria. Bugs like this have the > potential of creating havoc for a long time to come. > > It may be easier to start from a working state than to try to

Re: [O] [PATCH] Separate file time from its tasks times

2012-04-02 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: >>> * org-clock.el (org-clocktable-write-default): Make the sum >>> appear visually correct by not mixing the total time per file >>> and sub-totals. >> >> This can be best understood with an example... > > Mhh.. I understand. While your patch makes the disp

Re: [O] ATTR_HTML for a clickable image, howto?

2012-04-02 Thread Christian Moe
François's problem is probably best fixed with CSS as you suggest. But it might be nice to be able to set an ALT attribute on an image used as a link. That doesn't look like it's currently possible with Org link syntax and ATTR_HTML. Just pointing it out, not making a feature request -- shoul

[O] setting default BibTex file

2012-04-02 Thread Julian Burgos
Dear list, This should be pretty easy to answer. I am having some problems defining a default BibTex file. If I put this at the end of my org file, \bibliographystyle{plain} \bibliography{/home/julian/Documents/Refs/BibTex/References} everything works with no problem. But if I add this to

[O] if featurep then require, why?

2012-04-02 Thread Peter Münster
Hi, In `org-show-notification', there is --8<---cut here---start->8--- (cond [...] ((featurep 'notifications) (require 'notifications) [...] --8<---cut here---end--->8--- Why is the (requir

[O] [bug] Can't find remote table when name is downcased

2012-04-02 Thread Sebastien Vauban
Hello, The error if: Can't find remote table "onsite" is reported if the table name is in downcase (as in the following example). Everything is OK when table name is in uppercase. --8<---cut here---start->8--- * On site #+tblname: onsite | | Date

Re: [O] setting default BibTex file

2012-04-02 Thread suvayu ali
Hey Julian, On Mon, Apr 2, 2012 at 13:49, Julian Burgos wrote: > But if I add this to my .emacs file > > (setq reftex-default-bibliography > (quote("home/julian/Documents/Refs/BibTex/References"))) > > and this to the end of my org file > > \bibliographystyle{plain} > \bibliography{} > > When I d

[O] Bug Regression : Bad SEXP from Org-Class

2012-04-02 Thread Jonathan Leech-Pepin
Hello Org, As of this morning I am getting the following errors on my work machine (last updated on Friday) when trying to load my Agenda: , | Bad sexp at line 106 in [...]/personal.org: (org-class 2012 03 12 2012 04 28 1 15) | Bad sexp at line 107 in [...]/personal.org: (org-class 2012 03 12

Re: [O] Bug Regression : Bad SEXP from Org-Class

2012-04-02 Thread Bastien
Hi Jonathan, Jonathan Leech-Pepin writes: > As of this morning I am getting the following errors on my work > machine (last updated on Friday) when trying to load my Agenda: This should be fixed now, can you confirm? Thanks! -- Bastien

Re: [O] if featurep then require, why?

2012-04-02 Thread Bastien
Hi Peter, Peter Münster writes: > In `org-show-notification', there is > > (cond > [...] > ((featurep 'notifications) >(require 'notifications) > [...] > > Why is the (require 'notifications) needed? It is not. Fixed, thanks. -- Bastien

Re: [O] Regression in `org-todo'

2012-04-02 Thread Michael Strey
Hi Moritz & Bastien, This bug fix seems not to be complete. At least switching the todo state in repeated tasks and in conjunction with org-checklist didn't work for me as it used to before the last update. PFA a patch that solved the problem for me. ATTENTION: Please check this patch very care

[O] batch export of homepage stopped working

2012-04-02 Thread Detlef Steuer
Hi! Generating my university homepage stopped working: Emacs Version: steuer@vknecht-intel:~/Working-Copies/Homepage-LS> emacs --version GNU Emacs 23.2.1 Org-Version: Org-mode version 7.8.07 (release_7.8.07.139.ge391) steuer@vknecht-intel:~/Working-Copies/Homepage-LS> make steuer-lo

Re: [O] Regression in `org-todo'

2012-04-02 Thread Bastien
Hi Michael, Michael Strey writes: > This bug fix seems not to be complete. At least switching the todo > state in repeated tasks and in conjunction with org-checklist didn't > work for me as it used to before the last update. PFA a patch that > solved the problem for me. Thanks for reporting

Re: [O] batch export of homepage stopped working

2012-04-02 Thread Bastien
Hi Detlef, Detlef Steuer writes: > Generating my university homepage stopped working: Can you pull latest git HEAD and try to publish using Emacs interactively, with (setq debug-on-error t)? Thanks! -- Bastien

Re: [O] [bug] Can't find remote table when name is downcased

2012-04-02 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > The error > > if: Can't find remote table "onsite" > > is reported if the table name is in downcase (as in the following > example). Can you try this patch and report? Thanks! diff --git a/lisp/org-table.el b/lisp/org-table.el index ae12cee..1936

Re: [O] ATTR_HTML for a clickable image, howto?

2012-04-02 Thread Bastien
Hi Christian, Christian Moe writes: > François's problem is probably best fixed with CSS as you suggest. > > But it might be nice to be able to set an ALT attribute on an image used as > a link. That doesn't look like it's currently possible with Org link syntax > and ATTR_HTML. Agreed -- this

Re: [O] setting default BibTex file

2012-04-02 Thread Nick Dokos
suvayu ali wrote: > Hey Julian, > > On Mon, Apr 2, 2012 at 13:49, Julian Burgos wrote: > > But if I add this to my .emacs file > > > > (setq reftex-default-bibliography > > (quote("home/julian/Documents/Refs/BibTex/References"))) > > > > and this to the end of my org file > > > > \bibliographys

Re: [O] Bug Regression : Bad SEXP from Org-Class

2012-04-02 Thread Jonathan Leech-Pepin
I can confirm that it is fixed. Thank you. On Mon, Apr 2, 2012 at 10:46, Bastien wrote: > Hi Jonathan, > > Jonathan Leech-Pepin writes: > >> As of this morning I am getting the following errors on my work >> machine (last updated on Friday) when trying to load my Agenda: > > This should be fixe

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-02 Thread Mike McLean
Bastion The dangers of minimal testing setups is rearing its ugly head. I can confirm that your latest patch does fix the minimal example that I provided. It does not, sadly, fix a similar case where the org-tag-alist variable includes the :startgroup and :endgroup tokens. If you can my most recen

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-02 Thread Mike McLean
Apologies, I blame my iOS spell check for the "correction" of the spelling on your name :( Of course I should have seen it before I hit send, too ... Sigh On Monday, April 2, 2012, Mike McLean wrote: > Bastion > > The dangers of minimal testing setups is rearing its ugly head. I can > confirm th

Re: [O] [bug] Can't find remote table when name is downcased

2012-04-02 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >> The error >> >> if: Can't find remote table "onsite" >> >> is reported if the table name is in downcase (as in the following >> example). > > Can you try this patch and report? 1. Applied the patch manually. 2. Restarted Emacs (to

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-02 Thread Bastien
Mike McLean writes: > Apologies, I blame my iOS spell check for the "correction" of the > spelling on your name :( > > Of course I should have seen it before I hit send, too ... Sigh No problem -- actually "Bastion" means "fortress" in french... that's an inspiring image for the resistence I t

Re: [O] [bug] Can't find remote table when name is downcased

2012-04-02 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > Bastien wrote: >> "Sebastien Vauban" writes: >> >>> The error >>> >>> if: Can't find remote table "onsite" >>> >>> is reported if the table name is in downcase (as in the following >>> example). >> >> Can you try this patch and report? > > 1. Appli

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-02 Thread Bastien
Hi Mike, Mike McLean writes: > The dangers of minimal testing setups is rearing its ugly head. You bet :) > I can > confirm that your latest patch does fix the minimal example that I > provided. It does not, sadly, fix a similar case where the > org-tag-alist variable includes the :startgroup

Re: [O] batch export of homepage stopped working

2012-04-02 Thread Detlef Steuer
On Mon, 02 Apr 2012 17:04:22 +0200 Bastien wrote: > Hi Detlef, > > Detlef Steuer writes: > > > Generating my university homepage stopped working: > > Can you pull latest git HEAD and try to publish using Emacs > interactively, with (setq debug-on-error t)? Works like a charm now! Thx! Detle

[O] Org release 7.8.08 (BUGFIX-only release)

2012-04-02 Thread Bastien
Hi all, I released 7.8.08. This release fixes the most obvious problems introduced by the renaming of some variables in Org 7.8.07. Please spread the word and test this release heavily. http://orgmode.org/org-7.8.08.zip http://orgmode.org/org-7.8.08.tar.gz http://orgmode.org/org-mode-do

Re: [O] [PATCH 2/2] Allow org-collector to display heading indentation by passing ':indent t' to the propview block.

2012-04-02 Thread Bastien
Hi Nicolas, Nicolas Girard writes: > --- > contrib/lisp/org-collector.el | 22 +- > 1 files changed, 17 insertions(+), 5 deletions(-) Thanks for the patch. Can you add an Emacs ChangeLog entry? See http://orgmode.org/worg/org-contribute.html#sec-5 for details. Also, ha

[O] buffer-local org-agenda-files & embedded agenda-view

2012-04-02 Thread Mirko Vukovic
Hello, I would like to have a buffer (and the associated file) that contain the agenda view for a few select files. Is that possible? They way it might work (in pseudo-code & using babel) < begin org file #+org-agenda-files: file-1.org file-2.org file-3.org ;; these are full files #+begin

Re: [O] Org release 7.8.08 (BUGFIX-only release)

2012-04-02 Thread Chris Randle
Hi On 2012-04-02 17:41, Bastien wrote: I released 7.8.08. Please spread the word and test this release heavily. org-version reports 7.8.07 -- Chris Randle

Re: [O] Problems with (defvar foo) and Emacs 23

2012-04-02 Thread Achim Gratz
Bastien writes: > Let's do some heavy testing against current HEAD and let's carefully > review code. But let's not panic -- Emacs is still in pretest, that's > the whole purpose of a pretest. It looks like you've already took care of the fixes. Anything that you specifically want to review?

Re: [O] Org release 7.8.08 (BUGFIX-only release)

2012-04-02 Thread Bastien
Chris Randle writes: > org-version reports 7.8.07 Fixed. -- Bastien

Re: [O] Org release 7.8.08 (BUGFIX-only release)

2012-04-02 Thread Achim Gratz
Bastien writes: > Chris Randle writes: > >> org-version reports 7.8.07 > > Fixed. ...and if you already picked up the un-annotated tag in your cloned repo: you need to git tag -d release_7.8.08 git remote update to get the correct version. Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuro

[O] orgmode resume / cv examples?

2012-04-02 Thread Greg Troxel
I remember people talking about preparing resumes in org, with the primary target being latex export. I saved a few postings, but hadn't really paid attention. Now, I am paying more attention :-) I tried to chase down the references, but didn't find a full source example, and no pointers on worg

Re: [O] Bug: Tag Completion Not Prompting for all tags

2012-04-02 Thread Mike McLean
Yes, but not until later tonight at the earliest. I have limited access to personal email at work (iPad only) which is not conducive to emailing test cases On Monday, April 2, 2012, Bastien wrote: > > Can you resubmit the full test case? > > > > -- > Bastien > >

[O] Bug: Tag Completion Not Prompting for all tags

2012-04-02 Thread Mike McLean
Yes, but not until later tonight at the earliest. I have limited access to personal email at work (iPad only On Monday, April 2, 2012, Bastien wrote: > > Can you resubmit the full test case? > > > > -- > Bastien > >

Re: [O] Org release 7.8.07 (BUGFIX-only release)

2012-04-02 Thread Achim Gratz
Achim Gratz writes: > (defmacro org-find-library-name (library) > (if (fboundp 'find-library-name) > `(file-name-directory (find-library-name ,library)) > ; XEmacs does not have `find-library-name' > `(file-name-directory (find-library ,library nil (lambda (lib ignore) > lib)

Re: [O] Regression in `org-todo'

2012-04-02 Thread Michael Strey
Hi Bastien, On Mon, Apr 02, 2012 at 05:03:04PM +0200, Bastien wrote: > ... > Please test against latest HEAD and tell me if your problem is still > here, it shouldn't. I confirm that the problem is solved. Thank you! It's interesting to see how a bug in a module from the contrib path can cause

Re: [O] [bug] Can't find remote table when name is downcased

2012-04-02 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > "Sebastien Vauban" writes: >> Bastien wrote: >>> "Sebastien Vauban" writes: >>> The error if: Can't find remote table "onsite" is reported if the table name is in downcase (as in the following example). >> >> 1. Applied the patch man

Re: [O] Regression in `org-todo'

2012-04-02 Thread Bastien
Hi Michael, Michael Strey writes: > It's interesting to see how a bug in a module from the contrib path can > cause strange behaviour of org-mode's core functions. Indeed. Perhaps org-checklist.el should be part of core. Opinions? -- Bastien

Re: [O] ATTR_HTML for a clickable image, howto?

2012-04-02 Thread Samuel Wales
On 2012-04-02, Bastien wrote: > Agreed -- this is where Nicolas' new export engine will help, > with a more comprehensive syntax for each element. Is there a description of this part someplace? Do you mean new syntax or better semantics for existing syntax? While the new exporter has advantages

Re: [O] Regression in `org-todo'

2012-04-02 Thread Nick Dokos
Michael Strey wrote: > Hi Bastien, > > On Mon, Apr 02, 2012 at 05:03:04PM +0200, Bastien wrote: > > ... > > Please test against latest HEAD and tell me if your problem is still > > here, it shouldn't. > > I confirm that the problem is solved. Thank you! > > It's interesting to see how a bug

Re: [O] Regression in `org-todo'

2012-04-02 Thread Nick Dokos
Bastien wrote: > Hi Michael, > > Michael Strey writes: > > > It's interesting to see how a bug in a module from the contrib path can > > cause strange behaviour of org-mode's core functions. > > Indeed. Perhaps org-checklist.el should be part of core. > > Opinions? > There might be other

Re: [O] BUG: Unable to compile on Master

2012-04-02 Thread Jonathan Leech-Pepin
I can confirm it's fixed. Thank you On Mon, Apr 2, 2012 at 02:04, Samuel Wales wrote: > On 2012-04-01, Bastien wrote: >>> same in 22 >> >> Fixed.  Please try again. > > yes, thank you, bastien. > > -- > The Kafka Pandemic: http://thekafkapandemic.blogspot.com >

Re: [O] Regression in `org-todo'

2012-04-02 Thread Bastien
Hi Nick, Nick Dokos writes: > Michael Strey wrote: > >> Hi Bastien, >> >> On Mon, Apr 02, 2012 at 05:03:04PM +0200, Bastien wrote: >> > ... >> > Please test against latest HEAD and tell me if your problem is still >> > here, it shouldn't. >> >> I confirm that the problem is solved. Thank yo

Re: [O] Regression in `org-todo'

2012-04-02 Thread Bernt Hansen
Bastien writes: > If the features provided by org-checklist.el are useful to many people, > including them in core seems quite natural. I don't use it myself, I'm > just wondering how people do. But I agree with you here that we should > not move things into core inconsiderately. Hi Bastien,

[O] not-quite-literal blocks

2012-04-02 Thread Thomas Lord
I am trying to piece together a simple literate programming system that takes HTML as input and spews out source files. The program that "tangles" code fragments in the HTML into source text will be in XSLT. Org mode is almost but not quite perfect for generating the HTML I'd like. I'm writing

Re: [O] not-quite-literal blocks

2012-04-02 Thread Eric Schulte
Thomas Lord writes: > I am trying to piece together a simple > literate programming system that takes > HTML as input and spews out source files. > The program that "tangles" code fragments > in the HTML into source text will be in XSLT. > > Org mode is almost but not quite perfect for > generati

Re: [O] Sticky Agenda buffer: Announcement and request for testing

2012-04-02 Thread Bastien
Hi Carsten and Max, "Dominik, Carsten" writes: > already in Januar, Max Mikhanosha had published the first > version of his code to implement multiple agenda buffers. I have > worked with him over the last few weeks, and we think that > it is now quite stable. I've been trying the agenda-stick

Re: [O] Sticky Agenda buffer: Announcement and request for testing

2012-04-02 Thread Bastien
Hi Manuel, Manuel Hermenegildo writes: > But, would it be possible to achieve the behavior I had mistakenly > assumed? > > Going back to the week view example, Org would remember the rendering > of each week as you move from one week to another, not recomputing a > week that has already been vi

Re: [O] ATTR_HTML for a clickable image, howto?

2012-04-02 Thread Bastien
Hi Samuel, Samuel Wales writes: > On 2012-04-02, Bastien wrote: >> Agreed -- this is where Nicolas' new export engine will help, >> with a more comprehensive syntax for each element. > > Is there a description of this part someplace? The reference document for the new org-export.el lives her

Re: [O] orgmode resume / cv examples?

2012-04-02 Thread Bastien
Hi Greg, Greg Troxel writes: > I remember people talking about preparing resumes in org, with the > primary target being latex export. I saved a few postings, but hadn't > really paid attention. I guess you forgot to turn your email into a question ;) Anyway, would be nice to store cv/resume+

Re: [O] Problems with (defvar foo) and Emacs 23

2012-04-02 Thread Bastien
Hi Achim, Achim Gratz writes: > Bastien writes: >> Let's do some heavy testing against current HEAD and let's carefully >> review code. But let's not panic -- Emacs is still in pretest, that's >> the whole purpose of a pretest. > > It looks like you've already took care of the fixes. Anythi

[O] 24.0.95; (org) outline-style cycling + outline-mode

2012-04-02 Thread Jambunathan K
1. Install the following hook (add-hook 'outline-mode-hook (lambda () (define-key outline-mode-map [(tab)] 'org-cycle) (define-key outline-mode-map [(shift tab)] 'org-global-cycle))) 2. (setq debug-on-error t) 3. Visit NEWS file with C-h n 4. Place the cursor at the

Re: [O] buffer-local org-agenda-files & embedded agenda-view

2012-04-02 Thread Bastien
Hi Mirko, Mirko Vukovic writes: > I would like to have a buffer (and the associated file) that contain the > agenda > view for a few select files. Is that possible? > > They way it might work (in pseudo-code & using babel) > > < begin org file > #+org-agenda-files: file-1.org file-2.org fi

Re: [O] fastest way to remove the time from a timestamp

2012-04-02 Thread Bastien
Hi Detlef, Detlef Steuer writes: > Often I would like to remove that detail while rescheduling to another day, > fixing times later. > > I couldn't find a key combo in the manual to do that, but I'm sure > there must be an easy way. I use this: C-c C-s [reschedule from calendar or using +2d]

Re: [O] org-crypt won't work with new version of gpg

2012-04-02 Thread Bastien
Eric Abrahamsen writes: > I've got `org-crypt-key' set to my private key, and other than that no > real customizations. Any hints very welcome! Looks like the problem comes from either gpg only or the gpg/epg interaction... sorry I can't help further. -- Bastien

Re: [O] Problems with (defvar foo) and Emacs 23

2012-04-02 Thread Achim Gratz
Bastien writes: > 1. one about `buffer-substring-filters' > We should write a compatibility function to get rid of the first > warning. Actually it is a variable and it "just" needs to be aliased suitably, depending on which Emacs version it encounters. This should be done with a macro in org-com

Re: [O] How to remote tags from calfw?

2012-04-02 Thread Bastien
OSiUX writes: > Using calfw [0], i do not know how to remove remove tags from function > cfw:open-org-calendar > > Anyone can help me? > > [0] https://github.com/kiwanami/emacs-calfw Looks like you'll have a better answer from the author himself: SAKURAI Masashi HTH, -- Bastien

Re: [O] identify notes within headlines

2012-04-02 Thread Bastien
Hi Fred, Fred Hansen writes: > Most of my headlines contain only timestamps as content. Some, > however, have notes. These notes are usually contextual information > that will help me to complete a task. To remember to check the > notes, I type 'see note' at the end of these headlines. I suppo

Re: [O] table not returned

2012-04-02 Thread Bastien
Hi Nick, Nick Dokos writes: > BTW, two possible workarounds which "work" with org-babel-string-read: > > (org-babel-string-read "[foo]") --> [foo] > > (org-babel-string-read "'(bar)") --> (bar) > > do *not* work in the original context, so the org-babel-string-read > problem is probably only par

Re: [O] [BUG] html export and org results block and indentation

2012-04-02 Thread Bastien
Nick Dokos writes: > Andreas Leha wrote: > >> The difference seems to come from me loading the module >> org-special-blocks. Without loading this module, I also get your >> result. > > One mystery down, two to go: so there is a (possible) bug in the html > exporter with indented #+BEGIN_ORG/#+E

Re: [O] Sticky Agenda buffer: Announcement and request for testing

2012-04-02 Thread Carsten Dominik
Hi Bastien, of course this is how I'd like it to work as well, but this was too hard for the moment... :( On Apr 3, 2012, at 7:33 AM, Bastien b...@gnu.org wrote: > Hi Carsten and Max, > > "Dominik, Carsten" writes: > >> already in Januar, Max Mikhanosha had published the first >> version of