Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-06-02 Thread Daniel Martins
PROBLEM solved!!!

I have put the link in index.org directly but without an "*"

[[file.org]]

and not

* [[file.org]]


I sincerely feel that this "* " could be optional

Daniel

2010/6/2 Daniel Martins 

> I am having a problem with syncing.
>
> I created a webdav on my lab server.
>
> I access it from the Android navigator and I made a test with MobileOrg for
> Iphone with a friend of mine.
>
> Both cases worked perfect
>
> However when I use sync nothing happens. The screen remains completely
> black.
>
>
> I can use capture (I used both version 0.4 and developments with quite the
> same results) but I cannot sync again
>
> My webadav is something
>
> http://IPADDRESS/webdav/index.org
>
> where IPADDRESS is the IP address of the server 150.***.***.***
>
> Daniel
>
> 2010/5/31 Sven Bretfeld 
>
> Hi Enrico
>>
>> Enrico Indiogine  writes:
>>
>> > Thanks to the help from you all I managed to install the latest
>> > development version of org-mobile-android on my Xperia X10.  I set up
>> > my .emacs for stage push-pull and have a mydisk.se account with an org
>> > directory.
>> >
>> > M-x push will fail with an ssh timeout.  I think it has to do with the
>> > fact that Emacs has no way of knowing the mydisk.se password.
>>
>> Try another approach. You are under Ubuntu, aren't you? I'm also under
>> Ubuntu and I use mydisk.se. So this should also work for you:
>>
>> 1. sudo apt-get install davfs2
>>
>> 2. sudo adduser enrico davfs (I don't remember if this is really the
>>   groupname, maybe it's davfs2)
>>
>> 3. edit the file /etc/fstab -> add a line at the end:
>>
>>   https://mydisk.se/yourusername   /home/enrico/webdav   davfs
>> user,noauto   0  0
>>
>> 4. edit the file /etc/davfs2/secrets, add the following line:
>>
>>   /home/enrico/webdavyourmydiskusername   yourmydiskpasswd
>>
>> 5. mkdir ~/webdav
>>
>> 6. sudo dpkg-reconfigure davfs2 --> set the SUID Bit (i.e. just say "yes")
>>
>> 7. mount ~/webdav
>>
>> Now, your folders of mydisk.se should appear under ~/webdav. Then tell
>> Emacs (org-mobile) to use this folder instead of scp. I just used
>> customize to set the org-mobile-directory.
>>
>> > This in in my .emacs:
>> >
>> > (setq org-mobile-files (quote ("~/org/agenda.org")))
>> > (setq org-mobile-directory "~/stage/")
>>
>> Change this to "~/webdav" or use "stage" in the procedure above.
>>
>> > (add-hook 'org-mobile-post-push-hook
>> >   (lambda () (shell-command "scp -r ~/stage/* hindiog...@mydisk.se:
>> org/")))
>> > (add-hook ' org-mobile-pre-pull-hook
>> >   (lambda () (shell-command "scp hindiog...@mydisk.se:org/mobile.org
>> > ~/stage ")))
>> > (add-hook 'org-mobile-post-pull-hook
>> >   (lambda () (shell-command "scp ~/stage/mobileorg.org
>> > hindiog...@mydisk.se:org]/")))
>>
>> I think with the webdav-approach you have to delete these hooks. Comment
>> them out and restart Emacs.
>>
>> Good luck
>>
>> Sven
>>
>> ___
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-06-02 Thread Daniel Martins
I am having a problem with syncing.

I created a webdav on my lab server.

I access it from the Android navigator and I made a test with MobileOrg for
Iphone with a friend of mine.

Both cases worked perfect

However when I use sync nothing happens. The screen remains completely
black.


I can use capture (I used both version 0.4 and developments with quite the
same results) but I cannot sync again

My webadav is something

http://IPADDRESS/webdav/index.org

where IPADDRESS is the IP address of the server 150.***.***.***

Daniel

2010/5/31 Sven Bretfeld 

> Hi Enrico
>
> Enrico Indiogine  writes:
>
> > Thanks to the help from you all I managed to install the latest
> > development version of org-mobile-android on my Xperia X10.  I set up
> > my .emacs for stage push-pull and have a mydisk.se account with an org
> > directory.
> >
> > M-x push will fail with an ssh timeout.  I think it has to do with the
> > fact that Emacs has no way of knowing the mydisk.se password.
>
> Try another approach. You are under Ubuntu, aren't you? I'm also under
> Ubuntu and I use mydisk.se. So this should also work for you:
>
> 1. sudo apt-get install davfs2
>
> 2. sudo adduser enrico davfs (I don't remember if this is really the
>   groupname, maybe it's davfs2)
>
> 3. edit the file /etc/fstab -> add a line at the end:
>
>   https://mydisk.se/yourusername   /home/enrico/webdav   davfs
> user,noauto   0  0
>
> 4. edit the file /etc/davfs2/secrets, add the following line:
>
>   /home/enrico/webdavyourmydiskusername   yourmydiskpasswd
>
> 5. mkdir ~/webdav
>
> 6. sudo dpkg-reconfigure davfs2 --> set the SUID Bit (i.e. just say "yes")
>
> 7. mount ~/webdav
>
> Now, your folders of mydisk.se should appear under ~/webdav. Then tell
> Emacs (org-mobile) to use this folder instead of scp. I just used
> customize to set the org-mobile-directory.
>
> > This in in my .emacs:
> >
> > (setq org-mobile-files (quote ("~/org/agenda.org")))
> > (setq org-mobile-directory "~/stage/")
>
> Change this to "~/webdav" or use "stage" in the procedure above.
>
> > (add-hook 'org-mobile-post-push-hook
> >   (lambda () (shell-command "scp -r ~/stage/* hindiog...@mydisk.se:
> org/")))
> > (add-hook ' org-mobile-pre-pull-hook
> >   (lambda () (shell-command "scp hindiog...@mydisk.se:org/mobile.org
> > ~/stage ")))
> > (add-hook 'org-mobile-post-pull-hook
> >   (lambda () (shell-command "scp ~/stage/mobileorg.org
> > hindiog...@mydisk.se:org]/")))
>
> I think with the webdav-approach you have to delete these hooks. Comment
> them out and restart Emacs.
>
> Good luck
>
> Sven
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-31 Thread Sven Bretfeld
Hi Enrico

Enrico Indiogine  writes:

> Thanks to the help from you all I managed to install the latest
> development version of org-mobile-android on my Xperia X10.  I set up
> my .emacs for stage push-pull and have a mydisk.se account with an org
> directory.
>
> M-x push will fail with an ssh timeout.  I think it has to do with the
> fact that Emacs has no way of knowing the mydisk.se password.

Try another approach. You are under Ubuntu, aren't you? I'm also under
Ubuntu and I use mydisk.se. So this should also work for you:

1. sudo apt-get install davfs2

2. sudo adduser enrico davfs (I don't remember if this is really the
   groupname, maybe it's davfs2) 

3. edit the file /etc/fstab -> add a line at the end:
   
   https://mydisk.se/yourusername   /home/enrico/webdav   davfs   user,noauto   
0  0

4. edit the file /etc/davfs2/secrets, add the following line:

   /home/enrico/webdavyourmydiskusername   yourmydiskpasswd

5. mkdir ~/webdav

6. sudo dpkg-reconfigure davfs2 --> set the SUID Bit (i.e. just say "yes")

7. mount ~/webdav

Now, your folders of mydisk.se should appear under ~/webdav. Then tell
Emacs (org-mobile) to use this folder instead of scp. I just used
customize to set the org-mobile-directory.

> This in in my .emacs:
>
> (setq org-mobile-files (quote ("~/org/agenda.org")))
> (setq org-mobile-directory "~/stage/")

Change this to "~/webdav" or use "stage" in the procedure above.

> (add-hook 'org-mobile-post-push-hook
>   (lambda () (shell-command "scp -r ~/stage/* hindiog...@mydisk.se:org/")))
> (add-hook ' org-mobile-pre-pull-hook
>   (lambda () (shell-command "scp hindiog...@mydisk.se:org/mobile.org
> ~/stage ")))
> (add-hook 'org-mobile-post-pull-hook
>   (lambda () (shell-command "scp ~/stage/mobileorg.org
> hindiog...@mydisk.se:org]/")))

I think with the webdav-approach you have to delete these hooks. Comment
them out and restart Emacs.

Good luck

Sven

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-30 Thread Enrico Indiogine
Dear org users:

Thanks to the help from you all I managed to install the latest
development version of org-mobile-android on my Xperia X10.  I set up
my .emacs for stage push-pull and have a mydisk.se account with an org
directory.

M-x push will fail with an ssh timeout.  I think it has to do with the
fact that Emacs has no way of knowing the mydisk.se password.

This in in my .emacs:

(setq org-mobile-files (quote ("~/org/agenda.org")))
(setq org-mobile-directory "~/stage/")
(add-hook 'org-mobile-post-push-hook
  (lambda () (shell-command "scp -r ~/stage/* hindiog...@mydisk.se:org/")))
(add-hook ' org-mobile-pre-pull-hook
  (lambda () (shell-command "scp hindiog...@mydisk.se:org/mobile.org
~/stage ")))
(add-hook 'org-mobile-post-pull-hook
  (lambda () (shell-command "scp ~/stage/mobileorg.org
hindiog...@mydisk.se:org]/")))


Is this code block correct and where do I specify my mydisk.se password?

Thanks,

Henri-Paul Indiogine


Curriculum & Instruction
Texas A&M University

Email: hindiog...@gmail.com
Skype: hindiogine
Website: http://www.coe.tamu.edu/~enrico

"Rien ne va de soi.  Rien n'est donné. Tous est construit."   Gaston
Bachelard, 1934

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-28 Thread Matthew Jones
Go to:  Settings -> Applications -> Application settings -> check "allow
installation of non-Market applications"

then browse to the github wiki page with your phone's browser, click on and
download the apk, when it is through downloading just tap the file and it
should start the install.

73,
Matthew W. Jones (KI4ZIB)
http://matburt.net


On Fri, May 28, 2010 at 2:05 PM, Enrico Indiogine wrote:

> Greetings!
>
> 2010/5/28 Sven Bretfeld :
> > I had a look at matburt's Github today and found the new 0.4alpha-build.
> > Now, MobOrg4And supports the capturing of notes. That's what I was
> > waiting for all the time. I can say that Note capturing works on my HTC
> > Magic, albeit I had little time so far to test it more than once or
> > twice.
>
> I am a new Android user.  I have a Sony-Ericsson Xperia X10 from
> Rogers.  I do not really like the interface, but that is off-topic,
> but sure I would love to put a recent generic version of android on
> it.
>
> Anyway, I would like to install MobileOrg for Android.  I know how to
> install apps from the Android Market using the phone directly.  I do
> not know how to install apps using Github.  I have looked for
> instructions but have not been able to find them.
>
> I use Linux Ubuntu 10.04 as computer OS.
>
> Thanks,
>
> Henri-Paul
>
> 
> Mathematics Education
> Texas A&M University
>
> Email: hindiog...@gmail.com
> Skype: hindiogine
> Website: http://www.coe.tamu.edu/~enrico
>
> "Rien ne va de soi.  Rien n'est donné. Tous est construit."   Gaston
> Bachelard, 1934
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-28 Thread julien cubizolles
Le vendredi 28 mai 2010 à 11:05 +0200, Sven Bretfeld a écrit :
> Hi to all, hi Matthew
> 
> I can say that Note capturing works on my HTC
> Magic,
Working also on my LG GW620, however the SAVE Button gets hidden by the 
on-screen keyboard.
I think I've seen other android apps keeping some buttons visible
whether the keyboard is or isn't displayed.

> I just wanted to say thank you very much!
So do I, this project is progressing nicely !

Julien.


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-28 Thread Matthew Jones
Sven, thanks for the wonderful feedback.  MobileOrg Android does attach a
timestamp to the note (similar to what the iphone version does, just below
the headline) but anything else you want as part of the heading you do have
to type manually.

I haven't yet published a roadmap because I've been on this frenetic pace to
try to get close to feature parity with the iPhone version.   I'm currently
working on giving you the ability to change TODO states... this is a bit of
a challenge because of how I store each of the org files.   Richard's iPhone
version actually reads the contents of the file into a database (I think?
 Or at least... some other data structure) which lends itself well to the
org-mobile-push model where an updated heading just gets pushed into the
mobileorg.org file.When I wrote my implementation I had not fully
grasped that concept yet so I just store the file and parse it on-demand as
you drill down into your file's contents.   In order to support editing
files and changing TODO states, I need to switch to Richard's model of
storing the components that make up the file instead of trying to parse it
on-demand.

Once I have this finished I plan to release the Beta, and at the same time
push the application into the Android Market (still free and open source,
mind you) as well as release comprehensive documentation.   I think (hope)
that I can put the information on Richard's site dedicated to his version of
MobileOrg and have his documentation be valid and easily understood for both
version.

73,
Matthew W. Jones (KI4ZIB)
http://matburt.net


On Fri, May 28, 2010 at 5:05 AM, Sven Bretfeld  wrote:

> Hi to all, hi Matthew
>
> I had a look at matburt's Github today and found the new 0.4alpha-build.
> Now, MobOrg4And supports the capturing of notes. That's what I was
> waiting for all the time. I can say that Note capturing works on my HTC
> Magic, albeit I had little time so far to test it more than once or
> twice.
>
> I just wanted to say thank you very much!
>
> Note taking is rudimentary at the moment. As far as I can see, you have
> to type todo-keywords, tags and active timestamps manually. But that
> doesn't matter too much at the moment. The current alternatives (RTM,
> Toodledo) have similar inconveniences. However, in MobOrg4And we are in
> our familiar org-syntax, so /everything/ can be done without complex
> awk/sed
> operations after syncing.
>
> @Matthew: Do you have some kind of roadmap published anywhere?
>
> Greetings,
>
> Sven
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-28 Thread julien cubizolles
Le vendredi 28 mai 2010 à 11:05 -0700, Enrico Indiogine a écrit :
> Greetings!

> 
> Anyway, I would like to install MobileOrg for Android.  I know how to
> install apps from the Android Market using the phone directly.  I do
> not know how to install apps using Github.  I have looked for
> instructions but have not been able to find them.

You first need to install, from the market, apkInstaller.
You then download a .apk file from
http://wiki.github.com/matburt/mobileorg-android/ and copy it on the
phone, and choose it from apkInstaller.

Julien.


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] MobileOrg for Android starts to become really usable

2010-05-28 Thread Enrico Indiogine
Greetings!

2010/5/28 Sven Bretfeld :
> I had a look at matburt's Github today and found the new 0.4alpha-build.
> Now, MobOrg4And supports the capturing of notes. That's what I was
> waiting for all the time. I can say that Note capturing works on my HTC
> Magic, albeit I had little time so far to test it more than once or
> twice.

I am a new Android user.  I have a Sony-Ericsson Xperia X10 from
Rogers.  I do not really like the interface, but that is off-topic,
but sure I would love to put a recent generic version of android on
it.

Anyway, I would like to install MobileOrg for Android.  I know how to
install apps from the Android Market using the phone directly.  I do
not know how to install apps using Github.  I have looked for
instructions but have not been able to find them.

I use Linux Ubuntu 10.04 as computer OS.

Thanks,

Henri-Paul


Mathematics Education
Texas A&M University

Email: hindiog...@gmail.com
Skype: hindiogine
Website: http://www.coe.tamu.edu/~enrico

"Rien ne va de soi.  Rien n'est donné. Tous est construit."   Gaston
Bachelard, 1934

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode