New Blog
I have a blog running on my own personal webserver using wordpress set up at
http://blog.carduner.net. Given the ample customizability of wordpress, I'll be using that blog from now on.
Be prepared for anything.
I have a blog running on my own personal webserver using wordpress set up at
http://blog.carduner.net. Given the ample customizability of wordpress, I'll be using that blog from now on.
Posted by Paul Carduner at 3:15 PM 0 comments
So I got tired of the blogger thing and decided that since I was upgrading my current web hosting solution, I might as well setup wordpress on my own box and use that instead. So check it out at
blog.carduner.net
Posted by Paul Carduner at 5:13 PM 0 comments
After a few weeks of fruitful and not so fruitful work sessions, I am slowly approaching the benchmark for a 0.1 release of z3c.formjs. So what will be provided in the 0.1 release?
import zope.interface
from z3c.form import form, button
from z3c.formui import layout
from z3c.formjs import jsbutton
class IButtons(zope.interface.Interface):
show = jsbutton.JSButton(title=u'Show Code')
hide = jsbutton.JSButton(title=u'Hide Code')
class ButtonForm(layout.FormLayoutSupport, form.EditForm):
buttons = button.Buttons(IButtons)
@jsbutton.handler(IButtons['show'])
def handleShow(self, id):
return '$("#code").slideDown()'
@jsbutton.handler(IButtons['hide'])
def handleHide(self, id):
return '$("#code").slideUp()'
@jsevent.handler(fields['state'], event=jsevent.CHANGED)
def handleStateChange(self, id):
return jsevent.updateWidgetFor(self.fields['city']).render()
Posted by Paul Carduner at 4:46 PM 0 comments
Labels: GSOC
(This post is liable to change in the near future as I fix mistakes)
I began work on trying to use Stephan Richter's forthcoming form library, z3c.form (not yet public) with my existing yet unstable zobby code. z3c.form is built on the idea that you are already using other z3c components for your web application - which apparently is now the standard among Zope experts for advanced application development. This was difficult for me as I have never used any z3c components before. The following are steps I had to take to move what I already had in zobby to be ready for z3c.form stuff.
from z3c.form.interfaces import IFormLayer
from z3c.formui.interfaces import IDivFormLayer
from z3c.layer.pagelet import IPageletBrowserLayer
class IZobbyBrowserLayer(IDivFormLayer, IFormLayer, IPageletBrowserLayer):
"""Like IMinimalBrowserLayer including widget layer."""
<interface
interface="zobby.layer.IZobbyBrowserLayer"
type="zope.publisher.interfaces.browser.IBrowserSkinType"
/>
import zobby.layer
class IZobbyBrowserSkin(zobby.layer.IZobbyBrowserLayer):
"""The ``Zobby`` browser skin."""
<zope:interface
interface="zobby.skin.IZobbyBrowserSkin"
type="zope.publisher.interfaces.browser.IBrowserSkinType"
name="ZobbySkin"
/>
<z3c:layout
for="*"
layer="zobby.layer.IZobbyBrowserLayer"
template="template.pt"
/>
<tal:block replace="structure provider:pagelet" />
<z3c:pagelet
name="index.html"
for="zobby.interfaces.IZobbyApplication"
class=".browser.ZobbyApplicationDisplayForm"
permission="zope.Public"
layer="zobby.layer.IZobbyBrowserLayer"
/>
<z3c:template
template="client.pt"
for=".browser.ZobbyApplicationDisplayForm"
layer="zobby.layer.IZobbyBrowserLayer"
/>
Hi! I am the zobby client
Posted by Paul Carduner at 4:11 PM 1 comments
I thought that it would be a good idea to start writing an AJAX heavy web application to get a better idea of the various deficiencies that currently exist. Doing this will also help me learn how to use jsonserver and jquery, which will be vital in improving the deficiencies.
With that, I would like to introduce Zobby, which will be a Zope based clone of Gobby, a cross platform collaborative editor. Last night I spent several hours getting to know jsonserver and jquery and produced code that allows any number of people to chat, irc style, through the web. Currently I haven't used any auto generated forms, but just one straight up Page template and lots of javascript. The repository is publicly available at http://bzr.carduner.net/zobby.
Posted by Paul Carduner at 4:03 PM 1 comments
I've begun to write up a set of things I'd like to be able to do with an AJAX enhanced form framework. This is by no means complete, so check back for updates.
Last updated: Wednesday 25th of April.
Use Cases for AJAX form framework
=================================
General Goal
------------
The general goal is to speed up the users ability to work with a web application. The smaller the amount of data transfered between server and client, the faster the user can perform tasks. Since lots of data transfered between client and server is duplicated, there is a lot of room for improvements.
Validation
----------
Some form validation can be done with javascript before the data is ever submitted to the server. Some examples would include data input for:
- numerical fields
- date fields
- choice fields (assuming they aren't using select elements).
One goal we should consider is implementing form validation in javascript for the simpler field types (those listed above). We will also want the ability to hook widgets up to custom javascript validators. So before a form gets submitted to the server, all widgets that have javascript validators, call the validators first.
The javascript validators should not replace the validators on the server side, to avoid problems with clients that do not support javascript. The overhead of validating input data twice will still be much less than the overhead of sending a whole error page to the client.
note: some widgets might do validation directly rather than through some other function that gets called on data submission. For example, a numerical input field might by a text input where the text turns red when the data in the field is not a number. This is the sort of thing where the "validator" would be called as the user types in the input field.
Unification of Display and Edit fields
--------------------------------------
When a user wishes to only change one attribute of an object, it can be cumbersome to load the entire edit form for the object. Since edit forms are generally accessed by first navigating to a display form, it would be beneficial if display forms could act as edit forms. Specifically, I see this working with widget switching, where a
display widget is switched to an edit widget. In this case there are two possibilities.
1. In the case that simple fields are being used, such as text
fields, modifying a simple display widget into a simple edit
widget is trivial and can be done entirely with javascript.
2. In the case of more complicated widget fields, for which there
are no javascript based renderers, a javascript function would
request the edit widget from the server via AJAX.
Wrapping Sub Forms in AJAX
--------------------------
When working with complex data input systems, it is sometimes the case that there are sub forms within a larger form. For example, we might have some kind of nested tree data structure where we wish to edit individual nodes within the tree. In a case like this, forms are recursively generated for each node and its children in the tree. Here the distinction between a widget and a sub form becomes vague. We may choose to define a widget that displays/edits a node or we may choose to define a sub form that displays/edits the node. Either method would work but the implementations would be slightly different.
I would like the ability to wrap a sub form in a widget. This way it would be possible to take existing sub forms and modify their data submission actions through javascript to funnel them into an ajax based data submission function. Here is how it might work.
1. Form object iterates through all widgets
2. One of the widgets links to a SubForm object.
- SubForm fields are not wrapped in form tags (i think that is the
only distinction between sub forms and regular forms)
3. Widget renders subform
4. js associated with widget parses subform html looking for
<input type="submit"> tags.
5. js modifies DOM to replace submit input elements with button elements
and hooks buttons up to a special handler
6. user clicks on button, handler is called
7. handler gathers all the data from the subforms fields and packages them
into a json-rpc request
8. Request is sent to json-rpc view on server that corresponds to the
wrapper widget
9. wrapper widget creates subform view, passing it input data.
10. subform view performs data conversion and validation, generating a
new html form (which might have error messages)
11. json-rpc view for widget sends back json message containing
subforms newly generated html
12. js handler replaces old widget with new widget that contains
updated subform.
In this scenario, the subform machinery is totally unaware that anything is different. But on the user side, the subform is submitted and regenerated without a page reload.
Posted by Paul Carduner at 6:25 PM 1 comments
Labels: GSOC
I have just taken a brief look at jsonserver. I managed to get it installed without too much trouble except for missing the jsolait installer script. Jsolait is the javascript library that comes with jsonserver to perform the requests. I also installed the kwdemo app to test it out. Now I'm trying to figure out what the role of jsolait will be in the overall implementation of the ajax form framework. Should I go ahead and use jsolait since it already comes with jsonserver? Or should I try to replace the functionality it provides with jQuery?
I went ahead and reimplemented the javascript functions in kwdemo using jQuery. One problem I came across is that jsonserver is setup to accept a json format string in the post (i.e. '{"param1":"Some data"}'), while jQuery is set up to send regular http query strings (i.e. "?param1=Some Data"). Although jQuery can parse a json string into a javascript object, I haven't found the method (if there is one) to do the reverse.
Just for comparison, here is the code using jsolait:
function test1() {And here is the jQuery version:
// injecting plaintext as html
var result = aServer.my_output(test1callback);
}
function test1callback(resp,err){
var node = document.getElementById("appendChild");
if (!err){
node.innerHTML = resp;
}
else
{node.innerHTML = 'Something went wrong!'
}
}
function jquerytest1() {
var result = null;
$.ajax({url: '.',
type: 'post',
dataType: 'json',
data: '{"id":1,"method":"my_output", "params":[]}',
contentType: 'application/json-rpc',
success: function(json) {$("#appendChild").append(json.result)},
error: function() {$("#appendChild").append("Something went wrong!")}});
}
if (!err)
part. I guess I would like to use the jsolait methods but use jquery response handling syntax, rather than having a straight callback.
Posted by Paul Carduner at 11:02 PM 0 comments
Labels: GSOC
So, before I get down to the nitty gritty of implementing this functionality, I have to decide what JS libraries I'm going to use. So far I'm looking in to
fixjavascript. Furthermore it integrates a bunch of cool visual effects that I think it stole from scriptaculous that are just awesome. Although visual effects are mostly irrelevant for the functionality we need, they nevertheless sway the right side of my brain :). But just to make sure I covered my bases, I thought it would be best to look into some other frameworks as well before coming to a final decision.
Posted by Paul Carduner at 1:32 AM 4 comments
Labels: GSOC