Re: [O] A recent mobile org change causing sync issues

2015-10-19 Thread Steve Harman
Thanks Nicolas,

I am not able to post the diff due to the personal nature of the data.
However, I can say that with the commit, the tags in the #+TAGS line is
missing. Also, a link to one of the org files is missing.

Would it be possible to revert this change? This is such a critical bug and
it really disrupted many of ours personal workflows. It also embarrassed us
towards our colleagues, families, and friends who held the view that
proprieatary solutions are better.

In general, it is preferable to have a test suite which should pass before
releasing these commits. Yes, there is MELPA stable but not every package
is on MELPA.

thanks

Stv


On Mon, Oct 19, 2015 at 2:48 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr>
wrote:

> Hello,
>
> Steve Harman <stvhar...@gmail.com> writes:
>
> > I believe a recent change in org-mobile.el is causing a sync problem on
> the
> > Android app. There is some info here:
> > https://github.com/matburt/mobileorg-android/issues/472
> >
> > The info for the commit is at the bottom.
>
> Thank you for the report.
>
> This is a known issue, but it is not clear as why it failing.
>
> Could you should the differences between "index.org" created with or
> without this commit ?
>
> Regards,
>
> --
> Nicolas Goaziou
>


[O] A recent mobile org change causing sync issues

2015-10-18 Thread Steve Harman
Folks,

I believe a recent change in org-mobile.el is causing a sync problem on the
Android app. There is some info here:
https://github.com/matburt/mobileorg-android/issues/472

The info for the commit is at the bottom.

Respectfully,

Steve



authorSergey Gordienko 
Fri, 26 Jun 2015 14:44:20 + (17:44 +0300)
committerNicolas Goaziou 
Sun, 28 Jun 2015 07:06:00 + (09:06 +0200)
commitc15db80e32d22dace184203f6f03a0b586bb4b50
tree31d72afce3cc5adfb0548fdd88680543a2d82e5atree | snapshot
parent5f3d8037a5099ca92db7edbf95ced22f0adefbef
org-mobile: Tiny fix in creating index.org file

* lisp/org-mobile.el (org-mobile-create-index-file):
Eliminate cloning of `#+READONLY' property in the `index.org' file.
A sublists of `org-todo-keywords' don't need to contain the `|'.

TINYCHANGE


[O] org-babel ruby 1.8 and 1.9

2011-09-18 Thread Steve Harman
Hello,

On my mac, I have rvm installed with ruby 1.9.2 being default.
On the terminal, if I execute ruby, it is always 1.9.2 version.
However, the ruby ran by org-babel is 1.8 version.
How can I make the ruby code blocks in my org files
executed by 1.9?

Since I am new to Emacs, I would appreciate your help.
I found org-mode and org-babel extremely helpful in preparing
course notes. That's why, in fact, I switched to Emacs.
In an attempt to solve the above problem, I installed rvm.el
and put it in my init.el right before loading the org-babel languages.

(add-to-list 'load-path /Users/stvharman/.emacs.d/lisp/rvm)
(require 'rvm)
(rvm-use-default) ;; use rvm’s default ruby for the current Emacs session

(org-babel-do-load-languages
 'org-babel-load-languages
 '(
   (R . t)
   (ruby . t)
))

Thank you in advance.

Have a nice weekend (and week ahead),

Steve