Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-12 Thread Edward Iglesias
Thanks to everyone. Lots of good ideas here. I am not sure about transferring our mobile app to html5 but it might work. Thanks again. Edward Iglesias On Fri, Nov 11, 2011 at 4:27 PM, Brad Rhoads bdr...@gmail.com wrote: I'd try using couchdb

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-12 Thread Friscia, Michael
...@gmail.com] Sent: Saturday, November 12, 2011 11:00 AM To: CODE4LIB@LISTSERV.ND.EDU Subject: Re: [CODE4LIB] iPad Kiosk Statistics Thanks to everyone. Lots of good ideas here. I am not sure about transferring our mobile app to html5 but it might work. Thanks again. Edward Iglesias On Fri, Nov 11

[CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Edward Iglesias
Hello All, We are implementing iPads in our library as wayfinders or kiosks. Does anyone know of a way to get stats from them? We are using Kiosk software that loads local html pages so as to not have to worry about internet connectivity. I've thought about just exporting the history from the

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Friscia, Michael
for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of Edward Iglesias Sent: Friday, November 11, 2011 2:53 PM To: CODE4LIB@LISTSERV.ND.EDU Subject: [CODE4LIB] iPad Kiosk Statistics Hello All, We are implementing iPads in our library as wayfinders or kiosks. Does anyone know of a way to get stats

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Edward Iglesias
, November 11, 2011 2:53 PM To: CODE4LIB@LISTSERV.ND.EDU Subject: [CODE4LIB] iPad Kiosk Statistics Hello All, We are implementing iPads in our library as wayfinders or kiosks. Does anyone know of a way to get stats from them?  We are using Kiosk software that loads local html pages so

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Jason Griffey
Yale University Library (203) 432-1856 -Original Message- From: Code for Libraries [mailto:CODE4LIB@LISTSERV.ND.EDU] On Behalf Of Edward Iglesias Sent: Friday, November 11, 2011 2:53 PM To: CODE4LIB@LISTSERV.ND.EDU Subject: [CODE4LIB] iPad Kiosk Statistics Hello All

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Friscia, Michael
@LISTSERV.ND.EDU] On Behalf Of Edward Iglesias Sent: Friday, November 11, 2011 3:31 PM To: CODE4LIB@LISTSERV.ND.EDU Subject: Re: [CODE4LIB] iPad Kiosk Statistics No internet connection. We have wireless but it would be sketchy for a months at a time connection. Edward Iglesias On Fri, Nov 11, 2011

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Francis Kayiwa
On 11/11/11 2:31 PM, Cary Gordon wrote: It depends on what you mean by local. If you mean that the html files are on the iPad and you have no network connection, there isn't much you can do. This isn't entirely true as griffey@gmail suggested under separate cover. It is just a wee more

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Cary Gordon
It depends on what you mean by local. If you mean that the html files are on the iPad and you have no network connection, there isn't much you can do. If the iPads have access to a local network and you have a local webserver, you can use a log analysis tool such as AWStats on the server.

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Nate Vack
On Fri, Nov 11, 2011 at 2:31 PM, Cary Gordon listu...@chillco.com wrote: It depends on what you mean by local. If you mean that the html files are on the iPad and you have no network connection, there isn't much you can do. You could use HTML5 storage: http://diveintohtml5.info/storage.html

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Jason Griffey
HTML5 local cache is an interesting idea...you could potentially even build in some javascript to do very basic logging (accesses/uses) using the cache as your datastore. Funky, but probably doable. If going down the xCode/Apple dev road, while it's not trivial, it's reasonably straightforward to

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Jason Casden
I've used the semi-deprecated Web SQL Database on iPads to store relational data locally with some periodic polling to see if it's safe to flush the data to a server. The data survives browser and device restarts. This works well as long as the network access is reliably intermittent (as Nate

Re: [CODE4LIB] iPad Kiosk Statistics

2011-11-11 Thread Brad Rhoads
I'd try using couchdb (http://www.couchbase.org/get/couchbase-mobile-for-ios/current). It would auto sync when ever you did get online. --- www.maf.org/rhoads www.ontherhoads.org On Fri, Nov 11, 2011 at 1:52 PM, Edward Iglesias edwardigles...@gmail.com wrote: Hello