Hi, I have a design problem, and it's possible I lack a clear understanding of gears' limitations. Consider an example - I have a website with a few forms; a user enters some information, and after clicking save, the form data gets POSTed to a servlet and saved in a database. This is quite trivial, but not so offline. Offline, I'm able to capture all the necessary static files, but am unable to find a place to emulate the servlet logic after a user clicks 'Save'. Is there an available hook to supply a callback in the manifest file? I'd like to capture the POST request, extract the form data, and save it to the local sqllite DB and then finally redirect, similar to the aforementioned online example.
Thanks.
