Re: [O] Agenda in MobileOrg for Android

2013-04-09 Thread Matthew Jones
Hey guys, I'm one of the maintainers of MobileOrg for Android.  We've
worked really hard to try to implement as many of the features of org-mode
as we can and make it comfortable to use for the majority of people.  A
couple of points:

- Originally we were just storing the org files and parsing those on demand
instead of using a database.   This proved extremely cumbersome when we
wanted to add more features, and it really did not scale well when people
had very large org files.  We made a decision a while ago to switch to a
database almost exclusively for this reason, but there were a lot of other
smaller reasons that also made it worthwhile.

- The reason we do syncing the way that we do is to fit into org-mode's
org-mobile-* concept.  Keeping multiple sets of plain text files in sync
with emacs in the loop is no simple task.  The org-mobile-* functions were
already defined and well used when I started writing the Android port of
MobileOrg.  It may be suboptimal but currently it is the best and easiest
(from the development side) way to keep a remote device and an instance of
emacs in sync.  I'm actually not even sure if the org-mobile-* routines are
even maintained anymore.  The synchronization problem is not as easy as
just overwriting the files, however.

- If you have issues and you don't tell us then we have no way of helping
you and the problem might not go away.  We try to stay on top of
showstopping issues for our users (we have an email address and a bug
tracker linked to in the app store) unfortunately some folks just leave a 1
star review and uninstall and never contact us.


On Mon, Apr 8, 2013 at 5:28 AM, Marcin Borkowski mb...@wmi.amu.edu.plwrote:

 Dnia 2013-04-08, o godz. 06:52:02
 James Harkins jamshar...@gmail.com napisał(a):

  As it happens, one of the lead developers of mobileorg started a
  thread on the MobileOrg-Android mailing list asking for issues that
  need to be addressed, and features that are needed, before it's ready
  for 1.0.

 Well, I didn't know about the existence if that list;).

  I'm using MobileOrg and enjoying it in general. I find it terribly
  useful and not especially cumbersome. The initial setup was a bit of a
  trek for me, because I don't have access to dropbox where I live
  (mainland China). Ultimately, because of unreliable connections to
  Ubuntu One, I ended up running my own WebDAV server locally and
  syncing at home over the WLAN.
 
  Otherwise, the only thing I had to adapt in my org/emacs usage was to
  schedule appointments (C-c C-s) instead of using timestamps for them
  (C-c .). I'm actually not crazy about that -- I'd rather use
  timestamps -- but it does work. (Come to think of it, I should propose
  that as one of the 1.0 issues... or check if it's changed since the
  last time I tried.) Items with scheduled or deadline timestamps appear
  in the Android calendar, and there is a preference in MobileOrg to
  attach reminders automatically. (One remaining point here -- another
  1.0 issue -- is that creating a new node in MobileOrg with a schedule
  or deadline doesn't show up in the phone calendar until after
  syncing. I'll bring that up on the M/O mailing list.)
 
  I find that creating new nodes and minor editing of existing ones is
  not at all inconvenient. I don't see a big issue for the workflows
  that Marcin subsequently identified as being critical for this kind of
  app. They're already there.
 
  hjh

 As I wrote in my other email, I'll give it a try - but I'm very much
 tempted to try to write my own implementation, for the sake of learning.

 Best,

 --
 Marcin Borkowski
 http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
 Adam Mickiewicz University




Re: [O] Agenda in MobileOrg for Android

2013-04-09 Thread Matthew Jones
On Tue, Apr 9, 2013 at 4:27 PM, Marcin Borkowski mb...@wmi.amu.edu.pl
wrote:

 I see.  OTOH, one argument *against* a database (as opposed to parsing
 text files) might be exactly preserving the formatting etc. of files (of
 course, with all the syncing stuff this is not important anyway).


Certainly at the beginning it was easier to rely on our file parser and we
tried to stick with that for as long as we could because in some ways it is
just easier!  We ran into some really nasty problems as we went along,
though, and the further we got into our desired feature list the worse it
became simply relying on that file parser.  I was initially very skeptical
about going the database route but it is easily one of the best decisions
we have made with regard to refactoring of the project and it has enabled
some of the great features we have today.



 That's interesting.  I would be very glad to learn what might the
 pitfalls of just overwriting files be; it may be the case that just
 overwriting would work well with *my personal* use pattern of
 Org-mode, and that would be why I don't understand MobileOrg's approach.


So imagine this... in the morning you synchronize you org files to your
mobile device but then make a change in one of those files and forget to
push it up to your mobile.  Later in the day you make a change to the same
node, or even somewhere else in the file while on your mobile device and
then push that file up.   In the evening you get back to your computer
running emacs and pull your remote changes in.   What do you want to
happen?  Should the one still on your computer that you last changed this
morning take precedence?  or the one on the mobile device?   The answer is
probably that you want to merge those changes... that is something that
emacs can do, but as is the case with most patch-work it can't always do
that in automated fashion.   That's why the org-mobile-* functions exist.
 Now it can be argued that there is a better way and I'd probably agree
with that statement but it's not an easy problem to solve.

Here's another case... if you are editing a file in emacs and the file
changes outside of emacs what happens?  emacs doesn't like it at all... so
you need some sort of built in emacs mechanism for being able to merge
changes in a safe way, and it needs to not surprise the user when that's
happening.

These are the kinds of issues we are all struggling to solve in one way or
another but the general consensus is that just overwriting is the worst
of the possible options, even if it is technically the easiest.

 * Yes, I did uninstall, but I've reinstalled MobileOrg again after
   reading this thread.  I'll try to set it up again.  I installed from
   the Google Play; is it better to use the github repo?  It says
   0.9.7 in the release notes on the wiki, Google Play says it's
   0.9.8, and maybe it would be better to use master or even 0.9.10
   (looking at the branches on github)?  Where do I find the info about
   installing the bleeding edge version from github on my phone (I'm
   quite new to Android, as I mentioned.)

Google Play is always up to date... usually we'll only post an updated
changeset on github if something major has changed, if it's just a bug fix
then you probably won't see it mentioned.   If you can't access Google
play, as mentioned in the wiki, you can always find the latest and past
release here:

http://matburt.net/files/MobileOrg/

 * I did not leave a one-star review; I guess I'm too lazy for that, but
   also it would be a bit unfair without further investigation of my
   problems.

I didn't mean to suggest that you personally did... but it happens a lot
more than I wish it did.  We also get faulted a lot for the perception of
complexity of the way the we have to handle synchronization but as I've
mentioned above... it's a little more complex than just pushing the files
to the device or pulling them off the device.

 * I am very busy these days, but I'll try hard to start using MobileOrg
   and (if the problems I had persist), I'll try to report them on
   MobileOrg's mailing list.  In fact, my problems were twofold:
   firstly, syncing didn't Just Work™ (sometimes I got errors on
   MobileOrg, sometimes in Emacs), and some of the UI choices *did*
   suck.  As soon as I find some time, I'll try to describe exactly what
   I mean by this, so that either it could get improved or I could get
   convinced that it's my usage that sucks (which is obviously possible,
   especially given my lack of experience).

Yep... the only way we know that it sucks is if people tell us what sucks
about it.  UI/UX has been an iterative process where we have to take
feedback from our users.  It's a real challenge to build a UI that works
for the most people and we want to make the most people happy.


Re: [O] Dropbox integration suddenly stopped working with Mobile-Org

2013-02-06 Thread Matthew Jones
I'm the developer of the Android version of MobileOrg... and you, and the
developers of the IOS app, should be aware that they retired the old
version of their api and shut it off sometime in December or January...
that could be what's keeping it from working.  It's just a guess... I had
to release a new version of MobileOrg for Android in December to update it
to use the new api.


On Fri, Feb 1, 2013 at 5:19 AM, Adrian Tritschler a...@ajft.org wrote:

  Benjamin == Benjamin Alexander b...@alexanderonline.org writes:

 Benjamin Hello all!  I've been a happy (!) user of Mobile-Org for some
 Benjamin time now, on the iPhone, and a few months ago I switched to
 Benjamin Dropbox integration.  Things have gone fine until today when I
 Benjamin synced for the first time in a week or so.  The Dropbox
 Benjamin password that was saved, and had worked fine (and still works
 Benjamin from the web interface) simply gives an error message from
 Benjamin within the Settings page of Mobile-Org.

 Benjamin Dropbox Error Bad username and password or network error.

 The same thing has just happened to me.  I've been using org-mode for
 years, org-mobile on my iPhone for a couple of years (I suspect) and on
 an Android tablet for about a year.  I went away on holiday a week ago
 and had no net access, when I came back I tried to synch. the iPhone app
 and I get the same error.

 Dropbox integration from other iPhone apps still works fine, as does
 browsing via safari.

 Benjamin The strange thing is, the Dropbox app works fine.  So it isn't
 Benjamin a network problem (at least, not a simple case of being
 Benjamin offline). And I've tried retyping the password, with and
 Benjamin without a terminating return as the known issue from the
 Benjamin Mobile-Org web page suggests.  The files are still on Dropbox
 Benjamin and I can still push and pull (though there is nothing new to
 Benjamin pull) from within emacs.

 Benjamin I'm really stumped.  I don't even know where to look on the
 Benjamin iPhone for log messages.  I've even tried using my old phone
 Benjamin (which was configured to use my now discontinued webdav
 Benjamin server) using dropbox and I get the same error.

 Benjamin My current phone is running iOS 6.0.1 (10A523). I have not
 Benjamin installed the new iOS update yet.  I am considering doing that
 Benjamin to see if it helps, but I know I can't roll it back.

 Happens on my phone running iOS 6.0.1 and 6.1 (updated some time this
 afternoon)

 Benjamin I've also considered deleting mobile-org and reinstalling, but
 Benjamin I'm worried that mobile-org isn't in the App store anymore so
 Benjamin I may lose all functionality!

 Benjamin Does anyone have any suggestions?  I would really appreciate
 Benjamin it.

 Benjamin Best Wishes, Ben

   Adrian
 --
 Adrian Tritschler  mailto:a...@ajft.org
 Latitude 38°S, Longitude 145°E, Altitude 50m,  Shoe size 44





Re: [O] MobileOrg status

2013-01-21 Thread Matthew Jones
Just to be clear... this is MobileOrg for IOS the Android version is
going strong and is still available via the Play store.


On Fri, Jan 18, 2013 at 1:24 AM, Mobile Org mobile...@spandrel.org wrote:

 Hi Everyone,

 Here is a quick status update regarding MobileOrg.

 Several people have stepped in to take over maintaining MobileOrg in
 place of Richard. His excellent work has gotten the app very far and
 we look forward to improving it further.

 We've had a lot of questions regarding getting MobileOrg back in the
 app store and we intend to do so as soon as possible.

 We are currently working out all the logistics for the transition to
 new maintainers and adding support for v1 of the Dropbox API.

 When the app is back in the store we'll be sure to notify the list for
 those interested.

 You can track the status and check out the current code on github:
 https://github.com/MobileOrg/mobileorg

 We will be tracking all issues there as well.

 Feel free to contact us directly if you have any further questions and
 thanks for the continued interest!

 -MobileOrg team




Re: [O] MobileOrg for Android question about calendar integration

2012-06-05 Thread Matthew Jones
Hey Stephen, glad you like the app!

As long as that calendar is set to sync then it will pull them into the web
based Google Calendar service.  The way that I made sure this would happen
is to create the calendar from the web interface and then make sure that is
synced to the phone... then go into the MobileOrg settings a select that
calendar specifically.  It all works like a champ... let me know if you
have any issues with it.

On Tue, Jun 5, 2012 at 11:19 AM, Stephen Eglen s.j.eg...@damtp.cam.ac.ukwrote:

 Hi,
 I love the new MobileOrg Android app, especially the Calendar
 integration.

 A quick question: if I sync on the android app, I see new org agenda
 items in the phone's Calendar.  Do those items sync back from my phone
 to appear also on the web at google.com/calendar?   For now, my
 org-generated items are on the phone, but not the web application.

 Thanks, Stephen




[O] MobileOrg for Android 0.9 Released

2012-05-28 Thread Matthew Jones
I'd like to let the org-mode community know that we have released version
0.9.   There have been many changes since the last time I announced a
release and we've gone through a lot of changes.

We also now have a Google+ page:

https://plus.google.com/u/0/101083268903948579162

and our own Google Group for discussions:

http://groups.google.com/group/mobileorg-android

Here are some changes from recent releases:


Changes for 0.9.0:

- Basic Time Clocking support
- Support Ubuntu One as a Synchronizer
- Updated Spanish translation

Changes for 0.8.5:

- Chinese Translation
- Fix crash on empty files bug
- Change default between View Node and Edit Node
- Add timestamped entries to calendar
- Add location to calendar entries (from LOCATION property)

- Fix timezone and scheduling bugs

Changes for 0.8.4:
- Schedule and Deadline support in capture and edit

- Revamped Capture/Edit Display
- Calendar Support Bug fixes

- Add ability to add sub-nodes to capture (require org-mode patch)
- Edit Dialog Improvements

- Bug fixes
- Better support for Android 4.0


Re: [O] android mobileorg: next week in agenda

2012-03-12 Thread Matthew Jones
Renato, not at this time... but if it's something that you'd like to see
please open a feature request in our issue tracker on the github page:
https://github.com/matburt/mobileorg-android/issues

On Fri, Mar 9, 2012 at 1:39 PM, Renato renn...@gmail.com wrote:

 Hello, wasn't able to find an answer to this. Is it possible in
 the Android MobileOrg version, when viewing agenda, to go to next or
 previous week? I'm using version 0.8.3

 best wishes,
 renato




Re: [O] android mobile org question on capture

2012-02-18 Thread Matthew Jones
Hi Renato, I'm the maintainer of MobileOrg for Android.

Regarding #1 this seems like an org-mode thing and I'm not too sure...
usually I just look at these and file them manually, but this could get
untenable if you have a lot of content

on #2  I think we have it solved here:
https://github.com/matburt/mobileorg-android/issues/168
and it will be available in the next version (0.8.4+)

Thanks :)

On Fri, Feb 17, 2012 at 9:24 AM, Renato renn...@gmail.com wrote:

 Hi, I have finally set up mobile org on my android phone, with calendar
 sync, and like it very much.

 Regarding the capture functionality, is it (or will it be) possible to:

 1) define wich file and under which header the TODOs get written to. I
 have a notes.org file with Todo section where I store all my generic
 TODOs... alternativly I guess I could set up an automated refile when
 calling org-mobile-pull

 2) define SCHEDULED and DEADLINE for the note. This would also be handy
 because captured notes would appear right away in my android
 calendar, without having to get to my pc, org-mobile-pull, add a
 deadline, refile, and finally org-mobile-push.

 I just upgraded from 0.8.0 to 0.8.3

 cheers and a big thank you to who is writing this software,
 renato




Re: [O] MobileOrg Android 0.8.0 Released, many new features!

2012-02-08 Thread Matthew Jones
Richard the iphone version of MobileOrg is maintained by Richard
Moreland.  Look at his MobileOrg IOS support page here:

http://mobileorg.ncogni.to/support/

It's best to contact him via email, I don't think he follows this list much.

On Wed, Feb 8, 2012 at 6:54 AM, Richard Riley rile...@gmail.com wrote:


 I was wondering Carsten if you actively use the iPhone version? I posted
 some issues here but go no feedback - I cant get it working following a
 config error in my set up - after correcting it and then syncing the
 phone it falls over as described in my earlier post.





Re: [O] MobileOrg for Android 0.8.0

2012-02-08 Thread Matthew Jones
Can you tell me what you mean by this?

On Wed, Feb 8, 2012 at 3:27 AM, Sven Bretfeld sven.bretf...@rub.de wrote:

 Hi

 Tom Regner t...@goochesa.de writes:

  This issue is closed; and with version 0.8.1 my scheduled items /are/
  indeed put in my google-calendar - just awesome.

 Yes, it's working now with the new update. It seems to work only for
 scheduled items and deadlines. Wouldn't it be possible to have normal
 appointments synced?

 Sven

 --
 Prof. Dr. Sven Bretfeld
  \ CEntrum für
 CERES  \ REligionswissenschaftliche
 \_Studien__
 Ruhr-Universität Bochum
 Universitätsstraße 150
 D-44780 Bochum
 http://www.ceres.ruhr-uni-bochum.de/en/participants/details/sven-bretfeld/




Re: [O] MobileOrg 0.8.1 for Android

2012-02-08 Thread Matthew Jones
Tom:  We directly integrate with the calendar service on the android
device.  You can find documentation here:
https://github.com/matburt/mobileorg-android/wiki/Setting-up-Calendar-Support

The gist of it is this:
1. create a calendar in google cal (you can do this on the web and it will
sync the empty calendar to your phone)
2. go to mobileorg's settings and choose that calendar and make some of
other choice in the calendar section
3. (Optionally) select the clear your database in MobileOrg settings.
 MobileOrg only looks at newly synced content to determine what to add to
the calendar.  Clearing your database will let MobileOrg re-sync all files.
4. Sync and we will automatically put those items into your chosen calendar
(and will continue to do this on subsequent syncs).  By virtual of it being
a Google calendar it will automatically get synced up to google's calendar
services on calendar.google.com

Sven: I'm adding a feature request right now to will allow you to trigger a
capture directly from tasker/locale and to have a widget that is just the
icon and will trigger the capture interface.
... but the old scripting method should work.


On Wed, Feb 8, 2012 at 3:37 PM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi Tom

 Tom Regner t...@goochesa.de writes:

  I seldom capture notes, so a Capture shortcut is of no use to
  me; I almost always capture via the android share this facility.

 For those who miss a Capture shortcut: It's also possible to create an
 icon that calls the capture function. Tasker would be a way to do this.
 It's explained on the Scripting site of the MobileOrg Github.

 Greetings,

 Sven




Re: [O] MobileOrg for Android 0.8.0

2012-02-08 Thread Matthew Jones
What org mechanism do you use to put that date in there?  We do key
specifically from those tags that you mentioned.


On Wed, Feb 8, 2012 at 1:24 PM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi Matthew

 Matthew Jones bsdmatb...@gmail.com writes:

  Can you tell me what you mean by this?

 What is working is:

 * TODO Wash clothes
  SCHEDULED: 2012-02-08 Mi 19:00

 and

 * TODO Prepare Paper
  DEADLINE: 2012-02-08 Mi 20:00

 What seems not to work is:

 * Lunch with Sheldon Cooper
  2012-02-08 Mi 12:00-13:00

 Is that supposed to work? I just tested it again. Calendar sync seems to
 ignore appointments, i.e. dates without SCHEDULED or DEADLINE. I guess
 that these strings are used as triggers for the Calendar sync mechanism.

 Greetings,

 Sven




[O] MobileOrg Android 0.8.0 Released, many new features!

2012-02-07 Thread Matthew Jones
MobileOrg for Android has gone through a lot of changes recently. We've
added a lot of great features that users have been asking for and fixed
some big issues that have been bothering people.

If you have tried MobileOrg in the past and have difficulties with it or it
didn't have a feature you wanted then I hope you'll give it another try.

Some of the great new features:

- New Storage System (org content is now stored in the database)
- Search Support
- Android Calendar Integration (with reminders)
  This will also allow you to sync your org schedules and deadlines into a
Google Calendar.
- Synchronize over SSH/SCP
  Password only, looking to implement key-based auth in the future
- Locale/Tasker Plugin
  Trigger a sync action from any conditions
- Self-signed ssl webdav certificates
  Intelligent handling, will also warn you if the certificate changes
- Edit tags
- Capture only mode
- Complete UI revamp
- Spanish translation
- Improved synchronization system
- Improved edit and capture modes
- Full documentation in wiki

You can find more release information on the wiki:

https://github.com/matburt/mobileorg-android/wiki

We've also written more complete documentation including screenshots:

https://github.com/matburt/mobileorg-android/wiki/Documentation

Henning Weiss has been instrumental in this release, he implemented a lot
of the nice features you see here.  We are still in active development and
appreciate your feedback.


Re: [O] MobileOrg for Android 0.8.0

2012-02-07 Thread Matthew Jones
Hey Sven, glad you like it!

1. Calendar sync only looks at new items as they come in.  So anything
that's on your device already will need to be rey-synced to pick up the
changes.  The easiest way to do this is to use the Clear Database option
under the settings menu.  After doing this you can re-sync your files and
it will re-process your SCHEDULE and DEADLINE items into the calendar.

2. The storage and edit handling aspect of MobileOrg has been completely
rewritten.  It is now much safer to edit and capture files than in the
past.  However, we still aren't editing files directly since org-mode in
emacs still wouldn't know how to handle it.  Hopefully in the future that
will change, but for now at least... we've made it safer from the MobileOrg
side.

3. Absolutely... it's already a feature request:
https://github.com/matburt/mobileorg-android/issues/146  So hopefully we
can have that implemented in the near future.


On Tue, Feb 7, 2012 at 3:11 AM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi Matthew, hi to all

 Thank you very much for MobileOrg 0.8. It has improved very much since
 the last update. Really good work.

 I have a few questions.

 1. Calendar Sync doesn't seem to work on my device. I chose one of my
   GoogleCalendars to sync to. But the Test item I created didn't show
   up in the stock calendar app, even after a while. Do I have to create
   a new calendar to sync to? Or is it necessary to trigger syncing
   somehow? On the other hand, if a GoogleCalendar is fine, will it sync
   to the GoogleCalendar proper?

 2. Is it now possible to edit org-files within MobileOrg, i.e. actually
   use MobileOrg as an editor for papers in orgmode? In the past I had
   occasions where edits were swallowed after syncing. Now, I added just
   one sentence to an existing org-file in 0.8. It worked! So, is it
   save to entrust long text-edits to MobileOrg?

 3. Would it be possible (in the long run) to have TAGS as a pop-up to
   choose from in the Capture feature? Just like TODO keywords?

 Thanks again,

 Sven




Re: [O] MobileOrg for Android 0.8.0

2012-02-07 Thread Matthew Jones
Calendar items are only added when new content comes in, so if you are
having trouble with them not showing up you can try to clear your database
and re-sync.  Afterwards we'll pick up any changes to your org files and
handle it automatically.

On Tue, Feb 7, 2012 at 3:42 AM, Tom Regner t...@tomsdiner.org wrote:

 Hi Sven,

 Sven Bretfeld sven.bretf...@gmx.ch writes:

 
  Thank you very much for MobileOrg 0.8. It has improved very much since
  the last update. Really good work.

 I second that - it's an awesome release.

  1. Calendar Sync doesn't seem to work on my device. I chose one of my
 GoogleCalendars to sync to. But the Test item I created didn't show
 up in the stock calendar app, even after a while. Do I have to create
 a new calendar to sync to? Or is it necessary to trigger syncing
 somehow? On the other hand, if a GoogleCalendar is fine, will it sync
 to the GoogleCalendar proper?

 I tried a lot of the possible combinations of actions -- it never
 worked; I opend an issue here
 https://github.com/matburt/mobileorg-android/issues/151

 kind regards,
 Tom




Re: [O] MobileOrg Android 0.8.0 Released, many new features!

2012-02-07 Thread Matthew Jones
Hey Carson... I've never thought of putting it on the amazon store.  I'll
check on that in the meantime if you want to use it and the Fire can
install apks directly you can download the latest release here:

http://matburt.net/files/MobileOrg-release.apk

On Tue, Feb 7, 2012 at 7:28 PM, Carson Chittom car...@wistly.net wrote:

 Matthew Jones bsdmatb...@gmail.com writes:

  MobileOrg for Android has gone through a lot of changes recently. We've
  added a lot of great features that users have been asking for and fixed
  some big issues that have been bothering people.

 Awesome!  I can't wait to try it out.

 Any chance it will be available via Amazon?  I'm thinking of my wife's
 Kindle Fire here.







Re: [O] Google Tasks Integration

2012-02-02 Thread Matthew Jones
Hey guys... I'm the maintainer of MobileOrg for Android.  We've been
implementing a lot of features lately and have a big release coming up this
weekend.

One thing that we've been working on is being able to integrate MobileOrg
with the Calendar on Android devices.  I'm hoping it can make it into the
release this weekend.  If you want to follow the progress we're tracking it
in this branch until we deem it stable enough:

https://github.com/matburt/mobileorg-android/tree/calendar


On Wed, Feb 1, 2012 at 3:35 PM, Simon Thum simon.t...@gmx.de wrote:

 On 01/31/2012 08:10 PM, Eric S Fraga wrote:

 Simon Thumsimon.t...@gmx.de  writes:

  On 01/31/2012 02:12 PM, Eric S Fraga wrote:

 I would be very interested in this.  I have links to and from google
 calendar for appointments but could not figure out how to do either
 direction for TODO items.

 You might want to give my script a try:

 https://github.com/simonthum/**ical2orghttps://github.com/simonthum/ical2org

 I'm using it against SoGo but I reckon any iCalendar thing would work,
 which TTBOMK includes google calendar.

 Cheers,

 Simon


 Thanks.  I already have an equivalent (described here a long time ago
 and also on Worg, albeit out of date -- sorry).  The problem is that
 Google doesn't export the TODO list when you ask for an ics file for a
 particular calendar.  At least, I've not figured out how to get the list
 exported.

 I see. Is your script published?

 I might explore CalDAV a bit more, but from what I saw the spec, which
 limits one collection to one item type, may be the root cause. Although an
 ics can contain multiple collections, I wouldn't wonder seeing one file per
 item type setups.

 But that's just a wild guess.

 Cheers,

 Simon




Re: [O] Time tracking with MobileOrg

2011-12-12 Thread Matthew Jones
Hey Tobias, I think this would be a great feature for the Android version.
 It would be helpful if you could add this as a feature request in the
issue tracker:

https://github.com/matburt/mobileorg-android/issues

As well as any ideas you have on how it should work... that will help us
prioritize it as a feature.

On Thu, Dec 8, 2011 at 2:40 PM, Tobias Kniep opa.kistb...@web.de wrote:

 A year ago, there has been a discussion on this list about tracking time
 with MobileOrg (http://article.gmane.org/gmane.emacs.orgmode/31486) but
 I couldn't find any more recent information. I'm using the Android
 version of MobileOrg and would really like to do time tracking for my
 orgmode tasks from my mobile. Is there any working solution out there?

 Best regards,
 Tobias








Re: [O] MobileOrg Android

2011-06-13 Thread Matthew Jones
Hi Nathan, I'm the maintainer of MobileOrg for Android.   Have you read the
org-mode documentation for MobileOrg?

http://orgmode.org/manual/MobileOrg.html#MobileOrg

That's a good place to start in figuring out what MobileOrg expects of
org-mode, and also what org-mode expects from MobileOrg.

The synchronization modes refer mostly to where you stage your org-mode
files.   The outline mode will work in the upcoming version of the
application.   You should definitely read the org-mode documentation about
MobileOrg and I think that will give you a pretty good idea of how
synchronization is handled from both sides.

On Sat, Jun 11, 2011 at 2:11 PM, Nathan Neff nathan.n...@gmail.com wrote:

 I just joined the 21st century and got a smart phone.

 I downloaded the MobileOrg for Android application, and have some
 questions,
 most of them are probably dumb, because I have only played with the
 phone for a bit.

 1) Is there documentation regarding the various setups/syncing modes?
 I would like to know how to get data off my phone, put .org files on my
 phone.
 I know how to use Dropsend, etc, but I would probably rather just use
 rsync or git to
 sync the phone's data.

 2) The menu for MobileOrg Android has an Outline button, but it
 doesn't do anything.

 3) In Configure Synchronization Settings there's a setting where you
 specify where index.org
 is.  What do I put in there?  Is this setting affected by the other
 Synchronization settings?

 4) What does Sync actually mean?  Is it like rsync where it copies
 the latest file, or does it attempt
 a merge?  What happens if you have new stuff in each file?  Does
 DropSend asking you which one you want, or
 provide a diff tool?


 As you can see, I'm very new to Android and have no idea what I'm doing :-)

 I do plan (within the next few months) to start learning how to
 develop on Android platform,
 and I think that Mobile Org Android would be a good Scratch your own
 itch program to start with.

 I'd be more than willing to start a FAQ on the Github Wiki with any
 answers that I get from this post.

 Thanks,
 --Nate




Re: [O] MobileOrg-Android = agendas.org missing

2011-05-14 Thread Matthew Jones
Good to hear!

On Fri, May 13, 2011 at 8:11 PM, Alfredo Duplat aldup...@gmail.com wrote:

 Finally is working.

 I spiked one step in the process. I never reload org after update...
 and that was the problem.
 Thanks for your help


 On 5/13/11, Alfredo Duplat aldup...@gmail.com wrote:
  This is from my .emacs
 
 
  (custom-set-variables
   '(org-agenda-files (quote (~/Backup.sinc/test/emacs/mygtd.org)))
   '(org-mobile-files (quote (org-agenda-files
  org-agenda-text-search-extra-files)))
   '(org-mobile-force-id-on-agenda-items nil)
   '(save-place t nil (saveplace))
   '(show-paren-mode t)
   '(text-mode-hook (quote (turn-on-flyspell turn-on-auto-fill
  text-mode-hook-identify
 
 
  ;; org-mode predeterminado
  (setq default-major-mode 'org-mode)
 
  ;; otras configuraciones para org-mode
  (require 'org-install)
  (add-to-list 'auto-mode-alist '(\\.org$ . org-mode))
  (define-key global-map \C-cl 'org-store-link)
  (define-key global-map \C-ca 'org-agenda)
 
 
 
 
  ;; MobileOrg
  ;; Set to the location of your Org files on your local system
  (setq org-directory /home/alfredo/Backup.sinc/test/emacs)
  ;;set org mobile for pull
  (setq org-mobile-inbox-for-pull ~/Backup.sinc/test/emacs/inbox.org)
  ;; Set to your Dropbox root directory/MobileOrg.
  (setq org-mobile-directory /home/alfredo/Dropbox/MobileOrg)
  ;;Pendiente Agenda
  (setq org-agenda-files (quote (~/Backup.sinc/test/emacs/mygtd.org)))
  (setq org-todo-keywords
  '((sequence TODO WAITING | DONE DELEGATED CANCELLED)))
 
 
  And this is from my org file
 
 
  #+STARTUP: overview
  #+TAGS: DISSERTATION(d) WORK(w) FAMILY(f) CASA(c) ALF(a) Money(m)
  #+ARCHIVE: %s_done::
  #+PROPERTY: Effort_ALL 0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00
 8:00
  #+COLUMNS: %40ITEM(Task) %17Effort(Estimated Effort){:} %CLOCKSUM
  #+SEQ_TODO: TODO ACTIVE CANCELLED DONE
 
  -
  Thanks
 
 
 
  On 5/12/11, Matthew Jones bsdmatb...@gmail.com wrote:
  Can you show me some of your org configuration?
 
  On Fri, May 13, 2011 at 12:06 AM, Alfredo Duplat aldup...@gmail.com
  wrote:
 
  I upgrade org-mode via M-x list-packages. Also I upgrade MobileOrg.
 
  Right now, I have another problem: when I run (org-mobile-push) I got
  the following messages:
 
  Creating agendas...
  OVERVIEW
  mapconcat: Wrong type argument: listp, 58
 
 
 
 
  On 5/12/11, Alfredo Duplat aldup...@gmail.com wrote:
   You all are right:
  
   Org-mode version 6.33x
  
   I will install the new one... and also the new MobileOrg.
  
   Thanks,
  
  
   On 5/12/11, Matthew Jones bsdmatb...@gmail.com wrote:
   You might also want to upgrade your version of MobileOrg... the most
   recent
   version in the android market is 0.5.5
  
   http://matburt.net
  
  
   On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com
 
   wrote:
  
   Hi there:
  
   I tried to follow carefully all the documentation but I have a
   problem
   using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
   agendas.org's file is missing in /Dropbox/MobileOrg. Therefore,
 when
   I
   sync my phone the Agenda View is empty.  What could be the problem?
  
   Everything works just fine with my gtd.org's file and also the
   inbox.org.
  
   Thanks,
  
   A.
  
   --
   Alfredo Duplat
  
  
  
  
  
   --
   Alfredo Duplat
  
 
 
  --
  Alfredo Duplat
 
 
 
 
  --
  Alfredo Duplat
 


 --
 Alfredo Duplat



Re: [O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Matthew Jones
It sounds like you are using an old version org-mode what does M-x
org-version say?

the current version is 7.5

http://matburt.net


On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com wrote:

 Hi there:

 I tried to follow carefully all the documentation but I have a problem
 using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
 agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
 sync my phone the Agenda View is empty.  What could be the problem?

 Everything works just fine with my gtd.org's file and also the inbox.org.

 Thanks,

 A.

 --
 Alfredo Duplat




Re: [O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Matthew Jones
You might also want to upgrade your version of MobileOrg... the most recent
version in the android market is 0.5.5

http://matburt.net


On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com wrote:

 Hi there:

 I tried to follow carefully all the documentation but I have a problem
 using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
 agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
 sync my phone the Agenda View is empty.  What could be the problem?

 Everything works just fine with my gtd.org's file and also the inbox.org.

 Thanks,

 A.

 --
 Alfredo Duplat




Re: [O] MobileOrg-Android = agendas.org missing

2011-05-12 Thread Matthew Jones
Can you show me some of your org configuration?

On Fri, May 13, 2011 at 12:06 AM, Alfredo Duplat aldup...@gmail.com wrote:

 I upgrade org-mode via M-x list-packages. Also I upgrade MobileOrg.

 Right now, I have another problem: when I run (org-mobile-push) I got
 the following messages:

 Creating agendas...
 OVERVIEW
 mapconcat: Wrong type argument: listp, 58




 On 5/12/11, Alfredo Duplat aldup...@gmail.com wrote:
  You all are right:
 
  Org-mode version 6.33x
 
  I will install the new one... and also the new MobileOrg.
 
  Thanks,
 
 
  On 5/12/11, Matthew Jones bsdmatb...@gmail.com wrote:
  You might also want to upgrade your version of MobileOrg... the most
  recent
  version in the android market is 0.5.5
 
  http://matburt.net
 
 
  On Thu, May 12, 2011 at 9:44 PM, Alfredo Duplat aldup...@gmail.com
  wrote:
 
  Hi there:
 
  I tried to follow carefully all the documentation but I have a problem
  using MobileOrg-Android (ver 0.5.2). When I run org-mobile-push the
  agendas.org's file is missing in /Dropbox/MobileOrg. Therefore, when I
  sync my phone the Agenda View is empty.  What could be the problem?
 
  Everything works just fine with my gtd.org's file and also the
  inbox.org.
 
  Thanks,
 
  A.
 
  --
  Alfredo Duplat
 
 
 
 
 
  --
  Alfredo Duplat
 


 --
 Alfredo Duplat



Re: [O] mobileorg android refuses to syn with mydisk.se

2011-05-10 Thread Matthew Jones
Hi Robert... I'm the developer for MobileOrg on Android, we have a known
issue with self-signed certificates.   What version of MobileOrg are you
using?  If you visit the site in the Android browser do you get a
certificate notification also?

On Tue, May 10, 2011 at 11:30 AM, Robert Goldman rpgold...@sift.infowrote:

 Using mydisk.se, when I try to sync I get an SSL error --- not trusted
 server certificate.

 Interestingly, neither FF nor Google Chrome on my laptop have any issue
 with this server.  And my iPod Touch's copy of Mobile Org is happy with
 mydisk.se, too.

 Unfortunately, MobileOrg does not offer any option to inspect the cert
 and decide to accept it.

 Is anyone else having this problem?  Is it fixable?

 thanks,
 r




Re: [O] mobileorg android refuses to syn with mydisk.se

2011-05-10 Thread Matthew Jones
Also... what version of Android are you using?

On Tue, May 10, 2011 at 1:34 PM, Matthew Jones bsdmatb...@gmail.com wrote:

 Hi Robert... I'm the developer for MobileOrg on Android, we have a known
 issue with self-signed certificates.   What version of MobileOrg are you
 using?  If you visit the site in the Android browser do you get a
 certificate notification also?

 On Tue, May 10, 2011 at 11:30 AM, Robert Goldman rpgold...@sift.infowrote:

 Using mydisk.se, when I try to sync I get an SSL error --- not trusted
 server certificate.

 Interestingly, neither FF nor Google Chrome on my laptop have any issue
 with this server.  And my iPod Touch's copy of Mobile Org is happy with
 mydisk.se, too.

 Unfortunately, MobileOrg does not offer any option to inspect the cert
 and decide to accept it.

 Is anyone else having this problem?  Is it fixable?

 thanks,
 r





Re: [O] mobileorg android refuses to syn with mydisk.se

2011-05-10 Thread Matthew Jones
Unfortunately this is a known critical issue which I have had great
difficulty in solving:

https://github.com/matburt/mobileorg-android/issues/22

https://github.com/matburt/mobileorg-android/issues/22The workaround in
the case of mydisk.se, to say nothing of whether this would be acceptable to
you, is to use the non-https version of the mydisk.se webdav system.  This
is actually the first I have heard that mydisk's https has issues with
Android's certificate system.

I suspect there is some final solution to this problem, but I'm still
working on it... I'd recommend adding a note to that bug I just posted above
with the details that you have listed here and when I close it (hopefully
for the 0.6.0 release) you will be notified of it.

On Tue, May 10, 2011 at 3:31 PM, Robert Goldman rpgold...@sift.info wrote:

 On 5/10/11 May 10 -12:34 PM, Matthew Jones wrote:
  Hi Robert... I'm the developer for MobileOrg on Android, we have a known
  issue with self-signed certificates.   What version of MobileOrg are you
  using?  If you visit the site in the Android browser do you get a
  certificate notification also?

 Yes, I do, but I get the opportunity to continue through the certificate
 notification.

 this is android 2.2

 Best,
 r





Re: [O] MobileOrg Android 0.5.4 Release - Now with Tablet support

2011-05-04 Thread Matthew Jones
This is extremely bad, I had tried to thoroughly test all 3 sync
mechanisms I'm going to try to test this later but would you happen to
be able to capture the Logcat output?

On Wed, May 4, 2011 at 7:25 AM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi Matthew

 Thank you very much for the new version. I'm just testing the new
 functions. MobileOrg will be really really good after all the new
 features will be working. Nice work.

 There are some issues I have detected so far (HTC Desire HD, Android
 2.2.1, Dropbox-sync, completely cleaned [deleted] files before
 installing):

 *Changed Todo States will Not Change on the Phone*

 * NEXT Some Task :HOME:

 changed on the PC to

 * DEFERRED Some Task :HOME:

 After syncing, the phone still shows

 * NEXT Some Task :HOME:

 On the other hand, changing Todo states on the phone works and changes
 the todo state on the PC accordingly after syncing.

 *TAGs don't seem to work*

 Adding a new task with the Advanced Capture feature doesn't recognize
 tags for me. A tag :HOME: is neither shown in the New Notes view on
 the phone, nor on the PC after syncing.

 *Changed body edits are lost on syncing*

 * NEXT Call Somebody :PHONE:

 changed on the phone to

 * NEXT Call Somebody :PHONE:
  Phone number is 0154 13233

 After syncing, org-pull doesn't announce a new edit. The addition is
 lost on both, the phone and it never arrived on the PC.

 After I have written the above I made some more tests and it becomes
 clear now that there is a serious syncing bug. In general, syncing
 doesn't recognize changes made on the PC. Even adding a new task (or a
 new test in the body, or a todo change) on the PC is not recognized by
 the phone after pushing and syncing.

 I'm sure it will be a small problem due to the changes made necessary by
 the new features. I'm not sure if this is a problem caused by my setup.
 Can anybody confirm these problems?

 Greetings and thank you very much again,

 Sven

 Matthew Jones bsdmatb...@gmail.com writes:

  Hey folks, I'm happy to announce the availability of MobileOrg 0.5.4 for
  Android.
 
  You can find links and instructions on how to install it on the wiki
 page:
  https://github.com/matburt/mobileorg-android/wiki
 
  There is now also a donate version available in the Android Market.
 
  Here are some of the highlights:
 
  * Support for Gingerbread and Honeycomb tablets
  * Vastly improved Dropbox and WebDAV download speed
  * New Advanced Capture and Edit interface
  * Now can set TODO and PRIORITY from the Advanced capture interface
  * The ability to edit the body of existing notes
  * Fixes for many crashes, hangs, and force-closes
  * New notes are captured under the New Notes section,
edits are hidden from this view
  * Improved error handling and reporting
  * Fix crashes if the sdcard is unavailable to the application
 
  As always, please let me know if you have any issues... you can email me
  directly or file a bug report on Github



Re: [Orgmode] Mobileorg for Android: slow sync

2010-12-28 Thread Matthew Jones
Hi Jordi, we do seem to be having a slowness issue with the Dropbox API.
I'm working with the Dropbox developers to see what could be causing that.
I usually split large projects into their own files,  you can configure
which files get considered for the agenda by examining this section of the
org-mode manual for MobileOrg:

http://orgmode.org/org.html#Pushing-to-MobileOrg

http://matburt.net


On Tue, Dec 28, 2010 at 4:41 AM, Jordi Inglada jordi.ingl...@cesbio.cnes.fr
 wrote:

 Hi all,

 I am learning to use Mobileorg for Android these days. I find the
 application extremely useful.

 I am using Dropbox as a staging area and everything works
 (push/pull). However, I have an annoying behavior: the synchronization
 is *very* slow (up to several hours!).

 I was wondering if this can be due to the size of the org files and
 the number of nested outline levels. For example, my work.org file has
 over 10,000 lines.

 Does anybody have any similar experience about this?

 Any guidelines on the way of splitting large files?

 A way of not pushing all the agenda files to the staging area?

 Thank you very much.

 Jordi

 ___
 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


[Orgmode] MobileOrg Android 0.5.0 - Now with native Dropbox support!

2010-12-21 Thread Matthew Jones
Merry Christmas to all MobileOrg Android users... I am pleased to announce
the 0.5.0 release of MobileOrg for Android.

This release includes support for Dropbox which is the single most requested
feature.  I actually finished writing the code for this a few weeks ago, but
it has taken a little while for the Dropbox folks to approve it for release.

This release also includes some bug fixes, although I have not yet managed
to get a handle on the SSL bug if the CA is not recognized by the Android
OS.   I'm planning this for the 0.5.1 release

Also included in this release is some basic scripting for calling the
Capture interface from outside of the application, see this URL:

https://github.com/matburt/mobileorg-android/wiki/Scripting

for an example of how to use this from the Android Scripting Interface (now
called SL4A)

You can either download directly from the market or find a direct download
link to the APK on the wiki (for those who don't have access to the Market):

https://github.com/matburt/mobileorg-android/wiki

There are some really great features coming in the near future, including
better support for capturing notes with TODO, Priority, and Tags and support
for editing the body of an Org entry.  I'm also working on a UI overhaul
that should make things more attractive and easier to use.

Merry Christmas and, as always, please report any bugs or features on
Github: https://github.com/matburt/mobileorg-android/issues

http://matburt.net
___
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 Android 0.5.0 - Now with native Dropbox support!

2010-12-21 Thread Matthew Jones
The approval process is to ensure that the app meets their usage guidelines:

https://www.dropbox.com/developers/announcements/6

See the section Approval Process...

I think the most important thing is that they want to know that I will only
store the auth tokens instead of your actual username and password

http://matburt.net


On Tue, Dec 21, 2010 at 8:07 PM, Erik Iverson er...@ccbr.umn.edu wrote:

 On 12/21/2010 06:25 PM, Matthew Jones wrote:

 Merry Christmas to all MobileOrg Android users... I am pleased to announce
 the
 0.5.0 release of MobileOrg for Android.


 Great, looking forward to trying it out!



 This release includes support for Dropbox which is the single most
 requested
 feature.  I actually finished writing the code for this a few weeks ago,
 but it
 has taken a little while for the Dropbox folks to approve it for release.


 Can you briefly describe what this approval process it about?  As in, what
 exactly are they approving of?  That you use their trademarked name in the
 app perhaps?


___
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: Unexpceted error when syncing data from Dropbox

2010-12-13 Thread Matthew Jones
Have you guys tried reporting the issue directly to Richard?

http://mobileorg.ncogni.to/support/

or posting a bug:

https://github.com/richard/mobileorg/issues

This is a high volume mailing list and its easy for things to get drowned
out... talking to the maintainer directly would probably get you a
response/fix much faster.

http://matburt.net


On Mon, Dec 13, 2010 at 11:48 AM, Rodney Price rodpr...@raytheon.comwrote:

 MobileOrg has been throwing this error for me since the first day I
 tried it. (with iPod Touch)  I've given up on solving it.  I've tried
 everything mentioned below repeatedly, and I just don't have time to
 mess with it any longer.

 The purpose of this post is just to say me too and please fix
 MobileOrg's error messages.

 -Rod

 Greg Troxel g...@ir.bbn.com writes:

  Martin Stemplinger mstemplin...@gmx.de writes:
 
  today I upgraded to org-mode 7.4 (I'm using GNU Emacs 24.0.50.1
  (i386-mingw-nt6.1.7600) should that matter). Since then I receive the
  message Unexpected Error when I try to sync from Dropbox.
 
  I've been using 7.4 with my own webdav server (apache 2.2) with
  MobileOrg and it's been fine.
 
  I would suggest looking at the files in dropbox to see if they look ok.
  ___
  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

___
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] Re: MobileOrg Android 0.4.5

2010-12-09 Thread Matthew Jones
Hey Gour, it's hard for me to recommend a device to anyone since they are
usually based on regional availability and personal tastes.   You should
know that MobileOrg works exactly the same on all devices from Android 1.5 -
2.2+ and, unless things are going to change dramatically, I wouldn't expect
it to work any different on 2.3+

There are some things that I really like to have... like a physical
keyboard, and I require the ability to root the phone and have the option of
installing whatever ROM I see fit.

Having said that, my wife just got a Samsung Fascinate (Verizon's Galaxy S)
and it is a killer phone... other parts of the world may be able to get one
with a front facing camera, which is pretty slick.

Whatever device you get it is likely to come with the Gmail and regular
email app I don't think you can buy an Android phone that will not at
least let you set up an IMAP/POP/Exchange email account on.

I have no need to use Skype or any VOIP provider so I can't comment on that.

http://matburt.net


On Wed, Dec 8, 2010 at 11:12 AM, Gour g...@atmarama.net wrote:

 On Sun, 21 Nov 2010 18:25:34 -0500
  Matthew == Matthew Jones wrote:

 Hello Matthew,

 Matthew For those interested, I have released MobileOrg Android 0.4.5
 Matthew to the Market (search for MobileOrg) and for direct download
 Matthew here: http://matburt.net/files/mobileorg-release.apk

 I am considering to buy some mid-range Android phone since there are
 no (yet) Meego devices (except N900 for Maemo), and they will
 probably be quite expensive when they come out.

 I'd like to use MobileOrg and I'm curios what would you recommend
 between:

 a) Samsung I5800 Galaxy 3 and

 b) SE X10 Mini Pro or

 c) some other model?

 Afaict, X10 Mini Pro won't get support for 2.2 (soon), so I'm curious
 if running Android 2.2 phone is advantageous for MobileOrg app?

 Besides MobileOrg, I'd like to have some decent email client with IMAP
 support, would do some surfing with the browser and possible some
 Skype/SIP VoIP calls (investigating about Sipdroid)


 Sincerely,
 Gour

 --

 Gour  | Hlapicina, Croatia  | GPG key: CDBF17CA
 

 ___
 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 v0.4.8

2010-12-09 Thread Matthew Jones
Hi C64, you'll notice that the bug is still open in the bugtracker:
https://github.com/matburt/mobileorg-android/issues

It has not been fixed yet

http://matburt.net


On Wed, Dec 8, 2010 at 7:43 PM, C64 Whiz c64w...@gmail.com wrote:

 Hello,

 My Droid1 just got updated with Android v2.2.1 (FRG83D) and thought I'd
 give WebDav sync'ing over SSL another try.  This time the error I get is
 File https://index.org was not found.  Which is weird in itself
 as my web browser finds it fine.

 Next, I was informed of an upgrade for MobileOrg 0.4.8 so I upgraded.  Went
 into MobileOrg and got a Java null pointer exception...multiple times...in a
 row.  When I finally closed the error dialogs, my org data was gone.

 Next, I uninstalled the app and re-installed fresh.  Attempted a WebDav SSL
 Sync and got the same file https:. was not found error.  However, when
 I quit and go back into the application there was no more Java null pointer
 exception.

 Next, I reset my sync settings to the files on my SDCard and my data came
 back (though there were still parsing errors).

 So, it seems SSL syncing still isn't working but I'm not sure if its
 MobileOrg or still Android.  Anyone have other/similar experiences?

 --C64Whiz


 P.S. FWIW, I tried downloading a file from my SSL server (unknown SSL Cert
 signer) and downloading *still* doesn't work.  So above is probably just
 still an Android issue.

 ___
 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] Re: MobileOrg Android 0.4.5

2010-12-09 Thread Matthew Jones
No problem, I enjoy the project immensely.   Regarding Swype... I personally
can't stand it, I think it would be better if there were some visual
indication of what letter I was hovering over when dragging between them,
but that's my personal taste most people I know who use it, my wife
included, like it a lot more than the default keyboard.

I have an original Droid which is an amazing phone, even a year and half
after purchasing it.  I'm currently having an issue with it where I seem to
have lost touch sensitivity on the rightmost edge of the screen that is a
few centimeters wide... it doesn't prevent me from sliding to unlock or
anything like that, but it does keep me from hitting some of the rightmost
keys on the soft keyboard... it makes me really glad I have the hardware
keyboard now.

http://matburt.net


On Fri, Dec 10, 2010 at 12:31 AM, Gour g...@atmarama.net wrote:

 On Thu, 9 Dec 2010 13:31:53 -0500
  Matthew == Matthew Jones wrote:

 Matthew Hey Gour, it's hard for me to recommend a device to anyone
 Matthew since they are usually based on regional availability and
 Matthew You should know that MobileOrg works
 Matthew exactly the same on all devices from Android 1.5 - 2.2+ and,
 Matthew unless things are going to change dramatically, I wouldn't
 Matthew expect it to work any different on 2.3+

 That's nice to hear.

 Matthew There are some things that I really like to have... like a
 Matthew physical keyboard, and I require the ability to root the phone
 Matthew and have the option of installing whatever ROM I see fit.

 I'm not sure about the latter, but having keyboard is also appealing
 to me and yesterday I found out about the new Samsung Galaxy 551
 (something like Galaxy 3 with qwerty.)

 Matthew Having said that, my wife just got a Samsung Fascinate
 Matthew (Verizon's Galaxy S) and it is a killer phone...

 It's available here as well, but I'm curious if Swype is decent
 replacement for a keyboard?

 Matthew Whatever device you get it is likely to come with the Gmail
 Matthew and regular email app I don't think you can buy an Android
 Matthew phone that will not at least let you set up an
 Matthew IMAP/POP/Exchange email account on.

 Good...and I avoid using Gmail...


 Thank you for your input and, of course, for giving us MobileOrg. ;)


 Sincerely,
 Gour

 --

 Gour  | Hlapicina, Croatia  | GPG key: CDBF17CA
 

 ___
 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 v0.4.8

2010-12-09 Thread Matthew Jones
Hey C64 (and anyone who is interested)

I believe I have finally gotten a handle on the SSL bug for webdav
connections... I've tested it a little but if you could try it out for me
and verify that it works for you, I could feel more comfortable releasing it
to the general public through the market:

http://matburt.net/files/mobileorg-debug.apk

http://matburt.net


On Thu, Dec 9, 2010 at 2:04 PM, Matthew Jones bsdmatb...@gmail.com wrote:

 Hi C64, you'll notice that the bug is still open in the bugtracker:
 https://github.com/matburt/mobileorg-android/issues

 It has not been fixed yet

 http://matburt.net


 On Wed, Dec 8, 2010 at 7:43 PM, C64 Whiz c64w...@gmail.com wrote:

 Hello,

 My Droid1 just got updated with Android v2.2.1 (FRG83D) and thought I'd
 give WebDav sync'ing over SSL another try.  This time the error I get is
 File https://index.org was not found.  Which is weird in itself
 as my web browser finds it fine.

 Next, I was informed of an upgrade for MobileOrg 0.4.8 so I upgraded.
 Went into MobileOrg and got a Java null pointer exception...multiple
 times...in a row.  When I finally closed the error dialogs, my org data
 was gone.

 Next, I uninstalled the app and re-installed fresh.  Attempted a WebDav
 SSL Sync and got the same file https:. was not found error.  However,
 when I quit and go back into the application there was no more Java null
 pointer exception.

 Next, I reset my sync settings to the files on my SDCard and my data came
 back (though there were still parsing errors).

 So, it seems SSL syncing still isn't working but I'm not sure if its
 MobileOrg or still Android.  Anyone have other/similar experiences?

 --C64Whiz


 P.S. FWIW, I tried downloading a file from my SSL server (unknown SSL Cert
 signer) and downloading *still* doesn't work.  So above is probably just
 still an Android issue.

 ___
 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 and Voice Capturing (Android)

2010-12-07 Thread Matthew Jones
Hi Sven... that's a nice one, you might could add that to the scripts
section of the MobileOrg wiki.

Pretty soon the Capture interface will be extended to allow settings tags
and other things on captured notes... once these are in place I will extend
the CAPTURE action to also take these values as intent params.

http://matburt.net


On Tue, Dec 7, 2010 at 5:05 AM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi Matthew

 Matthew Jones bsdmatb...@gmail.com writes:

  Alright guys, I've gotten this to work I've posted an early build of
  MobileOrg that supports this here:
 
  http://matburt.net/files/mobileorg-debug.apk
 
  basically, you need to emit the action: com.matburt.mobileorg.CAPTURE
 
  it takes an extra intent value called txtValue which will
 pre-populate the
  text display.

 I was using the script for some days now and did all my capturing this
 way. It is completely stable and reliable on my HTC Magic with Android
 1.6. I see no hindrance for a release.

  import android
  droid = android.Android()
  message = droid.recognizeSpeech(Capture New Note).result
  a = droid.startActivity(com.matburt.mobileorg.CAPTURE, None, None,
  {'txtValue':message}, False)

 Is there a way to enlarge the 'extra' intent with some standard string?
 It would be nice to have a TODO keyword and a TAG inserted
 automatically. If you are like me, you tend to forget refiling the items
 of from-mobile.org regularly. An automatic TAG insertion could help to
 remind yourself that there is something new that needs to be cared
 about. I use to give a TAG :MIT: (Most Important Things [of the day])
 and have a respective Agenda View that I review several times a day. If
 newly captured items could appear in this list, I would never forget
 about the newly captured tasks. To my regret, I don't know anything
 about Python and its syntax, but I'm sure that the 'message' variable
 can be extended easily (what I have tried did never work).

 As a workaround I have written a simple shellscript for a Cronjob that
 starts Conky whenever there is something new in from-mobile.org. So my
 desktop reminds me to refile the new items. Maybe it is of some interest
 for anybody, so I give it below.

 Thanks again for your nice work.

 Greetings,

 Sven


 Here is the Script. Some values and paths have to be replaced to fit
 your needs:

 --8---cut here---start-8---
 #!/bin/bash

 KILLNR=$(ps ax | grep conky -c .*conkyrc-mobile | grep -v grep | sed 's/
 pts.*//g')
 NEWTASK=$(cat /home/sven/Dropbox/myconf/from-mobile.org | grep -v
 auto-revert | grep -v ^$ | grep -v 20[0-9][0-9])

 if [ -n $NEWTASK ];
 then
if [ -n $KILLNR ];
then
exit
 #   echo file is full, conky is running
else
conky -c ~/.conkyrc-mobile 
 #   echo file is full, conky is not running
fi
 else
if [ -n $KILLNR ];
then
kill $KILLNR
 #   echo file is empty, conky is running
else
exit
 #   echo file is empty, conky is not running
fi
 fi
 --8---cut here---end---8---

 This script needs a special configuration file .conkyrc-mobile to be
 placed in the home folder:

 --8---cut here---start-8---
 own_window yes
 own_window_type override
 own_window_transparent yes
 own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

 use_spacer right

 use_xft yes
 xftfont DejaVu Sans:size=18
 xftalpha 0.8
 text_buffer_size 2048

 update_interval 3.0

 draw_shades no

 draw_outline no
 draw_borders no
 uppercase no

 stippled_borders 3

 border_margin 9

 border_width 10

 default_color grey

 own_window_colour brown
 own_window_transparent yes

 alignment top_right

 gap_x 10
 gap_y 10

 TEXT
 $color

 ${Color green}NEW TASKS
 ${execi 10 cat /home/sven/Dropbox/myconf/from-mobile.org | grep -v
 auto-revert | grep -v ^$ | grep -v 20[0-9][0-9]}$color
 --8---cut here---end---8---

___
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] Specify files to be sync'ed

2010-12-07 Thread Matthew Jones
Hey Markus,

http://orgmode.org/manual/Pushing-to-MobileOrg.html#Pushing-to-MobileOrg

If you configure org-mobile-files to contain just the files you want copied
over, then that is all that will be synced during an org-mobile-push

http://matburt.net


On Tue, Dec 7, 2010 at 7:43 PM, Markus Heller helle...@gmail.com wrote:

 Hello list,

 I'm wondering if it is possible to specify a list of files for use with
 MobileOrg, as opposed to having all agenda files sync'ed.

 In case you're wondering why I would like to do this:  I'm working for a
 company, and I cannot put confidential information on a public webserver
 (I know Dropbox is encrypted and I can encrypt my org files).  I'd like
 to be able to just have one file with appointments etc. and one file
 with TODO items, nothing else.

 Is this possible?  From looking at the org manual, it doesn't seem like
 it.

 Thanks and Cheers
 Markus


 ___
 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 and Voice Capturing (Android)

2010-12-02 Thread Matthew Jones
Mark, you are exactly right about this... I made some good progress on it
last night, I will reply to this thread once I have something concrete.
Would love to get you guys to test and earlier version of it before I
release it to the market with that change.

http://matburt.net


On Thu, Dec 2, 2010 at 2:14 PM, Mark Elston m_els...@comcast.net wrote:

 On 12/2/2010 12:02 AM, Sven Bretfeld wrote:

 Mark Elstonm_els...@comcast.net  writes:

  I don't know about the current state of MobileOrg and its
 implementation details but I would look at the two sl4a
 methods:

   startActivity, and
   startActivityForResult.


 Yea, I've tried that already.

 droid.startActivity(com.matburt.mobileorg.Capture);

 looks right to me, as far as I understand the syntax but the script
 starts and finishes without anything happening. :-(

 Sven


 Sven,

 Matthew said in an earlier email that he has some work to do
 on the Capture activity to make this work.  I am not sure what
 that work is - it *could* be that there is no Intent filter
 for that Activity in the manifest for it to respond to.  That
 would have the effect you noticed as (I think) both of the
 above methods create Intents and send them to the app to start
 the Activity.

 But whatever it is you will likely have to wait for him to finish
 before this will work.

 Mark


 ___
 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 and Voice Capturing (Android)

2010-12-02 Thread Matthew Jones
Alright guys, I've gotten this to work I've posted an early build of
MobileOrg that supports this here:

http://matburt.net/files/mobileorg-debug.apk

basically, you need to emit the action: com.matburt.mobileorg.CAPTURE

it takes an extra intent value called txtValue which will pre-populate
the text display.

This will be included in the next release of MobileOrg, but if you guys
could give it a try with that debug build and make sure there aren't any
glaring issues that would be much appreciated (there are some other cool new
features in there too, like colored todo tags).   I plan on providing a way
of launching this speech recognition capture interface if I can find a good
way to do it but in the meantime here's an example Python script that works
with SL4A/ASE:

import android
droid = android.Android()
message = droid.recognizeSpeech(Capture New Note).result
a = droid.startActivity(com.matburt.mobileorg.CAPTURE, None, None,
{'txtValue':message}, False)

http://matburt.net


On Thu, Dec 2, 2010 at 5:43 PM, Mark Elston m_els...@comcast.net wrote:

 Looking forward to it Matthew.  Thanks for the hard work.

 Mark


 On 12/2/2010 12:41 PM, Matthew Jones wrote:

 Mark, you are exactly right about this... I made some good progress on
 it last night, I will reply to this thread once I have something
 concrete.   Would love to get you guys to test and earlier version of it
 before I release it to the market with that change.

 http://matburt.net


 On Thu, Dec 2, 2010 at 2:14 PM, Mark Elston m_els...@comcast.net
 mailto:m_els...@comcast.net wrote:
 ...

Sven,

Matthew said in an earlier email that he has some work to do
on the Capture activity to make this work.  I am not sure what
that work is - it *could* be that there is no Intent filter
for that Activity in the manifest for it to respond to.  That
would have the effect you noticed as (I think) both of the
above methods create Intents and send them to the app to start
the Activity.

But whatever it is you will likely have to wait for him to finish
before this will work.

Mark


___
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-android] sync error, sdcard, index.org was not found

2010-12-01 Thread Matthew Jones
Those setup notes are a little out of date I'll update them now, but you
also need to read through this section of the org mode manual:

http://orgmode.org/manual/MobileOrg.html#MobileOrg

It sounds like you aren't using org-mobile-push to generate the staging
area.

http://matburt.net


On Tue, Nov 30, 2010 at 4:33 AM, Martin G. Skjæveland
mart...@ifi.uio.nowrote:

 Hi,

 I just got myself a HTC Z, but I cannot get mobileorg to sync. The error
 message I get when pressing the sync button is:

  The file /sdcard/dropbox/org/index.org was not found.

 Here is what I did to get the error:

 - Installed Dropbox from Android Market. (Downloaded org-files to
 /sdcard/dropbox/org/. This I have checked with a file manager.)
 - Installed MobileOrg from Android Market. (Version 0.4.7, it says.)
 - Setup MobileOrg:
  - Synchronization Mode: SDCard
  - Full local path to your index.org file: /sdcard/dropbox/org/index.org
  - Storage Mode: sdcard
 - Go back to MobileOrg menu, press Sync, and get the error.

 Originally I had no index.org file (should I have had one?) so I created
 one. I'm guessing that that this might be the problem? It says on [1] that
 index.org will be created, but it is not clear if this also goes for local
 system setup (and not WebDAV). My index.org file looks like this:

 --cut
  * [[work.org][work]]
  * [[home.org][home]]
 --cut

 The instructions on mobileorg-android's page [2] are not completely clear.
 Have I done all the necessary preparations?

 Thanks!

 Martin

 [1] https://github.com/matburt/mobileorg-android/wiki/SetupNotes
 [2] https://github.com/matburt/mobileorg-android/wiki/

 ___
 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 and Voice Capturing (Android)

2010-12-01 Thread Matthew Jones
I think I need to make a small change to the Capture activity to allow it to
be invoked... I'm looking into it right now.

http://matburt.net


On Wed, Dec 1, 2010 at 8:52 PM, Mark Elston m_els...@comcast.net wrote:

 I don't know about the current state of MobileOrg and its
 implementation details but I would look at the two sl4a
 methods:

  startActivity, and
  startActivityForResult.

 Playing with these two methods should get you most of the
 way there, I would think.

 Mark



 2010 5:25 PM, Sven Bretfeld wrote:

 Hi Mark

 Mark Elstonm_els...@comcast.net  writes:

  Have you looked at sl4a (formerly ase)?  With it you can
 start Intents and perform clipboard operations plus file
 manipulations using a standard scripting language like
 perl, python, or ruby (among others).  This might be
 very useful.


 That's really useful. I have created a simple python script to call
 voice input:

 ,SpeechToClip.py
 |
 | import android
 | droid = android.Android()
 | droid.setClipboard(droid.recognizeSpeech()[1])
 |
 `

 Now, I couldn't figure out how to extend the script to call MobileOrg's
 Capture activity. Is that possible? Maybe even with an automatic
 insertion of the clipboard content?

 Thanks for help

 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 and Voice Capturing (Android)

2010-11-30 Thread Matthew Jones
I have this grand plan to implement support for this in MobileOrg, I didn't
realize the project had changed, thanks for piquing my interest in it again.

http://matburt.net


On Mon, Nov 29, 2010 at 10:10 PM, Mark Elston m_els...@comcast.net wrote:

 Have you looked at sl4a (formerly ase)?  With it you can
 start Intents and perform clipboard operations plus file
 manipulations using a standard scripting language like
 perl, python, or ruby (among others).  This might be
 very useful.

 Mark


 On 11/28/2010 11:10 AM, Sven Bretfeld wrote:

 Hi together

 TextToSpeech has made our lives easier, especially for car-drivers like
 me. I have tried to capture tasks by voice on my Android device and
 implement them automatically to my org-files at home. The results are
 practicable but far from optimal by now. Maybe there are some Android
 users on this list who like to get involved in trying to find an optimal
 solution.

 *My method at the moment:*

 I use tasker, the Android killer-app for automatizing almost every
 thinkable task. Created a new task called org-voice with tasker.
 Pressing the associated icon does the following:

 1. Plays Darth Vader's voice saying What is thy bidding, my master?

 2. Loads app Voice2Clipboard

 3. Waits for 30 seconds (to get Voice2Clipboard ready for recording and
for me to finish speaking the note)

 4. Write File: Writes the clipboard content to a file
/sdcard/dropbox/org/org-voice.org

 After uploading the file with Dropbox, a cronjob on my PC (which is
 always switched on) takes care of the file. Its lines (each is a capture
 item) are transformed by a series of sed operations and put into a
 different file from-org-voice.org together with some TAGS and a TODO
 keyword; after that the original file is emptied. That's it.

 The problem with this approach is that you still have to manually
 download the (empty) capture-file (org-voice.org)[¹] and to manually
 upload
 it again, because Dropbox for Android doesn't sync changed files on the
 sdcard automatically. And especially to upload process needs quite a
 view clicks.

 *What would be better:*

 Use MobileOrg and have the clipboard contents written into the file used
 by MobileOrg for written captures. This is
 /sdcard/mobileorg/mobileorg.org if you use sdcard-storage. This way, you
 could use MobileOrg's own syncing process and no cronjob would be
 necessary.

 This could be done in two ways:

 1. Use the same procedure and let tasker write the contents into the
file directly. This is not possible for me since I have to use
internal-storage for reasons of performance[²] and the files in
/data/data/com.matburt.mobileorg/files/ are not writable for other
programs without root.

 2. Use tasker to start MobileOrg, enter the capture dialog and have a
voice recognition app started. I simply don't know how to do that.

 Maybe tasker can even be programmed to automatically start MobileOrg's
 syncing process from time to time. But I don't know if and how this is
 possible.

 Does anybody have a better solution? Or a better idea?

 Greetings,

 Sven

 [¹]  If you don't, the next sync with dropbox would replace the file
 with your notes by the empty file hosted on the Dropbox server.
 [²]  On HTC Magic (Android 1.6) sdcard-storage makes MobileOrg
 incredibly slow. It takes more than a minute after starting MobileOrg
 until the files are displayed.


 ___
 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 and Voice Capturing (Android)

2010-11-28 Thread Matthew Jones
Hey Sven, here's some thoughts:

MobileOrg Android already supports speech to text in that, you can go to
capture a new note and click the mic button on the soft keyboard and start
speaking.  I don't see that it would be particularly difficult to integrate
this in a larger fashion.  There could be a button on the capture interface
that would let you start it automatically.

You could also create (or extend the existing) Desktop Widget to include a
button for capturing a note and/or capturing a note via spoken word.

Also... given that you had a button to activate the speech to text without
having to pull up the soft keyboard... you could write another application
that calls MobileOrg's Capture activity with that mode enabled.

http://matburt.net


On Sun, Nov 28, 2010 at 2:10 PM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi together

 TextToSpeech has made our lives easier, especially for car-drivers like
 me. I have tried to capture tasks by voice on my Android device and
 implement them automatically to my org-files at home. The results are
 practicable but far from optimal by now. Maybe there are some Android
 users on this list who like to get involved in trying to find an optimal
 solution.

 *My method at the moment:*

 I use tasker, the Android killer-app for automatizing almost every
 thinkable task. Created a new task called org-voice with tasker.
 Pressing the associated icon does the following:

 1. Plays Darth Vader's voice saying What is thy bidding, my master?

 2. Loads app Voice2Clipboard

 3. Waits for 30 seconds (to get Voice2Clipboard ready for recording and
   for me to finish speaking the note)

 4. Write File: Writes the clipboard content to a file
   /sdcard/dropbox/org/org-voice.org

 After uploading the file with Dropbox, a cronjob on my PC (which is
 always switched on) takes care of the file. Its lines (each is a capture
 item) are transformed by a series of sed operations and put into a
 different file from-org-voice.org together with some TAGS and a TODO
 keyword; after that the original file is emptied. That's it.

 The problem with this approach is that you still have to manually
 download the (empty) capture-file (org-voice.org)[¹] and to manually
 upload
 it again, because Dropbox for Android doesn't sync changed files on the
 sdcard automatically. And especially to upload process needs quite a
 view clicks.

 *What would be better:*

 Use MobileOrg and have the clipboard contents written into the file used
 by MobileOrg for written captures. This is
 /sdcard/mobileorg/mobileorg.org if you use sdcard-storage. This way, you
 could use MobileOrg's own syncing process and no cronjob would be
 necessary.

 This could be done in two ways:

 1. Use the same procedure and let tasker write the contents into the
   file directly. This is not possible for me since I have to use
   internal-storage for reasons of performance[²] and the files in
   /data/data/com.matburt.mobileorg/files/ are not writable for other
   programs without root.

 2. Use tasker to start MobileOrg, enter the capture dialog and have a
   voice recognition app started. I simply don't know how to do that.

 Maybe tasker can even be programmed to automatically start MobileOrg's
 syncing process from time to time. But I don't know if and how this is
 possible.

 Does anybody have a better solution? Or a better idea?

 Greetings,

 Sven

 [¹]  If you don't, the next sync with dropbox would replace the file
 with your notes by the empty file hosted on the Dropbox server.
 [²]  On HTC Magic (Android 1.6) sdcard-storage makes MobileOrg
 incredibly slow. It takes more than a minute after starting MobileOrg
 until the files are displayed.

 ___
 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


[Orgmode] MobileOrg Android 0.4.5

2010-11-21 Thread Matthew Jones
For those interested, I have released MobileOrg Android 0.4.5 to the Market
(search for MobileOrg) and for direct download here:
http://matburt.net/files/mobileorg-release.apk

New features for this reldease include:
- Now Supports editings and synchronizing TODO and Priority changes
- Obey checksums.dat this should make synchronizing a lot faster
- Rework the UI and show more information about each entry (including
Priority and Due/Scheduled date)
- Close some bugs

The big new feature is being able to change TODO states and Priorities and
have those synchronize back to emacs.

For 0.5 here is what is planned:
- Implement Dropbox and a generalized synchronization API to make it easy to
develop modules that will recognize other storage mechanisms
- Support editing Title and Body
- Completely Revamp UI
- Better document Display
- Search support
- Implement Widget preferences and extend the Widget functionality

I know that a lot of people are most interested in Dropbox support so that
is what I am focusing on right now.  There is already some limited Dropbox
support by using the Android Dropbox app to pull the files onto your SDCard
and then use MobileOrg to synchronize them but this is a very manual process
and not ideal.

I also feel strongly about completely revamping the UI, it could look a lot
better and be a lot easier to use.

As always, if you find any bugs feel free to report them directly to me or
use the bug tracking system here:
https://github.com/matburt/mobileorg-android/issues

If you need any help or have any questions you can ask here or send me an
email directly.
___
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] Orgmode meetup at FOSDEM, February 2011. Who would come?

2010-09-28 Thread Matthew Jones
I would also be interested in attending to listen, or contribute anything
related to MobileOrg.

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


On Tue, Sep 28, 2010 at 1:44 PM, Carsten Dominik
carsten.domi...@gmail.comwrote:

 Hi everyone

 Please reply to this email if you'd consider to come to FOSDEM[1,2],
 February 5 and 6 next year in Brussels, in order to join an Org-mode
 meet-up there.


 - [ ] I would come and listen
 - [ ] I would come and give a talk in the devroom


 [1]  http://www.fosdem.org/2011/
 [2]  http://www.fosdem.org/2011/call_for_devrooms

 --

 ___
 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 pushing

2010-09-21 Thread Matthew Jones
Hi CW64Whiz... instead of posting this hear could you fill out a feature
request in the Github bug tracker?  That helps me consolidate these things.

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


On Tue, Sep 21, 2010 at 1:48 PM, C64 Whiz c64w...@gmail.com wrote:

 When pushing my .org files for publishing, I see the content of a heading
 is truncated for the Agenda views.  i.e. I have a heading with 7 - [ ]
 lines.  But in the -agenda(W38-W42) view on MobileOrg (Android 0.4.1),
 the entry for that heading is truncated to only 5 - [ ] lines (It's not
 MobileOrg as I checked the file generated by 'org-mobile-push').

 If I remember correctly, this is done for brevity.  However, is it possible
 to add to the source code so that on these Agenda views there is a link
 which would take us to the _original_ headline?  This would allow for the
 conciseness provided by the truncation, but easy direction to the source for
 complete information.

 Thanks again for MobileOrg!

 --C64Whiz


 ___
 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] Re: MobileOrg Android 0.4.1 - Initial support for Dropbox and SDCard Synchronization

2010-09-14 Thread Matthew Jones
Hey Eric, if you find some issues please open bugs here:
http://github.com/matburt/mobileorg-android/issues

I've found some force closes related to SD Card Synchronization but
appreciate any bug report you can provide.

Also, if the app gives you the change to submit a report after a crash then
please do that... as it will give me a stack trace to work with when trying
to resolve the problem.

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


On Tue, Sep 14, 2010 at 12:43 PM, Eric S Fraga ucec...@ucl.ac.uk wrote:

 On Tue, 14 Sep 2010 12:02:46 -0400, Matthew Jones bsdmatb...@gmail.com
 wrote:
 
  Hey Eric... did you already have MobileOrg installed on your phone via
 the
  APK downloaded from my site?  If so, could you uninstall that and then
 try
  installing the app from the market?
 
  73,
  Matthew W. Jones (KI4ZIB)
  http://matburt.net

 Thanks.  That did the trick, in terms of being able to download and
 install.  I've just tried configuring and it gave me a force close
 dialogue but let me play some with it to see what is going on...

 --
 Eric S Fraga
 GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D


___
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] Re: MobileOrg Android 0.4.1 - Initial support for Dropbox and SDCard Synchronization

2010-09-14 Thread Matthew Jones
On my phone if something bad happens and the app is going to force close it
will give me the option to Report with the force close and send a stack
trace as well as some other information.   It does not always do this,
however.

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


On Tue, Sep 14, 2010 at 2:12 PM, Eric S Fraga ucec...@ucl.ac.uk wrote:

 On Tue, 14 Sep 2010 12:58:23 -0400, Matthew Jones bsdmatb...@gmail.com
 wrote:
 
  [1  text/plain; ISO-8859-1 (7bit)]
  Hey Eric, if you find some issues please open bugs here:
  http://github.com/matburt/mobileorg-android/issues
 
  I've found some force closes related to SD Card Synchronization but
  appreciate any bug report you can provide.
 
  Also, if the app gives you the change to submit a report after a crash
 then
  please do that... as it will give me a stack trace to work with when
 trying
  to resolve the problem.

 I'd be happy to.  Is there some way to ask the phone to generate the
 report?  I've never seen such an option.

 Anyway, the first problem was that I had introduced, by mistake, a
 space (0x20) in the URL for the source of org files and deleting that
 appears to have fixed the force close I had.  Seems to work so far.
 I'll play with it over the next few days and will feed back any
 problems via the github bugs page.

 Thanks!
 eric

 --
 Eric S Fraga
 GnuPG: 8F5C 279D 3907 E14A 5C29  570D C891 93D8 FFFC F67D


___
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


[Orgmode] MobileOrg Android 0.4.1 - Initial support for Dropbox and SDCard Synchronization

2010-09-13 Thread Matthew Jones
Hey folks, I've released MobileOrg 0.4.1 to the Market (find the link here:
http://wiki.github.com/matburt/mobileorg-android/)

The one big change here is that MobileOrg now supports synchronizing files
that are stored locally on the sdcard (instead of requiring a connection to
a webdav server).  This should also support, at least initially, those of
you who would like to use Dropbox.

Here is an example Dropbox workflow:

* You've pushed your files into a directory called org/ on your Dropbox
share
* With the Dropbox Android client you download your org files (with the
defaults, this would download the files to /sdcard/dropbox/org/)
* Open MobileOrg and in the Settings screen select the SDCard Synchronizer,
then click on the Configure Synchronizer Settings option and enter the
path to the index.org file (in this example: /sdcard/dropbox/org/index.org)
* Go back to the main screen and hit Menu and then Sync

Capturing notes will create a file 'mobileorg.org' in that same directory
for pushing back into emacs

If you just have your emacs configuration push to your sdcard when you have
it mounted then it is even easier, though you'll need to remember to unmount
the sdcard from your computer before synchronizing.

Right now you have to manually type in the path to the index.org file.
 There is a way to integrate starting an external file browser (such as Root
Explorer or OI File Manager) that I will integrate into the next version,
but I wanted to give you folks this feature as early as possible.

I'm still working to integrate the Dropbox API into the application, but it
is a little more involved and requires that they review the application
before I can deploy it.   This would make the Dropbox workflow a lot easier
but I'm still working on integrating this.

73,
Matthew W. Jones (KI4ZIB)
http://matburt.net
___
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


[Orgmode] Re: MobileOrg Android 0.4.1 - Initial support for Dropbox and SDCard Synchronization

2010-09-13 Thread Matthew Jones
There was one other thing that I forgot to mention... I've re-enabled
installing this application for Android 1.5 phones, you should be able to
see it in the Market now.

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


On Mon, Sep 13, 2010 at 11:33 AM, Matthew Jones bsdmatb...@gmail.comwrote:

 Hey folks, I've released MobileOrg 0.4.1 to the Market (find the link
 here: http://wiki.github.com/matburt/mobileorg-android/)

 The one big change here is that MobileOrg now supports synchronizing files
 that are stored locally on the sdcard (instead of requiring a connection to
 a webdav server).  This should also support, at least initially, those of
 you who would like to use Dropbox.

 Here is an example Dropbox workflow:

 * You've pushed your files into a directory called org/ on your Dropbox
 share
 * With the Dropbox Android client you download your org files (with the
 defaults, this would download the files to /sdcard/dropbox/org/)
 * Open MobileOrg and in the Settings screen select the SDCard Synchronizer,
 then click on the Configure Synchronizer Settings option and enter the
 path to the index.org file (in this example: /sdcard/dropbox/org/index.org
 )
 * Go back to the main screen and hit Menu and then Sync

 Capturing notes will create a file 'mobileorg.org' in that same directory
 for pushing back into emacs

 If you just have your emacs configuration push to your sdcard when you have
 it mounted then it is even easier, though you'll need to remember to unmount
 the sdcard from your computer before synchronizing.

 Right now you have to manually type in the path to the index.org file.
  There is a way to integrate starting an external file browser (such as Root
 Explorer or OI File Manager) that I will integrate into the next version,
 but I wanted to give you folks this feature as early as possible.

 I'm still working to integrate the Dropbox API into the application, but it
 is a little more involved and requires that they review the application
 before I can deploy it.   This would make the Dropbox workflow a lot easier
 but I'm still working on integrating this.

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

___
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] Re: MobileOrg for Android...issues

2010-08-05 Thread Matthew Jones
I really like pywebdav, it's what I use on my VPS when utilizing MobileOrg.

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


On Thu, Aug 5, 2010 at 3:11 AM, Holger Wenzel drholgerwen...@googlemail.com
 wrote:

 Hi C64Wiz,

  Also, I selected to store the .org files on my SD card.  Is there a
  way I can *manually* copy org files to the SD card (just need a
  location really) so that I can at least read/reference them? I don't
  have a need to edit/capture at this point, but would like to at least
  view them.

 you can always set up your own webdav server.

 I briefly used nginx (nginx.org) a full blown web server, there is an
 apache module for serving the webdav protocol and there is pywebdav
 http://code.google.com/p/pywebdav/

 Holger


 ___
 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...issues

2010-08-04 Thread Matthew Jones
There are certificate issues with some versions of Android that affect
connecting to an SSL webdav server... what version are you using?

There's no way to manually copy the files and parse them just yet, there was
some work done on this on Dushistov's branch at:
http://github.com/Dushistov/mobileorg-android

but this isn't clean enough to import into the main codebase and is several
months behind my current HEAD.

In order to support synchronizing from sources other than webdav I have had
to overhaul the way that files are parsed and I'm doing this as part of the
effort to edit/change org file entries (see my commits from the last 48
hours).   Once that has baked out then I will modularize synchronization and
import the code needed to synchronize from other sources.

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


On Wed, Aug 4, 2010 at 2:35 PM, C64 Whiz c64w...@gmail.com wrote:

 Hello All,

 I have a Droid and am anxious to use MobileOrg for it.  I have it
 installed but it won't sync.  Probably because I require SSL on my
 WebDav server and I remember reading there is an SSL sync issue with
 Android.  Any news on that?

 Also, I selected to store the .org files on my SD card.  Is there a
 way I can *manually* copy org files to the SD card (just need a
 location really) so that I can at least read/reference them? I don't
 have a need to edit/capture at this point, but would like to at least
 view them.

 Thanks!

 --C64Whiz

 ___
 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] DAV config for mobileorg

2010-06-18 Thread Matthew Jones
I've actually just been using python's pywebdav:
http://code.google.com/p/pywebdav/

running on my VPS.   I plan to just use this until I get Dropbox (or
something like it) support integrated.

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


On Fri, Jun 18, 2010 at 8:23 AM, Greg Troxel g...@ir.bbn.com wrote:


 I have this 99% working, but I'm unclear on what the permission plan
 should be.  My apache 2.2 config is

 DavLockDB /usr/pkg/var/DavLock
 Alias /org/gdt /home/gdt/ORG
 Directory /home/gdt/ORG
Options Indexes

AllowOverride AuthConfig
Order allow,deny
Allow from all

DAV On

AuthType Digest
AuthName org/gdt
AuthUserFile /home/gdt/ORG/.htpasswd

Limit GET PUT POST DELETE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK
 UNLOCK
Require valid-user
/Limit
 /Directory


 I've set up ~/ORG to be 770 gdt.www, and mobileorg.org 660, so that
 apache can write to it.  According to apache docs, I should have all
 this data owned by the apache user, and not be reading/writing it with
 scp/etc.

  http://httpd.apache.org/docs/2.2/mod/mod_dav.html

 I would like to have a second mobileorg user on this system, and have
 apache access both files via .htpasswd digest auth, and the system
 prevent each user from reading the others.

 Am I confused about this?  Any hints appreciated.

 ___
 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] Re: [mobileorg] Android sync failed

2010-06-17 Thread Matthew Jones
That's really odd looking... my index.org file looks different:

* [[file:agendas.org][Agenda Views]]
* [[file:notes.org][notes.org]]

So I'm guessing that would be your problem

I use emacs of course to write my code but I don't do anything with android
through emacs... I just stick to the command line tools that ship with the
SDK.   Right now I'm focusing on Synchronization and gaining the ability to
edit the contents of files... I guess the biggest weakness in the system
right now is the user experience and general look and feel, if you are
looking for some way to help out :)

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


On Wed, Jun 16, 2010 at 10:26 PM, Torsten Wagner
torsten.wag...@gmail.comwrote:

 Hi Matthew,

 the content of my index.org looks like this

 [[work.org]]
 [[agendas.org]]

 guess rather standard and normal

 I will check further about possible errors. As I said, I pushed a lot of
 buttons and turned a lot of knobs. Maybe one did create another problem
 now.

 As for the error message and my problem it might be a problem within
 org.el suggested in the thread

 [Orgmode] org-mobile-push error with no headings from Erik

 Thus, maybe you are totally innocent. ;)

 BTW., I cloned the android client sources. I'm always short in time and
 my Java knowledge is a bit rusty but since I like to learn about the
 android internals and since orgmobile on android is the most interesting
 topic for me I thought I can give you some assistance. If there is any
 task you like to see performed, please let me know.


 Thanks for helping

 Totti

 CC. Which envrionment did you use to develop the android client? I hope
 and guess it was based around the emacs editor. Do you have any good
 sources how to set-up emacs for android dev?



 On 06/17/2010 10:35 AM, Matthew Jones wrote:
  Hi Torsten, the issue with https appears to be within Android, I have
  waited too long to add that information to the wiki so I'll do it now.
  Can you give me an example of the index.org http://index.org file that
  was generated by org-mobile-push (or is it empty due to the error
  message from the push?) that should help in determining why nothing
  comes up.
 
  73,
  Matthew W. Jones (KI4ZIB)
  http://matburt.net
 
 
  On Wed, Jun 16, 2010 at 9:14 PM, Torsten Wagner
  torsten.wag...@gmail.com mailto:torsten.wag...@gmail.com wrote:
 
  Dear Holger,
 
   I remember having to fiddle a little until I got it working - but
   nothing bad.
  Thanks for the answer. I tried again and the only differences (beside
 of
  different server), I saw in your and in my own set-up was the usage
 of
  https vs. http. I tried to use http know and it seems to sync (at
 least
  there is no error message). However, after that all I have is just a
  empty screen. Files on webdav are not empty ;).
  I will check again maybe I just created some error during testing and
  fiddeling.
 
  Can someone confirm that the present mobileorg work or cannot work
 with
  https?
 
  Furthermore, another thing I noticed, when I fire-up org-mobile-push,
 I
  get the following message-log:
 
  Agenda written to Org file /home/torsten/org/mobileorg/agendas.org
  http://agendas.org
  Creating agendas...done
  Saving all Org-mode buffers...
  (No files need saving)
  Saving all Org-mode buffers... done
  Copying files...
  OVERVIEW
  (No changes need to be saved)
  Writing index file...
  byte-code: Wrong type argument: listp, TODO
 
  as you can see there seems to be an problem within the index-file.
  Any idea what is going wrong there ?
 
 
  Thanks for helping
 
  Totti
 
  ___
  Emacs-orgmode mailing list
  Please use `Reply All' to send replies to the list.
  Emacs-orgmode@gnu.org mailto: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 new user report

2010-06-17 Thread Matthew Jones
Hey Greg, thanks for this report.

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


On Thu, Jun 17, 2010 at 1:27 PM, Greg Troxel g...@ir.bbn.com wrote:


 I just started using Org mode and MobileOrg and have a few comments.
 First, thanks to everyone who's written/etc. org - it's nice to step
 into already-baked software.

 * Mobileorg

 ** removed files

 I had a foo.org that I pushed with others, and then deleted, and it
 didn't go away from my phone.  Even when I rm'd from webdav it didn't go
 away.  I may have done this wrong, but it would be nice if this were
 easier.

 ** last update
 It would be nice if the home screen showed the time of last sync.

 ** mobileorg.org location (I use ~/ORG instead of ~/org)
 This should probably be:
  (setq org-mobile-inbox-for-pull (concat org-directory /from-mobile.org
 ))
 instead of
  ~/org/from-mobile.org

 I realize org-directory is only for remember right now, but it seems
 like it should be more of a global concept.

 ** multiple accounts

 I try to keep work and personal things separate, so I expect to have two
 parallel org setups, one on a work machine and one on a personal
 machine.  That works fine with org, but I'd like to use mobileorg with
 both (on one phone).  Richard is graciously helping me out with a
 workaround, but I wanted to throw out the concept of mobileorg and the
 forthcoming android version having multiple accounts (like Mail does).

 Or perhaps multiple orgs could push/pull to one directory, but then the
 mobileorg.org journal has entries for both and it's probably too much of
 a mess.  And I'd like to be able to let colleagues look at some work org
 things without risking exposing personal org things.

 * org proper

 ** refiling

 I figured this out for refiling, and found it hard to follow list, cons
 cell, etc. even though I like lisp.  Adding the following as an example
 in the docmentation of org-refile-targets would help.  It could also be
 the default - for me refiling is used to put phone- or remember-generate
 entries where they belong, not to move things around in a file.

 ; refiling
 (setq org-refile-targets '((org-agenda-files . (:maxlevel . 4

 ___
 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] Re: [mobileorg] Android sync failed

2010-06-16 Thread Matthew Jones
Hi Torsten, the issue with https appears to be within Android, I have waited
too long to add that information to the wiki so I'll do it now.   Can you
give me an example of the index.org file that was generated by
org-mobile-push (or is it empty due to the error message from the push?)
that should help in determining why nothing comes up.

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


On Wed, Jun 16, 2010 at 9:14 PM, Torsten Wagner torsten.wag...@gmail.comwrote:

 Dear Holger,

  I remember having to fiddle a little until I got it working - but
  nothing bad.
 Thanks for the answer. I tried again and the only differences (beside of
 different server), I saw in your and in my own set-up was the usage of
 https vs. http. I tried to use http know and it seems to sync (at least
 there is no error message). However, after that all I have is just a
 empty screen. Files on webdav are not empty ;).
 I will check again maybe I just created some error during testing and
 fiddeling.

 Can someone confirm that the present mobileorg work or cannot work with
 https?

 Furthermore, another thing I noticed, when I fire-up org-mobile-push, I
 get the following message-log:

 Agenda written to Org file /home/torsten/org/mobileorg/agendas.org
 Creating agendas...done
 Saving all Org-mode buffers...
 (No files need saving)
 Saving all Org-mode buffers... done
 Copying files...
 OVERVIEW
 (No changes need to be saved)
 Writing index file...
 byte-code: Wrong type argument: listp, TODO

 as you can see there seems to be an problem within the index-file.
 Any idea what is going wrong there ?


 Thanks for helping

 Totti

 ___
 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


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

2010-06-07 Thread Matthew Jones
I do plan on adding DropBox support but would like to get some other
features working first.

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


On Mon, Jun 7, 2010 at 3:02 AM, Detlef Steuer detlef.ste...@gmx.de wrote:

 Hi!

 Do you plan to add dropbox support into mobileorg-android?
 That would be just great!

 Thank you anyway for your efforts, even if dropbox gets dropped!

 Detlef

 On Fri, 28 May 2010 14:40:05 -0400
 Matthew Jones bsdmatb...@gmail.com wrote:

  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 sven.bretf...@gmx.ch
 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

___
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] Re: MobileOrg for Android starts to become really usable

2010-05-30 Thread Matthew Jones
With regard to the note capture display, I'm not sure how I feel about
this... I like having the save button on the page because it reduces the
number of clicks to save the note which can be huge if you are just trying
to quickly jot something down.   I do, however, need to fix it so that the
Save button is always visible.The thing about this particular Activity
display is that the text box is always fixed to some percentage of the
display... so that the save button would never be off the page but rather
the Text box would scroll if you had too much text in it.   I may consider
adding the save button to a menu once I add more options to the Capture
screen (like adding a TODO flag, or Tags) but I think it's most intuitive if
the save button is on the display mainly because you can't miss it, some
things about Android happen in the background so that if you navigate away
from the page it automatically saves the contents... but that's not how this
capture page works (and I don't know that I would want it to automatically
save if you hit the back button) this allows it to fit into the workflow and
makes it obvious that you have to hit the save button to accomplish the save
action. These are just my thoughts.   As I bake out the Capture system I
will certainly revisit it if the flow works better to have it under the
'Menu' action.

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


On Sun, May 30, 2010 at 12:21 PM, Robert Goldman rpgold...@sift.infowrote:

 julien cubizolles j.cubizolles at free.fr writes:

 
  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.

 If I might comment --- one of the worst things about Android applications,
 IMO,
 is the way they are confusing about whether menus should be displayed in
 page,
 or invoked by the menu button.

 I'd urge you to avoid the on-page display in favor of the menu button.  If
 you
 stick to that the user never needs to remember to scroll down to find the
 controls and there are just too many ways for the on-page display to be
 rendered
 either hard to reach or completely inaccessible.  This problem is made
 worse
 (especially by contrast with the iPhone) because you don't have full
 knowledge
 of the screen dimensions.

 So I'd suggest that if a button is important (save, send, schedule, etc.)
 that
 you make it reachable by the center menu button.

 HtH,
 cheers,
 r



 ___
 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 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 hindiog...@gmail.comwrote:

 Greetings!

 2010/5/28 Sven Bretfeld sven.bretf...@gmx.ch:
  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 AM 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 Android 0.1_alpha

2010-05-24 Thread Matthew Jones
You should know that 'mobileorg.org' is the filename used by MobileOrg when
capturing new notes (see:
http://orgmode.org/manual/Pulling-from-MobileOrg.html#Pulling-from-MobileOrg)
can you name the file something else and see if that works for you?

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


On Mon, May 24, 2010 at 9:36 AM, julien cubizolles j.cubizol...@free.frwrote:

 Le mardi 02 mars 2010 à 12:10 +0100, Sven Bretfeld a écrit :

  Oh my god. That's really silly. Just installed USB Debugging. That led
  me to the solution: Ähem ... The URL field has to point to the index.org
  file, not to the directory. That was a misunderstanding. Now it's
  working.

 I'm also trying to setup a webdav account, using a demo account but
 can't get it to sync.

 Here is my setup :

 URL :
 http://mydisk.se/demo/index.org

 Login:
 demo

 Password:
 demo

 The index.org file exists and links to a file named mobileorg.org.

 I don't get any error messages when I hit Sync but the mobileorg.org
 file doesn't appear. What am I doing wrong ?

  I will try to use MobileOrg and send you feedback.
 How is it working for you so far ?

 Julien, eager to use org-mode on his phone.


 ___
 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 Android 0.1_alpha

2010-05-24 Thread Matthew Jones
Hey Julien,

The other branch I've been working on is a replacement Preferences screen
that fits the Android paradigm for getting and saving preferences... we need
a better way to represent the preferences so that it's not too difficult to
add new settings and have them be available to the application.   Once I'm
finished with those changes I will merge them back into my 'master' branch
which is where I cut releases from.   There are also some branches
maintained by other people that are features that I hope to merge in very
soon... don't worry, there will be no fragmentation of this application.
Glad to know changing the file name worked for you... let me know if you
discover any other issues.

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


On Mon, May 24, 2010 at 10:04 AM, julien cubizolles j.cubizol...@free.frwrote:

 Le lundi 24 mai 2010 à 09:52 -0400, Matthew Jones a écrit :
  You should know that 'mobileorg.org' is the filename used by MobileOrg
  when capturing new notes
  (see:
 http://orgmode.org/manual/Pulling-from-MobileOrg.html#Pulling-from-MobileOrg)
 can you name the file something else and see if that works for you?

 You were right. I renamed it to essai.org and it's working now.

 Also, I noticed a recent fork in your project at github. Are we going to
 end up with 2 mobileorg applications for android :-) ?

 Anyway, thanks for your help and for provinding android users with this
 much needed application.

 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

___
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] GitHub

2010-05-22 Thread Matthew Jones
In the Administration panel for projects on Github there is a section for
Service Hooks which looks like it could be used to mirror the changes to
another repository.

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


On Sat, May 22, 2010 at 2:24 AM, Carsten Dominik
carsten.domi...@gmail.comwrote:

 Hi,

 since a number of you have voiced a strong preference for Org-mode to be
 hosted on GitHub, I am not considering such a step.

 Could someone spell out for me what steps I would have to take to do this?
 In particular:

 - How do I get the entire current repo onto GitHub?
 - Can I set up repo.or.cz in a way that it will become an
  automatic mirror, so that old clones will continue to be updated when
  pulling?
 - Bastien - I guess on the web server, we would simply make a
  new clone from the new location, right?

 Anything else I need to consider?

 Thanks.

 - Carsten




 ___
 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] Re: Co-maintainer, a least for some time?

2010-05-19 Thread Matthew Jones
MobileOrg and MobileOrg Android both use Github, and we both use the issue
tracker.   Another boon to using Github for the project would be benefitting
from individual contributors maintaining forks of the main repository...
then a maintainer could merge in fixes and features that others have worked
on with ease.

I have had several folks contribute to MobileOrg for Android in just this
manner and as the maintainer it has made my life very easy.

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


On Wed, May 19, 2010 at 2:08 PM, Karsten Heymann kheym...@blue-cable.netwrote:

 Hi,

 Am 19.05.2010 17:46, schrieb Carsten Dominik:
  I think an issue-tracking system would be great.  And if there are
  other people besides John who want to take up individual issues, I am
  sure this would be good.

 One solution would be to switch the git repository to github.com and use
 it's integrates issues functionality. From their site:

  Issues

  GitHub Issues adds lightweight issue tracking tightly integrated with
  your repository. Close issues from commit messages, let users label
  and vote on issues and drag  drop issues to priorize.

 See it in action at
 http://github.com/splitbrain/dokuwiki-plugin-data/issues

 Maybe it's worth a look.

 Yours
 Karsten

 ___
 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] Mobile Org Sharing Questions

2010-04-23 Thread Matthew Jones
Hi David

http://orgmode.org/org.html#Pulling-from-MobileOrg

Currently you likely use org-mobile-push to put your files on the remote
server.  You should be able to use org-mobile-pull for retrieval, is this
not the case?

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


On Thu, Apr 22, 2010 at 12:12 PM, David Frascone d...@frascone.com wrote:


 I know it's a bit of an RTFM, but, I'm trying to figure out the best way to
 keep my org-mode in sync with my iPhone (Using MobileOrg).  And, I'm VERY
 new to orgmode, and a bit new to emacs.  I can easily do a one way sync
 (org-mode to somewhere, via html), but I'm looking for a better way (two way
 sync, like MobileOrg)

 I have dropbox, but it's not webdav.
 I also have an iDisk, but it's a pain to keep that synched.  I simply don't
 like the mac synching.
 I signed up for the other webdav account, but, I'm not sure if that's the
 best way to do it.

 I can easily use ssh to keep my org files somewhere.  But, that doesn't
 help the reverse path.
 I run my own apache at home, so, I suppose I could install webdav there,
 but I have concerns about security, having never messed with it.

 So, I guess my questions are:


 What's the simplest method that's possibly insecure (i.e. some random
 webdav provider)?
 And, what's the simplest method that's secure?



 Thanks in advance,


 -Dave

 ___
 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] Mobile Org Sharing Questions

2010-04-23 Thread Matthew Jones
That's an excellent idea I've considered adding an auto synchronization
mode to the Android version, Richard would need to comment on the iPhone
version.  It may be one of those things where it would automatically sync
when launched.

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


On Fri, Apr 23, 2010 at 1:40 PM, Marcelo de Moraes Serpa 
celose...@gmail.com wrote:

 On thing that I find could improve, though, is the workflow behind
 org-mobile pull/push. Having to push from emacs and pull and then having to
 update from the iPod/iPhone *manually* quickly becomes a hassle, and the
 result is that I end up not using it as much as I wanted to.

 I'm thinking about setting up a cron to run emacs to evaluate
 '(org-mobile-pull)(org-mobile-push)' every hour so I get automatic sync to
 my iPod. We could also have an option on org-mobile to auto-sync too. Not
 sure iPhone's OS architecture allows that, though.

 Marcelo.


 On Fri, Apr 23, 2010 at 12:38 PM, Marcelo de Moraes Serpa 
 celose...@gmail.com wrote:

 Get an account at dreamhost, a domain, and buy SSL from them. I did that
 and it works great for me (I have setup a subdomain of my main domain to
 point to a SSL secured IP, which in turn, points to a virtualhost setup on
 VPS @ dreamhost, this virtualhost has WebDAV enabled and is
 password-protected, naturally).

 If you are using Mac OSX, it's the easiest thing in the world. Just use
 finder to mount the WebDAV as a partition, and move this drive to the
 startup items so it gets connected everytime you boot.

 With Linux/Ubuntu, it's a little bit more CLI work, but you can get the
 very same effect (mount the drive, get it mounted automatically at
 boot-time) -- in both cases, just Google and you'll find plenty of articles.

 For Windows, I have no idea. Sorry.

 Marcelo.


 On Fri, Apr 23, 2010 at 12:17 PM, Matthew Jones bsdmatb...@gmail.comwrote:

 Hi David

 http://orgmode.org/org.html#Pulling-from-MobileOrg

 Currently you likely use org-mobile-push to put your files on the remote
 server.  You should be able to use org-mobile-pull for retrieval, is this
 not the case?

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


 On Thu, Apr 22, 2010 at 12:12 PM, David Frascone d...@frascone.comwrote:


 I know it's a bit of an RTFM, but, I'm trying to figure out the best way
 to keep my org-mode in sync with my iPhone (Using MobileOrg).  And, I'm 
 VERY
 new to orgmode, and a bit new to emacs.  I can easily do a one way sync
 (org-mode to somewhere, via html), but I'm looking for a better way (two 
 way
 sync, like MobileOrg)

 I have dropbox, but it's not webdav.
 I also have an iDisk, but it's a pain to keep that synched.  I simply
 don't like the mac synching.
 I signed up for the other webdav account, but, I'm not sure if that's
 the best way to do it.

 I can easily use ssh to keep my org files somewhere.  But, that doesn't
 help the reverse path.
 I run my own apache at home, so, I suppose I could install webdav there,
 but I have concerns about security, having never messed with it.

 So, I guess my questions are:


 What's the simplest method that's possibly insecure (i.e. some random
 webdav provider)?
 And, what's the simplest method that's secure?



 Thanks in advance,


 -Dave

 ___
 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




___
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] Mobile Org Sharing Questions

2010-04-23 Thread Matthew Jones
You could tie the push to the save hook fairly easily I would imagine.

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


On Fri, Apr 23, 2010 at 5:04 PM, Marcelo de Moraes Serpa 
celose...@gmail.com wrote:

 Cool!

 Auto-sync on start would be simple enough to implement (I think) and would
 help a lot, although I was thinking on a more deeply integration with the
 underlying OS, like, sync even when the app is closed (not sure you can have
 background services on the iPhone OS ?).

 As for the emacs side, anyone has any better idea than a cron job? I'm not
 an experienced elisper (not sure I could even call myself an elisp
 programmer, even though I want to :)) so not sure we could more easily do
 something from inside emacs itself.

 Marcelo.


 On Fri, Apr 23, 2010 at 12:59 PM, Matthew Jones bsdmatb...@gmail.comwrote:

 That's an excellent idea I've considered adding an auto
 synchronization mode to the Android version, Richard would need to comment
 on the iPhone version.  It may be one of those things where it would
 automatically sync when launched.

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


 On Fri, Apr 23, 2010 at 1:40 PM, Marcelo de Moraes Serpa 
 celose...@gmail.com wrote:

 On thing that I find could improve, though, is the workflow behind
 org-mobile pull/push. Having to push from emacs and pull and then having to
 update from the iPod/iPhone *manually* quickly becomes a hassle, and the
 result is that I end up not using it as much as I wanted to.

 I'm thinking about setting up a cron to run emacs to evaluate
 '(org-mobile-pull)(org-mobile-push)' every hour so I get automatic sync to
 my iPod. We could also have an option on org-mobile to auto-sync too. Not
 sure iPhone's OS architecture allows that, though.

 Marcelo.


 On Fri, Apr 23, 2010 at 12:38 PM, Marcelo de Moraes Serpa 
 celose...@gmail.com wrote:

 Get an account at dreamhost, a domain, and buy SSL from them. I did that
 and it works great for me (I have setup a subdomain of my main domain to
 point to a SSL secured IP, which in turn, points to a virtualhost setup on
 VPS @ dreamhost, this virtualhost has WebDAV enabled and is
 password-protected, naturally).

 If you are using Mac OSX, it's the easiest thing in the world. Just use
 finder to mount the WebDAV as a partition, and move this drive to the
 startup items so it gets connected everytime you boot.

 With Linux/Ubuntu, it's a little bit more CLI work, but you can get the
 very same effect (mount the drive, get it mounted automatically at
 boot-time) -- in both cases, just Google and you'll find plenty of 
 articles.

 For Windows, I have no idea. Sorry.

 Marcelo.


 On Fri, Apr 23, 2010 at 12:17 PM, Matthew Jones 
 bsdmatb...@gmail.comwrote:

 Hi David

 http://orgmode.org/org.html#Pulling-from-MobileOrg

 Currently you likely use org-mobile-push to put your files on the
 remote server.  You should be able to use org-mobile-pull for retrieval, 
 is
 this not the case?

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


 On Thu, Apr 22, 2010 at 12:12 PM, David Frascone d...@frascone.comwrote:


 I know it's a bit of an RTFM, but, I'm trying to figure out the best
 way to keep my org-mode in sync with my iPhone (Using MobileOrg).  And, 
 I'm
 VERY new to orgmode, and a bit new to emacs.  I can easily do a one way 
 sync
 (org-mode to somewhere, via html), but I'm looking for a better way (two 
 way
 sync, like MobileOrg)

 I have dropbox, but it's not webdav.
 I also have an iDisk, but it's a pain to keep that synched.  I simply
 don't like the mac synching.
 I signed up for the other webdav account, but, I'm not sure if that's
 the best way to do it.

 I can easily use ssh to keep my org files somewhere.  But, that
 doesn't help the reverse path.
 I run my own apache at home, so, I suppose I could install webdav
 there, but I have concerns about security, having never messed with it.

 So, I guess my questions are:


 What's the simplest method that's possibly insecure (i.e. some random
 webdav provider)?
 And, what's the simplest method that's secure?



 Thanks in advance,


 -Dave

 ___
 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






___
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: [Android] [Orgmode] Force close with MobileOrg Android 0.2_alpha and development snapshot

2010-04-21 Thread Matthew Jones
Looks like this might be a bug trying to write your files out to
subdirectories it looks like I'm not trying to create the subdirectories.
If you put your files in just the root directory does that work for you?

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


On Wed, Apr 21, 2010 at 4:35 PM, Friedrich Delgado Friedrichs 
frie...@nomaden.org wrote:

 Hi!

 I finally got around to trying out MobileOrg for Android.

 After I finally managed to set up webdav and sync my files, MobileOrg
 force closed. (development snapshot from today)

 Now it force closes every time I try to start it.

 I tried the 0.2 alpha release next but it also force closed on
 startup.

 Looking into my /sdcard/mobileorg files, I noticed that only parts of
 my files were there.

 In particular, I notice that I have subdirectories 'home' and 'work'
 in my Org files, but there are no subdirectories in the
 /sdcard/mobileorg directory.

 Then I tried deinstalling the application and reinstalling (this time
 the 0.2 alpha), put in my setup, pressed sync and get a force close
 again.

 Unfortunately the logcat contains the full contents of some of my org
 files, which I can't post to the list, so I'm posting parts of it
 here:

 [ log with contents of files]

 I/global  (14760): Default buffer size used in BufferedWriter
 constructor. It would be better to be explicit if an 8k-char buffer is
 required.
 E/MobileOrg(14760): IO Exception initializing writer on sdcard file

 [log of further files, but this time *without* the contents]

 E/MobileOrg(14760): Error: /sdcard/mobileorg/work/Someday.org in file
 work/Someday.org
 D/AndroidRuntime(14760): Shutting down VM
 W/dalvikvm(14760): threadid=3: thread exiting with uncaught exception
 (group=0x4001e180)
 E/AndroidRuntime(14760): Uncaught handler: thread main exiting due to
 uncaught exception
 D/dalvikvm(14760): GC freed 858 objects / 810176 bytes in 83ms
 E/AndroidRuntime(14760): java.lang.NullPointerException
 E/AndroidRuntime(14760):at
 com.matburt.mobileorg.OrgFileParser.parse(OrgFileParser.java:99)
 E/AndroidRuntime(14760):at

 com.matburt.mobileorg.MobileOrgActivity.runParser(MobileOrgActivity.java:145)
 E/AndroidRuntime(14760):at

 com.matburt.mobileorg.MobileOrgActivity.postSynchronize(MobileOrgActivity.java:269)
 E/AndroidRuntime(14760):at
 com.matburt.mobileorg.MobileOrgActivity$1.run(MobileOrgActivity.java:117)
 E/AndroidRuntime(14760):at
 android.os.Handler.handleCallback(Handler.java:587)
 E/AndroidRuntime(14760):at
 android.os.Handler.dispatchMessage(Handler.java:92)
 E/AndroidRuntime(14760):at
 android.os.Looper.loop(Looper.java:123)
 E/AndroidRuntime(14760):at
 android.app.ActivityThread.main(ActivityThread.java:4358)
 E/AndroidRuntime(14760):at
 java.lang.reflect.Method.invokeNative(Native Method)
 E/AndroidRuntime(14760):at
 java.lang.reflect.Method.invoke(Method.java:521)
 E/AndroidRuntime(14760):at

 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
 E/AndroidRuntime(14760):at
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
 E/AndroidRuntime(14760):at
 dalvik.system.NativeStart.main(Native Method)
 I/Process ( 2566): Sending signal. PID: 14760 SIG: 3
 I/dalvikvm(14760): threadid=7: reacting to signal 3
 I/dalvikvm(14760): Wrote stack trace to '/data/anr/traces.txt'
 D/dalvikvm( 2898): GC freed 68 objects / 2408 bytes in 209ms
 D/dalvikvm( 2614): GC freed 2336 objects / 110792 bytes in 201ms
 I/Process (14760): Sending signal. PID: 14760 SIG: 9
 I/ActivityManager( 2566): Process com.matburt.mobileorg (pid 14760)
 has died.
 I/WindowManager( 2566): WIN DEATH: Window{43e0e690
 com.matburt.mobileorg/com.matburt.mobileorg.MobileOrgActivity
 paused=false}
 I/WindowManager( 2566): WIN DEATH: Window{43e47e50
 com.matburt.mobileorg/com.matburt.mobileorg.MobileOrgActivity
 paused=false}

 We should probably do further debugging off-list.

 --
Friedrich Delgado Friedrichs frie...@nomaden.org
 TauPan on Ircnet and Freenode ;)


 ___
 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] Re: suggestions of Android smartphones

2010-04-19 Thread Matthew Jones
I used swype for about 2 days on my droid before getting rid of it... it's a
good concept that needs be iterated on.

Trying to use emacs from any of the Android shells is borderline
impossible... unless you have a full keyboard to hook up to your Android
phone then I would say you should rule out using it in that fashion.

One of the features I'm working on for the MobileOrg beta (along with being
able to capture notes and change todo states) is a home screen widget that
will show your Agenda or Todo list, this way you don't have to open the
application to view or adjust these items.

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


On Mon, Apr 19, 2010 at 8:35 AM, Daniel Martins daniel...@gmail.com wrote:

 The device I was tantalized to buy was the

 Motorola Quench

 maybe mainly for Swipe feature

 http://www.youtube.com/watch?v=zWpqsDnXIOY  (at about 1:00)

 or maybe for the price (in Brazil is about 500 USD while the Milestone
 is about 780 USD. I know both are outrageous prices in American or
 European terms!). BTW the Quench in Brazil DOES NOT seem to come with
 the swype feature...

 In fact, I doubt I could edit in Emacs or similar in a phone. I am
 afraid of virtual keyboards and small physical keyboards as well :)
 For someone over forties I tend to do not consider these typing
 devices as toys or at least funny :)

 For this reason I think that a nice interface such as MobileOrg with
 agenda view would be the best.

 ConnectBot seems to be an option as well (when you have connection, of
 course!)

 Sven, you seem quite happy with a virtual keyboard. Am I right?

 Daniel

 2010/4/19 Richard Riley rileyrg...@gmail.com:
  Eric S Fraga ucec...@ucl.ac.uk writes:
 
  On Sun, 18 Apr 2010 11:07:32 -0300, Daniel Martins daniel...@gmail.com
 wrote:
 
   --- resending with a proper title ---
 
  Matthew,
 
  Just a suggestion for newbies.
 
  Could you generate a video of MobileOrg Android similar to those of
  the MobileOrg Iphone.
 
  I am still open to suggestions of Android smartphones.
 
  If I need to access a remote ssh account and open Emacs, the available
  keyborards are OK?
 
  Daniel
 
  I have the same questions!  My current mobile phone contract expires
  in 3 months and I'm looking at upgrading to an Android phone.  The
  current best deal I have found is for the Samsung Galaxy Portal, aka
  the i5700.  [1] I'm looking at upgrading to replace my Nokia internet
  tablet (n810) and non-smart phone with one unit.  The nokia does a
  really nice job of running emacs and org-mode, mind you.
 
  I'm particularly interested in knowing how the different handsets
  approach the keying in of keys like C-x, M-x, TAB, et al.
 
  Thanks,
  eric
 
 
  +1 on this. I had almost decided on the Motorola Milestone (Droid) but
  would love to hear others experiences. Using org-mode in a term emacs is
  not ideal because a lot of shift/arrow/fn chords dont work in the
 terminals
  I tried (xterm, urxvt etc) and so doubt they will on a mobile device
  either : so my hard core usage of only emacs -nw inside urxvt and tmux
  soon dwindled and I'm back to using emacs in X. The only problem I now
  have is not being to find a way to use ONE x frame with emacsclient
  being able to create it if its not already done (I bet I've missed
  something obvious but emacsclient -c always creates a new frame and
  emacsclient wont create it if its not already there on my emacs).
 
 
 
 
  ___
  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

___
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] Re: suggestions of Android smartphones

2010-04-19 Thread Matthew Jones
Maybe I misunderstood what you meant about the swipe feature.   There is a
keyboard called Swype which is fairly overrated.

I can't comment on how well or if a bluetooth keyboard would work... I think
if I were going to go to the trouble of carrying around a keyboard I would
rather just carry my netbook.

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


On Mon, Apr 19, 2010 at 7:12 PM, Daniel Martins daniel...@gmail.com wrote:

 2010/4/19 Matthew Jones m...@matburt.net:
  I used swype for about 2 days on my droid before getting rid of it...
 it's a
  good concept that needs be iterated on.

 I could not follow your comment here


  Trying to use emacs from any of the Android shells is borderline
  impossible... unless you have a full keyboard to hook up to your Android
  phone then I would say you should rule out using it in that fashion.

 A bluetooth keyboard such as

 http://www.dealextreme.com/details.dx/sku.34724
 http://www.dealextreme.com/details.dx/sku.6443
 http://www.dealextreme.com/details.dx/sku.28954


 is possible to be used with an Android phone? It worths an investment?


 Daniel

  One of the features I'm working on for the MobileOrg beta (along with
 being
  able to capture notes and change todo states) is a home screen widget
 that
  will show your Agenda or Todo list, this way you don't have to open the
  application to view or adjust these items.
  73
  Matthew W. Jones (KI4ZIB)
  http://matburt.net
 
 
  On Mon, Apr 19, 2010 at 8:35 AM, Daniel Martins daniel...@gmail.com
 wrote:
 
  The device I was tantalized to buy was the
 
  Motorola Quench
 
  maybe mainly for Swipe feature
 
  http://www.youtube.com/watch?v=zWpqsDnXIOY  (at about 1:00)
 
  or maybe for the price (in Brazil is about 500 USD while the Milestone
  is about 780 USD. I know both are outrageous prices in American or
  European terms!). BTW the Quench in Brazil DOES NOT seem to come with
  the swype feature...
 
  In fact, I doubt I could edit in Emacs or similar in a phone. I am
  afraid of virtual keyboards and small physical keyboards as well :)
  For someone over forties I tend to do not consider these typing
  devices as toys or at least funny :)
 
  For this reason I think that a nice interface such as MobileOrg with
  agenda view would be the best.
 
  ConnectBot seems to be an option as well (when you have connection, of
  course!)
 
  Sven, you seem quite happy with a virtual keyboard. Am I right?
 
  Daniel
 
  2010/4/19 Richard Riley rileyrg...@gmail.com:
   Eric S Fraga ucec...@ucl.ac.uk writes:
  
   On Sun, 18 Apr 2010 11:07:32 -0300, Daniel Martins
   daniel...@gmail.com wrote:
  
--- resending with a proper title ---
  
   Matthew,
  
   Just a suggestion for newbies.
  
   Could you generate a video of MobileOrg Android similar to those of
   the MobileOrg Iphone.
  
   I am still open to suggestions of Android smartphones.
  
   If I need to access a remote ssh account and open Emacs, the
 available
   keyborards are OK?
  
   Daniel
  
   I have the same questions!  My current mobile phone contract expires
   in 3 months and I'm looking at upgrading to an Android phone.  The
   current best deal I have found is for the Samsung Galaxy Portal, aka
   the i5700.  [1] I'm looking at upgrading to replace my Nokia internet
   tablet (n810) and non-smart phone with one unit.  The nokia does a
   really nice job of running emacs and org-mode, mind you.
  
   I'm particularly interested in knowing how the different handsets
   approach the keying in of keys like C-x, M-x, TAB, et al.
  
   Thanks,
   eric
  
  
   +1 on this. I had almost decided on the Motorola Milestone (Droid) but
   would love to hear others experiences. Using org-mode in a term emacs
 is
   not ideal because a lot of shift/arrow/fn chords dont work in the
   terminals
   I tried (xterm, urxvt etc) and so doubt they will on a mobile device
   either : so my hard core usage of only emacs -nw inside urxvt and tmux
   soon dwindled and I'm back to using emacs in X. The only problem I now
   have is not being to find a way to use ONE x frame with emacsclient
   being able to create it if its not already done (I bet I've missed
   something obvious but emacsclient -c always creates a new frame and
   emacsclient wont create it if its not already there on my emacs).
  
  
  
  
   ___
   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
 
 


 ___
 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] suggestions of Android smartphones

2010-04-18 Thread Matthew Jones
Daniel, thanks for this suggestion it's a really good idea, I hope to make
some as part of the documentation effort in the near future.

I have a Droid and love it and its physical keyboard but I tend to do very
simple things via ConnectBot to whatever server I am connected to.

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


On Sun, Apr 18, 2010 at 10:07 AM, Daniel Martins daniel...@gmail.comwrote:

  --- resending with a proper title ---

 Matthew,

 Just a suggestion for newbies.

 Could you generate a video of MobileOrg Android similar to those of
 the MobileOrg Iphone.

 I am still open to suggestions of Android smartphones.

 If I need to access a remote ssh account and open Emacs, the available
 keyborards are OK?

 Daniel


 PS I bought  an Android phone called Motorola Quench but due to a
 misunderstanding with the operator I was forced to cancel the
 purchase. (I am still very annoyed with this problem)



 2010/4/13 Matthew Jones m...@matburt.net:
  I am the developer/maintainer of MobileOrg for Android and I'd appreciate
  any feedback on the application.   You can find more information and
  download links on the
  wiki: http://wiki.github.com/matburt/mobileorg-android/
  73,
  Matthew W. Jones (KI4ZIB)
  http://matburt.net
 
 
  On Mon, Apr 12, 2010 at 10:08 PM, Daniel Martins daniel...@gmail.com
  wrote:
 
  Please, share your first impressions!!! I just bought an Android phone
  and would like to take similar routes.
 
  Daniel
 
  2010/2/16 David Rogoff da...@therogoffs.com:
   On 2010-02-16 13:47:59 -0800, Tom Tobin said:
  
   On Tue, Feb 16, 2010 at 12:18 PM, David Rogoff da...@therogoffs.com
 
   wrote:
  
   Hi all.
  
   New org-mode convert also looking at new phones.  It looks like
   theMoto
   Droid would be great for running org-mode.  Has anyone ported emacs
 to
   this
   platform and gotten org-mode running?
  
   I just switched from my iPhone back to an Android phone; I came
 across
   this project:
  
   http://github.com/matburt/mobileorg-android
  
   I haven't tried it yet, though.
  
   Thanks - I'll take a look.
  
  
  
  
   ___
   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
 
 


 ___
 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] Re: emacs/org-mode on Droid?

2010-04-15 Thread Matthew Jones
Make sure you check what 'org-mobile-push' generates when synchronizing...
we look for an index.org and checksums.dat file.   In MobileOrg the server
path will need to be the path to your index.org file

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


On Thu, Apr 15, 2010 at 3:36 PM, Mark Elston m_els...@comcast.net wrote:

 Nick,

 Thanks.  I'm already trying the script approach.  I have the
 following in a script:

  open https://webdav.mydrive.ch
  y
  username
  password
  cd org
  put Teaching.org
  put Home.org
  close
  exit

 The 'y' is to accept the untrusted server certificate.

 Unfortunately, even though this all works manually, when running it as:

  cadaver  response.file

 it barfs on accepting the certificate.  Sigh.  Time to get the sources
 and try compiling a local version that doesn't ask to accept the
 cert and just goes on with the rest.

 Mark


 On 4/15/2010 12:31 PM, Nick Dokos wrote:

 Mark Elstonm_els...@comcast.net  wrote:

  Nick,

 I have gotten cadaver running and can use it to connect to mydrive.ch.
 How do I integrate this in with MobileOrg?

 Mark


 [adding to my previous mail...]

 There are some examples (using scp) of setting up the
 org-mobile-post-push-hook in Appendix B.1 of the Org manual.  You might
 have to write a script to get cadaver to do what you want and then have
 the hook call the script: afaics, you can't just use the scp src dest
 command line paradigm.

 Nick



 ___
 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] Re: emacs/org-mode on Droid?

2010-04-14 Thread Matthew Jones
Could you just map the drive and treat it like a local disk?

There was a post about it a little while ago:
http://www.mail-archive.com/emacs-orgmode@gnu.org/msg21513.html

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


On Wed, Apr 14, 2010 at 11:21 PM, Mark Elston m_els...@comcast.net wrote:

 Sven,


 On 4/14/2010 2:36 PM, Sven Bretfeld wrote:

 Matthew Jonesm...@matburt.net  writes:

  There are plenty of free webdav services out there, a quick google search
 came
 up with a few...  I haven't used any of them as I run my own on my VPS,
 but
 check out http://www.box.net or http://mydisk.se


  Any of these should work fine with MobileOrg


 I use mydisk.se with MobileOrg for Android. It's definitely working. But
 it's only free for some weeks, but not very expensive after that.

 Greetings,

 Sven


 I am having trouble getting a command-line connection to *any* of these
 services.  I have tried mydrive.ch and box.net both and can get a
 web-based connection but cannot get scp or any other mechanism to work.
 I have Windows Vista and the latest Cygwin tools installed.

 Until I can figure out how to make this work I'm afraid that MobileOrg
 is not going to work for me.

 Mark



 ___
 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] Re: emacs/org-mode on Droid?

2010-04-13 Thread Matthew Jones
I am the developer/maintainer of MobileOrg for Android and I'd appreciate
any feedback on the application.   You can find more information and
download links on the wiki:
http://wiki.github.com/matburt/mobileorg-android/

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


On Mon, Apr 12, 2010 at 10:08 PM, Daniel Martins daniel...@gmail.comwrote:

 Please, share your first impressions!!! I just bought an Android phone
 and would like to take similar routes.

 Daniel

 2010/2/16 David Rogoff da...@therogoffs.com:
  On 2010-02-16 13:47:59 -0800, Tom Tobin said:
 
  On Tue, Feb 16, 2010 at 12:18 PM, David Rogoff da...@therogoffs.com
  wrote:
 
  Hi all.
 
  New org-mode convert also looking at new phones.  It looks like theMoto
  Droid would be great for running org-mode.  Has anyone ported emacs to
 this
  platform and gotten org-mode running?
 
  I just switched from my iPhone back to an Android phone; I came across
  this project:
 
  http://github.com/matburt/mobileorg-android
 
  I haven't tried it yet, though.
 
  Thanks - I'll take a look.
 
 
 
 
  ___
  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

___
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] Re: emacs/org-mode on Droid?

2010-04-13 Thread Matthew Jones
There are plenty of free webdav services out there, a quick google search
came up with a few...  I haven't used any of them as I run my own on my VPS,
but check out http://www.box.net or http://mydisk.se

Any of these should work fine with MobileOrg

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


On Tue, Apr 13, 2010 at 1:54 PM, Mark Elston m_els...@comcast.net wrote:

 On 4/13/2010 8:42 AM, Matthew Jones wrote:

 I am the developer/maintainer of MobileOrg for Android and I'd
 appreciate any feedback on the application.   You can find more
 information and download links on the wiki:
 http://wiki.github.com/matburt/mobileorg-android/

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


 I recently got a Droid (and am enjoying it) and would like to try out
 MobileOrg but don't have a WebDAV account and don't really want to
 spend money on one for just one purpose (MobileOrg).

 My ISP doesn't supply a WebDAV account but it does supply an FTP
 site.  Why can't MobileOrg support FTP for those who don't want to
 go to the trouble of buying an extra WebDAV account?

 Mark



 ___
 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] org-mode on iPhone or Android: recommendations?

2010-03-22 Thread Matthew Jones
Hi Martin, I'm working on the Android port of MobileOrg.  Currently it is in
an early alpha stage and has very limited features.  The goal is to reach
feature parity with the iPhone and then to extend it and add niceties like a
Widget that would let you view your agenda.  Another poster mentioned using
the N900 which is a great option if you want a full blown emacs and org-mode
at your fingertips.

The goal of MobileOrg (at least from my perspective) is not to implement
100% of Org's features (since I'm not interested in porting emacs itself),
but rather to make MobileOrg a good compliment to Org on your workstation.

There's a certain core set of features that will be implemented and then
based on community feedback, that can be extended.  Right now it is fairly
useful for staying synchronized on your mobile device but without the
ability to change task states or push new notes back to the server... that's
what I am currently working on.

If you have any questions please feel free to email me, or if you want to
get involved or check out the code, or run it through an emulator to get a
feel for it then you can grab the source from github at:
http://github.com/matburt/mobileorg-android

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


On Fri, Mar 19, 2010 at 2:00 PM, Martin Stemplinger mstemplin...@gmx.dewrote:

 Hi all,

 I currently think if I should buy a new smartphone but of course I need
 support for org-mode ☺. Now
 there is mobileorg  for the iPhone and a port to Android.

 I tend to prefer an Android phone but would like to be able to access
 org-mode. May I ask for advice or feedback from people
 who tested the port?

 Thanks in advance
 Martin



 ___
 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 Android 0.1_alpha

2010-03-01 Thread Matthew Jones
Hi Sven, are you connecting via https?  What is your URI connect string?   I
think it should work fine but I'll set up an account and test it out
tonight... if you have access to debug information via USB Debugging that
would also be helpful.

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


On Mon, Mar 1, 2010 at 5:41 PM, Sven Bretfeld sven.bretf...@gmx.ch wrote:

 Hi Matthew

 Matthew Jones bsdmatb...@gmail.com writes:

  Hey folks, I've been working on a version of MobileOrg for the Android
 platform
  with the goal to reach feature parity with the iPhone version developed
 by
  Richard Moreland.

 Thank you very much!

 The application doesn't seem to work with mydisk.se.

 Is that a known issue or am I doing anything wrong? The server
 information is correctly set, but syncing stops immediately with
 Synchronization Failed, try again? I haven't tried any other webdav
 server. I'm using the HTC Magic with Android 1.6.

 The files are created with org-mobile-push, the staging era is the
 top-folder of my mydisk.se account (no subfolder), which is mounted via
 davfs2 on Debian/Etch.

 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


[Orgmode] MobileOrg Android 0.1_alpha

2010-02-26 Thread Matthew Jones
Hey folks, I've been working on a version of MobileOrg for the Android
platform with the goal to reach feature parity with the iPhone version
developed by Richard Moreland.

I have completed an early alpha version that can fetch and display the
contents of Org files stored on a webdav server.   There are some good
instructions for setting up a webdav server in the normal MobileOrg
documentation: http://mobileorg.ncogni.to/doc/

For getting started from the emacs side of things, the Org-mode
documentation itself contains all the information you need:
http://orgmode.org/manual/MobileOrg.html

As for the MobileOrg android application itself you can find the release
notes and a download link here:

http://wiki.github.com/matburt/mobileorg-android/

There are some known issues with this early alpha version and can't
synchronize back to the webdav server yet or handle setting the state of
tasks but I felt this was a good start and would actually be useful for
Org-mode users

When you first start the application up you'll need to click Menu and then
Settings and enter your webdav information.  After saving you can click
Menu again then Sync.   Once that has finished it will populate the
display and you can drill into your document structure.

73,
Matthew W. Jones (KI4ZIB)
http://matburt.net
___
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


[Orgmode] MobileOrg Android 0.1_alpha

2010-02-25 Thread Matthew Jones
Sorry if this double posts, had forgotten which email address I had signed
up for on the mailing list.

Hey folks, I've been working on a version of MobileOrg for the Android
platform with the goal to reach feature parity with the iPhone version
developed by Richard Moreland.

I have completed an early alpha version that can fetch and display the
contents of Org files stored on a webdav server.   There are some good
instructions for setting up a webdav server in the normal MobileOrg
documentation: http://mobileorg.ncogni.to/doc/

For getting started from the emacs side of things, the Org-mode
documentation itself contains all the information you need:
http://orgmode.org/manual/MobileOrg.html

As for the MobileOrg android application itself you can find the release
notes and a download link here:

http://wiki.github.com/matburt/mobileorg-android/

There are some known issues with this early alpha version and can't
synchronize back to the webdav server yet or handle setting the state of
tasks but I felt this was a good start and would actually be useful for
Org-mode users

When you first start the application up you'll need to click Menu and then
Settings and enter your webdav information.  After saving you can click
Menu again then Sync.   Once that has finished it will populate the
display and you can drill into your document structure.

73,
Matthew W. Jones (KI4ZIB)
http://matburt.net
___
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