2006-10-03 PyWebLib 1.3.4 - New method pyweblib.Field.titleHTML() implements appropriate escaping of HTML character entities in title strings. 2004-08-23 PyWebLib 1.3.3 - pyweblib.httphelper.URLRedirect() does not invoke vars() anymore to be friendly to psyco module - Fixed MANIFEST.in and setup.cfg to not include non-existing directory doc/ - Fixed handling of dictobj passed in to pyweblib.session.WebSession.__init__() - Fixed handling of argument crossCheckVars in pyweblib.session.WebSession.__init__(). Only use default from SESSION_CROSSCHECKVARS if crossCheckVars is None 2004-03-31 PyWebLib 1.3.2 - Fixed argument handling of 'checked' in pyweblib.forms.Checkbox.inputHTML() - Stronger session ID chosen randomly from string.letters+string.digits 2003-12-01 PyWebLib 1.3.1 - Fixed some subtle bugs found with pychecker - pyweblib.session now uses module random instead of whrandom - Support for file upload with new class pyweblib.forms.File. 2003-10-21 PyWebLib 1.3.0 - Support for file upload with new class pyweblib.forms.File. - Fixed pyweblib.forms.Field.labelHTML() to always return string instead of sometimes returning Unicode object - pyweblib.forms.Checkbox.inputHTML() has new key-word argument checked - pyweblib.forms.Password.inputHTML() has key-word argument default - pyweblib.forms.Field.inputHTML() (all derived) have new key-word argument id_value for specifying id-attribute of input field tag. - pyweblib.forms.Field.labelHTML() has new key-word argument id_value for specifying for-attribute of label tag. - Renamed pyweblib.session.KeyError to pyweblib.session.InvalidSessionId to avoid name clash with standard KeyError exception - New method pyweblib.session.Session._validateSessionIdFormat() implements sanity check on session ID for protecting underlying implementations from overflows etc. - pyweblib.session.Session._generateSessionID() does not add time.time() to session ID anymore. This was never used for anything meaningful and is only bloat. 2003-05-23 PyWebLib 1.2.3 - pyweblib.forms.escapeHTML() without for-loop for increased performance - added new function pyweblib.helper.guessClientAddr() - pyweblib.forms.Checkbox.__init__(): Set maxLen class attribute to 0 if default is None - pyweblib.forms.Form.getInputFields(): New argument unquotePlus to choose whether to use urllib.unquote_plus() or urllib.unquote(). Default is to use urllib.unquote(). 2003-01-26 PyWebLib 1.2.2 - Security fix: os.environ not longer used as default for key-word argument of pyweblib.sslenv.GetAllSSLEnviron() 2002-09-11 PyWebLib 1.2.1 - Minor security fixes: Mutable types and instances as defaults for key-word args are eliminated - Fixed demo cgi-bin/test-forms.py 2002-07-25 PyWebLib 1.2.0 - Added generation of Date header in httphelper.SendHeader() - pyweblib.forms.Form.hiddenInputFields(): Values are escapedHTML() and line breaks are added for better readability of HTML source - Support for Python installations built without thread support in pyweblib.session (mimikri lock handling) - New parameter maxSessionCount for pyweblib.session.WebSession.__init__() defines the maximum number of web sessions. pyweblib.session.WebSession.newSession() raises pyweblib.session.MaxSessionCountExceeded if number of sessions is higher than the limit - Added pyweblib.httphelper.SimpleMsg() for situations where ressources are really tight ------------------------------------------------------------------ 2002-02-17 PyWebLib 1.1.0 - Generalized old class pyweblib.helper.AcceptCharsetDict to general usable class pyweblib.helper.AcceptHeaderDict which is suitable for parsing all Accept-* headers described in sections 14.1 to 14.5 of RFC2616. ------------------------------------------------------------------ 2001-11-17 PyWebLib 1.0.6 - Added pyweblib.forms.getInputValue() ------------------------------------------------------------------ 2001-11-11 PyWebLib 1.0.5 - pyweblib.forms.Field._labelHTML() was renamed to labelHTML() - pyweblib.forms.Field.inputHTML() does not call labelHTML(). The application has to explicitly call labelHTML() if needed. - Removed parameters of pyweblib.forms.Field.inputHTML() related to