Re: [O] Bug in org-log-into-drawer

2012-10-27 Thread Erik Hetzner
At Sat, 27 Oct 2012 11:00:40 +0200, Sebastien Vauban wrote: > > Hello Erik, > > I would have said that this does make sense, as the property LOG_INTO_DRAWER > is not inherited by the TODO entry, does it? > > See http://orgmode.org/manual/Property-inheritance.html for the few Org > properties for

Re: [O] Running babel blocks in :noexport: sections

2012-10-27 Thread Eric Schulte
John Hendy writes: > For papers and beamer presentations, I sometimes hide more "universal" > babel blocks inside a sort of setup headline. I thought I'd done this > before, but perhaps not... The idea would be like so: > > * Data setup :noexport: > > #+begin_src R :session r > > load librari

[O] Bug: stored link description craziness [7.9.2 (release_7.9.2-609-g853125 @ /Users/dave/.emacs.d/el-get/org-mode/lisp/)]

2012-10-27 Thread Dave Abrahams
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

Re: [O] Contradiction between code and doc as regards commented lines

2012-10-27 Thread Rafael Laboissiere
* Bastien [2012-10-27 21:44]: Rafael Laboissiere writes: Please, fix the documentation (or restore the previous behavior, if the documentation is meant to be correct). Done, thanks. Thanks. You might be interested in applying the patch attached below, which fixes the comments in the *R

Re: [O] Running babel blocks in :noexport: sections

2012-10-27 Thread Nicolas Goaziou
Hello, John Hendy writes: > Is this a bug/inappropriate setting, desirable based on how others use > :noexport: headlines, or would others see value in executing babel > blocks in :noexport: headlines? > > If I /didn't/ want it executed, I'd use :execute no. This is the behaviour of the new exp

[O] Base64 embedded images?

2012-10-27 Thread Ken Williams
Has anyone ever tried embedding images directly in the HTML when exporting an org-mode file, similar to what the "SingleFile" Chrome extension does (https://github.com/gildas-lormeau/SingleFile)? This would be extremely handy, allowing me to periodically archive the page in Git, including chang

[O] [PATCH 2/2] Orgpan: quiet byte-compiler

2012-10-27 Thread Jonas Bernoulli
* contrib/lisp/org-panel.el: don't setq undefined and otherwise unused variable orgpan-this-panel-window * contrib/lisp/org-panel.el (orgpan-check-panel-mode): fix format string of (error) * contrib/lisp/org-panel.el: declare variables viper-emacs-state-mode-list and viper-new-major-mode-buff

[O] [PATCH 1/2] Orgpan: resize the correct window

2012-10-27 Thread Jonas Bernoulli
* contrib/lisp/org-panel.el (orgpan-panel): Make sure the panel buffer is resized to four lines not the document buffer. TINYCHANGE --- contrib/lisp/org-panel.el | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/contrib/lisp/org-panel.el b/contrib/lisp/org-panel.el inde

[O] [PATCH 0/2] Orgpan: resize correct window

2012-10-27 Thread Jonas Bernoulli
Teach orgpan-panel to resize the correct window; that is the newly created panel window instead of the document window. I only tested this with Emacs-24.2.1. There are a few other outstanding issues: - search prompts in the minibuffer but selects the document window - orgpan-panel-buttons:=t caus

Re: [O] Contradiction between code and doc as regards commented lines

2012-10-27 Thread Bastien
Rafael Laboissiere writes: > Please, fix the documentation (or restore the previous behavior, if the > documentation is meant to be correct). Done, thanks. -- Bastien

Re: [O] Web site bug

2012-10-27 Thread Bastien
Hi Simon, Simon Thum writes: >>;;; org-install.el --- backward compatibility file for obsolete >> configuration >>;; >>;;; Code: >>(warn "The file org-install is obsolete. >>It is provided here so that (require 'org-install) does not >>trigger an error for users with obs

[O] Contradiction between code and doc as regards commented lines

2012-10-27 Thread Rafael Laboissiere
Before Git commit e8046d2, lines like this were treated as comments in org-mode: ### This used to be a comment At present, lines as the above are not highlighted as comments and will be exported verbatim. Only lines like the following are considered to be comments, currently: # Onl

[O] Running babel blocks in :noexport: sections

2012-10-27 Thread John Hendy
For papers and beamer presentations, I sometimes hide more "universal" babel blocks inside a sort of setup headline. I thought I'd done this before, but perhaps not... The idea would be like so: * Data setup :noexport: #+begin_src R :session r load libraries read data files do universal oper

Re: [O] Web site bug

2012-10-27 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > Wouldn't it be better to tell users to require 'org-loaddefs instead No, (require 'org-loaddefs) is never needed IMHO. > , so that > they don't have a performance penalty when loading their .emacs file, until > they really access Org -- if they do,

[O] Bug or not? vCard export problem

2012-10-27 Thread Simon Thum
Hi all, I'm currently setting up org for more automatic syncing. One of the tings I'm testing is auto-regenerating a vCard list of my org-contacts content on update: emacs -f org-contacts-export-as-vcard This does not work. However if I load some org file: emacs whatnot.org -f org-contacts-

Re: [O] Web site bug

2012-10-27 Thread Simon Thum
Hi Bastien, thanks a lot for clarifying this. One nit left, see below. I'm having a look at putting a summary in worg. Thanks, Simon On 10/27/2012 09:33 AM, Bastien wrote: Hi Simon, Simon Thum writes: Sorry but to me this just worsens the (or my) confusion around org-install. In git we

[O] [PATCH] Separate clocksum format for durations >= 1 day

2012-10-27 Thread Toby Cubitt
Personally, I find the time duration "123:15" much harder to parse mentally than "5d 3:15". The attached patch adds a new customization option `org-time-clocksum-days-format'. When non-nil, this is used instead of `org-time-clocksum-format' for clocksum durations longer than 1 day. It gets passed

Re: [O] Web site bug

2012-10-27 Thread Achim Gratz
Bastien writes: > Achim Gratz writes: > >> As a result, you must now load org (which in turn loads org-loaddefs). > > I don't think so. Fake an autoload refering to some non-existing file or function in org-loaddefs.el in the Git worktree and try if you see that without doing a (require 'org). T

Re: [O] How to automatic list org files via Elisp and then, import them for an HTML export

2012-10-27 Thread Bastien
Hi Flammable (!), flammable project writes: > If someone can help me to do this I will really appreciate! I think we will be able to help with a more limited example. Keep it minimal, if possible... Thanks in advance, -- Bastien

Re: [O] [ANN] Smart quotes in org-export.el

2012-10-27 Thread Bastien
Nicolas Goaziou writes: > #+OPTIONS: ':t I like this option, the choice of "'" is quite smart indeed! Thanks for implementing this, -- Bastien

Re: [O] Problem with some src blocks

2012-10-27 Thread Nicolas Goaziou
Hello, Fabrice Popineau writes: > I have these lines : > > Bla bla bla > > #+INCLUDE: "../java/Power2/Power2.java" src java > > Bla bla bla > > that get exported this way : > > > Bla bla bla > > > > #+BEGIN_SRC java > public class Power2 > ... > > How is it possible that the src block be expo

Re: [O] Problem with some src blocks

2012-10-27 Thread Fabrice Popineau
Well ... this bothered me for a couple of days, and the reason is easy: the lf encoding of the file does not match the one of the buffer where it gets included. I switched the lf encoding of the java file and it gets included correctly. So: is it possible to add something to make sure that the fi

[O] [ANN] Smart quotes in org-export.el

2012-10-27 Thread Nicolas Goaziou
Hello, I've installed a smart quotes module in org-export.el (new exporter). It is off by default. You can turn it on globally with `org-export-with-smart-quotes' variable, or locally with: #+OPTIONS: ':t For now it includes quotes for de, en, es and fr languages only. If you want to help comp

[O] Problem with some src blocks

2012-10-27 Thread Fabrice Popineau
Hi, I have these lines : Bla bla bla #+INCLUDE: "../java/Power2/Power2.java" src java Bla bla bla that get exported this way : Bla bla bla #+BEGIN_SRC java public class Power2 ... How is it possible that the src block be exported literally ? I tried a couple of other java files but it ha

Re: [O] Perhaps BUG: Proper quotes around math in new exporter

2012-10-27 Thread Nicolas Goaziou
Hello, Rasmus writes: > I can't seem to get the new exporter to export proper quotes around > single element math symbols. Here's a test-string: > > 'x' '\(x\)' '$x$' `$x$' `\(x\)' "\(x\)" "x" > > (first and last are always correct) There is now a better smart quotes export module in org-ex

Re: [O] agenda view of repeated time-ranges

2012-10-27 Thread Philipp Kroos
William Léchelle writes: Hi, > On Fri, 26 Oct 2012 15:05:07 +0200, Philipp Kroos spake thus: >> I want some events to show up every week with start and end-time in the >> agenda. >> Is it possible to combine a time-range with a repeater? I think I tried >> every combination of range and repeate

Re: [O] Bug in org-log-into-drawer

2012-10-27 Thread Sebastien Vauban
Hello Erik, Erik Hetzner wrote: > Current the org-log-into-drawer function does not honor the value of > the LOG_INTO_DRAWER property if the property has the value nil. For > example, if the org-log-into-drawer variable is set to t, but we have > the file: > > * Foo > :PROPERTIES: > :LOG

Re: [O] Web site bug

2012-10-27 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: >> ;;; Code: >> (warn "The file org-install is obsolete. >> Please change your configuration to (require 'org) instead.") > > Yes, this was confusing. I updated this file like this > > ;;; org-install.el --- backward compatibility file for obsolete > configuration >

Re: [O] [wish] also provide documentation for contrib

2012-10-27 Thread Bastien
Hi Sébastien and Thomas, Sébastien Delafond writes: > As the Debian maintainer for org-mode, I cannot agree more with > Thomas: since contrib is *distributed* in the regular org-mode > tarball, its documentation should be found in there as well. I agree. Let's start by patching README_contribu

Re: [O] org-special-block

2012-10-27 Thread Bastien
Hi Sanjib, Sanjib Sikder writes: > I have checked special-blocks in customize-apropos org-modules. But > still i cannot load org-special-blocks. When org-special-blocks is checked from org-modules, you need to restart Org. -- Bastien

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-27 Thread Bastien
Achim Gratz writes: >> Starting Emacs now requires ~18 seconds vs 2 seconds before. > > That is one of the consequences of how org.el is currently structured. The move to using org-loaddefs.el was to optimize things within Emacs. Before org-loaddefs.el, all Org's autoloads were added to loaddef

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-27 Thread Bastien
Hi Michael, Michael Brand writes: > Would it be possible/reasonable to have org-version available before > (require 'org)? I would like to put the Org version into the Message > Buffer at Emacs startup without the need of loading the entire Org > yet. Yes, you can call (org-version) before any

Re: [O] Web site bug

2012-10-27 Thread Bastien
Achim Gratz writes: > As a result, you must now load org (which in turn loads org-loaddefs). I don't think so. With a fresh git clone in e.g. ~/org-mode/ and "make autoloads", or with the tar/zip archive unpacked in this directory, I get the correct autoloads without (require 'org). Here is h

Re: [O] Web site bug

2012-10-27 Thread Achim Gratz
Simon Thum writes: > Which is the recommended thing in what setup? If ELPA needs not even > org, which AFAIK is not the case, then what? And what about git > installs? > > I guess I'm wholly confused now. You never needed to do anything extra for using Org as it comes with Emacs, the autoloads are

Re: [O] Suggestion: Replace #+SETUP_FILE with #+INCLUDE

2012-10-27 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > Therefore, I don't see any reason to keep maintaining the #+SETUP_FILE > keyword. I'd rather remove it and suggest to use #+INCLUDE: keyword > instead. > > Any objection? FWIW, none on my side. Thanks, -- Bastien

Re: [O] C-c ^ for plain lists? Why not?

2012-10-27 Thread Bastien
Carsten Dominik writes: > I would think that > > checked - transitionary - unchecked - no box > > is a pretty decent default. +1 > (defun org-sort-list-by-checkbox-type () > "Sort list items according to Checkbox state." > (interactive) > (org-sort-list >nil ?f >(lambda

Re: [O] Bug in org-log-into-drawer

2012-10-27 Thread Bastien
Hi Erik, thanks for the patch, I just applied it. Best, -- Bastien

Re: [O] Web site bug

2012-10-27 Thread Bastien
Hi Simon, Simon Thum writes: > Sorry but to me this just worsens the (or my) confusion around > org-install. > > In git we find this org-install.el: > > ;;; org-install.el --- autogenerated file, do not edit > ;; > ;;; Code: > (warn "The file org-install is obsolete. > Please change your configu

Re: [O] 7.9.2: no testing directory

2012-10-27 Thread Bastien
Uvius writes: > Following the installation instructions in the manual I failed at > 'make test' with > this message: > > Cannot open load file: testing/org-test.el > make: *** [test] Error 255 > > Indeed, the testing directory is not present in the org-7.9.2.tar.gz > and therefore not > in the or