Webware for Python 0.5
Release Notes
- Version 0.4 was released on 3/1/2001.
- New Block syntax, Braces, was added. It was present in the Webware 0.4 release, but undocumented as it was experimental. It has received a fair amount of use and is now ready for prime time. The use of braces for PSP syntax removes the need to worry about whitespace indentation in the Python code you put in your PSP pages. Instead, you use braces ( { and }) to signify blocks, which can span script blocks. This will probably be the most effective means of coding in PSP pages. In order to use this type of indentation, you need to specify it at the top of your PSP page. See the UsersGuide for more information.
- You can now inherit from multiple base classes in a PSP using:
<%@ page extends="Base1,Base2,Base3"%>
- Bugfix: If the path of your PSP included something like a "~" it would break. [Geoff T]
- Bugfix: Removed the try/except block around the import of the parent class of PSP pages. This ate up error messages when the parent couldn't be imported. [Jay L]
- Minor doc and example refinements. [Jay L, Geoff T]