I am trying to create a Quiz application. I am thinking to adopt on Client-only mode rather Client server based. On in other words, I want that student can share Quiz using pen-drive/disk-drive/attachment and just open in firefox/chrome. I am using HTML5 only. No place for any non-FOSS/close technology. May you please help that this is possible or not ?
* Quiz Test mode - No questions will be added, only test will be loaded from Database and submit button will be generate test result (jQuery) * Quiz Admin mode - Questions will be added in database.
No browsers have yet implemented the FileWriter API, so no you can't really do that yet.
Also, if the application was pure client-side it would be impossible to make something that was not hackable (just step into Firebug / Webkit Inspector and set a breakpoint where scores are stored...)
Jeff
On Thu, Feb 17, 2011 at 9:56 PM, Narendra Sisodiya
<naren...@narendrasisodiya.com> wrote: > I am trying to create a Quiz application. I am thinking to adopt on > Client-only mode rather Client server based. On in other words, I want that > student can share Quiz using pen-drive/disk-drive/attachment and just open > in firefox/chrome. I am using HTML5 only. No place for any non-FOSS/close > technology. > May you please help that this is possible or not ?
> * Quiz Test mode - No questions will be added, only test will be loaded from > Database and submit button will be generate test result (jQuery) > * Quiz Admin mode - Questions will be added in database.
> -- > Please keep in mind all of the emails on this list are publicly archived and > readable, so > don't mention anything you don't want to be public. > All participants in this group represent themselves and not their employers.
> You received this message because you are subscribed to the Google > Groups "Open Web Advocacy" group. > To post to this group, send email to openweb-group@googlegroups.com > To unsubscribe from this group, send email to > openweb-group+unsubscribe@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/openweb-group?hl=en
On Fri, Feb 18, 2011 at 12:28 PM, Jeff Schiller <codedr...@gmail.com> wrote: > No browsers have yet implemented the FileWriter API, so no you can't > really do that yet.
Thanks I got twfile http://jquery.tiddlywiki.org/twFile.html Files based IO will be able to done using XUL in Firefox if I try to save Quiz in xml format. Now looking for, How I will be load/save content from IndexedDB or SQLite or WebSQL from disk.
> Also, if the application was pure client-side it would be impossible > to make something that was not hackable (just step into Firebug / > Webkit Inspector and set a breakpoint where scores are stored...)
> Jeff
> On Thu, Feb 17, 2011 at 9:56 PM, Narendra Sisodiya > <naren...@narendrasisodiya.com> wrote: > > I am trying to create a Quiz application. I am thinking to adopt on > > Client-only mode rather Client server based. On in other words, I want > that > > student can share Quiz using pen-drive/disk-drive/attachment and just > open > > in firefox/chrome. I am using HTML5 only. No place for any non-FOSS/close > > technology. > > May you please help that this is possible or not ?
> > * Quiz Test mode - No questions will be added, only test will be loaded > from > > Database and submit button will be generate test result (jQuery) > > * Quiz Admin mode - Questions will be added in database.
> > -- > > Please keep in mind all of the emails on this list are publicly archived > and > > readable, so > > don't mention anything you don't want to be public. > > All participants in this group represent themselves and not their > employers.
> > You received this message because you are subscribed to the Google > > Groups "Open Web Advocacy" group. > > To post to this group, send email to openweb-group@googlegroups.com > > To unsubscribe from this group, send email to > > openweb-group+unsubscribe@googlegroups.com > > For more options, visit this group at > > http://groups.google.com/group/openweb-group?hl=en
On Thu, Feb 17, 2011 at 11:35 PM, Narendra Sisodiya
<naren...@narendrasisodiya.com> wrote: > I got twfile http://jquery.tiddlywiki.org/twFile.html Files based IO will be > able to done using XUL in Firefox if I try to save Quiz in xml format. > Now looking for, How I will be load/save content from IndexedDB or SQLite or > WebSQL from disk.
On Fri, Feb 18, 2011 at 1:39 PM, Jeff Schiller <codedr...@gmail.com> wrote: > On Thu, Feb 17, 2011 at 11:35 PM, Narendra Sisodiya > <naren...@narendrasisodiya.com> wrote: > > I got twfile http://jquery.tiddlywiki.org/twFile.html Files based IO > will be > > able to done using XUL in Firefox if I try to save Quiz in xml format. > > Now looking for, How I will be load/save content from IndexedDB or SQLite > or > > WebSQL from disk.
> You have an odd definition of "HTML5 only" :)
I admit my mistake that twFile and XUL are not HTML. I will read more on SQLite/WebSQL/IndexedDB.
On Fri, Feb 18, 2011 at 1:49 PM, Narendra Sisodiya <
naren...@narendrasisodiya.com> wrote: > On Fri, Feb 18, 2011 at 1:39 PM, Jeff Schiller <codedr...@gmail.com>wrote:
>> You have an odd definition of "HTML5 only" :)
> I admit my mistake that twFile and XUL are not HTML. I will read more on > SQLite/WebSQL/IndexedDB.
Let me ask more clear question. where exactly above database/storage techniques (websql/IndexedDB etc) store their data ? * Local File * Local browser cache or cookie or similar things * WebServer
OR Is it possible to just READ and Display a database content from file ( Ex xyz.db) in index.html without having any server. (Ex - File mode).