Re: [O] Strange Problem with org-agenda-redo

2012-08-25 Thread Charles Philip Chan
Charles Philip Chan cpc...@bell.net writes:

 Everything is working fine with the exception that after I mark a TODO
 (scheduled/deadline) or HABIT as done, all my appointment, habits,
 scheduled and deadline items disappear from the view after I save all
 Agenda files and force a redisplay (s g).

I did another experiment, I don't even have to mark anything as
done. All I have to do is to refresh the buffer with g and they are
gone.

Charles

-- 
Never make any mistaeks.
(Anonymous, in a mail discussion about to a kernel bug report.)


pgp3jzs6lgub5.pgp
Description: PGP signature


Re: [O] Strange Problem with org-agenda-redo

2012-08-25 Thread Nick Dokos
Charles Philip Chan cpc...@bell.net wrote:


 I have a strange problem with org-agenda-redo and I hope that someone
 can shed some light. I have an Agenda view which contains everything I
 need for the day which I leave open all the time. The agenda view
 already contains a schedule for the current day. A couple of days ago I
 decided to add another block I called Upcoming Events which contains a
 schedule for the next 6 days (I prefer a separate section, so that I can
 easily ignore it rather then having a 7 days block). Everything is
 working fine with the exception that after I mark a TODO
 (scheduled/deadline) or HABIT as done, all my appointment, habits,
 scheduled and deadline items disappear from the view after I save all
 Agenda files and force a redisplay (s g). If I quite the view and enter
 it again through the dispatcher, everything is displayed again.
 

Can you post your configuration? Best to do it with M-x org-submit-bug-report,
I'd guess.

Nick



Re: [O] Org-mode release 7.9

2012-08-25 Thread Achim Gratz
Eric Schulte writes:
 Will the new ELPA package include org-element.el and org-export.el, or
 would those require separate packaging?

The ELPA archive does not include aynthing from contrib/.  So, org-element is
included, but not org-export.

However, one of the last-minute changes to the build system was to add a
friendlier way to include stuff from contrib, so it would be easy to
package an ELPA tarfile with the new exporter included (this requires
that utils/server.mk is included from local.mk):

make ORG_ADD_CONTRIB=org-export org-e-* elpa cleanaddcontrib

I think it should be a separate archive as long as the new exporter
isn't in core, however.


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

Samples for the Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#BlofeldSamplesExtra




Re: [O] Strange Problem with org-agenda-redo

2012-08-25 Thread Charles Philip Chan
Nick Dokos nicholas.do...@hp.com writes:

Hi Nick:

 Can you post your configuration? Best to do it with M-x
 org-submit-bug-report, I'd guess.

My whole org-mode configuration or just the configuration for that
Agenda view? I have to make it clear that if I take out the 6 day
agenda block and leave the one day one in that view, things are back
to normal. For what it is worth, here is the config for that view. I
will let you look at it before submitting a bug report. Maybe having 2
Agendas in the same view screw things up.

((d GTD: Today's Items
  ((tags UNFILED
 ((org-agenda-overriding-header Aggregated Inbox)
  (org-agenda-skip-entry\ \'regexp\ \Inbox\ nil)))
   (tags @WAITING
 ((org-agenda-overriding-header Wait For)
  (org-agenda-tags-todo-honor-ignore-options\ t nil)
  (org-agenda-todo-ignore-scheduled\ t nil)
  (org-agenda-todo-ignore-deadlines\ t nil)))
   (tags STICKY|HOT
 ((org-agenda-overriding-header Sticky Notes, Tel Messages  Hot 
Items)))
   (tags WORK
 ((org-agenda-overriding-header Current Working Files  Notes)))
   (agenda 
   ((org-agenda-span 'day)
(org-agenda-overriding-header Today: Agenda, Scheduled Actions  
Info)))
   (agenda 
   ((org-agenda-overriding-header Upcoming Events)
(org-agenda-span 6)
(org-agenda-start-day +1d)))
   (todo STARTED
 ((org-agenda-overriding-header Started Actions)
  (org-agenda-tags-todo-honor-ignore-options\ t nil)
  (org-agenda-todo-ignore-scheduled\ nil nil)))
   (todo NEXT
 ((org-agenda-overriding-header Next Actions)))
   (todo PROJECT
 ((org-agenda-overriding-header Projects List)))
   (stuck 
  ((org-agenda-overriding-header Stuck Projects)))
   (todo TODO
 ((org-agenda-overriding-header Action Backlog)))
   (todo PROJDONE|DONE
 ((org-agenda-overriding-header Candidates to be Archived
  nil
  (~/Desktop/Projects/plans/Views/1_day.html))

Charles

-- 
Avoid the Gates of Hell.  Use Linux
(Unknown source)


pgpikTkqgh89S.pgp
Description: PGP signature


Re: [O] org-notify.el doesn't work

2012-08-25 Thread Achim Gratz
Andy Schönemann writes:
 I just upgraded to org-mode 7.9 and I want to test the new
 org-notify.el package. I inserted the two lines (require 'org-notify)
 and (org-notify-start) into my init file. But I can't use this
 mode.That means I can't run none of the commands with M-x
 org-notify-*.

None of those functions are interactive, so you can't run them with M-x.


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

SD adaptation for Waldorf microQ V2.22R2:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada




[O] agenda bulk actions

2012-08-25 Thread Eric Abrahamsen
I'm brushing up on org agenda commands, and have a question about bulk
actions.

It seems to me there's some odd overlap here: we've got 'k' bound to
`org-agenda-action', which is used for marking items and shifting their
dates to the date under point, or for capturing using the date under
point as a default. Then there's 'm' and 'B', which are used for marking
items and… doing everything/anything else.

Having two different ways of marking agenda items and operating on them
seems odd to me. In my (very subjective) opinion, it would be much nicer
to have a single set of functions for this. What I'm envisioning is:

1. Use only m/B for all marking and bulk actions. When we hit 's' or 'd'
   for reschedule or re-deadline, use the date under point (if there is
   one) as a default. This covers the 'k' functionality for scheduling
   and deadlines.

2. Have the regular capture interface check org-context to see if point
   is on an agenda date. If it is, use that as the default date for any
   date fields. This covers the 'k' functionality for capture.

2(a). If the above is too intrusive, provide a single org agenda key
  ('k' would now be free) that calls org-capture using date under
  point as a default.

Would this not be an improvement? Am I missing anything?

Eric

-- 
GNU Emacs 24.2.50.1 (i686-pc-linux-gnu, GTK+ Version 2.24.11)
 of 2012-08-23 on pellet
7.9




[O] Sendmail and orgstruct

2012-08-25 Thread Igor Sosa Mayor
Hi,

first of all, many thanks for providing orgmode. 

I have at the moment a problem sending emails. I get the following error
messages:


Debugger entered--Lisp error: (error Sending...failed to   mail for [ -oi -a 
default -f igor.s...@gmail.com -t ] : send was successful; mail queue is empty 
(nothing to send); )
  signal(error (Sending...failed to   mail for [ -oi -a default -f 
igor.s...@gmail.com -t ] : send was successful; mail queue is empty (nothing to 
send); ))
  error(Sending...failed to %s   mail for [ -oi -a default -f 
igor.s...@gmail.com -t ] : send was successful; mail queue is empty (nothing to 
send); )
  message-send-mail-with-sendmail()
  message-send-mail(nil)
  message-send-via-mail(nil)
  message-send(nil)
  message-send-and-exit(nil)
  call-interactively(message-send-and-exit)
  (let (orgstruct-mode) (call-interactively (or (key-binding ) (quote 
orgstruct-error
  (if (org-context-p (quote headline) (quote item) (and orgstruct-is-++ nil 
(quote item-body))) (org-run-like-in-org-mode (quote org-ctrl-c-ctrl-c)) (let 
(orgstruct-mode) (call-interactively (or (key-binding ) (quote 
orgstruct-error)
  orgstruct-hijacker-command-21(1)
  call-interactively(orgstruct-hijacker-command-21)
  orgtbl-ctrl-c-ctrl-c(nil)
  call-interactively(orgtbl-ctrl-c-ctrl-c nil nil)

I'm using: 
+ emacs 24.1.1
+ orgmode: 7.9

Any hints? 

Thanks in advance!
-- 
:: Igor Sosa Mayor :: joseleopoldo1...@gmail.com ::
:: GnuPG: 0x1C1E2890   :: http://www.gnupg.org/  ::
:: jabberid: rogorido  ::::


pgpHwEIuIEoPz.pgp
Description: PGP signature


Re: [O] Sendmail and orgstruct

2012-08-25 Thread Igor Sosa Mayor
maybe the error has nothing to do with org-struct... If I disable it, i'm still 
getting:

Debugger entered--Lisp error: (error Sending...failed to   mail for [ -oi -a 
default -f igor.s...@gmail.com -t ] : send was successful; mail queue is empty 
(nothing to send); )
  signal(error (Sending...failed to   mail for [ -oi -a default -f 
igor.s...@gmail.com -t ] : send was successful; mail queue is empty (nothing to 
send); ))
  error(Sending...failed to %s   mail for [ -oi -a default -f 
igor.s...@gmail.com -t ] : send was successful; mail queue is empty (nothing to 
send); )
  message-send-mail-with-sendmail()
  message-send-mail(nil)
  message-send-via-mail(nil)
  message-send(nil)
  message-send-and-exit(nil)
  call-interactively(message-send-and-exit nil nil)

Sorry for the noise...


Je Sat, Aug 25, 2012 at 09:58:55AM +0200 Igor Sosa Mayor skribis:
 Hi,
 
 first of all, many thanks for providing orgmode. 
 
 I have at the moment a problem sending emails. I get the following error
 messages:
 
 
 Debugger entered--Lisp error: (error Sending...failed to   mail for [ -oi -a 
 default -f igor.s...@gmail.com -t ] : send was successful; mail queue is 
 empty (nothing to send); )
   signal(error (Sending...failed to   mail for [ -oi -a default -f 
 igor.s...@gmail.com -t ] : send was successful; mail queue is empty (nothing 
 to send); ))
   error(Sending...failed to %s   mail for [ -oi -a default -f 
 igor.s...@gmail.com -t ] : send was successful; mail queue is empty (nothing 
 to send); )
   message-send-mail-with-sendmail()
   message-send-mail(nil)
   message-send-via-mail(nil)
   message-send(nil)
   message-send-and-exit(nil)
   call-interactively(message-send-and-exit)
   (let (orgstruct-mode) (call-interactively (or (key-binding ) (quote 
 orgstruct-error
   (if (org-context-p (quote headline) (quote item) (and orgstruct-is-++ nil 
 (quote item-body))) (org-run-like-in-org-mode (quote org-ctrl-c-ctrl-c)) (let 
 (orgstruct-mode) (call-interactively (or (key-binding ) (quote 
 orgstruct-error)
   orgstruct-hijacker-command-21(1)
   call-interactively(orgstruct-hijacker-command-21)
   orgtbl-ctrl-c-ctrl-c(nil)
   call-interactively(orgtbl-ctrl-c-ctrl-c nil nil)
 
 I'm using: 
 + emacs 24.1.1
 + orgmode: 7.9
 
 Any hints? 
 
 Thanks in advance!
 -- 
 :: Igor Sosa Mayor :: joseleopoldo1...@gmail.com ::
 :: GnuPG: 0x1C1E2890   :: http://www.gnupg.org/  ::
 :: jabberid: rogorido  ::::



-- 
:: Igor Sosa Mayor :: joseleopoldo1...@gmail.com ::
:: GnuPG: 0x1C1E2890   :: http://www.gnupg.org/  ::
:: jabberid: rogorido  ::::


pgpzl0M71rQA1.pgp
Description: PGP signature


Re: [O] Org-mode release 7.9

2012-08-25 Thread Bastien
Hi Rasmus,

Rasmus ras...@gmx.us writes:

 It seems doc.html on worg ins't up to date.  At least a couple of the
 links weren't working for me (the anchor didn't exists).  E.g. orgtbl
 to unicode.

http://orgmode.org/worg/doc.html only document hooks, commands and
options.  Putting all functions and variables would kill the internet.

I fixed the wrong references in http://orgmode.org/Changes.html

Thanks for spotting this!

 BTW: It should technically be possible to run org-e-ascii
 (unicode-version) on tables when sending mails via message-mode, no?
 That would be need.

Yes, I guess it is possible.

-- 
 Bastien



Re: [O] Org-mode release 7.9

2012-08-25 Thread Bastien
Achim Gratz strom...@nexgo.de writes:

 However, one of the last-minute changes to the build system was to add a
 friendlier way to include stuff from contrib, 

I wish it could be even friendlier, with e.g. `make install-contrib'

:)

-- 
 Bastien, The Stubborn Git



Re: [O] Org-mode release 7.9

2012-08-25 Thread Moritz Ulrich

Bastien writes:

 Hi all,

 I've released Org 7.9.

   http://orgmode.org/org-7.9.zip
   http://orgmode.org/org-7.9.gz
   http://orgmode.org/org-mode-download.html


The second link seems dead to me. Maybe it should read 'org-7.9.tar.gz'?

--
Moritz Ulrich



Re: [O] Org-mode release 7.9

2012-08-25 Thread Bastien
Hi Eric,

Eric Schulte eric.schu...@gmx.com writes:

 Will the new ELPA package include org-element.el and org-export.el, or
 would those require separate packaging?

We will move org-export.el into core as soon as there is no conflict
with the current export variables/functions.

That way org-export.el (which will be renamed oe.el) will be accessible
for other (GNU-or-not-GNU) ELPA packages.

-- 
 Bastien



Re: [O] Org-mode release 7.9

2012-08-25 Thread Bastien
Moritz Ulrich mor...@tarn-vedra.de writes:

 The second link seems dead to me. Maybe it should read
 'org-7.9.tar.gz'?

Err... yes, indeed -- here it is:

  http://orgmode.org/org-7.9.tar.gz

-- 
 Bastien



Re: [O] org-notify.el doesn't work

2012-08-25 Thread Bastien
Achim Gratz strom...@nexgo.de writes:

 None of those functions are interactive, so you can't run them with
 M-x.

`org-notify-start' is now interactive in git.

-- 
 Bastien



[O] I can't make work 'startup hidestars'

2012-08-25 Thread Ashfaq
Hi All,

I have installed slacwark13.7 and emacs 23.3. Then I've installed the
orgmode 7.9.3. This is my .emacs initialization file:

(require 'org-install)

Then, in a org file, I added the following lines to have cleaner view

#+STARTUP: indent
#+STARTUP: hidestars


But the starts are not hidden. I can see even extra stars. Could anyone
please help me?


-- 
Sincerely,
Ashfaq


Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Bastien
Hi Ashfaq,

Ashfaq quazi.ash...@gmail.com writes:

 I have installed slacwark13.7 and emacs 23.3. Then I've installed the
 orgmode 7.9.3. This is my .emacs initialization file:
  ^^

The version is not 7.9.3 but 7.9.  

The 3 in org-7.9-3-ga986d3 means that there has been 3 commits since
the release of the version tagged release_7.9.


 (require 'org-install)

 Then, in a org file, I added the following lines to have cleaner view

 #+STARTUP: indent
 #+STARTUP: hidestars


 But the starts are not hidden. I can see even extra stars. Could
 anyone please help me?

I can't reproduce this with emacs-23.4 -Q and I don't have Emacs 23.3.

Does this happen with emacs-23.3 -Q or with your config?

Can anyone else reproduce this?

-- 
 Bastien



Re: [O] Kudos to Auréliens and Andrew who finished the GSoC successfully!

2012-08-25 Thread Puneeth Chaganti
On Fri, Aug 24, 2012 at 9:41 PM, Bastien b...@altern.org wrote:
 I'm happy to announce Aurélien and Andrew both passed the final
 evaluation for their GSoC.  Join me in congratulating them :)

Aurélien and Andrew, Congratulations on successfully completing your
GSoC, and the wonderful projects!



Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Ashfaq
I am testing orgmode in Ubuntu 12.04. The host is a VM in oracle virtual
box (ver 4.1.18) in Windows 7. Here the emacs version is 23.3.1. I am using
the default org-mode here.

Within the host, I opened an org file with the emacs. Now it can hide the
stars.
However, interestingly, when I ssh-ed into the host with 'putty' and opened
the same file with emacs, it shows the stars.

Then I tried it in the latest cygwin. Here, the stars are not hidden.

The org flie has the following entry --

#+STARTUP: hidestars


Sincerely,
Ashfaq


Re: [O] org-notify.el doesn't work

2012-08-25 Thread maroony
Bastien bzg at altern.org writes:

 
 Achim Gratz Stromeko at nexgo.de writes:
 
  None of those functions are interactive, so you can't run them with
  M-x.
 
 `org-notify-start' is now interactive in git.
 

Thanks for your answers! The new notify package sounds very interesting, but it 
would be great to see some more documentation for it.

At the moment I don't know how to set a notify property on an todo-item. A 
small 
example would be very helpful.






Re: [O] org-notify.el doesn't work

2012-08-25 Thread Jambunathan K
maroony andyschoenem...@gmail.com writes:

 Bastien bzg at altern.org writes:

 
 Achim Gratz Stromeko at nexgo.de writes:
 
  None of those functions are interactive, so you can't run them with
  M-x.
 
 `org-notify-start' is now interactive in git.
 

 Thanks for your answers! The new notify package sounds very interesting, but 
 it 
 would be great to see some more documentation for it.

 At the moment I don't know how to set a notify property on an todo-item. A 
 small 
 example would be very helpful.

Try this:

M-x find-library RET org-notify.el RET

and look through the header.  I am seeing this and I don't know how
helpful or true it is.


, From org-notify.el
| Get notifications, when there is something to do.  Sometimes, you
| need a reminder a few days before a deadline, e.g. to buy a
| present for a birthday, and then another notification one hour
| before to have enough time to choose the right clothes.  For
| other events, e.g. rolling the dustbin to the roadside once per
| week, you probably need another kind of notification strategy.
| This package tries to satisfy the various needs.
| 
| In order to activate this package, you must add the following
| code into your .emacs:
| 
|   (require 'org-notify)
|   (org-notify-start)
| 
| Example setup:
| 
| (org-notify-add 'appt
| '(:time -1s :period 20s :duration 10
|   :actions (-message -ding))
| '(:time 15m :period 2m :duration 100
|   :actions -notify)
| '(:time 2h :period 5m :actions -message)
| '(:time 3d :actions -email))
| 
| This means for todo-items with `notify' property set to `appt': 3
| days before deadline, send a reminder-email, 2 hours before
| deadline, start to send messages every 5 minutes, then 15 minutes
| before deadline, start to pop up notification windows every 2
| minutes.  The timeout of the window is set to 100 seconds.
| Finally, when deadline is overdue, send messages and make noise.
`









-- 



Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Charles Philip Chan
Ashfaq quazi.ash...@gmail.com writes:

 Within the host, I opened an org file with the emacs. Now it can hide
 the stars.  However, interestingly, when I ssh-ed into the host with
 'putty' and opened the same file with emacs, it shows the stars.

Do they have different colour backgrounds? Hide star is really just a
hack by setting the stars to the same colour as the background.

Charles

-- 
It's God.  No, not Richard Stallman, or Linus Torvalds, but God.
(By Matt Welsh)


pgp8cua0a5o54.pgp
Description: PGP signature


[O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Brian van den Broek
Hi all,

tl;dr
I've seemingly managed to install org 7.9, but M-x org-version yields
Org-mode version N/A (N/A @ /home/brian/.emacsd/site-lisp/)

The details:

I've not really been following the new build system discussions, but
was half-ways dreading my first org-mode upgrade unde them :-)

I just downloaded the gz.tar of the newly released 7.9; it untarred to
org-7.9-3-ga986d3.

I did my best to follow the instruction on
http://orgmode.org/manual/Installation.html and in local.mk.

I made the changes:

# Where local software is found
# Note, *not* ~/.emacs.d but ~/.emacsd, a dir I created to store my
personal emacs stuff
prefix  = /home/brian/.emacsd

# Where local lisp files go.
lispdir= $(prefix)/site-lisp

# Where local data files go.
datadir = $(prefix)/etc

# Where info files go.
infodir = $(prefix)/info


ORG_MAKE_DOC = info # html pdf
INSTALL_INFO = ginstall-info # Debian: avoid harmless warning message

(Apart from the ORG_MAKE_DOC setting, these are exactly the changes I
have always made to upgrade from one released version to another. I've
tried multiple times both with and without the ORG_MAKE_DOC and
INSTALL_INFO settings.)

I then ran make help, make config, and make install as instructed.
(After the issue described below, I also deleted everything installed
and tried again with sudo make install achieving the same result.)

Once that was done, I launched a fresh emacs, visited an .org file,
and ran M-x org-version. What I got was:

Org-mode version N/A (N/A @ /home/brian/.emacsd/site-lisp/)

This seems to indicate that something went wrong, somewhere.

I'm pretty sure at least some of org 7.9 got installed. On the newly
installed version, I have org-insert-all-links available (via M-x
org-insert-allTAB) whereas on the previously installed version of
org-mode, tab completion for this command name does not work.

M-x emacs-version yields:
GNU Emacs 23.2.1 (x86_64-pc-linux-gnu, GTK+ Version 2.20.1) of
2010-12-11 on brahms, modified by Debian

~$ make --version
GNU Make 3.81

The first things I have in my .emacs that are org-related are adding
/home/brian/.emacsd/site-lisp to my load path and then (require
'org-install).

I've little doubt it is operator error, but I am at a loss for how to
proceed. Little help?

Thanks and best,

Brian vdB



Re: [O] Org-mode release 7.9

2012-08-25 Thread François Allisson
Hi Bastien,

Le vendredi 24 aoû 2012 à 17:48:42 (+0200), Bastien a écrit :
 Hi all,
 
 I've released Org 7.9.
 
   http://orgmode.org/org-7.9.zip
   http://orgmode.org/org-7.9.gz
   http://orgmode.org/org-mode-download.html
 
 After 1885 commits since Org 7.8, it was about time.
 
 See the list of changes here:
 
   http://orgmode.org/Changes.html
 

Excellent. I've started to use Org with the release 7.7 less than a year
ago. It was already *very* good. It is amazing to see, with this huge
list of changes, how it improved every single day since my first use of
it. *A big thank* to you and all of those who participate to this
splendid piece of emacs.

BTW, Org 7.9. compiles and runs without problem on my debian/emacs
24.2.50.1.

Cheers,

François.



Re: [O] org-notify Tutorial

2012-08-25 Thread Peter Münster
On Tue, Aug 07 2012, SW wrote:

 Is a tutorial/guide available for org-notify? Neither of the following were 
 very
 helpful:

 http://orgmode.org/worg/org-api/org-notify-api.html

 http://thread.gmane.org/gmane.emacs.orgmode/52634/focus=52693



On Sat, Aug 25 2012, maroony wrote:

 Thanks for your answers! The new notify package sounds very interesting, but 
 it 
 would be great to see some more documentation for it.

Hi,

I'm glad, that other people like this package!
Unfortunately I don't have enough time to write more documentation.
(so much *TODO* ... ;)

Nevertheless, I send you my own setup as an example:

--8---cut here---start-8---
(require 'org-notify)
(org-notify-add 'default '(:time 100m :actions -notify/window
   :period 2m :duration 60))
(org-notify-add 'urgent-second '(:time 3m :actions (-notify/window -ding)
 :period 15s :duration 10))
(org-notify-add 'minute '(:time 5m :actions -notify/window
  :period 100s :duration 70))
(org-notify-add '12hours
'(:time 3m :actions (-notify/window -ding)
:period 15s :duration 10)
'(:time 100m :actions -notify/window
:period 2m :duration 60)
'(:time 12h :actions -notify/window :audible nil
:period 10m :duration 200))
(org-notify-add '5days
'(:time 100m :actions -notify/window
:period 2m :duration 60)
'(:time 2d :actions -notify/window
:period 15m :duration 100)
'(:time 5d :actions -notify/window
:period 2h :duration 200))
(org-notify-add 'long-20days
'(:time 2d :actions -notify/window
:period 15m :duration 60)
'(:time 5d :actions -notify/window
:period 2h :duration 60)
'(:time 20d :actions -email :period 2d :audible nil))
(org-notify-add 'long-50days
'(:time 4d :actions -notify/window
:period 30m :duration 100)
'(:time 10d :actions -notify/window
:period 4h :duration 200)
'(:time 50d :actions -email :period 3d :audible nil))
(org-notify-add 'long-100days
'(:time 2d :actions -notify/window
:period 1h :duration 200)
'(:time 10d :actions -notify/window
:period 10h :duration 300)
'(:time 50d :actions -email :period 3d :audible nil)
'(:time 100d :actions -email :period 5d :audible nil)))
(org-notify-start 10)
--8---cut here---end---8---


 At the moment I don't know how to set a notify property on an todo-item. A 
 small 
 example would be very helpful.

Example:

--8---cut here---start-8---
* TODO Terrasse bauen
  DEADLINE: 2013-04-20 Sat 10:38
  :PROPERTIES:
  :notify:   long-100days
  :END:
--8---cut here---end---8---


Contributions (code/documentation) are welcome of course!

-- 
   Peter




Re: [O] Org-mode release 7.9

2012-08-25 Thread Torsten Wagner
Hi Bastien,

with all the new features and changes for each release, we might
really need a release-party
or better a release-workshop. 1-2 days to get introduced to all the
great new stuff ;)

Kudos to all the org developers.


Torsten

On 25 August 2012 00:48, Bastien b...@gnu.org wrote:
 Hi all,

 I've released Org 7.9.

   http://orgmode.org/org-7.9.zip
   http://orgmode.org/org-7.9.gz
   http://orgmode.org/org-mode-download.html

 After 1885 commits since Org 7.8, it was about time.

 See the list of changes here:

   http://orgmode.org/Changes.html

 I cannot thank all the contributors enough: especially Nicolas, for his
 great work on org-element.el (among other nice stuff), Achim for the way
 he patiently rethought the build mechanism (and bared with me when I was
 being stubborn), Eric for the steady maintainance of Babel, Max for the
 neat idea of sticky agendas, etc.

 Here is a list of people to praise for their help:

 A. Major, Aaron Peromsik, Achim Gratz, Adam Spiers, Aidan Gauland,
 Albert, Alex Lane, Alexander Willand, Andrew Young, Anthony Lander,
 Benjamin Motz, Bernt Hansen, Bill Jackson, Bill Wishon, Bjarte Johansen,
 Brian J. Carlson, Brian Wood, Brian van den Broek, Carsten Dominik,
 Charles Philip Chan, Charles Sebold, Charles, Charlie Millar, Christoph
 Lange, Christophe Rhodes, Christopher Schmidt, Daniel Dehennin, Dave
 Abrahams, David Coate, David Maus, David Niemi, Dov Grobgeld, Du
 Yanning, Dunib, Elias Assarsson, Eric Abrahamsen, Eric S Fraga, Eric
 Schulte, Fabrice Pardo, Feiming Chen, François Allisson, François
 Pinard, Friedrich Delgado, Giles, Glenn Morris, Greg Troxel, Gsqual,
 Guido Arnold, Gustav Wikström, Henning Redestig, Ian Barton, Ilya
 Shlyakhter, Ingo Lohmar, Ivan Kanis, Ivars Finvers, Jack Erwin,
 Jambunathan, James Harkins, Joe Vornehm Jr., John Hendy, John Wiegley,
 Jonathan Leech-Pepin, Joost Kremers, Jose E. Marchesi, Joseph Thomas,
 Karl Berg, Ken Williams, Konstantin Ziegler, Laurynas Biveinis, Leo
 Alekseyev, Leo and Henning, Loris Bennett, Luis Anaya, Marc-Oliver Ihm,
 Marcel Van der Boom, Martin Beck, Martyn Jago, Mathias Bauer, Matt
 Lundin, Michael Heerdegen, Mike McLean, Mike McLean, Mikhail Titov,
 Mikkel Kristiansen, Moritz Ulrich, Myles English, Nick Dokos, Nicolas
 Goaziou, Noorul Islam K M, Olaf Dietsche, Paul Eggert, Paweł Menich,
 Peter Danenberg, Peter Münster, Petro Rafael, Rasmus Rempling, Richard
 Hansen, Richard Stanton, Robert Lupton the Good, Ryan Kaskel, SW, Samuel
 Wales, Sean O'Halpin, Simon Thum, Stefan Vollmar, Steinar Bang, Steve
 Revilak, Stuart McLean, Sylvain Rousseau, Sébastien Vauban, T.F. Torrey,
 Takaaki Ishikawa, Takafumi Arakaki, Tassilo Horn, Thierry Stoehr, Thomas
 S. Dye, Thomas Wallrafen, Tobias Naehring, Toby Cubitt, Tomas Grigera,
 Torsten Wagner, Uwe Brauer, Vagn Johansen, Viktor Rosenfeld, Vladimir
 Lomov, Waldemar Reusch, Yagnesh Raghava Yakkala, Zachary Jones

 And here are the detailed release notes:


  Release notes of Org 7.9
  


 New committers who signed the FSF copyright assigment
 =

 Welcome and thanks to these new core contributors:

 - Andrew Hyatt
 - Andrzej Lichnerowicz
 - Ethan Ligon
 - Feng Shu
 - George Kettleborough
 - Henning Dietmar Weiss
 - Ilya Shlyakhter
 - Ivan Kanis
 - Konrad Hinsen
 - Madan Ramakrishnan
 - Max Mikhanosha
 - Moritz Ulrich
 - Rick Frankel
 - Toby Cubitt

 Online documentation for hooks, commands and options
 

 You can read the documentation for hooks, commands (i.e. interactive
 functions) and options (i.e. customizable variables) [online].  Clicking on a
 command/option in this ChangeLog will take you to the online documentation
 for that command/option.


 [online]: http://orgmode.org/worg/doc.html

 Overview of the new keybindings
 ===

 │ Keybinding  │ Speedy │ Command │
 ├─┼┼─┤
 │ =C─c C─x C─z=   ││ org─clock─resolve   │
 │ =C─c C─x C─q=   ││ org─clock─cancel│
 │ =C─c C─x C─x=   ││ org─clock─in─last   │
 │ =M─h=   ││ org─mark─element│
 │ =*= ││ org─agenda─bulk─mark─all│
 │ =C─c C─M─l= ││ org─insert─all─links│
 │ =C─c C─x C─M─v= ││ org─redisplay─inline─images │
 │ =C─c C─x E= │ =E=│ org─inc─effort  │
 │ │ =#=│ org─toggle─comment  │
 │ │ =:=│ org─columns │
 │ │ =W=│ Set =APPT_WARNTIME= │

 New build system and new packages
 =

 New build system
 

 Achim implemented a new build system.

 The basic method for installing Org is the same:

 1. Download or clone Org.
 2. run `make install' from the Org 

Re: [O] Strange Problem with org-agenda-redo

2012-08-25 Thread Nick Dokos
Charles Philip Chan cpc...@bell.net wrote:

 My whole org-mode configuration or just the configuration for that
 Agenda view? I have to make it clear that if I take out the 6 day
 agenda block and leave the one day one in that view, things are back
 to normal. For what it is worth, here is the config for that view. I
 will let you look at it before submitting a bug report. Maybe having 2
 Agendas in the same view screw things up.
 

I didn't mean for you to submit a bone-fide bug report but I did mean
the whole configuration: org-submit-bug-report was just a convenient way
to collect all the bits and pieces together. But chances are that what
you sent is enough for people to try to reproduce it. I may get a chance
to try it later on.

Nick



Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Ashfaq
On Sat, Aug 25, 2012 at 7:03 PM, Charles Philip Chan cpc...@bell.netwrote:

 Ashfaq quazi.ash...@gmail.com writes:

  Within the host, I opened an org file with the emacs. Now it can hide
  the stars.  However, interestingly, when I ssh-ed into the host with
  'putty' and opened the same file with emacs, it shows the stars.

 Do they have different colour backgrounds? Hide star is really just a
 hack by setting the stars to the same colour as the background.


They have different background colors. putty has black background. But the
emacs application in Ubuntu has white background. Can it be hacked into
again? :-)


-- 
Sincerely,
Ashfaq


Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Charles Philip Chan
Ashfaq quazi.ash...@gmail.com writes:

 They have different background colors. putty has black background. But
 the emacs application in Ubuntu has white background. Can it be hacked
 into again? :-)

The hidden stars colour is determined by the org-hide face which
defaults to white. The easiest way for you is to start emacs with the
-rv switch when you are using Putty.

Charles

-- 
Never make any mistaeks.
(Anonymous, in a mail discussion about to a kernel bug report.)


pgpIIFNa5UbCn.pgp
Description: PGP signature


Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Achim Gratz
Brian van den Broek writes:
 I've seemingly managed to install org 7.9, but M-x org-version yields
 Org-mode version N/A (N/A @ /home/brian/.emacsd/site-lisp/)

 The details:

You could've saved yourself a lot of writing if you'd just posted what

make config-all

prints out.  But the only way this output from org-verison can be
produced by a compiled version of Org is if you install with make, but
without Git (like you later tell us you've done).  In this case, you
need to tell make the version you're installing since it cannot ask Git
for it:

make ORGVERSION=7.9 GITVERSION=org-7.9-3-ga986d3 install

Rest assured that aside from two missing version strings everything has
worked likee it should as far as I can tell.


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

Wavetables for the Terratec KOMPLEXER:
http://Synth.Stromeko.net/Downloads.html#KomplexerWaves




[O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread Filippo A. Salustri
I have looked but cannot find anything especially enlightening.
I haven't yet installed Xcode on some of my Lion machines, so I haven't got
'make' everywhere.

I've been toying with trying to do the installation on my Mac server, which
has Xcode, then copying the compiled stuff into the identical directory
structure on my non-Xcode machines.  Any thoughts on whether that would
work?

And in any case, if someone could point me at a good page explaining the
Lion/Org installation, I'd greatly appreciate it.
/fas

-- 
\V/_
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salus...@ryerson.ca
http://deseng.ryerson.ca/~fil/


[O] new HTML export prompts for file encoding

2012-08-25 Thread Eric Schulte
Hi,

The new export engine often runs into problems with file encodings where
the old exporter did not.  As an example export the index.org page from
the worg repository (or any page containing utf8 characters) to html
using the old export (which works fine), and then export using the new
exporter by evaluating (org-export-to-file 'e-html /tmp/worg.html).

The new exporter prompts the user for confirmation of the encoding and
then runs into encoding issues.  Is it possible to run the new html
exporter in such a way that no user prompts are raised during export?

Thanks,

-- 
Eric Schulte
http://cs.unm.edu/~eschulte



Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread John Hendy
Can you just compile without make tools? This is what I do on Windows in
combination with git, which is easier to setup than trying to get a
compiler up and running, at least for me :)

http://orgmode.org/worg/org-hacks.html#compiling-org-without-make

Hope that helps!
John
On Aug 25, 2012 12:32 PM, Filippo A. Salustri salus...@ryerson.ca wrote:

 I have looked but cannot find anything especially enlightening.
 I haven't yet installed Xcode on some of my Lion machines, so I haven't
 got 'make' everywhere.

 I've been toying with trying to do the installation on my Mac server,
 which has Xcode, then copying the compiled stuff into the identical
 directory structure on my non-Xcode machines.  Any thoughts on whether that
 would work?

 And in any case, if someone could point me at a good page explaining the
 Lion/Org installation, I'd greatly appreciate it.
 /fas

 --
 \V/_
 Filippo A. Salustri, Ph.D., P.Eng.
 Mechanical and Industrial Engineering
 Ryerson University
 350 Victoria St, Toronto, ON
 M5B 2K3, Canada
 Tel: 416/979-5000 ext 7749
 Fax: 416/979-5265
 Email: salus...@ryerson.ca
 http://deseng.ryerson.ca/~fil/




Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread Filippo A. Salustri
John,
Thanks for your idea.
I am aware of the worg page you linked to.
I forgot to mention one other thing: I use Aquamacs, which has a hard time
with the compiling-without-make stuff.  My bad; sorry.
/fas

On 25 August 2012 14:19, John Hendy jw.he...@gmail.com wrote:

 Can you just compile without make tools? This is what I do on Windows in
 combination with git, which is easier to setup than trying to get a
 compiler up and running, at least for me :)

 http://orgmode.org/worg/org-hacks.html#compiling-org-without-make

 Hope that helps!
 John
 On Aug 25, 2012 12:32 PM, Filippo A. Salustri salus...@ryerson.ca
 wrote:

 I have looked but cannot find anything especially enlightening.
 I haven't yet installed Xcode on some of my Lion machines, so I haven't
 got 'make' everywhere.

 I've been toying with trying to do the installation on my Mac server,
 which has Xcode, then copying the compiled stuff into the identical
 directory structure on my non-Xcode machines.  Any thoughts on whether that
 would work?

 And in any case, if someone could point me at a good page explaining the
 Lion/Org installation, I'd greatly appreciate it.
 /fas

 --
 \V/_
 Filippo A. Salustri, Ph.D., P.Eng.
 Mechanical and Industrial Engineering
 Ryerson University
 350 Victoria St, Toronto, ON
 M5B 2K3, Canada
 Tel: 416/979-5000 ext 7749
 Fax: 416/979-5265
 Email: salus...@ryerson.ca
 http://deseng.ryerson.ca/~fil/




-- 
\V/_
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salus...@ryerson.ca
http://deseng.ryerson.ca/~fil/


Re: [O] Org-mode release 7.9

2012-08-25 Thread Thomas S. Dye
Hi Bastien,

Bastien b...@altern.org writes:

 Hi Thomas,

 t...@tsdye.com (Thomas S. Dye) writes:

 I'm using Org from Elpa (which is neat).  When I updated and refreshed
 Org, I got the following error:

 Loading 
 /Applications/Emacs.app/Contents/Resources/lisp/org/org-w3m.elc...done
 Loading /Applications/Emacs.app/Contents/Resources/lisp/org/org-wl.elc...done
 Loading /Applications/Emacs.app/Contents/Resources/lisp/org/org.elc...done
 Cannot open load file: ob.el

 This seems strange to me because I have Org in
 ~/.emacs.d/elpa/org-20120824, and not /Applications/Emacs.app/...

 It's even weirder, because the org-20120824.tar you downloaded by
 uploading contains Org 7.8.11.

 The Org ELPA packages is first created on http://orgmode.org
 (http://orgmode.org/pkg/daily/) then copied to http://elpa.gnu.org.

 I replaced org-20120824.tar with one containing Org 7.9.

 Perhaps first reupdate and report?

 HTH,

Reporting back.

Restarting Emacs got by the Cannot open load file: ob.el error.  I
haven't been able to reproduce this error when I reload or refresh Org.

Also, I haven't seen any references to
/Applications/Emacs.app/Contents/... since I had the error loading
ob.el.  I read through the FAQ and discovered that one of the
starter-kits (the Worg page just refers to starter-kit, as if it were
a singleton) can lead to a situation where Org packaged with Emacs is
loaded first, leading to a frankenstein Org.  The solution noted
there, to call (package-initialize) early on, appears to have been
adopted in Eric Schulte's starter-kit for Emacs 24, which I use, and
which AFAICT calls this function early in the process.  

Perhaps updating through elpa breaks a load-path link established by the
starter-kit for the old Org installation, due to the name change in the
elpa Org package date stamp?

Later, I removed the Org package and reinstalled it, using the package
manager.  The process worked fine, but I still have Org 7.8.11.  Perhaps
I should wait patiently for 7.9 to propagate to elpa?  Not a problem on
a beautiful beach day :)

All the best,
Tom

-- 
Thomas S. Dye
http://www.tsdye.com



Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Brian van den Broek
On 25 August 2012 13:24, Achim Gratz strom...@nexgo.de wrote:
 Brian van den Broek writes:
 I've seemingly managed to install org 7.9, but M-x org-version yields
 Org-mode version N/A (N/A @ /home/brian/.emacsd/site-lisp/)

 The details:

 You could've saved yourself a lot of writing if you'd just posted what

 make config-all

 prints out.  But the only way this output from org-verison can be
 produced by a compiled version of Org is if you install with make, but
 without Git (like you later tell us you've done).  In this case, you
 need to tell make the version you're installing since it cannot ask Git
 for it:

 make ORGVERSION=7.9 GITVERSION=org-7.9-3-ga986d3 install


Thanks Achim.

That does seem to fix the manifested problem. (make install-info seems
to leave with with the 6.33x docs, but that's a problem for another
day and thread, I expect.)

Sorry for the verbosity. As I expect is clear, I don't have a good
handle on what is going on and opted for risking too much information
to avoid the need to tease more out of me through a few rounds of
responses.

I would suggest that the installation instructions at
http://orgmode.org/manual/Installation.html#Installation be updated,
as there one finds nothing about the need for ORGVERSION and
GITVERTSION arguments to make. (While I know patches are welcome, I am
reluctant to try to patch docs for an issue that I don't understand
well.)

Thanks and best,

Brian vdB



Re: [O] new HTML export prompts for file encoding

2012-08-25 Thread Jambunathan K
Eric Schulte eric.schu...@gmx.com writes:

 Hi,

 The new export engine often runs into problems with file encodings where
 the old exporter did not.  As an example export the index.org page from
 the worg repository (or any page containing utf8 characters) to html
 using the old export (which works fine), and then export using the new
 exporter by evaluating (org-export-to-file 'e-html /tmp/worg.html).

 The new exporter prompts the user for confirmation of the encoding and
 then runs into encoding issues.  Is it possible to run the new html
 exporter in such a way that no user prompts are raised during export?

commit 2cb72af8e8d818d10c744783549a6195c95036f0
Author: Jambunathan K kjambunat...@gmail.com
Date:   Sun Aug 26 00:50:17 2012 +0530

Set `org-e-html-coding-system' to 'utf-8


 Thanks,

-- 



Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread Achim Gratz
Filippo A. Salustri writes:
 I haven't yet installed Xcode on some of my Lion machines, so I haven't
 got 'make' everywhere.

Why do you need Xcode to get make?

 I've been toying with trying to do the installation on my Mac server,
 which has Xcode, then copying the compiled stuff into the identical
 directory structure on my non-Xcode machines.  Any thoughts on whether
 that would work?

Yes that works just fine.


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

SD adaptation for Waldorf rackAttack V1.04R1:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada




Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread John Hendy
On Sat, Aug 25, 2012 at 2:39 PM, Achim Gratz strom...@nexgo.de wrote:
 Filippo A. Salustri writes:
 I haven't yet installed Xcode on some of my Lion machines, so I haven't
 got 'make' everywhere.

 Why do you need Xcode to get make?

Having a Mac myself, I'm assuming the answer is that it's just the
easiest way. Pop in the DVD and install the gcc tools from the extras
folder. Is there a better way?

John


 I've been toying with trying to do the installation on my Mac server,
 which has Xcode, then copying the compiled stuff into the identical
 directory structure on my non-Xcode machines.  Any thoughts on whether
 that would work?

 Yes that works just fine.


 Regards,
 Achim.
 --
 +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

 SD adaptation for Waldorf rackAttack V1.04R1:
 http://Synth.Stromeko.net/Downloads.html#WaldorfSDada





Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Ashfaq
 The hidden stars colour is determined by the org-hide face which
 defaults to white. The easiest way for you is to start emacs with the
 -rv switch when you are using Putty.


Thanks for the info. I have installed emacs-goodies-el, inserted the
following line in .emacs

(require 'color-theme)

Then I selected a color theme which the color of  leading extra stars same
as the background giving an illusion of non-existence.

However, as I wanted to indent too, it added extra stars in the line. To be
precise, each line has now (2 * line_no -1) no. stars. Why is it like this?

-- 
Sincerely,
Ashfaq


Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread Filippo A. Salustri
Yes, John is right. Xcode is one-stop shopping for gcc, fortran (!?!?!),
objective-c, all the command-line tools, etc  so on, without having to use
macports or fink or whatever.  And it's a trivial installation.

(Note to non-Mac users; Lion client version comes with no compilation stuff
cuz... well, it's a client :)

/fas

On 25 August 2012 15:44, John Hendy jw.he...@gmail.com wrote:

 On Sat, Aug 25, 2012 at 2:39 PM, Achim Gratz strom...@nexgo.de wrote:
  Filippo A. Salustri writes:
  I haven't yet installed Xcode on some of my Lion machines, so I haven't
  got 'make' everywhere.
 
  Why do you need Xcode to get make?

 Having a Mac myself, I'm assuming the answer is that it's just the
 easiest way. Pop in the DVD and install the gcc tools from the extras
 folder. Is there a better way?

 John

 
  I've been toying with trying to do the installation on my Mac server,
  which has Xcode, then copying the compiled stuff into the identical
  directory structure on my non-Xcode machines.  Any thoughts on whether
  that would work?
 
  Yes that works just fine.
 
 
  Regards,
  Achim.
  --
  +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+
 
  SD adaptation for Waldorf rackAttack V1.04R1:
  http://Synth.Stromeko.net/Downloads.html#WaldorfSDada
 
 




-- 
\V/_
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salus...@ryerson.ca
http://deseng.ryerson.ca/~fil/


Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread Filippo A. Salustri
Achim,
Thanks for confirming the bit about compiling org here and copying it
elsewhere.  I'll give it a shot.
/fas

On 25 August 2012 15:39, Achim Gratz strom...@nexgo.de wrote:

 Filippo A. Salustri writes:
  I haven't yet installed Xcode on some of my Lion machines, so I haven't
  got 'make' everywhere.

 Why do you need Xcode to get make?

  I've been toying with trying to do the installation on my Mac server,
  which has Xcode, then copying the compiled stuff into the identical
  directory structure on my non-Xcode machines.  Any thoughts on whether
  that would work?

 Yes that works just fine.


 Regards,
 Achim.
 --
 +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

 SD adaptation for Waldorf rackAttack V1.04R1:
 http://Synth.Stromeko.net/Downloads.html#WaldorfSDada





-- 
\V/_
Filippo A. Salustri, Ph.D., P.Eng.
Mechanical and Industrial Engineering
Ryerson University
350 Victoria St, Toronto, ON
M5B 2K3, Canada
Tel: 416/979-5000 ext 7749
Fax: 416/979-5265
Email: salus...@ryerson.ca
http://deseng.ryerson.ca/~fil/


Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Achim Gratz
Brian van den Broek writes:
 On 25 August 2012 13:24, Achim Gratz strom...@nexgo.de wrote:
 That does seem to fix the manifested problem. (make install-info seems
 to leave with with the 6.33x docs, but that's a problem for another
 day and thread, I expect.)

Then the configuration for the info directory is wrong (you install into
a different directory than what Emacs uses to find it).  Check where
Emacs picks up the old documentation and change the configuration so
that the new info file goes where the old was.  If you have multiple
info directories set up, check that your place of installation comes
first.

 Sorry for the verbosity.

No need to be sorry, I didn't mean to say you wrote too much… just that
you could have saved yourself some time that way.

 I would suggest that the installation instructions at
 http://orgmode.org/manual/Installation.html#Installation be updated,
 as there one finds nothing about the need for ORGVERSION and
 GITVERSION arguments to make.

I hadn't really considered installation from tarballs down to that
detail.  I may just add some code to recognize that situation and put
the version information into the tarball itself.


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

SD adaptation for Waldorf rackAttack V1.04R1:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada




Re: [O] advice on compiling org 7.9 for OSX Lion.

2012-08-25 Thread Achim Gratz
John Hendy writes:
 Having a Mac myself, I'm assuming the answer is that it's just the
 easiest way. Pop in the DVD and install the gcc tools from the extras
 folder. Is there a better way?

Dunno.  The first and last thing Apple I've used was a Macintosh Classic
IIRC…


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

Waldorf MIDI Implementation  additional documentation:
http://Synth.Stromeko.net/Downloads.html#WaldorfDocs




Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Bastien
Achim Gratz strom...@nexgo.de writes:

 I would suggest that the installation instructions at
 http://orgmode.org/manual/Installation.html#Installation be updated,
 as there one finds nothing about the need for ORGVERSION and
 GITVERSION arguments to make.

 I hadn't really considered installation from tarballs down to that
 detail.  I may just add some code to recognize that situation and put
 the version information into the tarball itself.

There is something I don't understand here: the version *is* in
org-7.9.tar.gz and org-7.9.zip with lisp/org-version.el.

I assumed that, in the absence of git, `make' would rely on this.

True?

-- 
 Bastien



Re: [O] new HTML export prompts for file encoding

2012-08-25 Thread Bastien
Hi Jambunathan,

Jambunathan K kjambunat...@gmail.com writes:

 commit 2cb72af8e8d818d10c744783549a6195c95036f0
 Author: Jambunathan K kjambunat...@gmail.com
 Date:   Sun Aug 26 00:50:17 2012 +0530

 Set `org-e-html-coding-system' to 'utf-8

Thanks for the quick fix.

Please commit bug fixes to maint and merge to master, as we will 
release the next bugfix release 7.9.1 from maint.

Thanks,

-- 
 Bastien



Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Brian van den Broek
On 25 August 2012 16:12, Bastien b...@altern.org wrote:
 Achim Gratz strom...@nexgo.de writes:

 I would suggest that the installation instructions at
 http://orgmode.org/manual/Installation.html#Installation be updated,
 as there one finds nothing about the need for ORGVERSION and
 GITVERSION arguments to make.

 I hadn't really considered installation from tarballs down to that
 detail.  I may just add some code to recognize that situation and put
 the version information into the tarball itself.

 There is something I don't understand here: the version *is* in
 org-7.9.tar.gz and org-7.9.zip with lisp/org-version.el.

 I assumed that, in the absence of git, `make' would rely on this.

 True?

 --
  Bastien


Hi Bastien,

I don't warrant that all else is in order on my system, but for me, it did not.

Best,

Brian



Re: [O] [Contest] Redesign orgmode.org by the end of august

2012-08-25 Thread Bastien
Bastien b...@gnu.org writes:

 Yes, we can improve the website.

 - Participants will send their demo by August, 25th, midnight.

I received approximately ~0 redesign proposal(s).

I also feel like the website needs to be revamped,
but I don't have that much time for this right now.

-- 
 Bastien



Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Achim Gratz
Bastien writes:
 There is something I don't understand here: the version *is* in
 org-7.9.tar.gz and org-7.9.zip with lisp/org-version.el.

Yes, that is for when you would want to run uncompiled from the unpacked
tarball.

 I assumed that, in the absence of git, `make' would rely on this.

No.  Make always re-makes these targets and in the absence of getting a
version from git or from configuration it falls back to N/A.  I'll add
a file to the tarball that just defines these two variables and include
that when absolutely no version is defined.  If these variables are
still undefined I continue to fall back to N/A.  The version from a
tarball can't change, so it's OK to fix it like that I think.


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

Factory and User Sound Singles for Waldorf Q+, Q and microQ:
http://Synth.Stromeko.net/Downloads.html#WaldorfSounds




Re: [O] difficulty installing 7.9 with the new build system: org-version not informative

2012-08-25 Thread Bastien
Achim Gratz strom...@nexgo.de writes:

 Bastien writes:
 There is something I don't understand here: the version *is* in
 org-7.9.tar.gz and org-7.9.zip with lisp/org-version.el.

 Yes, that is for when you would want to run uncompiled from the unpacked
 tarball.

Okay.

 I'll add
 a file to the tarball that just defines these two variables and include
 that when absolutely no version is defined.  

Can't we just have this in default.mk?  Do we need yet another file?

 If these variables are
 still undefined I continue to fall back to N/A.  The version from a
 tarball can't change, so it's OK to fix it like that I think.

Okay.  Thanks,

-- 
 Bastien



Re: [O] new HTML export prompts for file encoding

2012-08-25 Thread Jambunathan K
Bastien b...@altern.org writes:

 Hi Jambunathan,

 Jambunathan K kjambunat...@gmail.com writes:

 commit 2cb72af8e8d818d10c744783549a6195c95036f0
 Author: Jambunathan K kjambunat...@gmail.com
 Date:   Sun Aug 26 00:50:17 2012 +0530

 Set `org-e-html-coding-system' to 'utf-8

 Thanks for the quick fix.

 Please commit bug fixes to maint and merge to master, as we will 
 release the next bugfix release 7.9.1 from maint.

I have pushed one last change to org-e-odt.el. (I would have liked to
polish it a bit)

What you see is what you get - org-e-html.el and org-e-odt.el. 

I leave maintainers to do their better judgement.

Good bye folks.  

This is the last mail or commit you will see from me.

 Thanks,

-- 



Re: [O] new HTML export prompts for file encoding

2012-08-25 Thread Bastien
Hi Jambunathan,

Jambunathan K kjambunat...@gmail.com writes:

 I have pushed one last change to org-e-odt.el. (I would have liked to
 polish it a bit)

 What you see is what you get - org-e-html.el and org-e-odt.el. 

 I leave maintainers to do their better judgement.

Those changes are significant enough to belong to master IMO.

 This is the last mail or commit you will see from me.

May I ask why?  Unless someone explicitely says he wants to take
ownership on org-e-html.el and org-e-odt.el, those files are yours.

In any case, thanks for your great contributions so far.

I hope this is just a temporary break due to some other project 
you have.

Best,

-- 
 Bastien



Re: [O] [Contest] Redesign orgmode.org by the end of august

2012-08-25 Thread Nick Dokos
Bastien b...@altern.org wrote:

 Bastien b...@gnu.org writes:
 
  Yes, we can improve the website.
 
  - Participants will send their demo by August, 25th, midnight.
 
 I received approximately ~0 redesign proposal(s).
 
 I also feel like the website needs to be revamped,
 but I don't have that much time for this right now.
 

IIRC, Jambunathan posted some concrete suggestions for improvements in
this thread. When you (or somebody) get some time to redesign, those
suggestions can be revisited.

Nick



[O] [BABEL] [PATCH] Make it possible to use buffer local noweb start/end patterns

2012-08-25 Thread Sean O'Halpin
* lisp/ob.el (org-babel-expand-noweb-references): Capture current
noweb start and end patterns then use to set buffer locals in
(with-temp-buffer) form.

This solves the problem that using different patterns for
org-babel-noweb-wrap-start and org-babel-noweb-wrap-end could be done
only globally.

TINYCHANGE
---
 lisp/ob.el |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/lisp/ob.el b/lisp/ob.el
index 7518293..f9e9ae1 100644
--- a/lisp/ob.el
+++ b/lisp/ob.el
@@ -2270,6 +2270,8 @@ block but are passed literally to the \example-block\.
  (info (or info (org-babel-get-src-block-info)))
  (lang (nth 0 info))
  (body (nth 1 info))
+(ob-nww-start org-babel-noweb-wrap-start)
+(ob-nww-end org-babel-noweb-wrap-end)
 (comment (string= noweb (cdr (assoc :comments (nth 2 info)
 (rx-prefix (concat \\( org-babel-src-name-regexp \\|
:noweb-ref[ \t]+ \\)))
@@ -2282,6 +2284,8 @@ block but are passed literally to the \example-block\.
 (org-babel-trim (buffer-string)
 index source-name evaluate prefix blocks-in-buffer)
 (with-temp-buffer
+  (org-set-local 'org-babel-noweb-wrap-start ob-nww-start)
+  (org-set-local 'org-babel-noweb-wrap-end ob-nww-end)
   (insert body) (goto-char (point-min))
   (setq index (point))
   (while (and (re-search-forward (org-babel-noweb-wrap) nil t))
-- 
1.7.0.4



Re: [O] [BABEL] [PATCH] Make it possible to use buffer local noweb start/end patterns

2012-08-25 Thread Eric Schulte
Are you familiar with file local variables?

See (info (emacs)Specifying File Variables)

Sean O'Halpin sean.ohal...@gmail.com writes:

 * lisp/ob.el (org-babel-expand-noweb-references): Capture current
 noweb start and end patterns then use to set buffer locals in
 (with-temp-buffer) form.

 This solves the problem that using different patterns for
 org-babel-noweb-wrap-start and org-babel-noweb-wrap-end could be done
 only globally.

 TINYCHANGE
 ---
  lisp/ob.el |4 
  1 files changed, 4 insertions(+), 0 deletions(-)

 diff --git a/lisp/ob.el b/lisp/ob.el
 index 7518293..f9e9ae1 100644
 --- a/lisp/ob.el
 +++ b/lisp/ob.el
 @@ -2270,6 +2270,8 @@ block but are passed literally to the 
 \example-block\.
   (info (or info (org-babel-get-src-block-info)))
   (lang (nth 0 info))
   (body (nth 1 info))
 +  (ob-nww-start org-babel-noweb-wrap-start)
 +  (ob-nww-end org-babel-noweb-wrap-end)
(comment (string= noweb (cdr (assoc :comments (nth 2 info)
(rx-prefix (concat \\( org-babel-src-name-regexp \\|
   :noweb-ref[ \t]+ \\)))
 @@ -2282,6 +2284,8 @@ block but are passed literally to the 
 \example-block\.
(org-babel-trim (buffer-string)
index source-name evaluate prefix blocks-in-buffer)
  (with-temp-buffer
 +  (org-set-local 'org-babel-noweb-wrap-start ob-nww-start)
 +  (org-set-local 'org-babel-noweb-wrap-end ob-nww-end)
(insert body) (goto-char (point-min))
(setq index (point))
(while (and (re-search-forward (org-babel-noweb-wrap) nil t))

-- 
Eric Schulte
http://cs.unm.edu/~eschulte



Re: [O] [BABEL] [PATCH] Make it possible to use buffer local noweb start/end patterns

2012-08-25 Thread Sean O'Halpin
On Sat, Aug 25, 2012 at 11:50 PM, Eric Schulte eric.schu...@gmx.com wrote:
 Are you familiar with file local variables?

 See (info (emacs)Specifying File Variables)


Yes. That's what I'm trying to enable. Without the patch, it seems that
the =with-temp-buffer= used in =org-babel-expand-noweb-references=
overrides any file local variables. In other words, setting
=org-babel-noweb-wrap-start= and =org-babel-noweb-wrap-end= using
file local variables doesn't work for me without this patch. Am I
missing something?

Regards,
Sean



Re: [O] [GSoC] Org Merge Driver Update

2012-08-25 Thread Simon Thum

Hi Andrew,

I finally got to code a bit and tried clang on the merge driver. BTW you 
should probably mention prerequisites like gcc 4.7.


clang suggests your syntax is C11/requires a c++-style ODR. Also there 
is one error and numerous warnings you might want to fix.


HTH,

Simon

clang -DHAVE_CONFIG_H -I. -I..-O0 -I../gnulib/lib -g -O2 -MT oo 
`test -f 'org_heading.c' || echo './'`org_heading.c

In file included from org_heading.c:34:
In file included from ./doc_elt.h:28:
In file included from ./doc_elt_ops.h:29:
./doc_ref.h:54:3: warning: redefinition of typedef 'doc_ref' is a
} doc_ref;
  ^
./doc_ref.h:31:24: note: previous definition is here 


typedef struct doc_ref doc_ref;
   ^
./doc_ref.h:203:37: warning: format specifies type 'int' but the 
argument has type 'doc_elt *' (aka 'st

  printf (checking parent par=%d, ref=%d\n,
   ~^
./doc_ref.h:203:45: warning: format specifies type 'int' but the 
argument has type 'doc_elt *' (aka 'st

  printf (checking parent par=%d, ref=%d\n,
   ~^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:28:
./doc_elt_ops.h:32:24: warning: redefinition of typedef 'doc_elt' is a 
C11 feature [-Wtypedef-redefinit

typedef struct doc_elt doc_elt;
   ^
./doc_ref.h:29:24: note: previous definition is here 


typedef struct doc_elt doc_elt;
   ^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:28:
./doc_elt_ops.h:34:27: warning: redefinition of typedef 'print_ctxt' is 
a C11 feature [-Wtypedef-redefinitio

typedef struct print_ctxt print_ctxt;
  ^
./print_ctxt.h:69:3: note: previous definition is here 


} print_ctxt;
  ^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:28:
./doc_elt_ops.h:38:27: warning: redefinition of typedef 'merge_ctxt' is 
a C11 feature [-Wtypedef-redefinitio

typedef struct merge_ctxt merge_ctxt;
  ^
./doc_ref.h:30:27: note: previous definition is here 


typedef struct merge_ctxt merge_ctxt;
  ^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:28:
./doc_elt_ops.h:40:24: warning: redefinition of typedef 'doc_ref' is a 
C11 feature [-Wtypedef-redefinit

typedef struct doc_ref doc_ref;
   ^
./doc_ref.h:54:3: note: previous definition is here 


} doc_ref;
  ^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:31:
./merge_ctxt.h:35:31: warning: redefinition of typedef 'gl_list_t' is a 
C11 feature [-Wtypedef-redefinition]

typedef struct gl_list_impl * gl_list_t;
  ^
../gnulib/lib/gl_list.h:111:31: note: previous definition is here 


typedef struct gl_list_impl * gl_list_t;
  ^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:31:
./merge_ctxt.h:45:3: warning: redefinition of typedef 'merge_ctxt' is a 
C11 feature [-Wtypedef-redefinition]

} merge_ctxt;
  ^
./doc_elt_ops.h:38:27: note: previous definition is here 


typedef struct merge_ctxt merge_ctxt;
  ^
In file included from org_heading.c:34: 


In file included from ./doc_elt.h:33:
./parse_ctxt.h:30:31: warning: redefinition of typedef 'gl_list_t' is a 
C11 feature [-Wtypedef-redefinition]

typedef struct gl_list_impl * gl_list_t;
  ^
./merge_ctxt.h:35:31: note: previous definition is here 


typedef struct gl_list_impl * gl_list_t;
  ^
In file included from org_heading.c:34: 

./doc_elt.h:36:24: warning: redefinition of typedef 'smerger' is a C11 
feature [-Wtypedef-redefinition]

typedef struct smerger smerger;
   ^
./merge_ctxt.h:38:24: note: previous definition is here 


typedef struct smerger smerger;
   ^
In file included from org_heading.c:34: 


./doc_elt.h:51:3: warning: redefinition of typedef 'doc_elt' is a
} doc_elt;
  ^
./doc_elt_ops.h:32:24: note: previous definition is here 


typedef struct doc_elt doc_elt;
   ^
In file included from org_heading.c:34: 


./doc_elt.h:57:3: warning: redefinition of typedef 'doc_key' is a
} doc_key;
  ^
./doc_elt_ops.h:36:24: note: previous definition is here 


typedef struct doc_key doc_key;
   ^
In file included from org_heading.c:34: 


./doc_elt.h:153:1: warning: control reaches end of non-void functi
}
^
In file included from org_heading.c:36: 

./doc_elt_util.h:85:3: warning: redefinition of typedef 'substr' is a 
C11 feature [-Wtypedef-redefinitio

} substr;
  ^
./doc_elt_util.h:72:23: note: previous definition is here 


typedef struct substr substr;
  ^
./doc_elt_util.h:109:37: warning: format specifies type 'int' but the 
argument has type 'size_t' (aka 'unsigned

  debug_msg (DOC_ELT, 5, a.length=%d b.length=%d  

Re: [O] I can't make work 'startup hidestars'

2012-08-25 Thread Charles Philip Chan
Ashfaq quazi.ash...@gmail.com writes:

 However, as I wanted to indent too, it added extra stars in the
 line. To be precise, each line has now (2 * line_no -1) no. stars. Why
 is it like this?

I have no idea. I haven't ran Emacs in a console, let along through ssh,
in a couple of years. These days I connect to my machine with vnc
through an ssh tunnel. Maybe someone with more experience with emacs in
a console can help you. Alternatively, you might just want to bite the
bullet and use vnc.

Charles

-- 
The move was on to 'Free the Lizard'

  -- Jim Hamerly and Tom Paquin (Open Sources, 1999 O'Reilly and Associates)


pgpk8DIDqdCQf.pgp
Description: PGP signature


Re: [O] Org-mode release 7.9

2012-08-25 Thread James Harkins
I'm delighted to hear of the new release, and will upgrade today via git.

However... might I suggest that those who are commenting on the release,
please refrain from quoting the entire changelog? It's rather unpleasant
for digest readers.

It's one of the reasons why computers have Delete keys :-D

Sorry to be a stickler, but in the first digest announcing the release, I
had to page through the whole changelog 3 or 4 times because the first
several people to reply did not trim the quotes. And there's another today.

Thanks.
hjh