Re: [O] porting guide from old to new beamer export?

2015-08-30 Thread Suvayu Ali
On Sun, Aug 30, 2015 at 07:02:51PM -0400, Marko Schütz Schmuck wrote: > Dear All, > > I have again tried (unsuccessfully in the time I was able to spend on > this) to switch to a newer version of org (tried ELPA as well as > 8.2.4). The obstacle is always the beamer export. I have consulted the >

[O] porting guide from old to new beamer export?

2015-08-30 Thread Marko Schütz Schmuck
Dear All, I have again tried (unsuccessfully in the time I was able to spend on this) to switch to a newer version of org (tried ELPA as well as 8.2.4). The obstacle is always the beamer export. I have consulted the documentation online, but by following the instructions there the generated LaTeX

Re: [O] Problems while trying to load feature `org-habit'

2015-08-30 Thread Tobias Frischholz
Ok, I’ve solved it: ;(require 'org) ;(require 'org-install) ;(add-to-list 'org-modules "org-habit") (setq org-modules '(org-habit)) -- Tobi PGP PUBLIC KEY: http://pgp.mit.edu/pks/lookup?search=0xCD463AC1&op=index > On 30 Aug 2015, at 10:33, Tobias Frischholz wrote: > > Hi there, > > I someho

Re: [O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Marcin Borkowski
On 2015-08-30, at 17:21, Nicolas Goaziou wrote: > Hello, > > Point should be on clocked out clock when `org-clock-out-hook' is run. > You can probably use > > (org-element-property :duration (org-element-at-point)) > > to extract last duration. Thanks, that does the trick! Still, I'm not su

Re: [O] Show timestamps but not SCHEDULED

2015-08-30 Thread Ken Mankoff
On 2015-08-30 at 08:26, Ken Mankoff wrote: > I'd like a custom agenda view that shows EVENTS based on their > timestamp, but not the SCHEDULED or DEADLINE timestamps. Is this > possible? > > Example item: > > * EVENT Foo > SCHEDULED: <2015-09-03> > <2015-09-04> A solution. Not very generic, b

Re: [O] [bug] org-cycle changed behavior in orgstruct-mode

2015-08-30 Thread Nicolas Goaziou
Rasmus writes: > But are the slowdowns associated with outline.el functions anything that > will realistically be felt in normal usage? They are noticeable under certain circumstances. I implemented `org-show-children' because `show-children' was /reported/ as slow. Generally speaking, outline

Re: [O] [bug] org-cycle changed behavior in orgstruct-mode

2015-08-30 Thread Rasmus
Hi, >> Do you mean to change org-cycle-internal-local as in this patch or to make >> a hook around it? > > The former. However, a hook is OK too, but I couldn't find an acceptable > candidate. > > Funnily, `org-end-of-subtree' does the exact opposite: it hard-codes > behaviour and switch to the sl

Re: [O] [bug] org-cycle changed behavior in orgstruct-mode

2015-08-30 Thread Nicolas Goaziou
Rasmus writes: > Do you mean to change org-cycle-internal-local as in this patch or to make > a hook around it? The former. However, a hook is OK too, but I couldn't find an acceptable candidate. Funnily, `org-end-of-subtree' does the exact opposite: it hard-codes behaviour and switch to the sl

Re: [O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Nicolas Goaziou
Martin Kaffanke writes: > I have only one CLOCK property for my entry and I just want to extract > the start time of that clock entry. I did after the get-entry: > > (let* > ( > > (clockentry (org-entry-get (point) "CLOCK")) >(clockstart (apply 'encode-time (org-parse-t

Re: [O] [bug] org-cycle changed behavior in orgstruct-mode

2015-08-30 Thread Rasmus
Hi, Nicolas Goaziou writes: >> I tried to add show-children, and NOT have org-show-children in the setup >> but alas it doesn't change the situation. But anyway it's called through >> `org-cycle', in my use-case at least. This in turn rely on at least >> org-cycle-internal-local which in turn

Re: [O] Worg isn't publishing

2015-08-30 Thread Thomas S . Dye
Robert Klein writes: > > I fixed the build. Your changes now show up. Thanks! All the best, Tom -- Thomas S. Dye http://www.tsdye.com

Re: [O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Martin Kaffanke
Nicolas Goaziou writes: > >> And how do I have to rewrite my code now? > > I don't have enough information to answer. > > What is your code supposed to do? What did you use CLOCK property for? I have only one CLOCK property for my entry and I just want to extract the start time of that clock ent

Re: [O] Show timestamps but not SCHEDULED

2015-08-30 Thread Ken Mankoff
Hi, On 2015-08-30 at 08:26, Ken Mankoff wrote: > I'd like a custom agenda view that shows EVENTS based on their > timestamp, but not the SCHEDULED or DEADLINE timestamps. Is this > possible? > > Example item: > > * EVENT Foo > SCHEDULED: <2015-09-03> > <2015-09-04> I think I've found three p

Re: [O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Nicolas Goaziou
Hello, Marcin Borkowski writes: > Let me hijack this thread a bit;-), since my issue seems similar. > I need to get the number of minutes just clocked (so only the last clock > entry) in org-clock-out-hook. Currently, what I'm doing is very > hackish: I check current-message for regex "LINE REM

Re: [O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Marcin Borkowski
On 2015-08-30, at 14:25, Nicolas Goaziou wrote: > Hello, > > Martin Kaffanke writes: > >> Why is "CLOCK" property now missing (after elpa updates) in >> org-entry-get? > > I removed it because it was not used in the code base, and the stored > value was dubious anyway, i.e., the first CLOCK key

[O] Show timestamps but not SCHEDULED

2015-08-30 Thread Ken Mankoff
Hi List, I have a class of TODO items (I call them EVENTS). These all have timestamps. Sometimes they have SCHEDULED or DEADLINE timestamps too. I'd like a custom agenda view that shows these EVENTS based on their timestamp, but not the SCHEDULED or DEADLINE timestamps. Is this possible? Examp

Re: [O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Nicolas Goaziou
Hello, Martin Kaffanke writes: > Why is "CLOCK" property now missing (after elpa updates) in > org-entry-get? I removed it because it was not used in the code base, and the stored value was dubious anyway, i.e., the first CLOCK keyword in the entry, which could also be the first chronologically

[O] (org-entry-get (point) "CLOCK") fails now

2015-08-30 Thread Martin Kaffanke
Hi there, I have an exisiting code using for monnth, and it worked well at the end of July - now End of August I need it again, but it returns nil, even on the org entries which I have successfully used my code. Why is "CLOCK" property now missing (after elpa updates) in org-entry-get? It is ev

[O] Problems while trying to load feature `org-habit'

2015-08-30 Thread Tobias Frischholz
Hi there, I somehow get this message when starting up Emacs. Searching the net didn't help. Here's my init.el: (setq user-full-name "Tobias Frischholz" user-mail-address "tob...@friolz.com") (package-initialize) ;; https://github.com/purcell/exec-path-from-shell (when (memq window-sy

Re: [O] [PATCH] org-mime: Use `compose-mail' to send mail

2015-08-30 Thread Rasmus
Erik Hetzner writes: > * contrib/lisp/org-mime.el (org-mime-compose): Use `compose-mail' to > send mail. Allows customization via `mail-user-agent'. Thanks. Applied. Rasmus -- Got mashed potatoes. Ain't got no T-Bone. No T-Bone

Re: [O] [bug] org-cycle changed behavior in orgstruct-mode

2015-08-30 Thread Nicolas Goaziou
Rasmus writes: > I tried to add show-children, and NOT have org-show-children in the setup > but alas it doesn't change the situation. But anyway it's called through > `org-cycle', in my use-case at least. This in turn rely on at least > org-cycle-internal-local which in turn uses org-show-chil