Re: [O] Problem with org-timestamp-up and timezones

2016-04-15 Thread Robert Eckl
Derek Feichtinger  gmail.com> writes:

> 
> Sorry, should have confirmed that before sending the last mail: I get 
the
> same behavior using the older org version from my backup (Org-mode 
version
> 8.3.4 / 8.3.4-15-gdd9be3-elpaplus). So this must be an incompatibility
> introduced in the emacs core development.
> 
The bug seems to be introduced after emacs commit c23c965bb9d0

Cu,
Robert




[O] ox-reveal cannot export

2014-08-05 Thread Robert Eckl
Hi,

after a long time i recently played with ox-reveal (with
org-mode release_8.3beta-167-g003edd) 

While exporting to reveal i get 

  Symbol's function definition is void: org-html-format-headline--wrap

What i'm missing?

Regards,
Robert



Re: [O] Export org-mode buffer to dynamic html document (collapse/expand details)

2014-07-31 Thread Robert Eckl

Martin Beck elwood...@web.de writes:

 Hi,
 I'm sorry, if this might be obvious, but I don't have much experience
 with org-mode export up to now and I urgently need to export much
 information from my notes and task lists in org-mode in a way that my
 colleagues (no experience with Emacs / org-mode at all) can use it
 during my absence.
 Therefore I need some advice from you:
 I have a lot of projects (hierarchically structured in headings with
 todo keywords, sub-headings, hyperlinks, notes, etc.)
 I want to export all this information into a text format to make it
 usable for my colleagues.
 However, there is A WHOLE LOT of text and to make it the least
 confusing possible,
 it would be great if the text below headings could be collapsed
 somehow or if there was an overview page listing all projects and some
 important sub-headings or remarks and a hyperlink pointing to the
 detailed notes concerning this project.
 Any hints appreciated

I would recommend a look into
https://github.com/SebastianRose/org-info-js/tree/master
 
or http://orgmode.org/worg/code/org-info-js/index.org.html

There are described various possible views in html with
folding/unfolding, similar emacs folding. 

You can switch between the views with m, goto (n)ext or (p)revious
item, help with ? 

IIRC You can realize this with the follwoing to lines in your org-file
and export this to html with c-c c-e h h (or o):

#+HTML_HEAD_EXTRA: link rel=stylesheet 
href=http://orgmode.org/worg/style/worg.css; type=text/css
#+INFOJS_OPT: view:info toc:nil ftoc:yes ltoc:above  mouse:underline buttons:0 
path:http://orgmode.org/org-info.js

The above lines make the toc flowing like www.orgmode.org/worg.
The most important keys for navigating i would mention at the begin of
the page.

HTH,

Robert



[O] Property EXPORT_OPTIONS ignored?

2014-03-19 Thread Robert Eckl
Hi,
i'm trying to exclude one section from the toc 

Following http://orgmode.org/manual/Export-settings.html in following
example section 2 shoud not appear in the toc, but it appears.

#+OPTIONS: toc:t
* Section 1
* Section 2
:PROPERTIES:
:EXPORT_OPTIONS: toc:nil
:END:

What I'm missing?

TIA,
Robert
 
Emacs 24.3.1 (Org mode 8.2.5e)



Re: [O] [ANN] google-contacts.el can now export to org-contacts.

2014-01-29 Thread Robert Eckl
Rüdiger Sonderfeld ruedi...@c-plusplus.de writes:

 Hello,

 Julien Danjou's google-contacts.el is a GNU Emacs package to display
 contacts from Google Contacts within Emacs. I have recently added
 support to export contacts to org-contacts format (See
 contrib/lisp/org-contacts.el). 

 Calling `M-x google-contacts-to-org-contacts' will export all contacts
 into the current buffer. There currently is no support for
 synchronisation. 

 http://julien.danjou.info/projects/emacs-packages#google-contacts

I wanted to play with it, but if I use
*M-x google-contacts*
and type string i get 
google-oauth-auth-and-store: Symbol's function definition is void:
  oauth2-auth-and-store

Cu,
Robert



Re: [O] exporting a shopping list to my android phone?

2013-11-29 Thread Robert Eckl
Matt Price mopto...@gmail.com writes:

 I just asked this question I guess, but:  I do most everything in org,
 including composing shopping and packing lists, and so forth.
 Occasionally I would like to access these on my phone.  From what I
 can tell, org-mobile doesn't do quite what I want which is to let me
 toggle the state of a checkbox with my thumb as I throw something into
 a shopping cart, or pack a piece of clothing or rock climbing gear, or
 whatever.

 Does someone else out there have a workflow for this task they can
 recommend? If so I'd appreciate it!  Thanks,

Do you know MobileOrg for Android?
It's not really what you want, but you can synchronize your org-file
with itemizes. On Android phone you can edit the file and put an X in
the checkbox. So it seems to be near to your requirements, your thumb
have to find the big X, an other character is not accepted by org-mode.

Cu,

Robert



Re: [O] Encoding Problem in export?

2013-07-24 Thread Robert Eckl

Am 24.07.2013 09:34, schrieb Nicolas Goaziou:

Hello,

Robert Eckl eck...@gmx.de writes:


The issue seems to be introduced with
Org-mode version 8.0.6 (release_8.0.6-4-g21dd83
  org-element: Do not url-decode parsed links
The description sounds like the issue, no?

IIUC, this is different from your issue. You write a URL that is not
encoded, and, somehow, it gets encoded in the export output. This patch
is about not decoding something already encoded.

You are right.


My guess is that your URL is encoded in the original buffer already. Try
to use M-x visible-mode to see what is the real URL. If you see
http://example.de/?idprop%3D222;, it probably means that
`org-link-escape' is a bit too zealous (BTW why don't this function rely
on `url-encode-url'?)

Ok, using  visible-mode i see the link with %3D, i can replace it,
then all works fine. If iinsert a new link from clipboard, i get %3D.


Regards,

Robert



Re: [O] Encoding Problem in export?

2013-07-24 Thread Robert Eckl

Am 24.07.2013 11:16, schrieb Nicolas Goaziou:

Robert Eckl eck...@gmx.de writes:


Ok, using  visible-mode i see the link with %3D, i can replace it,
then all works fine. If iinsert a new link from clipboard, i get %3D.

Then, as I said, `org-link-escape' (called from `org-insert-link', aka
C-c C-l) is buggy.

I think we should replace every occurence of `org-link-escape' with
`url-encode-url' and `org-link-unescape' with `url-unhex-string'.
I can't see a reason to reinvent the wheel here.

AFAICT, only org-mobile.el uses optional arguments from
`org-link-escape'. It just begs for a new internal function in
org-mobile.el.

WDYT?

It's fine for me - IME you really know what you do.

Thank you very much,

Robert



[O] Encoding Problem in export?

2013-07-23 Thread Robert Eckl
At least since release_8.0.6-478-g9ee8e2  
(encoding utf-8)

If i'm using a link which contains the character = the character in the
target is replaced with %3D, at least for export to html and latex.

[[http://example.de/?idprop=222][http://example.de/picture.jpg]]

-

a href=http://example.de/?idprop%3D222; 
   img src=http://example.de/picture.jpg; /
/a

--

#+BEGIN_LaTeX
\begin{window}[0,r,\href{http://example.de/?idprop=222}{\includegraphics{picture}},{}]
#+END_LaTeX

-

\begin{window}[0,r,\href{http://example.de/?idprop%3D222}{\includegraphics{picture}},{}]

With an very old version of orgmode 7.93 this was for a while standard for
the latex exporter, not for html.

Cu,
Robert



Re: [O] Encoding Problem in export?

2013-07-23 Thread Robert Eckl

Hello,

Am 24.07.2013 01:35, schrieb Nicolas Goaziou:

Hello,

Robert Eckl eck...@gmx.de writes:


At least since release_8.0.6-478-g9ee8e2

This release number is suspicious. Latest is release_8.0.6-353-g2b5670.
You're 125 commits ahead of us.


(encoding utf-8)

If i'm using a link which contains the character = the character in the
target is replaced with %3D, at least for export to html and latex.

I cannot reproduce it. Could you upgrade and test again?

I did upgrade to release_8.0.6-353-g2b5670 and the issue continues.

The issue seems to be introduced with
Org-mode version 8.0.6 (release_8.0.6-4-g21dd83
 org-element: Do not url-decode parsed links
The description sounds like the issue, no?

Org-mode version 8.0.6 (release_8.0.6-3-g40b44e  works fine.


I played a bit with the Elpa version
Org-mode version 8.0.6 (8.0.6-5-gb4a8ec-elpa @ 
/home/re/.emacs.d/elpa/org-20130722/)


but with this i wasn't able to run the exporter

Wrong type argument: arrayp, odt

Systems are Linux Mint Debian and MAC OS X 10.6.8 (Snow Leopard)

Regards,

Robert



[O] Hyperlinked Images with ox-html

2013-07-09 Thread Robert Eckl
Using Org-mode version 8.0.5 (release_8.0.5-429-gc31655 
GNU Emacs 24.3.50

exporting this fragment

#+ATTR_HTML:  :width 220px :align right 
[[http://orgmode.org/worg/][http://example.org/picture.jpg]]

gives

div class=figure
 p
   a href=http://orgmode.org/worgwidth=220px; align=right 
 img src=http://example.org/picture.jpg;  /
   /a
 /p
/div


instead of 

div class=figure
 p
   a href=http://orgmode.org/worg;
 img src=http://example.org/picture.jpg; width=220px align=right/
   /a
 /p
/div

So the attributes for img are linked to a instead of img and
ignored.

What I'm missing?

TIA,
Robert



[O] HTML-Export Images with #+ATTR_HTML: broken?

2013-05-07 Thread Robert Eckl
With Org-mode version 8.0.2 (release_8.0.2-91-g29ab1b )
the html-Exporter seems to ommit a space after the img-Tag

#+begin_src orgmode
* Test HTML-Export images
#+ATTR_HTML:  :width  440px 
 [[orgmode.org][http://orgmode.org/img/org-mode-unicorn-logo.png]]

** ohne Verlinkung
#+ATTR_HTML:  :width  220px 
[[http://orgmode.org/img/org-mode-unicorn-logo.png]]
#+end_src

results in

...
#+begin_src html
div id=outline-container-sec-1 class=outline-2
h2 id=sec-1span class=section-number-21/span Test HTML-Export 
images/h2
div class=outline-text-2 id=text-1
p
iimgwidth=440px src=http://orgmode.org/img/org-mode-unicorn-logo.png; 
alt=org-mode-unicorn-logo.png //i
/p
/div

div id=outline-container-sec-1-1 class=outline-3
h3 id=sec-1-1span class=section-number-31.1/span ohne Verlinkung/h3
div class=outline-text-3 id=text-1-1

div class=figure
pimgwidth=220px src=http://orgmode.org/img/org-mode-unicorn-logo.png; 
alt=org-mode-unicorn-logo.png //p
/div
#+end_src
...

The space between img and the attribute width is missing.

Cu,

Robert



[O] clock-out broken?

2013-04-03 Thread Robert Eckl
Hi,
with some changes from today seems clocking out is broken:

  Clock starts at [2013-04-04 Do 01:22] - showing entire task time.
  Clock stopped at [2013-04-04 Do 01:22] after 0:00
  org-clocking-buffer: Wrong type argument: markerp, nil
  org-check-running-clock: Wrong type argument: markerp, nil [3 times]
  Modified buffers exist; exit anyway? (y or n)  y

It's not possible to stop emacs, theres an endless loop 

  org-clocking-buffer: Wrong type argument: markerp, nil  
  Modified buffers exist; exit anyway? (y or n)  y
 
FWIW, the entry expects a note for stopped clock

Emacs/24.3.50 linux mint 
Org-mode version 8.0-pre (release_8.0-pre-245-gde4d52

Cu
Robert



[O] Html-Exporter Hanling images / links

2013-03-26 Thread Robert Eckl
Hi,

with Org-mode version 8.0-pre (release_8.0-pre-193-gaa7b1e i got some
issues handling images and links:

A Link [[http://www.mypage.de][description]] results in
idesription/i without any link.

In the past i uses something like this:

#+ATTR_HTML: alt=alt title=title align=right width=100
[[http://www.mypage.de][http://www.mypage/path/image.jpg]]
Some Text  
more text more text

Now the ATTR_HTML line seems to be ignored, so the image is not at the
right of the text but centered in an extra row.

TIA,
Robert




Re: [O] Html-Exporter Hanling images / links

2013-03-26 Thread Robert Eckl
John Hendy jw.he...@gmail.com writes:

 On Tue, Mar 26, 2013 at 10:36 AM, Robert Eckl eck...@gmx.de wrote:
 Hi,

 with Org-mode version 8.0-pre (release_8.0-pre-193-gaa7b1e i got some
 issues handling images and links:

 A Link [[http://www.mypage.de][description]] results in
 idesription/i without any link.

 I can't reproduce this. Here was my test file (copied and pasted from
 your email and then adjusted):

Sorry for the noise, there was a typo in my file http.//... instead of
http://... 


 In the past i uses something like this:

 #+ATTR_HTML: alt=alt title=title align=right width=100
 [[http://www.mypage.de][http://www.mypage/path/image.jpg]]
 Some Text
 more text more text

 Now the ATTR_HTML line seems to be ignored, so the image is not at the
 right of the text but centered in an extra row.

 Now, for the image, did you check out the upgrade guide? A lot of the
 syntax has changed:
 - http://orgmode.org/worg/org-8.0.html#sec-8

I'm using the new exporter nearly since it was merged in master branch
and seems i missed what exactly means Atrribute lines now take plists.
Since last week my code worked as expected.

 While it doesn't say it explicitly, this also applies to #+attr_html.
 Try this:

 #+begin_src org

 #+ATTR_HTML: :width 100px :alt alt :options title=Title align=right
 [[http://www.mypage.de][http://upload.wikimedia.org/wikipedia/commons/5/56/Tux.jpg]]
 Some Text
 more text more text

 #+end_src

This does the trick, 

Thank you very much for the quick and capable help.

Best regards,

Robert



Re: [O] New Exporter html - latex - beamer

2013-03-25 Thread Robert Eckl
Charles Berry ccbe...@ucsd.edu writes:

  cberry at ucsd.edu writes:

 
 Robert Eckl eckl.r at gmx.de writes:
 
 [snip]
 

 I said

 You might be able to do what you want with filter functions.
 

 
 You can do that with this filter:
 

 But you will want to add something to it to treat links without the 
 :windowenv:
 tag in the normal way

 ,
 | #+BEGIN_SRC emacs-lisp
 |   (defun filter-links-windowized (link backend info)
 | Rid :windowenv: from LINK desc and format per BACKEND. Ignore INFO.
 | (let ((clean-string (replace-regexp-in-string :windowenv:  link)))

 Replace this line:

 |   (if (eq backend 'latex)

 with these:

   (if (and
(eq backend 'latex)
(string-match :windowenv: link))
   


 |   (let ((wprefix \\begin{window}[0,r,)
 | (wpostfix}},{}]\n\\parbox{0.7\\textwidth}{)
 | (repstrng 
 |   \\1{includegraphics[width=0.28textwidth]\\2}))
 | (concat wprefix
 | (file-name-sans-extension
 |  (replace-regexp-in-string 
 |   \\([^}]*}\\)\\({.*}\\) 
 |   repstrng
 |   clean-string))
 | wpostfix))
 | clean-string)))
 | #+end_src
 `

 then ordinary links like

[[http://good.place.com][See good place]]

 will be handled in the usual manner by the latex backend

My response is very late, sorry.

Thank you for your effort and the code. I'll try to use it, sounds good.
Reading from filters on worg didn't give me any idea how to use it, 
but your code and explanations seems a good entry.

Perhaps later i'll try to adapt that functionality to the parallel
beamer/html-export. 

Cu,
Robert



Re: [O] New Exporter html - latex - beamer

2013-03-19 Thread Robert Eckl
Eric S Fraga e.fr...@ucl.ac.uk writes:

 Robert Eckl eck...@gmx.de writes:

 I have to provide weekly newsletters in the format pdf and html. Up to
 now i did this with exporting to scrartcl, known as koma-script.
 Including images is a bit booring because i handle two formats, for example

 I am not sure what your latex bits are trying to accomplish so it's
 difficult to advise on how to achieve what you want.  Maybe wrapfigure,
 which org export supports (float option, I believe, but I am not sure),
 is what you need instead of window?

The latex bits are doing what they should. |-|
I don't want the image floating, because   | |
the text regularly is small. The image | |
will be placed how you can see here.   |-|
Here the text goes over the complete line - If I'm using a list i have
to put it in a parbox. The environment window is provided by package
picinpar, seems that it not works within beamer.

Perhaps for this yasnippet as recommended from Marcin would be usefull.

OTOH i would like to use beamer in future, Beamer_Col does a similar
job, except of surrounding the image with text. Does Beamer provide
something like this?

But, if i write the text for Beamer-Output, i have to handle html-output
extra. The LaTeX-package comment isn't provided by beamer, I don't
know neither how to comment out the HTML-Code for LaTeX-Beamer-fragments
nor how to comment out Beamer-Fragments für HTML-Export.

Seems, Beamer+html is much more complicate than Beamer+scrartcl/article.

Thanks,

Robert



[O] New Exporter html - latex - beamer

2013-03-15 Thread Robert Eckl
Both, the old and the new Exporter are brilliant tools, migration to the
new exporter didn't make great issues.
I have to provide weekly newsletters in the format pdf and html. Up to
now i did this with exporting to scrartcl, known as koma-script.
Including images is a bit booring because i handle two formats, for example

#+BEGIN_SRC Org
#+BEGIN_LaTeX 
  
\begin{window}[0,r,\href{http://www.link.de}{\includegraphics[width=0.28\textwidth]{path/picture}},{}]
  \begin{comment}
#+END_LaTeX
#+ATTR_HTML: alt=Objekt title=Objektansicht align=right width=30% 
padding=0em padding-top=0em
[[http://www.link.de/][http://www.link.de/path/images/picture.jpg]]
#+BEGIN_LaTeX
  \end{comment}
  \parbox{0.7\textwidth}{
#+END_LaTeX
  Any Text
   - item 1
   - item 2
   - item 3
#+BEGIN_LaTeX
  }
  \end{window}
#+END_LaTeX
#+END_SRC

It works, but it's a bit boring. The parbox only is required with
lists.
Now i plan to use Beamer, possible instead of scrarctl. 
If I use BEAMER_col the titles ignored by beamer will exported in html -
format.

Perhaps someone can give me a hint how to deal with this, perhaps 
 - a comment-environment for HTML how i used for LaTeX or
 - write the BMCOL-Environment manually in an LaTeX-Block?

TIA,

Robert



Re: [O] (no subject) How to sort agenda by timestamps (scheduled/deadline)?

2013-03-13 Thread Robert Eckl
Martin elwood...@web.de writes:

 Bastien bzg at altern.org writes:

 
 Hi Martin,
 
 Martin elwood151 at web.de writes:

  However I still have the problem that M-x org-version produces 
  an error:
  Org-mode version N/A-fixup (N/A-fixup !!check installation!! @
  c:/Users/mynameDocuments/sorga/org-mode/org_current/lisp/)
  Is this normal in a beta?
 
 Nope.  Did you run ~$ make autoloads (or simply ~$ make)
 and set the correct load-paths?
 Yes, I set the load paths for lisp and contrib/lisp in my .emacs file 
 and I executed make autoloads in the org-mode directory.
 :-(

 still the same problem:
  When trying to open an agenda, I get the error:
  org-entries-lessp: Wrong type argument: stringp, nil
 The instructions for using a beta are in the Using Org's git
 repository subsection and requires people to have Git installed
 on their machine.  If you have Git, its better to clone the repo
 than to download the .zip from the repo.
 When trying the git clone command in cygwin, I get an error message
 connection refused. I fear this could be blocked in my company's
 network. 

 So I will have to download the archives and install them manually, I
 fear. 

 I tried again, also modifying the local.mk (I'm using Windows 7), but
 no success. 
 So I think I'll have to go back to 7.9.4.
 :-(

Recently i did run into the same issue. 
Reordering things in my .emacs did the trick -
first set the load-path, especially the path where org-mode lives, then
the rest. And be sure, org-mode is loaded not from an directory with an
old version or from an build-in version. 
I thought, the configuration was so, but AFAIR there was an old path, which
was ignored by versions less recent. It was a mixed configuration in
office, so yet i can not look for this.

Cu
Robert




Re: [O] [new exporter] #+TOC in beamer export

2013-03-06 Thread Robert Eckl

Suvayu Ali fatkasuvayu+li...@gmail.com writes:

 On Wed, Mar 06, 2013 at 12:52:24AM +0100, Nicolas Goaziou wrote:
 
 I think this kind of control should really belong to specific latex
 code.
 
 A TOC limited to current section sure sounds seducing, but I'm not sure
 how to achieve this in LaTeX.

 I think you are right.  I'll see if can find a nice way to do this in
 LaTeX, I'll share if I find something.

Perhaps package minitoc is what you are looking for?
I don't know if it is usable within beamer.

Cu,
Robert



Re: [O] New feature: export an agenda to an Org file

2013-02-20 Thread Robert Eckl
Bastien b...@altern.org writes:

 Hi all,

 I've committed a feature that allows you to export your agenda buffer
 to an Org file.  It will create a new file containing the headlines of
 the agenda.  The headlines do not contain any children they may have.

 Please try the feature extensively before Org 8.0.

 In an agenda buffer C-x C-w test.org RET


I'm not sure, is it intended?

Inherited Tags are not taken.

   #+begin_src org
 * Projekt XYZ :foo:
 ** TODO Action
   SCHEDULED: 2013-02-21 Do
   #+end_src

In the agenda, the tag :foo: is inherited to the TODO Action, not in the
exported file. 

Thanks,

Robert



Re: [O] [New exporter] Key bindings and typographical error

2013-02-08 Thread Robert Eckl
Sebastien Vauban
wxhgmqzgwmuf-genee64ty+gs+fvcfc7...@public.gmane.org writes:

 Hi Eric,


 and I would also like to take this opportunity to suggest a change in
 the interface.

 Given that we have moved to a multi-key sequence for selecting exporter
 and then action, could these two aspects not be dealt with in the
 mini-buffer?  I find the display of all the options confusing...  I
 would rather have the dispatcher prompt, in the mini-buffer, something
 along the lines of:

 : Export to: (l) latex, (h) html, (o) ODT, (a) ascii

 with the choices obviously depending on the backends initialised.  Then,
 depending on the key (e.g. l):

 : Export as: (l) file, (b) buffer, (p) PDF, ...

+1

 Are you aware of:

   (setq org-export-dispatch-use-expert-ui t)

 If not, well, you should -- at least from now on!

Thanks, i will give that a try

 If yes, then, I guess you mean getting more than just the letters in the echo
 area?

That would be very fine, especially the first days. OTOH i can imagine this is
only neccesary  for the first steps.

Cu 
Robert



Re: [O] Agenda items with date ranges

2013-02-08 Thread Robert Eckl
SabreWolfy sabrewo...@gmail.com writes:

 Bastien bzg at altern.org writes:

 I can't reproduce this problem.
 
 Can you reproduce it with latest Org? 

 The agenda *shows* the (1/8), etc. in Org-Mode 7.8.11.

 It does *not* show it in version 7.9.2 (Debian sid), so that's why I have
 noticed it. If I get around to installing the latest version, I'll post 
 feedback
 here.

I'm too can not reproduce this problem. With org-mode 7.9.3d and 7.9.3e
the agenda shows (1/8).
I tried it with sheduled items and with items only with active
timestamp(s).

IIRC it was shown also in version 7.9.2, but recently there have been too many
changes. I only know the (1/8) variant.


Cu
Robert



Re: [O] subscribing to this mailing list with gnus

2013-02-07 Thread Robert Eckl
42 147 aeus...@gmail.com writes:

 How do I subscribe? I haven't been able to find a working address.

 Thanks.

The working address should be   news.gmane.org
I didn't specify a port-number.

You can add a Server (^^ in the groups-buffer) with gnus-select-method
nntp and server news.gmane.org:

(setq gnus-select-method (quote (nntp news.gmane.org)))

After opening the server Space the list of groups will downloaded
(takes a few minutes) and you can subscribe with u

Sure, the experts can explain this better.

HTH

Robert
  I don't know the correct port / address within the context of this
  code:
 
  (setq gnus-select-method
  '(nntp gmane.emacs.orgmode
  (nntp-port-number 119)))



[O] org-plus-contrib 20130107 fails on emacs 24.3.50.1

2013-01-07 Thread Robert Eckl
Hello,

compiling the newest package org-plus-contrib 20130107 with emacs
24.3.50.1 (2012-12-27) fails:

org-attach.el:42:1:Error: Symbol's function definition is void: 
org-define-obsolete-variable-alias
org-drill.el:30:1:Error: Symbol's function definition is void: 
org-define-obsolete-variable-alias
org-jira.el:54:1:Error: Cannot open load file: jira
org-odt.el:29:1:Error: Symbol's function definition is void: 
org-define-obsolete-function-alias
and some warnings.
 
I compiled org 20130107 from emacs -Q, and later org-plus-contrib 

Cu
Robert



Re: [O] Differences between MobileOrg and MobileOrgNG

2012-09-26 Thread Robert Eckl

Hi, 

Henning Weiss wrote:

 On Wed, Sep 19, 2012 at 12:53 AM, eckl.rob...@arcor.de wrote:
 Henning Weiss wrote:

 On Mon, Sep 17, 2012 at 9:20 PM, Robert Eckl wrote:

 If i Push the org-files under Windows with MobileOrg the different
 org-files are not synced, but with MobileOrgNG they are. If i push
 the org-files under Mac OS, the org-files are synced even with
 MobileOrg.

 This sounds like a known bug with org-mode on Windows, as it does not
 generate a complete checksum file. See the discussion here. It seems
 that changing from sha1sum.exe to md5sum.exe for the generation of the
 checksum file fixes that issue.
 Thank you very much for the hint. Changing sha1sum.exe to md5sum.exe did
 not change anything for me, but changing from Gnuwin sha1sum/md5sum to
 the one from ftp://ftp.gnupg.org/gcrypt/binary/sha1sum.exe seems to fix
 the issue for me.

 Does that mean that the default checksum generation utility of cygwin
 that is used by org-mode is broken? 

I don't think so.
 Will upgrading cygwin to a newer
 version fix this, or did you need to change your setup?

I'm using an emacs version from http://alpha.gnu.org/gnu/emacs/windows/.
At first there were no md5sum binary found. So i installed the coreutils
(and diffutils) from gnuwin32. Seems that these utils don't work
fine with emacs.

 I hope, other issues are fixed too. Sometimes org-mobile-push crashes
 because of IIRC unexpected hashes. If I remove the related
 agenda-file(s), do the push, and then add the files to the agenda-files
 the push sometimes is succesfull. I have no idea, how to fix it.

 Could you try to produce a minimal setup that produces this problem? I'm
 sure more people on windows have this problem. I would at least like to
 post a workaround for this issue on the mobileorg-android web page.

I can try this, but seems to be difficult, because removing the file
from the agende-file-list and adding it another time sometimes solves
the issue.

Invoking C-c C-x RET p from one file which begins with
# Time-stamp: 2012-09-27 Do 01:17:19 (re)
#+LAST_MOBILE_CHANGE: 2012-03-12 21:40:01
#TAGS: PHONE(p) URGENT(u) MAIL(e) Anwesenheit (a) Musik (m) Orgel (o) Cello (i)

I got an error, then I deleted line 2  
#+LAST_MOBILE_CHANGE: 2012-03-1221:40:01
the error no more occured.

After this i copied the line in another agenda-file from wich invoking
org-mobile-push does not result in an error.

The error did not occur with this changed file.
Then I copied the line in the first file and started org-mobile-push:

The error didn't occur further. So i am confused.

I'll play with this, but i think this will take much time. 

Do you speak german? Im thinking, you can better understand me, if i
could write in german.

Thanks,

Robert



Re: [O] Differences between MobileOrg and MobileOrgNG

2012-09-17 Thread Robert Eckl
Laurent Hoeltgen writes:

 I noticed today, that there are two apps for org-mode on android, 
 namely MobileOrg and MobileOrgNG.

 Is there any significant difference between them in terms of 
 functionality and stability? Is any of them to be recommended over the 
 other one?

MobileOrg has some useful features more than MobileOrgNG, for example
sync with calendar (IIRC google or telephone) at least Org to calendar. 

Here you find a short opinion to the difference:
http://sachachua.com/blog//00/06/ 

In past IIRC MobileOrg does not provide to see the entries of the different
org-files, only the agenda and TODO-List was visible.

If i Push the org-files under Windows with MobileOrg the different
org-files are not synced, but with MobileOrgNG they are. If i push the
org-files under Mac OS, the org-files are synced even with MobileOrg.  

I'm mostly using MobileOrgNG with the disadvantage, that the content of Drawers
on Android are not visible. 

You can play with both and decide later, whats your favorite.

Cu,
Robert