[Orgmode] Re: mobileorg app can't sync

2010-10-21 Thread Luke Crook
Greg Troxel ir.bbn.com> writes: > > > Rodney Price raytheon.com> writes: > > > I've been trying to get MobileOrg set up with Dropbox, and I seem to > > have done something to make it impossible for MobileOrg to sync. > > Whenever I try, I get an error message like, > > > > Unexpected error: e

Re: [Orgmode] Re: mobileorg app can't sync

2010-10-21 Thread Luke Crook
On Thu, Oct 21, 2010 at 11:17 AM, Erik Iverson wrote: > > >> I have same same error. The steps I took are as follows; >> >> - Downloaded MobilOrg app for iPhone. >> - Created an account on Dropbox. >> - Linked Mobilorg to Dropbox account. >> - Created test entry in Mobilorg. >> - Attempted to syn

[Orgmode] Re: mobileorg app can't sync

2010-11-29 Thread Luke Crook
Luke Crook balooga.com> writes: >   > I'll try this and report back. I started over. Followed the instructions at http://mobileorg.ncogni.to/ and everything works. Thanks, -Luke ___ Emacs-orgmode mailing list Please use `Reply All&#x

[Orgmode] Importing text/data on export?

2010-11-29 Thread Luke Crook
I would like to create some technical specifications in a format of (a) Cover Page, (b) Title Page, (c) Revision History, (d) TOC, (e) List of Tables, (f) List of Figures, and (g) Actual specifications/text/etc. A-C might be part of each org-mode document, or might only be included on export. H

Re: [O] Wrong type argument listp on export

2011-07-21 Thread Luke Crook
Eric Schulte gmail.com> writes: > > I've just pushed up a fix -- Eric > Thanks for fixing this. -Luke

[O] flyspell-prog-mode and org files

2011-09-14 Thread Luke Crook
Does org-mode support 'flyspell-prog-mode', in that flyspell should ignore everything within #+begin_src and #+end_src blocks? Thanks, -Luke

[Orgmode] Bug in column mode where parent has TODO [#A] [/]

2011-02-11 Thread Luke Crook
In column mode, if I modify the TODO status of a subtree then the priority of the parent becomes manged. I am using org-version 7.4 For example; ** TODO [#A] [2/3] BLAH *** TODO BLEE When in column mode, changing the subheading to something other than TODO results in the following: ** TODO [

[Orgmode] Re: Bug in column mode where parent has TODO [#A] [/]

2011-02-12 Thread Luke Crook
Bernt Hansen norang.ca> writes: > > Hi Luke, > > This problem was fixed in master on February 4 after release_7.4 in > commit 28b88bbb11289d6c8d39ccc8dc420e7051fc0d4c. > > Regards, > Bernt Thank you. I'll upgrade to the latest version. -Luke ___

[Orgmode] Does Effort support hours only?

2011-02-17 Thread Luke Crook
Is it possible to specify estimated effort in something other than hours (0.5, or 0:30)? For example 1w, 1m, 2d etc? -Luke ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/m

[Orgmode] Latex custom Title page question

2011-02-23 Thread Luke Crook
I have successfully created a custom title page which I have used to replace the default version created by org-mode. Per http://orgmode.org/worg/org-tutorials/org-latex-export.html "11.2 Titles and Title Page Layout". However my title page contains the document title, date and version number.

Re: [O] making flexible table formulas

2011-02-28 Thread Luke Crook
On Mon, Feb 28, 2011 at 9:35 AM, Rustom Mody wrote: > When using orgmode for hacking on data in a table (org a la spreadsheet) I > have this situation > Say I am concentrating on column 2 and I want the bottom cell to be the sum > of the above cells > For a 7 row table with 8th row having the to

[O] Using babel to generate a commit log

2011-03-29 Thread Luke Crook
I have written the following code that uses the Emacs vc-* commands to generate a commit log. I would like the output of this code to be included when my file is exported. #+begin_src emacs-lisp :var limit="" ;; Most of this code is copied from vc.el vc-print-log (when (vc-find-backend-function

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Suvayu Ali gmail.com> writes: > > On Wed, 30 Mar 2011 05:38:41 + (UTC) > Luke Crook balooga.com> wrote: > > > 1) The code between #+begin_src and #+end_src is exported and not > > the result of evaluating the code (the commit log). > >

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Jambunathan K gmail.com> writes: > > Luke Crook balooga.com> writes: > > > 2) I have to add at delay of at least 5 seconds (set-for 5 t) as vc-git calls > > "git log" as an asynchronous process. If not for the delay then babel > > immediate

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Nick Dokos hp.com> writes: > > Luke Crook balooga.com> wrote: > > > Suvayu Ali gmail.com> writes: > > > > > Have you tried ':exports results' as a header argument? > > > > > > > I just tried ':exports results

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Nick Dokos hp.com> writes: > > Luke Crook balooga.com> wrote: > > > 'C-c C-c' at the top of the source block does generate the correct output > > though. It is just 'C-c C-e ' that returns this error. > > > > Right: (current-buffe

[O] How to retrieve the original buffer during export?

2011-03-30 Thread Luke Crook
I have code within #+begin_src and #+end_src that has to have the original org- mode buffer during the export process, (vc-fileset (vc-deduce-fileset t)). Is there an org-mode command that can be called during the export process that will return this buffer? Thanks, -Luke

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Nick Dokos hp.com> writes: > > Luke Crook balooga.com> wrote: > > > Jambunathan K gmail.com> writes: > > > > > > > > > I changed my code to wait until the 'Git' process completes. Luckily "vc- call- > > backe

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Luke Crook balooga.com> writes: > > Nick Dokos hp.com> writes: > > > There is a way to get the original buffer during capture, but I don't > > know of a similar mechanism during export. I hardwired the file name > > instead, but I got no further than

[O] Re: How to retrieve the original buffer during export?

2011-03-30 Thread Luke Crook
Luke Crook balooga.com> writes: > > I have code within #+begin_src and #+end_src that has to have the original > org- > mode buffer during the export process, (vc-fileset (vc-deduce-fileset t)). > > Is there an org-mode command that can be called during the export pr

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Eric Schulte gmail.com> writes: > > Luke Crook balooga.com> writes: > > > I have written the following code that uses the Emacs vc-* commands to generate > > a commit log. > Is there a reason this processing takes place using Emacs Lisp rather > th

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Eric Schulte gmail.com> writes: > > It is true that export takes place in a fresh Org-mode buffer, however > the header arguments of Org-mode code blocks are guaranteed to be > evaluated in the original buffer, so a trick like the following can be > used to grab the original buffer. > > #+begi

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Luke Crook balooga.com> writes: > > Eric Schulte gmail.com> writes: > > > #+begin_src emacs-lisp :var buf=(buffer-file-name (current-buffer)) > > :exports > both > > (message "buffer %S!" buf) > > #+end_src > > The following

[O] Re: Using babel to generate a commit log

2011-03-30 Thread Luke Crook
Eric Schulte gmail.com> writes: > > Since this could be generally useful would you be willing to add it to > the library of babel (org/contrib/babel/library-of-babel.org)? That would be great. > If so then if you could supply a few explanatory sentences, I'll add those and > the code block to

[O] Include headings in export, but exclude from TOC?

2011-05-16 Thread Luke Crook
:NOEXPORT: removes a heading from export and the TOC. Is there a tag that will only exclude a heading from appearing in the TOC? -Luke

Re: [O] Include headings in export, but exclude from TOC?

2011-05-17 Thread Luke Crook
suvayu ali gmail.com> writes: > > On Mon, May 16, 2011 at 6:38 PM, Luke Crook balooga.com> wrote: > > :NOEXPORT: removes a heading from export and the TOC. Is there a > > tag that will > > only exclude a heading from appearing in the TOC? > > > > Fo

[O] org-table-edit-formulas misbehaving in 8.2.7b

2014-07-16 Thread Luke Crook
I just noticed that org does not jump to the correct cell in the table when examining formulas using "org-table-edit-formulas". This was working in 8.2.6. In most cases, it will jump to a different location in the buffer. Example table below. Note that I had to break the table formulae onto

Re: [O] Org 8 Bug in interactive formula editing mode?

2014-07-22 Thread Luke Crook
Nick Dokos gmail.com> writes: > Nope - I tried to reproduce it with latest (both master and maint) and > could not, so I suspect an error in your configuration. > I experience the same issue. http://article.gmane.org/gmane.emacs.orgmode/88610 /Luke

Re: [O] Org 8 Bug in interactive formula editing mode?

2014-07-22 Thread Luke Crook
Nick Dokos zgmail.com> writes: > > Can anybody else reproduce this? /me raises hand.

[O] org-insert-heading

2014-11-11 Thread Luke Crook
Question concerning the behaviour of org-insert-heading; The manual states the following. >> If the command is used at the end of a folded subtree (i.e., behind the ellipses at the end of a headline), then a headline will be inserted after the end of the subtree. << However at least in my insta

Re: [O] org-insert-heading

2014-11-11 Thread Luke Crook
Luke Crook balooga.com> writes: > However at least in my installation (Emacs 34.3, org-mode 8.2.10), Emacs 24.3 obviously.

Re: [O] org-insert-heading

2014-11-13 Thread Luke Crook
Nicolas Goaziou nicolasgoaziou.fr> writes: > > Point is /before/ the ellipses here. You need to move after them, e.g., > using C-f or mess with `org-special-ctrl-a/e'. > > Regards, > OK thanks. I understood "behind the ellipses at the end of a headline" as "before" the ellipses, not "after"

Re: [O] org-insert-heading

2014-11-13 Thread Luke Crook
Luke Crook balooga.com> writes: > > * TEST... > > > Doesn't do anything > The above I cannot consistently reproduce. So ignore for now. Thanks.

[O] org-mode 7.9.4 now returns org-strip-protective-commas

2013-03-22 Thread Luke Crook
I updated org-mode to 7.9.4, and now a I receive the following error from Emacs when I try to generate Latex output; Code block evaluation complete. org-export-select-backend-specific-text: Symbol's function definition is void: org-strip-protective-commas Any ideas what might be going on?

Re: [O] org-mode 7.9.4 now returns org-strip-protective-commas

2013-03-22 Thread Luke Crook
Luke Crook balooga.com> writes: I also see the following error in 7.9.4; Code block evaluation complete. progn: Symbol's function definition is void: org-unescape-code-in-region

Re: [O] org-mode 7.9.4 now returns org-strip-protective-commas

2013-03-25 Thread Luke Crook
Nick Dokos hp.com> writes: > > My guess is that you have a seriously mixed-up installation. > That's what org-version just told me. I downloaded the latest version of Emacs for windows which includes org-mode v7.9.3f. I'll try start from there. ///Luke

[O] #+begin_landscape#+end_landscape

2013-03-26 Thread Luke Crook
When exporting to Latex, the system used to change the paper orientation to landscape for tables between the #+begin_landscape #+end_landscape tags. I noticed that v7.9.3f no longer does this. Were the #+begin_landscape/#+end_landscape tags deprecated? Thanks, -Luke

Re: [O] #+begin_landscape#+end_landscape

2013-03-26 Thread Luke Crook
in a pdf viewer. On Tue, Mar 26, 2013 at 2:41 PM, John Hendy wrote: > On Tue, Mar 26, 2013 at 4:32 PM, Luke Crook wrote: > > When exporting to Latex, the system used to change the paper orientation > to > > landscape for tables between the #+begin_landscape #+end_landsca

Re: [O] #+begin_landscape#+end_landscape

2013-03-26 Thread Luke Crook
scape works as expected. On Tue, Mar 26, 2013 at 4:36 PM, Charles Berry wrote: > Luke Crook balooga.com> writes: > > > > > When exporting to Latex, the system used to change the paper orientation > to > > landscape for tables between the #+begin_landscape #+end_lan

Re: [O] #+begin_landscape#+end_landscape

2013-03-26 Thread Luke Crook
Sorry, pdfscape is what I am using. But I have used lscape in other docs and #+begin_landscape/#+end_landscape does basically the same thing. On Tue, Mar 26, 2013 at 6:03 PM, Luke Crook wrote: > Yes, I have. In fact, lscape is what I am using. > > I haven't changed the docume

Re: [O] org-mode 7.9.4 now returns org-strip-protective-commas

2013-03-28 Thread Luke Crook
On Fri, Mar 22, 2013 at 1:54 PM, Nick Dokos wrote: > > > My guess is that you have a seriously mixed-up installation. It was a load-path problem. I use an init.el file to load my ~/.emacs.d/ emacs.org initialization file, and I totally forgot to update the path to the org directory in init.el

Re: [O] #+begin_landscape#+end_landscape

2013-06-11 Thread Luke Crook
> Luke Crook balooga.com> writes: > > > > > When exporting to Latex, the system used to change the paper orientation to > > landscape for tables between the #+begin_landscape #+end_landscape tags. > > > > I noticed that v7.9.3f no longer does

[O] List of Figures not being generated in 8.0.3?

2013-06-11 Thread Luke Crook
I just noticed that the List of Figures is not being generated in 8.0.3. I have a figure with; #+LATEX: \listoffigures #+ATTR_LaTeX: width=5.5cm #+CAPTION: A Caption Here #+LABEL: fig:test-figure-1 #+begin_src plantuml :file test-figure-1.png :cmdline -Tpng plantuml stuff here #+end_src I have

Re: [O] List of Figures not being generated in 8.0.3?

2013-06-12 Thread Luke Crook
On Tue, Jun 11, 2013 at 4:58 PM, Rasmus wrote: > > > Hi Luke! > > It seems you're using v8.0.3. . . > Thank you for the feedback. I should have scrubbed my tags pre-8.0 tags to conform to the post-8.0 world, sorry about that. The following tags now work as expected. The "List of Figures" lin

Re: [O] List of Figures not being generated in 8.0.3?

2013-06-12 Thread Luke Crook
On Tue, Jun 11, 2013 at 4:58 PM, Rasmus wrote: > > > It seems you're using v8.0.3. . . > > Your example would be something like > > #+OPTIONS: toc:nil > #+TOC: figures ## <-- not implemented currently > #+LATEX: \listoffigures > > The following generates the "List of Figures" #+TOC: listings No

Re: [O] List of Figures not being generated in 8.0.3?

2013-06-13 Thread Luke Crook
Thanks for highlighting this. Being able to skip the #+NAME tag in this situation makes it quite straightforward.

[O] \ref{} not working in HTML export

2013-11-07 Thread Luke Crook
The following works in the latex export, with the correct table number being inserted. "See Table-\ref{tbl:repositories} for details" However "\ref{tbl:repositories}" is included verbatim in the HTML export. Is there a setting that causes \ref{} not to insert the correct results in HTML? T

Re: [O] \ref{} not working in HTML export

2013-11-07 Thread Luke Crook
Nicolas Goaziou gmail.com> writes: > > \ref{} is LaTeX syntax. Try [[tbl:repositories]] instead. > > Regards, > That did the trick, thank you.

[O] \newpage in HTML export

2013-11-20 Thread Luke Crook
Both "\newpage" and "#+LATEX: \newpage" generate page breaks in Latex. However "\newpage" is included verbatim in HTML export. Should I use "#+LATEX: \newpage" instead? /Luke

[O] Links to headings not generated in Tables

2013-11-20 Thread Luke Crook
I am unable to get links of the following type to appear in Tables when exporting to HTML or Latex; [[*Heading 1][A Heading]] The links are valid in Emacs, meaning I can navigate to the target using C-c C-o. Links to headings using ID, or links to other tables ( e.g. [[tbl:aTable]]) do seem

Re: [O] Links to headings not generated in Tables

2013-11-20 Thread Luke Crook
Nicolas Goaziou gmail.com> writes: >> > You are probably using an old Org revision (e.g. the one shipped with > Emacs 24.3). > Hi Nicolas, I'm definitely using 8.2.2, as reported by org-version.

Re: [O] \newpage in HTML export

2013-11-20 Thread Luke Crook
That works. But that means I need both #+HTML: and #+Latex: for the same thing. \newpage should convert as appropriate depending on the export. So, \newpage should translate to the HTML equivalent on HTML export, and the Latex equivalent on Latex export. It only works correctly on Latex expor

Re: [O] Links to headings not generated in Tables

2013-11-21 Thread Luke Crook
Nicolas Goaziou gmail.com> writes: > > Hello, > > Luke Crook balooga.com> writes: > > > Hi Nicolas, I'm definitely using 8.2.2, as reported by org-version. > > OK. Then could you provide an ECM? I'm unable to reproduce the problem. > &

[O] C-c ! org-time-stamp-inactive ?

2016-02-03 Thread Luke Crook
For me, C-c ! has suddenly become unbound and no longer inserts an inactive timestamp. Has this changed in the base org-mode, or most likely is this an issue with my setup? Thanks.

[O] org-block-background in 8.3.1?

2015-08-11 Thread Luke Crook
I'm not sure if I still need to set "org-block-background" in 8.3.1. But if I do need to continue setting this, what is the new name for "org- block-background"? (set-face-attribute 'org-block-background nil :height (round (* 0.9 (face-attribute 'fixed-pitch :height (s

Re: [O] Links to headings not generated in Tables

2013-12-19 Thread Luke Crook
t;<2>> | Two | Two | On Thu, Nov 21, 2013 at 1:04 PM, Nick Dokos wrote: > Luke Crook writes: > > > Nicolas Goaziou gmail.com> writes: > > > >> > >> Hello, > >> > >> Luke Crook balooga.com> writes: > >> > &

Re: [O] Links to headings not generated in Tables

2013-12-19 Thread Luke Crook
Here is the html export. The anchor is generated, but with no text. ID Descr Descr One One Two Two On Thu, Dec 19, 2013 at 11:12 AM, Luke Crook wrote: > Hi Nicolas, > > What about the following code. In the following, <<1>> and <<2>> are n

Re: [O] Links to headings not generated in Tables

2013-12-19 Thread Luke Crook
Ok. I feel quite quite silly now. Thanks /Luke On Thu, Dec 19, 2013 at 12:48 PM, Nicolas Goaziou wrote: > Hello, > > Luke Crook writes: > > > What about the following code. In the following, <<1>> and <<2>> are not > > appearing in the

[O] Changing behaviour of {:} in column view?

2014-01-14 Thread Luke Crook
In column view, org-mode sums 3xSubtasks each having an effort of "1d" as "1d 0:00". Is there a way to change the sum to display this as "3d"? /Luke

Re: [O] Changing behaviour of {:} in column view?

2014-01-15 Thread Luke Crook
Sebastien Vauban writes: > > Luke Crook wrote: > > In column view, org-mode sums 3xSubtasks each having an effort of "1d" as "1d > > 0:00". Is there a way to change the sum to display this as "3d"? > > You could try to attach an ECM (« E

[O] Including date in TaskJuggler exports

2014-03-02 Thread Luke Crook
The following small change to ox-taskjuggler.el will export the date stored in #+DATE: Modified site/org-mode/contrib/lisp/ox-taskjuggler.el diff --git a/site/org-mode/contrib/lisp/ox-taskjuggler.el b/site/org- mode/contrib/lisp/ox-taskjuggler.el index 761e180..5a1895c 100644 --- a/

[O] #+LATEX_HEADER:\newcommand{\orgtitle}{{{{TITLE}}}}

2014-03-17 Thread Luke Crook
I'm looking for a quick and dirty way to use the org-mode variables within Latex. I thought the following might work; #+TITLE: A nice title #+LATEX_HEADER: \newcommand{\orgtitle}TITLE And then in the .tex file; \orgtitle{} Suggestions? Thanks

Re: [O] #+LATEX_HEADER:\newcommand{\orgtitle}{{{{TITLE}}}}

2014-03-18 Thread Luke Crook
Bastien gnu.org> writes: > > Hi Luke, > > Luke Crook balooga.com> writes: > > > #+LATEX_HEADER: \newcommand{\orgtitle}TITLE > > My understanding is that Org's macros cannot be used > within #+... options. > > HTH, > Bastien, th

Re: [O] #+LATEX_HEADER:\newcommand{\orgtitle}{{{{TITLE}}}}

2014-03-18 Thread Luke Crook
I tried creating a custom class and then tried creating a custom style. But I found the easiest to be the following; #+AUTHOR: #+LATEX_HEADER: \newcommand{\orgauthor}{} #+EMAIL: #+LATEX_HEADER: \newcommand{\orgemail}{} #+TITLE: #+LATEX_HEADER: \newcommand{\orgtitle}{} #+DATE: #+LATEX_

Re: [O] #+LATEX_HEADER:\newcommand{\orgtitle}{{{{TITLE}}}}

2014-03-19 Thread Luke Crook
Rasmus gmx.us> writes: > > I've used this snip to recover such fields > > \makeatletter > \let\Title\ title > \let\Author\ author > \let\Date\ date > \makeatother > > Obviously, this is only good for LaTeX. > How would I implement this? Is including in the .tex file sufficient? Having

Re: [O] #+LATEX_HEADER:\newcommand{\orgtitle}{{{{TITLE}}}}

2014-03-19 Thread Luke Crook
Eric S Fraga ucl.ac.uk> writes: > You could always use the new command in the org directive, assuming you > only use LaTeX export: > > #+LATEX_HEADER: \newcommand{\orgauthor}{} > #+AUTHOR: \orgauthor > > This would avoid duplication. Brilliant!! Thank you.

[O] Internal Links <<>> In a table

2014-04-29 Thread Luke Crook
I just noticed that <<>> links in tables <>, <> below do not increment, whereas <<>> links in lists do. Example below. * Reference Documents | Reference | Document Description | |---+--| | <>Ref-1 | Ref 1| | <>Ref-2 | Ref 2| |

Re: [O] Internal Links <<>> In a table

2014-04-29 Thread Luke Crook
Nicolas Goaziou gmail.com> writes: > This is expected. Targets in tables return table number, but only among > captioned tables. Otherwise, the returned value is undefined. Got it. Thanks for the info. /Luke

[O] #+BEGIN_SRC export in Latex

2014-04-30 Thread Luke Crook
The following example is not being exported in Latex as a code block. However it is exported correctly in HTML export. org-mode version 8.2.6 #+BEGIN_SRC emacs-lisp -n -r (save-excursion (ref:sc) (goto-char (point-min))) (ref:jump) #+END_SRC

Re: [O] #+BEGIN_SRC export in Latex

2014-04-30 Thread Luke Crook
Eric S Fraga ucl.ac.uk> writes: > > On Wednesday, 30 Apr 2014 at 18:00, Luke Crook wrote: > > The following example is not being exported in Latex as a code block. However > > it is exported correctly in HTML export. org-mode version 8.2.6 > > > &