Re: [O] new exporter

2012-07-16 Thread Nicolas Goaziou
Hello,

Achim Gratz strom...@nexgo.de writes:

 Nicolas Goaziou writes:

 Unfortunately, there's now an

   (invalid function org-export-with-current-buffer-copy)

 error when using make test

 Not for me...  how do you have the build and the test configured?

I hard-link org-element.el and org-export.el in lisp/ and I use the
following local change to default.mk (I know I should be modifying
local.mk instead, but this was easier to do).

Regards,

-- 
Nicolas Goaziou
From bfaf80e49c033f75b326063cf755fe5bb14f010c Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou n.goaz...@gmail.com
Date: Mon, 16 Jul 2012 10:43:43 +0200
Subject: [PATCH] default.mk: Also test org-export

---
 default.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/default.mk b/default.mk
index c037919..f398f6b 100644
--- a/default.mk
+++ b/default.mk
@@ -54,8 +54,9 @@ BTEST	= $(BATCH) \
 	  $(BTEST_POST) \
 	  -l org-install.el \
 	  -l testing/org-test.el \
-	  $(foreach ob-lang,$(BTEST_OB_LANGUAGES),$(req-ob-lang)) \
 	  $(foreach req,$(BTEST_EXTRA),$(req-extra)) \
+  --eval '(require '''org-export)' \
+  -l testing/lisp/test-org-export.el \
 	  --eval '(setq org-confirm-babel-evaluate nil)' \
 	  -f org-test-run-batch-tests
 
-- 
1.7.11.2



Re: [O] Year or Month Agenda view without empty days

2012-07-16 Thread François Allisson
Le dimanche 15 jui 2012 à 12:38:03 (-0400), James Harkins a écrit :
 If I set up a custom agenda command for 30 days, I get stuff like this:
 
 Month-agenda (W28-W33):
 Sunday 15 July 2012
 Monday 16 July 2012 W29
 Tuesday17 July 2012
 Wednesday  18 July 2012
 Thursday   19 July 2012
   agenda_main:12:00.. Scheduled:  Sushi then Blueberry fest   
 :Trip2012::
 
 The problem is, in MobileOrg, I see a list of days first, no indication which 
 days have anything in them.
 
 So I would like to have this agenda view include only days with items in them:
 
 Month-agenda (W28-W33):
 Thursday   19 July 2012
   agenda_main:12:00.. Scheduled:  Sushi then Blueberry fest   
 :Trip2012::
 
 *Maybe* include Monday 16 July 2012 W29 for the week number.
 
 Then in M-org, I would know if I expand a day, that there's something inside.
 
 Possible? The customize interface reveals no settings that would seem to 
 apply.

Hi James,

The variable org-agenda-show-all-dates is done for you (default value
t). Change its value for nil to show only the days with something
inside. Either in your custom agenda view, or globally in the
customize interface (Org Agenda - Org Agenda Daily/Weekly - Org
Agenda Show All Dates). (See also the new useful doc page on Worg:
http://orgmode.org/worg/doc.html#org-agenda-show-all-dates)

However, this does not answer the other part of your question, i.e.
include the Mondays for Week Numbers...

HTH,

François


 
 hjh
 
 
 --
 James Harkins /// dewdrop world
 jamshar...@dewdrop-world.net
 http://www.dewdrop-world.net
 
 Come said the Muse,
 Sing me a song no poet has yet chanted,
 Sing me the universal.  -- Whitman
 
 blog: http://www.dewdrop-world.net/words
 audio clips: http://www.dewdrop-world.net/audio
 more audio: http://soundcloud.com/dewdrop_world/tracks
 



[O] implement appt warntime

2012-07-16 Thread Ivan Kanis
Hi Bastien,

I had a look at org-notify.el. It's over engineered for my need. If you
recall I submitted a patch that added warntime on the header. It's not
pretty but it works for me.

I could use properties instead. For example:

** an appointment with a reminder 5 minutes before 10:00
   SCHEDULED: 2012-07-16 Mon 10:00
  :PROPERTIES:
  :WARNTIME: 5
  :END:

Would you integrate such a functionality? I might code it if I find the
time.

Take care,
-- 
Ivan Kanis
http://ivan.kanis.fr

A great teacher is one who realizes that he himself is also a student
and whose goal is not dictate the answers, but to stimulate his
students creativity enough so that they go out and find the answers
themselves.
-- Herbie Hancock



[O] DevonThink links in org mode?

2012-07-16 Thread Alan Schmitt
Hello,

I discovered that message: links work great in org-mode (it opens the message 
in Mail.app). However, if I click on a link from DevonThink (which looks like 
this: x-devonthink-item://700A651C-E395-462C-873A-13FC92035FBD), I get a dialog 
which says no match, create this as a new heading?.

Is there a way to tell org-mode to pass the resolution of this link to the 
system? (For instance, if I do a open 
x-devonthink-item://700A651C-E395-462C-873A-13FC92035FBD in a terminal window, 
things work as expected.)

Thanks a lot,

Alan


Re: [O] DevonThink links in org mode?

2012-07-16 Thread Bastien
Hi Alan,

Alan Schmitt alan.schm...@polytechnique.org writes:

 Is there a way to tell org-mode to pass the resolution of this link to the
 system? (For instance, if I do a open
 x-devonthink-item://700A651C-E395-462C-873A-13FC92035FBD in a terminal
 window, things work as expected.)

You want to check the A.3 Adding hyperlink types section of 
the manual:

  http://orgmode.org/manual/Adding-hyperlink-types.html

HTH,

-- 
 Bastien



Re: [O] DevonThink links in org mode?

2012-07-16 Thread Alan Schmitt
On 16 juil. 2012, at 14:26, Bastien wrote:

 Hi Alan,
 
 Alan Schmitt alan.schm...@polytechnique.org writes:
 
 Is there a way to tell org-mode to pass the resolution of this link to the
 system? (For instance, if I do a open
 x-devonthink-item://700A651C-E395-462C-873A-13FC92035FBD in a terminal
 window, things work as expected.)
 
 You want to check the A.3 Adding hyperlink types section of 
 the manual:
 
  http://orgmode.org/manual/Adding-hyperlink-types.html

Thanks a lot, that was most helpful. Here is what I ended up with, if it may 
help other people:

(org-add-link-type x-devonthink-item 'org-devonthink-open)

(defun org-devonthink-open (link)
Open the devonthink link.
(start-process (concat open  link) nil open
 
(concat x-devonthink-item: link)))

Alan


Re: [O] Don't show future TODO items in the agenda

2012-07-16 Thread Christopher J. White

Hi Mark and Bastien,

I have also been interested in this sort of functionality.  This message 
made me dig a little and I think it's covered by the following:


  (setq org-agenda-todo-ignore-scheduled 'future)

Basically, a global TODO list, but don't tell me about stuff that isn't 
due yet.


...cj


On 7/12/12 3:43 AM, Bastien wrote:

mrigetitd...@safe-mail.net writes:

 I have a bunch of TODO items, each with a timestamp, which I would 
like to
 not being displayed in the agenda if the day of their 
timestamp/schedule is

 in the future.

Can you share an example of .org file along with the custom agenda
command (or the default agenda view) you are using?







[O] Bug: new latex exporter, 'Stack overflow in equal' with identical headings

2012-07-16 Thread Myles English
To reproduce:

1.   copy the ECM below to a buffer
2.   execute the lisp block
3.   M-x org-export-dispatch RET l

I would expect the orgmode doc to be exported to a latex buffer.  What
results is an error and the message cdr: Stack overflow in equal bug

My setup: started with 'emacs -Q' and with a recent git checkout at
~/.emacs.d/plugins/org-mode:
 commit 9028c4655f2d7f925de1e3ad6471900c78a8c000
 Date:   Tue Jul 10 15:30:51 2012 +0200

The error is caused by having two headings the same, although at
different levels, and both containing a backslash.

== begin org file ==
#+TITLE: Stack overflow in equal ECM
#+OPTIONS: ^:{}

#+begin_src elisp
(add-to-list 'load-path
 ~/.emacs.d/plugins/org-mode/lisp)
(require 'org-install)
(add-to-list 'load-path
 ~/.emacs.d/plugins/org-mode/contrib/lisp)
(require 'org-export)
(require 'org-e-latex)
#+end_src

#+RESULTS:
: org-e-latex

* Heading One

** \cite{fernandez}

A.

* \cite{fernandez}
B.

== end org file ==

Emacs  : GNU Emacs 24.1.50.2 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.10)
 of 2012-06-22 on bill
Package: Org-mode version 7.8.11 (release_7.8.11.139.g9028)

current state:
==
(setq
 org-export-preprocess-before-selecting-backend-code-hook
'(org-beamer-select-beamer-code)
 org-tab-first-hook '(org-hide-block-toggle-maybe
org-src-native-tab-command-maybe org-babel-hide-result-toggle-maybe)
 org-speed-command-hook '(org-speed-command-default-hook
org-babel-speed-command-hook)
 org-occur-hook '(org-first-headline-recenter)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-export-preprocess-before-normalizing-links-hook
'(org-remove-file-link-modifiers)
 org-confirm-shell-link-function 'yes-or-no-p
 org-export-latex-final-hook '(org-beamer-amend-header
org-beamer-fix-toc org-beamer-auto-fragile-frames
   org-beamer-place-default-actions-for-lists)
 org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars)



[O] Emacs starter kit

2012-07-16 Thread Vikas Rawal
There are multiple versions of Emacs Starter Kit. The two main
versions that I currently see are one maintained by Eric Schulte
(http://eschulte.me/emacs24-starter-kit/) and the other maintained by
Phil Hagelberg (https://github.com/technomancy/emacs-starter-kit/). 

The important difference between the two is that Eric Schulte's
version is a collection of org-mode files from where the .el files are
generated. The startup options are maintained as org documents.
Package.el, and ELPA, are a part of the starter kit in this case. The
starter kit installs the packages.

In Hagelberg's version, this is inverted. Starter kit is installed by
the package manager that is now a part of Emacs (version 24). The
package manager directly installs a bunch of .el files and there are
no org files to see.

Which is the recommended way to go? What is the experience of people
on this list?

(This mail perhaps belongs to the emacs mailing list, but since at
least one of these versions is based on using org-mode to manage
emacs, people on this mailing list will perhaps have some interest in
the issue.).

Vikas



Re: [O] Discovering Babel and R combination!

2012-07-16 Thread François Pinard
t...@tsdye.com (Thomas S. Dye) writes:

 Aloha François,

Hi, Thomas!

 Have you discovered :colnames and :rownames?  These two header arguments
 might do what you want.

Yes indeed, they do!  Easier and less cumbersome this way!  Thanks a lot
for the hint.

Have a nice day!

François



Re: [O] Bug: new latex exporter, 'Stack overflow in equal' with identical headings

2012-07-16 Thread Nicolas Goaziou
Hello,

Myles English mylesengl...@gmail.com writes:

 To reproduce:

 1.   copy the ECM below to a buffer
 2.   execute the lisp block
 3.   M-x org-export-dispatch RET l

I cannot reproduce it but I have pushed a change that may be related to
your problem (elements cannot be compared with `equal').

Could you pull latest version and try again?

Thank you.


Regards,

-- 
Nicolas Goaziou



Re: [O] DevonThink links in org mode?

2012-07-16 Thread Bastien
Alan Schmitt alan.schm...@polytechnique.org writes:

 Thanks a lot, that was most helpful. Here is what I ended up with, if
 it may help other people:

Thanks!  

I added it to Worg:

http://orgmode.org/worg/org-hacks.html#sec-3-15

Best,

-- 
 Bastien



[O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya
Hi:

I wanted to let you know that the development for the org-export
exporter to groff is in feature freeze. Everything that I thought up
that was useful has been coded. There might be other useful things to
do, but right now... my brain is mush.  

Efforts will be spent on clean-up, stability and documentation. 

Recent items added have been :
  * Fixed issue with planner output. 
  * Added optios for hyphenation and right justification control. 
  * Bug fixes

Regards

-- 
Luis R. Anaya
papo anaya aroba hot mail punto com
Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Bastien
Hi Luis,

Luis Anaya papoan...@hotmail.com writes:

 I wanted to let you know that the development for the org-export
 exporter to groff is in feature freeze. Everything that I thought up
 that was useful has been coded. There might be other useful things to
 do, but right now... my brain is mush.  

Wow, it's *great*.  Congrats for implementing this!

The examples PDF you gave looks nice.

 Efforts will be spent on clean-up, stability and documentation. 

 Recent items added have been :
   * Fixed issue with planner output. 
   * Added optios for hyphenation and right justification control. 
   * Bug fixes

Thanks again for this.  I tested org-e-groff.el and first loaded your
version of org-export.el and org-element.el but maybe I should not have
loaded first, as I get this error:

  if: Cannot read file /tmp/reshilite11886tjl

I have full read/write over /tmp/.

Do you have this too?

If you need to backport some changes from your org-export/element I 
let you discuss this with Nicolas, of course.

Also, from the preambule of your files, I assume you already signed 
the FSF copyright papers.  Did you?  If not, are you willing to sign 
them?  It does not prevent us for including org-e-groff.el into
contrib/lisp/ but this will be mandatory if you want this feature 
to be in core Org.

Thanks!

-- 
 Bastien



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Nicolas Goaziou
Hello,

Bastien b...@gnu.org writes:

 If you need to backport some changes from your org-export/element I 
 let you discuss this with Nicolas, of course.

AFAICT, these are just older versions of org-export.el and
org-element.el. There are no new features added.

 Also, from the preambule of your files, I assume you already signed 
 the FSF copyright papers.  Did you?  If not, are you willing to sign 
 them?  It does not prevent us for including org-e-groff.el into
 contrib/lisp/ but this will be mandatory if you want this feature 
 to be in core Org.

I think we can add the file to the contrib/lisp/ directory, if only to
ease migration to latest org-element.el and org-export.el.

It will also permit, if Luis Anaya agrees of course, to echo trivial
changes from org-export/org-element in that file.


Regards,

-- 
Nicolas Goaziou



Re: [O] org-html: subtree specific footnote references

2012-07-16 Thread Suhail Shergill
Jambunathan K kjambunat...@gmail.com writes:

 Suhail Shergill suhailsherg...@gmail.com writes:

 i'm talking about a scenario where for one reason or another you may
 not want to do that, but may instead only want to export the most
 recent subtree which has been added (since the last time it was
 exported).

 You are trying to merge two /instances of export command/ and not two
 /instances of subtrees/.  It only so happens that, in your specific
 case, you are selecting different subtrees for different export
 instances.

yes

 What is the value of `org-footnote-section' in your case?

the string Footnotes

 Wrt footnotes, what you see in the Org file is not what the exporter
 sees.  Footnote definitions get collected in to the buffer at a suitable
 point as part of pre-processing (see `org-footnote-normalize').  Also
 footnote definitions can be placed by hand at arbitrary points through
 out your Org file.

hmm right.

 I have a feeling that patch requires more additions. 

you're probably right.

 Furthermore, you also need to submit a patch to org-e-html.el which will
 replace org-html.el in the future.
 I will let the owners of org-html.el to take over from here.

*if* this patch makes sense, i'm willing to submit a patch for
org-e-html.el. does anyone have any views? does this patch 'make sense', and is
this the right place for it?

-- 
Suhail



[O] FW: Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya

I should've done a wide reply to the list. 

  Wow, it's *great*. Congrats for implementing this!
 

 
  Efforts will be spent on clean-up, stability and documentation.
 
  Recent items added have been :
  * Fixed issue with planner output.
  * Added optios for hyphenation and right justification control.
  * Bug fixes
 
  Thanks again for this. I tested org-e-groff.el and first loaded your
  version of org-export.el and org-element.el but maybe I should not have
  loaded first, as I get this error:

 That's because you do not have source-highlight installed. It goes back
 to documentation :( , but I should turn its use off by default in the
 delivered source.

 Just assign to nil the org-e-groff-source-highlight variable and try
 again. It should default to courier.


  Also, from the preambule of your files, I assume you already signed
  the FSF copyright papers. Did you? If not, are you willing to sign
  them? It does not prevent us for including org-e-groff.el into
  contrib/lisp/ but this will be mandatory if you want this feature
  to be in core Org.

 I have no problem signing those papers. I want this code to be under the same
 licensing terms to avoid any licensing discrepancies between
 components.


 Luis

 --
 Luis R. Anaya
 papo anaya aroba hot mail punto com
 Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo
  


Re: [O] new exporter

2012-07-16 Thread Achim Gratz
Nicolas Goaziou writes:
 I hard-link org-element.el and org-export.el in lisp/ and I use the

Ditto, to be exact:

rm -f lisp/org-{export,element,e-*}.{el,elc}
ln contrib/lisp/org-{export,element,e-*}.el lisp/

 following local change to default.mk (I know I should be modifying
 local.mk instead, but this was easier to do).

Actually, it wasn't.  These two lines would be the only additions you
need AFAICS and you could even make them on the command line:

--8---cut here---start-8---
BTEST_EXTRA = org-export
BTEST_OB_LANGUAGES =
--8---cut here---end---8---

I still don't get that error and all tests are pass, with Emacs24 from
Bzr.  I do get an error from Emacs 23.3 (Lisp nesting exceeds
`max-lisp-eval-depth'), but that can be circumvented by increasing the
limit via

BTEST_PRE=--eval '(setq max-lisp-eval-depth 18000)'

I then get two fails with really lengthy backtraces of what look to be
nested macro expansions

2 unexpected results:
   FAILED  test-org-element/parent-property
   FAILED  test-org-element/set-element


...but still not the error you've been reporting.  What's your version
of Emacs and how is it configured?


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] DevonThink links in org mode?

2012-07-16 Thread John Wiegley
 Alan Schmitt alan.schm...@polytechnique.org writes:

 Thanks a lot, that was most helpful. Here is what I ended up with, if it may
 help other people:

 (org-add-link-type x-devonthink-item 'org-devonthink-open)

 (defun org-devonthink-open (link)
   Open the devonthink link.
   (start-process (concat open  link) nil open

 (concat x-devonthink-item: link)))

I created org-devonthink.el a long time ago:

https://github.com/jwiegley/dot-emacs/blob/master/lisp/org-devonthink.el

John



Re: [O] local.mk vs. default.mk (was: new exporter)

2012-07-16 Thread Achim Gratz
Nicolas Goaziou writes:
 I hard-link org-element.el and org-export.el in lisp/ and I use the
 following local change to default.mk (I know I should be modifying
 local.mk instead, but this was easier to do).

Since this has come up before: _please_ do not change anything in
default.mk, especially if you have push access to org-mode.git — it
would not be fun if your changes to default.mk somehow made it into the
public repo.  Whenever you need to change something in default.mk, copy
it into local.mk (and everything that later uses it) and change it
there.  Thank you.


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

Factory and User Sound Singles for Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#WaldorfSounds




Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya
Nicolas Goaziou n.goaz...@gmail.com writes:

 let you discuss this with Nicolas, of course.


 AFAICT, these are just older versions of org-export.el and
 org-element.el. There are no new features added.

Most likely that we missed commits between the latest one and the one
I pulled from git.  Do not update org-export.el with the one I used, 
use the one in git. if there are any groff related code, that's the only thing
that should be updated.  When I went back, I could not see any. I would
not go too crazy on that. What I could do is to pull a latest checkout
from git and run the code from an updated code base. 

 I think we can add the file to the contrib/lisp/ directory, if only to
 ease migration to latest org-element.el and org-export.el.

 It will also permit, if Luis Anaya agrees of course, to echo trivial
 changes from org-export/org-element in that file.

The only change I can see is the one to add the ATTR_GROFF string to get the
:attr_groff key in info.  I have no issues propagating changes, at  the
end, you're the boss :). What needs to be done, let's do it. I'm ok with
it. 

Luis

-- 
Luis R. Anaya
papo anaya aroba hot mail punto com
Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo



Re: [O] Emacs starter kit

2012-07-16 Thread Eric Schulte
Vikas Rawal vikasli...@agrarianresearch.org writes:

 There are multiple versions of Emacs Starter Kit. The two main
 versions that I currently see are one maintained by Eric Schulte
 (http://eschulte.me/emacs24-starter-kit/) and the other maintained by
 Phil Hagelberg (https://github.com/technomancy/emacs-starter-kit/). 

 The important difference between the two is that Eric Schulte's
 version is a collection of org-mode files from where the .el files are
 generated. The startup options are maintained as org documents.
 Package.el, and ELPA, are a part of the starter kit in this case. The
 starter kit installs the packages.

 In Hagelberg's version, this is inverted. Starter kit is installed by
 the package manager that is now a part of Emacs (version 24). The
 package manager directly installs a bunch of .el files and there are
 no org files to see.

 Which is the recommended way to go? What is the experience of people
 on this list?

 (This mail perhaps belongs to the emacs mailing list, but since at
 least one of these versions is based on using org-mode to manage
 emacs, people on this mailing list will perhaps have some interest in
 the issue.).

 Vikas


Hi Vikas,

As the maintainer of my literate version of the starter kit, I can
share my opinions on the differences...

I think the most important differentiator is whether you want to keep
your configuration in .org or .el files.  I have all of my personal
config in a single 2255 line Org-mode file.  Thanks to Org-mode's
folding outline structure I've found this to be much easier to navigate
than either one single large or many small emacs-lisp files.

Aside from that, Phil's version of the starter kit certainly has more
users and is probably more actively maintained -- I actively fix
reported bugs in my version of the starter kit, but don't have any real
development planned.

Best,

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



Re: [O] Bug: new latex exporter, 'Stack overflow in equal' with identical headings

2012-07-16 Thread Myles English

Hi,

Nicolas Goaziou n.goaz...@gmail.com writes:

 Hello,

 1.   copy the ECM below to a buffer
 2.   execute the lisp block
 3.   M-x org-export-dispatch RET l

 I cannot reproduce it but I have pushed a change that may be related to
 your problem (elements cannot be compared with `equal').

 Could you pull latest version and try again?

Fixed!  (Though it could have been the latest commit or another recent
commit that actually fixed it for me.)


 Thank you.


No: thank you!


 Regards,


Myles



Re: [O] DevonThink links in org mode?

2012-07-16 Thread Bastien
John Wiegley jo...@newartisans.com writes:

 I created org-devonthink.el a long time ago:

 https://github.com/jwiegley/dot-emacs/blob/master/lisp/org-devonthink.el

I added this to the section in worg/org-hacks.org, thanks!

-- 
 Bastien



Re: [O] FW: Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Bastien
Hi Luis,

Luis Anaya papoan...@hotmail.com writes:

 That's because you do not have source-highlight installed. It goes back
 to documentation :( , but I should turn its use off by default in the
 delivered source.

Okay.

 Just assign to nil the org-e-groff-source-highlight variable and try
 again. It should default to courier.

Thanks -- I can export to groff and pdf flawlessly.

  Also, from the preambule of your files, I assume you already signed
  the FSF copyright papers. Did you? If not, are you willing to sign
  them? It does not prevent us for including org-e-groff.el into
  contrib/lisp/ but this will be mandatory if you want this feature
  to be in core Org.

 I have no problem signing those papers. I want this code to be under the same
 licensing terms to avoid any licensing discrepancies between
 components.

Please fill in this form and send it to ass...@gnu.org:

http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=request-assign-future.txt;hb=HEAD

Thanks!

-- 
 Bastien



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Nicolas Goaziou
Luis Anaya papoan...@hotmail.com writes:

 The only change I can see is the one to add the ATTR_GROFF string to get the
 :attr_groff key in info.

This is already the case since a recent patch.  ATTR_SOMETHING appears
automatically as :attr_something in element/object properties.


Regards,

-- 
Nicolas Goaziou



[O] [GSoC] Org-sync

2012-07-16 Thread Aurélien Aptel
Hi all,

I'm still working on Org-sync, the tool to synchronize external
services with org-documents. The current focus is still on bug
trackers. Right now you can test the github and the bitbucket backend.
I've worked on a cache system that minimize what needs to be
transfered at each synchronization and I've written Org-sync
documentation (usage, code  backend programming). You can find more
on my repo [1].

There is a simple tutorial on worg [2] with screenshots and all which
covers the basic usage of the tool. If you read it, feel free to post
some feedback on this thread.

There are still some things that need to be fixed before working on
other backends. Currently, conflicting merge are not handled properly.

I plan on writing backends for Redmine, Bugzilla, Google Code, Google
Task, Toodledo, Remember the milk.
But I may not have the time to do them all. What backends would you
like me to implement first? Something not in this list?

1: http://orgmode.org/w/?p=org-sync.git
2: 
http://orgmode.org/worg/org-contrib/gsoc2012/student-projects/org-sync/tutorial/



Re: [O] new exporter

2012-07-16 Thread Nicolas Goaziou
Hello,

Achim Gratz strom...@nexgo.de writes:

 Actually, it wasn't.  These two lines would be the only additions you
 need AFAICS and you could even make them on the command line:

 BTEST_EXTRA = org-export BTEST_OB_LANGUAGES =

Good to know, thank you.

 I still don't get that error and all tests are pass, with Emacs24 from
 Bzr.  I do get an error from Emacs 23.3 (Lisp nesting exceeds
 `max-lisp-eval-depth'), but that can be circumvented by increasing the
 limit via

 BTEST_PRE=--eval '(setq max-lisp-eval-depth 18000)'

 I then get two fails with really lengthy backtraces of what look to be
 nested macro expansions

 2 unexpected results:
FAILED  test-org-element/parent-property
FAILED  test-org-element/set-element

I cannot get those. Have you tried with a recent Org (i.e. post
95cd07d058da79cb1767946dba6e4b9128a3a702)?

 ...but still not the error you've been reporting.

I also cannot anymore. I suppose I had fumbled with hard links
(i.e. forgetting to remove the previous one).


Regards,

-- 
Nicolas Goaziou



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya
Nicolas Goaziou n.goaz...@gmail.com writes:

 Luis Anaya papoan...@hotmail.com writes:
 This is already the case since a recent patch.  ATTR_SOMETHING appears
 automatically as :attr_something in element/object properties.

I remember you mentioned it but it seems that I pulled the git repo too
soon. What I'll do is to refresh my development repository from git and
run regression testing of the groff exporter. 


-- 
Luis R. Anaya
papo anaya aroba hot mail punto com
Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo



[O] A week off

2012-07-16 Thread Bastien
Dear all,

I'm taking a week off, with no internet connectivity.

I'll be back online on July 24th.

Happy Orging!

-- 
 Bastien




Re: [O] [GSoC] Org-sync

2012-07-16 Thread Bart Bunting
Hi,

Great work!

I would be very interested in a redmine backend.

Cheers

Bart


On Mon, 16 Jul 2012 22:39:34 +0200, Aurélien Aptel 
aurelien.aptel+em...@gmail.com wrote:
 Hi all,
 
 I'm still working on Org-sync, the tool to synchronize external
 services with org-documents. The current focus is still on bug
 trackers. Right now you can test the github and the bitbucket backend.
 I've worked on a cache system that minimize what needs to be
 transfered at each synchronization and I've written Org-sync
 documentation (usage, code  backend programming). You can find more
 on my repo [1].
 
 There is a simple tutorial on worg [2] with screenshots and all which
 covers the basic usage of the tool. If you read it, feel free to post
 some feedback on this thread.
 
 There are still some things that need to be fixed before working on
 other backends. Currently, conflicting merge are not handled properly.
 
 I plan on writing backends for Redmine, Bugzilla, Google Code, Google
 Task, Toodledo, Remember the milk.
 But I may not have the time to do them all. What backends would you
 like me to implement first? Something not in this list?
 
 1: http://orgmode.org/w/?p=org-sync.git
 2: 
 http://orgmode.org/worg/org-contrib/gsoc2012/student-projects/org-sync/tutorial/
 
Bart
-- 


Kind regards

Bart



Re: [O] How to integrate org-mode in a MS Windows-/Office-based environment?

2012-07-16 Thread Kyle Andrews
Hi Martin,

You should be able to link to Excel and Word documents from Org by
prefixing the normal path with file+sys: instead of just file.  This
doesn't work when the files are on a Windows Share (at least for me),
though.  I'm also interested in getting a robust connection between Org and
Outlook so I will be paying attention to this thread with earnest.

Best Regards,

Kyle

On Thu, Jul 12, 2012 at 5:06 PM, M elwood...@web.de wrote:



 I'm using Emacs org-mode for task and information management in a business
 environment dominated by Microsoft products (Windows, Office, ...).

 I wonder how to create a set-up for maximum productivity and I'd like to
 know how you integrate org-mode in your work on MS Windows.


 Creating hyperlinks in my org-mode files/tasks, which let me jump directly
 to E-Mail in MS Outlook (Exchange-based), open Word-, Excel- or Powerpoint
 documents, etc. is a very helpful feature for integrating org-mode.

 Are there other techniques, tools or add-ons which are helpful for that
 purpose?


 Kind regards

 Martin






Re: [O] Emacs starter kit

2012-07-16 Thread Vikas Rawal
 I think the most important differentiator is whether you want to keep
 your configuration in .org or .el files.  I have all of my personal
 config in a single 2255 line Org-mode file.  Thanks to Org-mode's
 folding outline structure I've found this to be much easier to navigate
 than either one single large or many small emacs-lisp files.
 
 Aside from that, Phil's version of the starter kit certainly has more
 users and is probably more actively maintained -- I actively fix
 reported bugs in my version of the starter kit, but don't have any real
 development planned.

Thanks Eric, and best wishes,

Vikas



[O] org-ibuffer

2012-07-16 Thread Neil Smithline
Just a few lines in a Gist to provide `ibuffer' functionality for 
`org-mode' buffers.


https://gist.github.com/3126257

Neil



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya
Nicolas Goaziou n.goaz...@gmail.com writes:

 Luis Anaya papoan...@hotmail.com writes:
 The only change I can see is the one to add the ATTR_GROFF string to get the
 :attr_groff key in info.

 This is already the case since a recent patch.  ATTR_SOMETHING appears
 automatically as :attr_something in element/object properties.

Nicolas:

I pulled the latest git code and ran my regression test suite (for lack
of a better phrase) to test the groff exporter. There were no unsolvable
issues, but you might want to know that I found:

   - No changes were needed to org-export.el or org-elements.el  All the
 tests were run with the code from git. These two files did not
 cause any problems during the test. Therefore, those can be left as
 they are.

   - The change with the largest imapct on my code had to do with 
 the BEGIN_GROFF/END_GROFF pairs in which now invokes the special 
 block function and process the enclosed text through the plain-text 
 function. Originally these were passed through without the
 invocation of the plain text function. 

 I had to remove all the text pre-processing being that it was causing
 problems in the execution of GROFF macros. I do not think that
 doing this will hurt (much) because of the GROFF  markup syntax.
 For instance:
 
 TeX/LaTeX looks like this:
\begin{center} 
Blah 
\end 
 while GROFF looks like this. 
.DS C
Blah
.DE

French quotations are not supported now because of this change, quotes are
significant in GROFF for many things and I cannot translate those
because GROFF will fail with a syntax error. 

- There were some other issues found, but those were my doing :). These
  were resolved and pushed into the repository. 

Luis
-- 
Luis Anaya
papo anaya aroba hot mail punto com
Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Avdi Grimm
Does this mean that creating manpages from org source is now a possibility?

On Mon, Jul 16, 2012 at 12:38 PM, Luis Anaya papoan...@hotmail.com wrote:

 Hi:

 I wanted to let you know that the development for the org-export
 exporter to groff is in feature freeze. Everything that I thought up
 that was useful has been coded. There might be other useful things to
 do, but right now... my brain is mush.

 Efforts will be spent on clean-up, stability and documentation.

 Recent items added have been :
   * Fixed issue with planner output.
   * Added optios for hyphenation and right justification control.
   * Bug fixes

 Regards

 --
 Luis R. Anaya
 papo anaya aroba hot mail punto com
 Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo




[O] MobileOrg and tags

2012-07-16 Thread James Harkins
Been fiddling around with an issue that I noticed in MobileOrg for android... 
but I just noticed something strange that makes me think it's an issue in 
org-mode itself.

The issue reveals itself when using MobileOrg to edit a tagged node. Instead of 
the actual tags, MobileOrg shows #+DRAWERS:: (as many times as there are tags 
for that item). Then this gets written back during org-mobile-pull.

What I noticed is this, in index.org:

#+TAGS: 
#+DRAWERS: PROPERTIES CLOCK LOGBOOK

So, I guess, really two issues:

- MobileOrg parses the absence of anything after TAGS as undifferentiated 
white space, and assumes that #+DRAWERS: is the name of a valid tag.

- Orgmode doesn't populate the list of tags based on the tags that are actually 
used in the source files.

So my questions are:

- Where are the #+TAGS: supposed to come from? Only from org-tag-alist? If so, 
that's a bit of a bother. I don't know in advance what tags I will need. I'd 
rather not have to customize the variable every time I introduce a new tag.

- If my guess is right, is it a reasonable enhancement to have org-mobile-push 
append the tags found in the files onto what is already there in org-tag-alist?

Thanks,
James


--
James Harkins /// dewdrop world
jamshar...@dewdrop-world.net
http://www.dewdrop-world.net

Come said the Muse,
Sing me a song no poet has yet chanted,
Sing me the universal.  -- Whitman

blog: http://www.dewdrop-world.net/words
audio clips: http://www.dewdrop-world.net/audio
more audio: http://soundcloud.com/dewdrop_world/tracks



Re: [O] How to integrate org-mode in a MS Windows-/Office-based environment?

2012-07-16 Thread Jambunathan K

On the viewing front, doc-view can be used to view OpenDocument files
right within Emacs.

From the manual,

,
| 35 Document Viewing
| ***
| 
| DocView mode is a major mode for viewing DVI, PostScript (PS), PDF,
| OpenDocument, and Microsoft Office documents.  It provides features
  ^^
  ^^
| such as slicing, zooming, and searching inside documents.  It works by
| converting the document to a set of images using the `gs' (GhostScript)
| command and other external tools (1), and displaying those images.
`

The viewer uses unoconv as the default converter.  There were some
issues that I identified while using LibreOffice as converter.  It is
possible that pdf file generated by the two converters differ in a
subtle way.

-- 



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya
Avdi Grimm gro...@inbox.avdi.org writes:

 Does this mean that creating manpages from org source is now a
 possibility?

Hmm...

Not right now... berause of the different macro package that man pages uses
for rendering compared to the one used in Org which is based on the MM
package. 

However, one thing that got me thinking was to implement exporters for
other  macro packages, like MOM and MS being that they 
follow similar structure.  The reason why I think this is useful is
because each macro language is geared for a slightly different purpose.  

IMHO: 
  - MM is for business communications
  - MOM for literary writings 
  - MS for general typesetting. (Word grinder uses it for rendering )
  - MAN well, for man pages :)

The MAN macro package uses different commands for typesetting 
even though is processed through GROFF. But many of the structure are 
shared among all macros package and there is always the option to use
straight GROFF commands.  Even though is an idea on how to use Org mode, 

I have never thought of using it for writing MAN pages. I'm
not sure how many people would; but the idea does 
not have merit and certainly deserves some thought.

But... before going all crazy, probably I want to make sure that the one
I wrote for MM works well before venturing into coding for other macro 
packages. It would make porting to those packages a lot easier.

Something else to consider, if you're inclined to. 

It might be easier to implement a typesetter for MAN pages in muse mode 
because it has a simpler rendering framework.  It may also be a more
appropriate platform considering that MAN pages do not have a lot of
formatting requirements, when they are compared to a document 
with multiple levels, lists, equations and graphics which is what you
find in papers, letters or memorandum. 


Luis


-- 
Luis Anaya
papo anaya aroba hot mail punto com
Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo



Re: [O] Org mode export to Groff MM. Feature Freeze

2012-07-16 Thread Luis Anaya
Avdi Grimm gro...@inbox.avdi.org writes:

I should have said that the idea *does have* merit and deserves some
thought. Sorry for the mix up. :(

-- 
Luis Anaya
papo anaya aroba hot mail punto com
Do not use 100 words if you can say it in 10 - Yamamoto Tsunetomo