WebKit Future Work
Version 0.8.1
Webware for Python 0.8.1
Warning
This document hasn't been seriously combed over in some time. It is definitely out of date. You can find better information about known bugs and future work in the Wiki and in the SourceForge bug tracker, both accessible from the Webware Home Page.
Future Work/Limitations
Sprinkled throughout the code are comments tagged with @@ which are hopefully accompanied by a date and someone's initials. These comments represent "TO BE DONE"s. The double at-sign (@@) convention was chosen because it doesn't appear to be used for anything else.
In addition to the inline comments, some significant items have been recorded below. These are future ideas, with no committments or timelines as to when/if they'll be realized. The Python WebKit is open source, so feel free to jump in!
The numbers below are mostly for reference, although longer term items tend to be pushed towards the bottom.
Known Bugs
- The stop command for the webkit "rc" script does not work.
- There is one report that indicates that Application.serverSidePath() may be broken when using MakeAppWorkDir.
- Contexts do not have separate name spaces.
- The ListBox example does not take kindly to a Refresh/Reload after a delete operation. In essence, you are telling the ListBox to delete the same object twice.
- Problems have been reported with cookies on MS IE for the Mac.
- The OneShot adapter does not clean old sessions when using SessionFileStore.
- If a context appears in the Contexts setting once by name and once as the default, Application seems to load it twice.
To Do
- Major Items
- Rearchitect app servers, applications, contexts, etc. One process per application (not several applications per process). Don't worry though. 99% of servlet code will be unaffected by these changes.
- CheckSource.py: A program to check the source code conventions.
- FormKit: A plug-in to aid the construction and validation of forms. (Already in progress.)
- Role-based security and user-authentication. Goal is to eliminate, as much as possible, developer-written security logic. This should be provided by the WebKit and be configurable.
- Write a custom adaptor for Apache, Netscape, MS, etc.
- Distribution and load balancing.
- Fault tolerance.
- More sophisticated admin tools including password protection, clearing logs, displaying a maximum of information at a time, etc. Consider using module 'resource'.
- Investigate case insensitive URLs, especially for the Windows platform.
- Plug-ins
- In ExamplePage, automatically support examples of any plug-in
- Better docs
- Properties.config. 'Load', 0, 1 or the name of the required op sys
- General
- Hunt down: @@ tags (which signify "To Be Done"s), FUTURE items in class doc strings, NotImplementedErrors, -- tags
- Code clean up.
- Right now, if the Application itself (as opposed to Servlets) throws an exception, it doesn't get captured nicely. However, it is displayed in the app server's console.
- The exception handler is pretty nice and has features like logging, e-mail, gathering debugging info, etc. However, on occasions it can throw exceptions too. There should be a simpler, secondary exception handler for when this happens.
- Review the timestamp caching logic and its relation to .pyc files if any.
- AppServer: Servlets get reloaded when they are changed, but not the Servlets ancestor classes.
- Add "Last-modified:" to generic files that are served via WebKit.
- 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).
- Incoproate If-Modified-Since - addressed in patch 608957
- Adopt the code in NewThreadedAppServer as a new model for the ThreadedAppServer.
- Adopt the code in serverSideInfoForRequestNewAlgorithm in Application.
- Make ThreadeAppServer easily subclassed to allow for customization to AppServer behavior.
- Testing
- Provide testing web page where people can report their testing results including version numbers, etc.
- Provide higher level automation of testing. For example, a testing script should be able to launch various app servers multiple times.
- Provide highly automated benchmarking so we can track changes in performance.
- Expand the regression test suite.
- Docs
- Beef up the User's Guide.
- User's Guide: Create a caching section to discuss the virtues of doing so. Color example became 12 X faster on the server side.
- Create a tutorial.
- Docs: Provide links to 'pythondoc' generated documentation of the classes.
- Food for thought, considerations, reviews
- Consider this statement from the FastCGI docs: Redirects are handled similar to CGI. Location headers with values that begin with "/" are treated as internal-redirects; otherwise, they are treated as external redirects (302).
- Consider if we need to support <form action="x.py?a=1" method="POST"> where you will have both a query string and posted data.
- Application modifies sys.path so that servlets can say "from SuperServlet import SuperServlet" where SuperServlet is located in the same directory as the Servlet. We'd prefer a more sophisticated technique which does not modify sys.path and does not affect other servlets. (Or maybe this would go away with a new one-process-per-application architecture.)
- Check out
- Aquarium
- http://www.zope.org/Members/Amos/WhatIsAcquisition
- http://www.zope.org/Members/jim/Info/IPC8/AcquisitionAlgebra/index.html
- http://www.x-works.com
- FastCGI related: http://www.tfarmbruster.com/fcgi_sa.htm
- Down the road
- Multi-language support/localization (e.g., vend data to clients in their preferred written language)
- Consider CORBA standard RMI-IIOP and it's potential interaction with WebKit. This technology has been marked for inclusion in J2EE. I imagine the idea might be that an app server could be used by more than just web browsers. e.g., it could be used programmatically (in a more natural way than simulating a web client).