Re: [O] IDE tools for maintaining Emacs Lisp programs (Org in particular)

2012-04-20 Thread Jambunathan K
Jambunathan K writes: > For all practical purposes, I find this be sufficient. > > (global-set-key (kbd "C-c f") > (lambda () > (interactive) > (require 'finder) > (let ((thing (intern (thing-at-point 'symbol > (i

Re: [O] IDE tools for maintaining Emacs Lisp programs (Org in particular)

2012-04-20 Thread Jambunathan K
For all practical purposes, I find this be sufficient. (global-set-key (kbd "C-c f") (lambda () (interactive) (require 'finder) (let ((thing (intern (thing-at-point 'symbol (if (functionp thing)

Re: [O] IDE tools for maintaining Emacs Lisp programs (Org in particular)

2012-04-20 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > This is a bit OT, but I'd be interested by learning how to get a better > environment for editing ELisp code. > > Currently, the only friends I have are ElDoc and C-h f/v for navigation to > symbol definitions. This is rather primitive, isn't it? Wel

Re: [O] [bug] Remote durations are considered as fractions

2012-04-20 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > I think this is it... Yes.. but in fact, this is precisely the difference between the `t' and the `T' flags - the latter displays seconds while the former display the output according to `org-table-duration-custom-format', which you can customize.

Re: [O] Agenda: Don't widen narrowed subtrees

2012-04-20 Thread Bastien
Hi Moritz, Moritz Ulrich writes: > When a file used in the org-agenda is in a narrowed state > (org-narrow-to-subtree or similar) and you refresh the agenda buffer > via `g', it becomes un-narrowed. This is a very annoying behavior as I > tend to narrow to subtrees while editing their contents.

Re: [O] [PATCH] Add svg export using pdf2svg, for latex math and src blocks.

2012-04-20 Thread Bastien
Hi Tom, Tom Prince writes: > On Sun, 2 Oct 2011 14:35:48 -0400, Tom Prince > wrote: >> This is my attempt to add export of latex code (for HTML export) >> via svg, rather than png. I don't know if this is the best way to go >> about doing it, but I wanted to avoid as much duplicated code as >

Re: [O] [PATCH] org-preview-latex-fragment not working with #+latex_header:\input{}

2012-04-20 Thread Vladimir Lomov
Hello, ** Benjamin Motz [2012-04-20 19:28:43 +0200]: > Bug: > #+latex_header:\input{commands.tex} is not considered in > org-preview-latex-fragment. Reason: the fragment is generated in /tmp > from where the file commands.tex can not be found. In my case, > commands.tex contains essential latex-c

Re: [O] Yearly repeats on the agenda

2012-04-20 Thread Samuel Wales
Just so people know that this is a possibility: I find it useful to put inactive timestamps in headlines. This makes it simple to find entries in a sorted chronological list, and gather information about them, without any unfolding or even (in some cases) any ellipses. I think the key thing is t

Re: [O] Org-mode for Product Requirements

2012-04-20 Thread Bill Wishon
Quick update, Here's a start at the type of org doc I'm aiming to build ultimately with the help of my new org-prd module : http://dl.dropbox.com/u/25725498/org-prd.org It's actually the first draft of the PRD for org-prd. And here's my start at the org-prd.el itself. It's a small start with on

Re: [O] More than one column view in a file

2012-04-20 Thread Bastien
Hi Johnny, Johnny writes: > "Sebastien Vauban" writes: > >> Bastien wrote: >>> "Sebastien Vauban" writes: >>> I'd like to have a couple of different (column) views in my Org file >>> >>> This is currently not possible and would require a lot of work. > > This is something I have been look

Re: [O] More than one column view in a file

2012-04-20 Thread Johnny
"Sebastien Vauban" writes: > Bastien wrote: >> "Sebastien Vauban" writes: >> >>> I'd like to have a couple of different (column) views in my Org file >> >> This is currently not possible and would require a lot of work. This is something I have been looking for as well and it would be a great f

Re: [O] new style of html export for documents with code blocks -- based on docco

2012-04-20 Thread Bastien
Eric Schulte writes: > Done, see http://orgmode.org/worg/org-contrib/index.html Thanks! -- Bastien

Re: [O] unintended strike-through in table

2012-04-20 Thread Bastien
Hi Skip, Skip Collins writes: > I see little reason to continue to support +strike-through+ text. > Perhaps the simplest solution would be to deprecate stricken text and > disable it by default, allowing for an option to turn it on for > backward compatibility. I agree. If no one object, I wil

Re: [O] [PATCH] org-preview-latex-fragment not working with #+latex_header:\input{}

2012-04-20 Thread Bastien
Hi Benjamin, Benjamin Motz writes: > #+latex_header:\input{commands.tex} is not considered in > org-preview-latex-fragment. Reason: the fragment is generated in /tmp > from where the file commands.tex can not be found. In my case, > commands.tex contains essential latex-code for displaying the >

Re: [O] Flexible plain list bullets

2012-04-20 Thread Bastien
Hi Mark, "Mark E. Shoulson" writes: > I'd > offer to write a patch for some of the more obvious ones, to free up that > much time from others, but it would be so small, it would probably take as > long for someone to look over my patch as to write it themselves, so it > wouldn't save anyone any

Re: [O] Flexible plain list bullets

2012-04-20 Thread Mark E. Shoulson
On 04/20/2012 09:38 AM, Bastien wrote: Hi Mark, I agree with Nicolas that a solution based on overlays would be better. Probably, though very possibly not worth it. I also agree with you that there are many areas where we let the users modify the content of Org files in a way that makes the

Re: [O] broken link in online docs

2012-04-20 Thread Bastien
Brian van den Broek writes: > has a link "(see href="../calc/index.html#Top">Calc)" that yields a 404. I finally fixed this by creating a HTML redirection. Thanks, -- Bastien

[O] IDE tools for maintaining Emacs Lisp programs (Org in particular)

2012-04-20 Thread Sebastien Vauban
Hello, This is a bit OT, but I'd be interested by learning how to get a better environment for editing ELisp code. Currently, the only friends I have are ElDoc and C-h f/v for navigation to symbol definitions. This is rather primitive, isn't it? When I see what CEDET and ECB seem to offer -- tho

Re: [O] [bug] Remote durations are considered as fractions

2012-04-20 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >> BTW, *could we limit the format of "T" to H:MM*, instead of H:MM:SS? The >> first >> case seems much more common, and the one used in all time clocking functions >> of Org. > > Patch welcome! I think this is it... >From a77fe281afe5b

Re: [O] org-program-exists vs executable-find

2012-04-20 Thread Martyn Jago
Hi "Sebastien Vauban" writes: > Hi Bastien, > > Bastien wrote: >> "Sebastien Vauban" writes: >> The name `org-program-exists' is actually misleading, it should be `org-executable-call' instead, while still checking if the executable exists before calling it. >>> >>> Nope, the nam

Re: [O] org-program-exists vs executable-find

2012-04-20 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >>> The name `org-program-exists' is actually misleading, it should be >>> `org-executable-call' instead, while still checking if the executable >>> exists before calling it. >> >> Nope, the name is not misleading. The documentation string

Re: [O] More than one column view in a file

2012-04-20 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >> I'd like to have a couple of different (column) views in my Org file > > This is currently not possible and would require a lot of work. A pity, but I completely conceive it was not clear that it could have be more promising this way (

Re: [O] Capturing to current file

2012-04-20 Thread Charles
If I may I'll throw in my 2 cents, since I made the error in the first place Why not in Section 9.2.1 immediately before or after the "special way" for using capture from the agenda? The documentation reads as follows in org-capture.el at (defun org-capture (&optional goto keys) "Capture so

Re: [O] new style of html export for documents with code blocks -- based on docco

2012-04-20 Thread Eric Schulte
Bastien writes: > Eric Schulte writes: > >> Bastien writes: >> >>> Hi Eric, >>> >>> Eric Schulte writes: >>> This is a simple little hack, and I don't really have time to turn it into anything more than that, but the following may be used to generate nice side-by-side docco-styl

[O] unintended strike-through in table

2012-04-20 Thread Skip Collins
When I open the following table in org, the characters from the first + symbol in +bar to the last + symbol on the next line are struck out, i.e. drawn with a line through the text. #+STARTUP: showall * foo | C | D    | | E | +bar | |---+--| I do not believe this is intended behavior for +str

Re: [O] [ODT] Internal Link disparear

2012-04-20 Thread Jambunathan K
Michael Thanks for this report. This is a bug in the ODT exporter. I have checked in a fix to both hotfix-7.8.06 and master branch few minutes ago. I am attaching a sample Org file and the ODT file generated after the the above fix. Let me know if you have questions or run into other issues. W

[O] [PATCH] org-preview-latex-fragment not working with #+latex_header:\input{}

2012-04-20 Thread Benjamin Motz
Bug: #+latex_header:\input{commands.tex} is not considered in org-preview-latex-fragment. Reason: the fragment is generated in /tmp from where the file commands.tex can not be found. In my case, commands.tex contains essential latex-code for displaying the latex-fragment, so I consider this to be

Re: [O] Brackets around title in HTML from org-e-html

2012-04-20 Thread Bastien
Nick Dokos writes: > Bastien wrote: > >> Hi Shaun, >> >> Shaun Johnson writes: >> >> > The appended org file when exported to HTML using org-e-html >> > (via org-export-dispatch) has brackets around the title. The >> > generated HTML is attached (t.html) as is a screenshot (t.png). >> > >> >

Re: [O] Change example timestamps to not occur in headlines

2012-04-20 Thread John Hendy
On Fri, Apr 20, 2012 at 11:18 AM, Brian van den Broek wrote: > On 20 April 2012 18:16, John Hendy wrote: >> On Fri, Apr 20, 2012 at 11:01 AM, Brian van den Broek >> wrote: >>> Hi all, >>> >>> I've attached a small patch to the documentation that resolves a >>> conflict between the manual's advic

Re: [O] Brackets around title in HTML from org-e-html

2012-04-20 Thread Nick Dokos
Bastien wrote: > Hi Shaun, > > Shaun Johnson writes: > > > The appended org file when exported to HTML using org-e-html > > (via org-export-dispatch) has brackets around the title. The > > generated HTML is attached (t.html) as is a screenshot (t.png). > > > > How can I avoid these brackets be

Re: [O] new style of html export for documents with code blocks -- based on docco

2012-04-20 Thread Bastien
Eric Schulte writes: > Bastien writes: > >> Hi Eric, >> >> Eric Schulte writes: >> >>> This is a simple little hack, and I don't really have time to turn it >>> into anything more than that, but the following may be used to generate >>> nice side-by-side docco-style exports of Org-mode document

Re: [O] Change example timestamps to not occur in headlines

2012-04-20 Thread Brian van den Broek
On 20 April 2012 18:16, John Hendy wrote: > On Fri, Apr 20, 2012 at 11:01 AM, Brian van den Broek > wrote: >> Hi all, >> >> I've attached a small patch to the documentation that resolves a >> conflict between the manual's advice not to include timestamps in >> headlines and some of its examples w

[O] Change example timestamps to not occur in headlines

2012-04-20 Thread Brian van den Broek
Hi all, [I wondered why my first post wasn't labelled a patch, and then I saw that it attached as octet-stream. Investigating, I was surprised to see that gmail's web interface cannot handle patches as attachments. Sorry for the dupe, but I thought it best to send again in a way that patchwor

Re: [O] Change example timestamps to not occur in headlines

2012-04-20 Thread John Hendy
On Fri, Apr 20, 2012 at 11:01 AM, Brian van den Broek wrote: > Hi all, > > I've attached a small patch to the documentation that resolves a > conflict between the manual's advice not to include timestamps in > headlines and some of its examples where it does just that. > Can you point to the disc

Re: [O] Drawers within inline tasks

2012-04-20 Thread Viktor Rosenfeld
Hi Bastien, Bastien wrote: > Hi Viktor, > > Viktor Rosenfeld writes: > > > when I open the parent task of an inline task drawers are not folded > > anymore. Not sure when this regression occured. > > Allowing tihs was causing performance regression in > `org-cycle-internal-local'. > > If yo

[O] Change example timestamps to not occur in headlines

2012-04-20 Thread Brian van den Broek
Hi all, I've attached a small patch to the documentation that resolves a conflict between the manual's advice not to include timestamps in headlines and some of its examples where it does just that. This is the first time I've ever submitted a formal patch using git to any project, so I hope I di

Re: [O] Inverse matching with '/' in agenda view?

2012-04-20 Thread Gustav Wikström
Hi! Den 19 apr 2012 16:44 skrev "Michael Brand" : >> ... > Is a resolve in the past enough fast? ;-) It sure is! ;-) Thanks /Gustav

Re: [O] new style of html export for documents with code blocks -- based on docco

2012-04-20 Thread Eric Schulte
Bastien writes: > Hi Eric, > > Eric Schulte writes: > >> This is a simple little hack, and I don't really have time to turn it >> into anything more than that, but the following may be used to generate >> nice side-by-side docco-style exports of Org-mode documents with code >> blocks. >> >> http

Re: [O] a turn-key org-mode for newbies?

2012-04-20 Thread Keith Gunderson
I would love to do whatever I can.  I'm more than happy to collect input ideas and make attempts at implementation.  Please feel free to shoot your ideas/advice to the list and I'll collect them.  I'd hope to have something concrete to add or review early next week. BTW, I'm currently hip-deep

Re: [O] [PATCH] Support hour in repeated task cookie

2012-04-20 Thread Bastien
Hi Takafumi, Takafumi Arakaki writes: > Basically, this patch changes all occurrence of "[dwmy]" with > "[hdwmy]" and adds "("h" . hour)" to whata of org-auto-repeat-maybe. I like this idea and I worked on a more complete patch. I didn't replace "dwmy" by a constant though, this is not expecte

Re: [O] Flexible plain list bullets

2012-04-20 Thread Carsten Dominik
On Apr 20, 2012, at 6:19 AM, Mark E. Shoulson wrote: > I guess. I spoke with someone on the IRC channel about this too, the basic > idea being that the Org format should be stable, so the same file won't parse > or behave differently on different installations. There's something to be > said

Re: [O] Brackets around title in HTML from org-e-html

2012-04-20 Thread Bastien
Shaun Johnson writes: > Jambunathan has already fixed this (on the 16th). So I guess you > are seeing his fix. Right, thanks for confirming. -- Bastien

Re: [O] Brackets around title in HTML from org-e-html

2012-04-20 Thread Shaun Johnson
On 20/04/2012 14:19, Bastien wrote: Hi Shaun, Shaun Johnson writes: The appended org file when exported to HTML using org-e-html (via org-export-dispatch) has brackets around the title. The generated HTML is attached (t.html) as is a screenshot (t.png). How can I avoid these brackets being i

Re: [O] Flexible plain list bullets

2012-04-20 Thread Bastien
Hi Mark, I agree with Nicolas that a solution based on overlays would be better. I also agree with you that there are many areas where we let the users modify the content of Org files in a way that makes them unparsable in a systematic manner. This is always a trade-off: user flexibility vs a r

Re: [O] Usage of disqus instead of mailinglist considered harmful

2012-04-20 Thread Kyle Sexton
Bastien writes: > > Maybe first setup an instance on your server so that we can test > it. Then if people prefer this solution and Jason is okay to work > with you on installing it on orgmode.org, let's do this. > Ok, I'll setup an instance to let people play with and see if it's a worthwhile e

Re: [O] [PATCH] Make [fragile] work with overlay specifications.

2012-04-20 Thread Bastien
Hi Christoph, Christoph Dittmann writes: > I noticed something unexpected in org-beamer.el when I used overlay > specifications together with optional parameters for the frame > environment and the frame contained verbatim sections. In this case the > exporter would add [fragile] to the frame

Re: [O] [PATCH] doc/org.texi: Fix typos of function names in Agenda commands

2012-04-20 Thread Bastien
Ippei FURUHASHI writes: > Hi org-mode maintainer, > > There seems to be 2 discrepancies between a function name and its > keybinding, in doc/org.texi. > Could you have a look the following patch please? Applied, thanks! -- Bastien

Re: [O] Brackets around title in HTML from org-e-html

2012-04-20 Thread Bastien
Hi Shaun, Shaun Johnson writes: > The appended org file when exported to HTML using org-e-html > (via org-export-dispatch) has brackets around the title. The > generated HTML is attached (t.html) as is a screenshot (t.png). > > How can I avoid these brackets being inserted? Mhh.. I cannot repro

Re: [O] Yearly repeats on the agenda

2012-04-20 Thread Nick Dokos
Bastien wrote: > Hi Nick, > > Nick Dokos writes: > > > so it becomes "<2012-04-17.*?>". Hence it removes the date in the third > > example above, but not in the other two. > > > > The question is whether this is intended or not > > I think this is intended. If timestamps were not removed fro

Re: [O] Bug in org-diary (Bad sexp)?

2012-04-20 Thread Bastien
Hi Rafael, Rafael writes: > FWIW, using the tip from > http://lists.gnu.org/archive/html/emacs-orgmode/2012-04/msg00702.html to > go back to a previous state, I can confirm that commit > 3bd1c2e9bff539c94f92f1ec919f8f0f1640f8c0 is good and that commit > 973efcd9c9f5a29ffc9db2c317fab44112a97b07 i

Re: [O] a turn-key org-mode for newbies?

2012-04-20 Thread Bastien
Eric Schulte writes: > Although, a simpler system based off a single Org-mode file may be > preferable. Agreed. I long dreamed of an Org tutorial written with elisp source blocks, demonstrating the use of various options incrementally? Any taker? -- Bastien

Re: [O] Various org-mode patches

2012-04-20 Thread Bastien
Toby Cubitt writes: > I'll post the others one by one when I find a spare moment. Thanks in advance! -- Bastien

Re: [O] bug with org-mode-hook and text-scale-set

2012-04-20 Thread Bastien
Hi Matt, Matt Lundin writes: > Matt Lundin writes: > >> Bastien writes: >> >>> Du Yanning writes: >>> text-mode-hook and c-mode-hook do NOT have this bug. and the org-mode-hook of orgmode shipped within emacs 23.3 does NOT have this bug. >>> >>> This is now fixed, thanks. >>> >

Re: [O] Combining font commands

2012-04-20 Thread Bastien
Hi Yurb, YurB writes: > Is there any way to have both bold and italic font on the same word like > */this/* somehow? No, sorry. -- Bastien

Re: [O] Yearly repeats on the agenda

2012-04-20 Thread SW
Bastien altern.org> writes: > I think this is intended. If timestamps were not removed from today's > date, agenda listing items scheduled/timestamped for today would be less > readable. If the year in the timestamp of +1y repeating items is the current year, it *is* removed from the agenda.

Re: [O] Capturing to current file

2012-04-20 Thread Bastien
Hi Nick, Nick Dokos writes: > Charles wrote: > >> I thought that the manual states to capture a TODO to the current file >> use /C-0 (zero) then proceed with the capture. I use this frequently. >> >> Am I missing something in the question? >> > > Probably not - I just didn't know about this m

Re: [O] new style of html export for documents with code blocks -- based on docco

2012-04-20 Thread Bastien
Hi Eric, Eric Schulte writes: > This is a simple little hack, and I don't really have time to turn it > into anything more than that, but the following may be used to generate > nice side-by-side docco-style exports of Org-mode documents with code > blocks. > > http://eschulte.me/org-docco/org-d

Re: [O] food for thought re. git workflows

2012-04-20 Thread Bastien
Nick Dokos writes: > I thought this was an interesting read: > > http://sandofsky.com/blog/git-workflow.html *Very* interesting. Thanks Nick! -- Bastien

Re: [O] [PATCH] Agenda: Fix org-agenda-bulk-toggle when point is at already marked item

2012-04-20 Thread Bastien
Hi Madan, Madan Ramakrishnan writes: > * lisp/org-agenda.el (org-agenda-bulk-mark): truly make arg optional > as advertised by the function applied, thanks. > This is my first patch for org so apologies for any inadvertent > missteps This is good, but please use plain text emails if possible.

Re: [O] Usage of disqus instead of mailinglist considered harmful

2012-04-20 Thread Bastien
Hi Kyle, Kyle Sexton writes: > Some other options could be: > > - Roll our own commenting system (a quick github search found > https://github.com/phusion/juvia) > - Setup automatic backups of comments using the disqus API, > http://docs.disqus.com/developers/export/ Thanks for the link. >

Re: [O] Yearly repeats on the agenda

2012-04-20 Thread Bastien
Hi Nick, Nick Dokos writes: > so it becomes "<2012-04-17.*?>". Hence it removes the date in the third > example above, but not in the other two. > > The question is whether this is intended or not I think this is intended. If timestamps were not removed from today's date, agenda listing items

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

2012-04-20 Thread Francesco Pizzolante
Hi Bastien, I'd like to give my opinion on this subject. > The original display of the clock table with the default values > for both options is consistent. Putting the "File time" in a > different column would require putting the "Total time" in yet > another column, which IMO makes the clock

Re: [O] agenda appt warn time (baby step part 2)

2012-04-20 Thread Bastien
Hi Ivan, Ivan Kanis writes: > The previous patch I sent was completely buggy. This one works but > doesn't fulfill my RFC. I think the warn time should be somewhere within > the time stamp... Inserting warntime in the headline looks hackish. Maybe have a look at contrib/lisp/org-notify.el by

Re: [O] Various org-mode patches

2012-04-20 Thread Toby Cubitt
On Fri, Apr 20, 2012 at 01:59:42PM +0200, Bastien wrote: > Hi Toby, > > Toby Cubitt writes: > > > I finally found time to gather various local patches to org-mode together > > in a public clone of the org-mode git repo, at: > > > > http://www.dr-qubit.org/git/org-mode.git > > If there are pat

Re: [O] HTML slides

2012-04-20 Thread Bastien
Hi Ista, Ista Zahn writes: > On Thu, Apr 19, 2012 at 3:38 PM, Dov Grobgeld wrote: >> There is also https://github.com/dov/org-slidy , which I wrote since I like >> to be able to scroll my slides which S5 does not allow. It would be even >> cooler to create a package for creating HTML5 slideshow

Re: [O] Fast linking to files in private git repos through a hyperlink

2012-04-20 Thread Bastien
Hi Dov, Dov Grobgeld writes: > I thought I would share the following hack that I did with git. > > In my org-mode notebook I often find myself references files that > reside in various private git repos. So far I have referenced these > either by just writing their name or giving a full path. Bu

Re: [O] Various org-mode patches

2012-04-20 Thread Bastien
Hi Toby, Toby Cubitt writes: > I finally found time to gather various local patches to org-mode together > in a public clone of the org-mode git repo, at: > > http://www.dr-qubit.org/git/org-mode.git If there are patches that still need to be applied from this branch, can you send them one b

Re: [O] [PATCH] Add new '[not]todo-unblocked tests to org-agenda-skip-if

2012-04-20 Thread Bastien
Toby Cubitt writes: > This patch adds two new tests to `org-agenda-skip-if': 'todo-unblocked > and 'nottodo-unblocked. These match like 'todo and 'nottodo, but only on > unblocked todo items. This type of test is useful when compiling custom > agenda views containing lists of currently actionable

Re: [O] [PATCH] Allow more control over inserted whitespace in capture templates

2012-04-20 Thread Bastien
Hi Toby, Toby Cubitt writes: > When capturing an item as a subheading, the capture template :empty-lines > property is not sufficient to ensure the correct document layout is > maintained after capturing. > > This patch fixes the capture behaviour to insert new subheadings > immediately after th

Re: [O] bug#11249: 24.1.50; Overlay with face property causes calendar buffer to scroll

2012-04-20 Thread Bastien
Toby Cubitt writes: > On Mon, Apr 16, 2012 at 05:50:50AM +0300, Eli Zaretskii wrote: >> > Date: Sun, 15 Apr 2012 23:04:16 +0200 >> > Cc: 11...@debbugs.gnu.org, emacs-orgmode@gnu.org >> > From: Toby Cubitt >> > >> > The obvious solution is for org-mode to use a face that doesn't enlarge >> > the

Re: [O] [Feature Request] org-mobile edit:add nodes

2012-04-20 Thread Bastien
Hi Henning, I'm not using org-mobile.el so it's hard to test this patch. Can anyone test and report? Henning Weiss writes: > I am currently trying to allow mobileorg-android to capture new > headings into files other than mobileorg.org. It seems to me that > org-mobile does not support refilin

Re: [O] Bug: Footnotes badly positioned in HTML export [7.8.09 (release_7.8.09.234.g4a35)]

2012-04-20 Thread Shaun Johnson
On 20/04/2012 10:21, Nicolas Goaziou wrote: Hello, Shaun Johnson writes: Shaun Johnson writes: The attached example org file (t.org) with two footnotes generates the attached HTML file (t.html). As you can see in the attached screenshot (t.png) the footnote placement is odd to say the lea

Re: [O] Use id property as anchor in the Table of Contents

2012-04-20 Thread Bastien
Hi Olaf, Olaf Dietsche writes: > You might try this *untested* patch. It is against git master. Thanks a lot for this patch. I won't apply tho, because it might break the current setup of users who use :ID: and expect "sec-" to be the prefix for the anchor. We will try to handle Pere's requ

Re: [O] org-protocol-capture and chrome

2012-04-20 Thread Richard Riley
Bastien writes: > Richard Riley writes: > >> Bernt Hansen writes: >> >>> Harri Kiiskinen writes: >>> The format of the patch was probably not correct as I have no idea whether it made it anywhere from this list, but should be found in the archives around April 14th. >>> >>> It's

Re: [O] [PATCH] Add autoload cookie for function org-table-iterate-buffer-tables

2012-04-20 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > In the same vein, I found `org-update-all-dblocks', for which I propose a > patch hereafter. Applied against master, thanks. > I've scanned the 121 occurrences of `(interactive)' in `org.el' to look for > extra potential candidates to the autoloading,

[O] org-clocktable: Show timestamps for CLOCKED

2012-04-20 Thread Moritz Ulrich
Hello, I'm currently running a report on my tasks last month. It works pretty fine using the following clocktable invocation: #+BEGIN: clocktable :maxlevel 2 :scope subtree :compact t :timestamp t #+END: This gives me a nice exportable clocktable for the current subtree (which is what I've done

Re: [O] More than one column view in a file

2012-04-20 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > I'd like to have a couple of different (column) views in my Org file This is currently not possible and would require a lot of work. Best, -- Bastien

Re: [O] org-program-exists vs executable-find

2012-04-20 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: >> The name `org-program-exists' is actually misleading, it should be >> `org-executable-call' instead, while still checking if the executable exists >> before calling it. > > Nope, the name is not misleading. The documentation string is false -- what I >

Re: [O] [bug] Remote durations are considered as fractions

2012-04-20 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > BTW, *could we limit the format of "T" to H:MM*, instead of H:MM:SS? The first > case seems much more common, and the one used in all time clocking functions > of Org. Patch welcome! -- Bastien

Re: [O] [PATCH] Time specifications: Allow specifying relative times

2012-04-20 Thread Bastien
Hi Ilya, Ilya Shlyakhter writes: > When specifying times in the tags/properties matcher you can use relative > time notation, such as or <-1w>. This patch > allows this to be used in other places, such as the :tstart and :tend > parameters of clocktable. Applied, thanks! -- Bastien

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

2012-04-20 Thread Bastien
Hi Nicolas, the patch does not apply against master and does not have a changelog entry. Please resubmit it with a Changelog entry and check that it applies against master correctly. Thanks, -- Bastien

Re: [O] [PATCH 1/2] Simplify org-clocktable-indent-string.

2012-04-20 Thread Bastien
Hi Nicolas, Nicolas Girard writes: > --- > lisp/org-clock.el |6 +- > 1 files changed, 1 insertions(+), 5 deletions(-) > > diff --git a/lisp/org-clock.el b/lisp/org-clock.el > index 591f59c..be66ce6 100644 > --- a/lisp/org-clock.el > +++ b/lisp/org-clock.el > @@ -2342,11 +2342,7 @@ from

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

2012-04-20 Thread Bastien
Hi Sébastien, I introduced `org-clock-file-time-cell-format' which does the same thing than `org-clock-total-time-cell-format' for the file time. The original display of the clock table with the default values for both options is consistent. Putting the "File time" in a different column would r

Re: [O] Drawers within inline tasks

2012-04-20 Thread Bastien
Hi Viktor, Viktor Rosenfeld writes: > when I open the parent task of an inline task drawers are not folded > anymore. Not sure when this regression occured. Allowing tihs was causing performance regression in `org-cycle-internal-local'. If you can provide a patch that let `org-cycle-internal-

Re: [O] Autocomplete for header arguments submitted?

2012-04-20 Thread Bastien
Hi Rainer, Rainer M Krug writes: > has the patch for the autocomplete of the header arguments been > submitted to git? If you're talking about this patch http://patchwork.newartisans.com/patch/1281/ yes, it has been applied against master. I just marked it "archived", in case that was why you

Re: [O] org-protocol-capture and chrome

2012-04-20 Thread Bastien
Richard Riley writes: > Bernt Hansen writes: > >> Harri Kiiskinen writes: >> >>> The format of the patch was probably not correct as I have no idea >>> whether it made it anywhere from this list, but should be found in the >>> archives around April 14th. >> >> It's sitting on the patchwork serv

Re: [O] org-protocol-capture and chrome

2012-04-20 Thread Richard Riley
Bernt Hansen writes: > Harri Kiiskinen writes: > >> The format of the patch was probably not correct as I have no idea >> whether it made it anywhere from this list, but should be found in the >> archives around April 14th. > > It's sitting on the patchwork server waiting to be dealt with. > > h

Re: [O] [PATCH] org-latex.el: append final newline to export buffer

2012-04-20 Thread Bastien
jca+...@wxcvbn.org (Jérémie Courrèges-Anglas) writes: > org-export-as-latex (sometimes?) doesn't add a final newline to the > exported buffer. It's getting in my way as I set require-final-newline > to 'query. Opinions? Accepted and applied in master. Thanks. -- Bastien

Re: [O] HTML slides

2012-04-20 Thread Ista Zahn
On Thu, Apr 19, 2012 at 3:38 PM, Dov Grobgeld wrote: > There is also https://github.com/dov/org-slidy , which I wrote since I like > to be able to scroll my slides which S5 does not allow. It would be even > cooler to create a package for creating HTML5 slideshows straight from > org-mode, e.g. li

Re: [O] Bug: Footnotes badly positioned in HTML export [7.8.09 (release_7.8.09.234.g4a35)]

2012-04-20 Thread Nicolas Goaziou
Hello, Shaun Johnson writes: >> Shaun Johnson writes: >> >>> The attached example org file (t.org) with two footnotes generates the >>> attached HTML file (t.html). As you can see in the attached screenshot >>> (t.png) the footnote placement is odd to say the least. >> >> This is a limitation f

Re: [O] Drawers within inline tasks

2012-04-20 Thread Viktor Rosenfeld
Hi, when I open the parent task of an inline task drawers are not folded anymore. Not sure when this regression occured. Cheers, Viktor Bastien wrote: > Hi Viktor, > > Viktor Rosenfeld writes: > > > Thanks for the quick patch, but there's a small problem. The drawer is > > collapsed if the i

[O] Autocomplete for header arguments submitted?

2012-04-20 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi has the patch for the autocomplete of the header arguments been submitted to git? If yes, I have a problem on my side... Cheers, Rainer - -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germa