> The data entered needs to be "crunched" to a degree not possible in > JavaScript. I intend to "rent" this code to my clients but the code is > running on my ISP's server.
What about a cron job that runs a python script that crunches the values and puts them in a javascript file you can read from qooxdoo? If that's not flexible enough, I'd say go with Django as it wouldn't be faster to learn writing CGI scripts with Python anyway. Django is very modular and you don't need to use (or learn) parts that aren't useful to you. For your needs, you'll probably just need views (the part that decides what to pass back to the client) and caching (so you don't recompute when there is no need to). ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
