Hi On Aug 25, 1:39 pm, "Timothy Clemans" <[EMAIL PROTECTED]> wrote: > I am very interested in the possibility > of migrating the Sage Notebook to Django. Moving all the Notebook's > HTML to Jinja templates is the first step in migrating.
My comments on that are based on my experience with something similar - writing jsp and servlet code in java. But anyways, using templates has a lot of benefits. Faster development, easier maintenance and extensibility, i.e. extending basic templates with specialized functionality and so on. This is also useful for things like i18n internationalization of the interface, where just a middleware layer switches according to a language parameter and nobody has to poke around inside the current python code to replace strings. Another point is, that editing html content is more error prone since there is a better separation of code, logic and html. Also, the processing is faster since templates are only loaded once. according to the django- book website, there are also addons for authentication and administration that makes development easier and the interface more stable. h --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-devel URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---