w4py3
w4py3 copied to clipboard
Webware for Python 3
Add more advice to the [Migration Guide](https://webwareforpython.github.io/w4py3/migrate.html) when we have more experience with migrating apps.
Currently, the API of Webware 3.0 still uses the traditional naming conventions and the conventions for getters and setters that originated from times when there was no PEP8 and Python...
For instance, add "Last-modified:" to generic files that are served via Webware.
Add more unit tests, expand the regression test suite, and increase test coverage.
Provide highly automated benchmarking so we can track changes in performance.
If a Python file has only one class that inherits from Servlet, then use that as the Servlet class (rather than requiring the name be the same as the file).
We should integrate support for i18n and l10n or at least document how to handle this in Webware using existing tools.
Separate more clearly and systematically which messages are printed to stdout and which to stderr, or even better: Make use of the logging module instead of conditional print statements with...