[sword-devel] SWORD + Cordova

2014-07-18 Thread Troy A. Griffitts
Many of you know that I've been working on Cordova/Phonegap bindings for SWORD. I have a working javascript app running on Android now and would like to move the proof of concept to the next phase and see if we can get the same app running on iOS. I don't know anything about iOS. :) Is anyon

Re: [sword-devel] SWORD + Cordova

2014-07-19 Thread Peter Von Kaehne
do for clarifying where the problem lies? FWIW I am on an HTC One V - Android 4 (.1?) with HTC Sense Peter > Gesendet: Samstag, 19. Juli 2014 um 06:03 Uhr > Von: "Troy A. Griffitts" > An: "SWORD Developers' Collaboration Forum" > Betreff: [sword-devel] SWOR

Re: [sword-devel] SWORD + Cordova

2014-07-19 Thread Troy A. Griffitts
? > >FWIW I am on an HTC One V - Android 4 (.1?) with HTC Sense > >Peter > >> Gesendet: Samstag, 19. Juli 2014 um 06:03 Uhr >> Von: "Troy A. Griffitts" >> An: "SWORD Developers' Collaboration Forum" > >> Betreff: [sword-devel]

Re: [sword-devel] SWORD + Cordova

2014-07-21 Thread David Haslam
Hi Troy, Clarification sought for wider readership Apache Cordova redirects to https://en.wikipedia.org/wiki/PhoneGap Is what you're working on completely compatible with PhoneGap? If so, does that imply the feasibility for having a SWORD front-end on all the supported platforms tabled in t

Re: [sword-devel] SWORD + Cordova

2014-07-21 Thread Troy A. Griffitts
Cordova is an attempt to create a JavaScript+HTML+CSS development framework for writing 'native' cross-platform apps. They do this essentially by creating a native app with a single HTML display component, then running your JavaScript inside that component. You can read their tech specs for more

Re: [sword-devel] SWORD + Cordova

2014-08-10 Thread Matěj Cepl
On 2014-07-21, 15:07 GMT, you wrote: > We've created a SWORD Cordova plugin which currently only > proxies to the native Android environment, and a pilot app as > a proof of concept, which has been internally dubbed Bishop3. > If the SWORD plugin was extended to work on any of the other > pl

Re: [sword-devel] SWORD + Cordova

2014-08-10 Thread Troy A. Griffitts
Dear Matěj, Yes, you are correct. This requires a binary libsword, which I have built for Android. I am hoping someone will build for iOS, Windows Mobile, and even desktop OSes. This would theoretically let us run the same frontend on all platforms, built entirely in JavaScript; however, w

Re: [sword-devel] SWORD + Cordova

2014-08-10 Thread Isaac Dunham
On Sun, Aug 10, 2014 at 08:23:03PM -0700, Troy A. Griffitts wrote: > Dear Matěj, > > Yes, you are correct. This requires a binary libsword, which I have built > for Android. I am hoping someone will build for iOS, Windows Mobile, and > even desktop OSes. This would theoretically let us run the

Re: [sword-devel] SWORD + Cordova

2014-08-10 Thread Troy A. Griffitts
Dear Isaac, Thanks for the feedback. I will test on a 2.3 VM and see if there are some problems I can iron out. Troy On August 10, 2014 9:50:49 PM MST, Isaac Dunham wrote: >On Sun, Aug 10, 2014 at 08:23:03PM -0700, Troy A. Griffitts wrote: >> Dear Matěj, >> >> Yes, you are correct. This requ

Re: [sword-devel] SWORD + Cordova

2014-08-13 Thread Troy A. Griffitts
Dear Isaac, I had a look on Android 2.3.3 (API Level 10) and found all sorts of troubles. Apparently the JavaScript engine in the HTML View on that level of Android doesn't support: a) calling me keyword methods by name, e.g., dataStore.delete(rowID); must be dataStore['delete'](rowID); b)

Re: [sword-devel] SWORD + Cordova

2014-08-13 Thread Isaac Dunham
On Wed, Aug 13, 2014 at 08:18:31AM -0700, Troy A. Griffitts wrote: > Dear Isaac, > > I had a look on Android 2.3.3 (API Level 10) and found all sorts of > troubles. > > Apparently the JavaScript engine in the HTML View on that level of Android > doesn't support: > a) calling me keyword methods by