1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
Apr 10 2002 - Added a fix for a proble where if a module was indirectly
imported, it could then be accessed via the publisher
Aug 4 2001 - 2.7.6 released. Sometime prior a publisher upload bug was
fixed.
Jun 11 2001 - 2.7.5 released for those who want Python 2.1
Jun 11 2001 - Changed configure.in to accomodate Python 2.1. It looks like
everything else works without any changes.
Jun 4 2001 - 2.7.4 released.
May 28 2001 - Renamed make_table, log_error, table_add and copy_table with
mp_ so as to not get confused with the ones in ap_compat.h
May 24 2001 - PythonNoReload obsoleted in favor of PythonAutoReload.
May 23 2001 - The "fix" re import on Apr 10 turned out to be a bug and
I put it back. But in the process found that the FLAG directives
were not read correctly - e.g. mere presence sometimes indicated
On. Also, ReportError was returning DONE in finally clause which
was wrong.
May 22 2001 - The bug that was supposedly fixed below was a bit more
complicated than it seemed at first. The fix below caused
a circular reference, and some further fixing had to be done,
and now it's really fixed, thanks to Chris's dilligence.
May 17 2001 - Fixed a threading bug reported by Chris Trengove where
the callback object could have the reference to self.req
overwritten by other threads. The reference to the Request
object is now stored inside the requestobject C structure.
May 12 2001 - 2.7.3 released
Apr 10 2001 - Fixed a PythonImport bug reported by Chris Hagner. Removed
the atol hack as per Miguel Marques patch. Fixed apache.py
to use a messier looking but for some obscure reason that
now escapes me necessary way of importing modules via imp.
Apr 7 2001 - "Dissapearing args" on Solaris fixed. It was a problem
in parse_qsl.
Apr 6 2001 - Missing _eprintf() on Solaris/gcc workaround added. I
wonder if this applies to other OS's?
Apr 5 2001 - A couple doc fixes.
Feb 10 2001 - 2.7.2 released
Feb 10 2001 - Fixed the dissapearing / in PATH_INFO.
Jan 23 2001 - Fixed the bug where req.server.register_cleanup was
expecting a builtin _req object rather than the new real
Python Request.
Jan 21 2001 - The Publisher handler __auth__ can now be a dictionary or.
a const. There is also new __access__, which can be a list.
Jan 19 2001 - Added req._content_type_set flag which is set to 1 when
a value is assigned to content_type from Python. This way
the publisher handler can know if it's been purposely set
and will not attempt to guess it.
Jan 18 2001 - Documented req.form. Fixed a security problem with the
Publisher handler - it now does not allow modules to be
published, so a user can't access test.os.renames, etc.
Dec 18 2000 - 2.7 had a typo in it + win32 wants types initialized
separately like I thought. Time for 2.7.1.
Dec 16 2000 - Releasing 2.7....
Dec 16 2000 - Found another bug related to ALLOW_THREADS macros which are
noops without threads, but that is actually wrong, because
what they is needed wvwn without threads. Also, some days
ago 2.6.4 was released.
Dec 13 2000 - The initial documentation for the util module and for the
publisher handler is done. Perhaps the tutorial should have
a bit on the publisher handler.
Dec 12 2000 - publisher handler appears to be working pretty well. Now need
to document it.
Dec 11 2000 - It appears I found a big booboo with mispalced #ifdef
WITH_THREADS... The "Dispatch returned nothing" should be
gone now. This means 2.6.3 has major problems with multiple
interpreters.
Dec 8 2000 - connection.user now writable. More Doc improvements.
Dec 6 2000 - The COPYRIGHT no longer has the advertizing clause.
Dec 4 2000 - Initial (not proof-read) LaTeX source for documentation is
checked in.
Nov 26 2000 - Dilligently migrating all the documentation to LaTeX using the
Python standards.
Nov 17 2000 - I forgot to uncomment type initialization. type(req.headers_in)
would segfault. Fixed. Continuing work on publisher.py module.
Nov 08 2000 - read() and reqadline() now behave very much like the standard
Python file object counterparts. Added James Gessling's VMS
instructions.
Nov 07 2000 - Initial version of req.readline(), also some fixes to
req.read() (both now raise appropriate errors). Both still need
some work.
Nov 04 2000 - Implemented _apache.parse_qs. Also, CGIStin had a read() bug.
PythonHandlerModule is documented.
Oct 30 2000 - Implemented PythonHandlerModule. Still need to document it.
Oct 29 2000 - 2.6.3 release. Mostly static install bug fixes.
Oct 22 2000 - 2.6.2 release
Oct 22 2000 - "Fatal Python error: PyThreadState_Get: no current thread" upon
exit is now fixed. Also, --with-python was improved to point
to the right Makefile (Modules/Makefile) when scanning for LIBS.
Oct 21 2000 - 2.6.1 release
Oct 20 2000 - Fixed some minor installation bugs.
Oct 19 2000 - 2.6 out
Oct 16 2000 - Began a major file reorganization. All objects are now in
separate files, and all external functions have an Mp prefix
and named consistently with Python C API conventions.
Oct 15 2000 - We now use mkdep.
Oct 12 2000 - Autoconf now works. Documentation has been adjusted. Also
added Windows installation instructions to the docs.
Oct 2 2000 - PythonInterpPerServer is now default behavior, and this
directive is therefore obsolete. The old default behavior can
be achieved via the new PythonInterpPerDirective directive.
Sep ? 2000 - Request is now a real python object. This means that it can be
used to retain state between requests.
Sep 9 2000 - Added server.register_cleanup(). This happened to be a little
trickier than I thought since it turned out that server_rec does
not have a pool member. Py_Finalze() has been moved to a
cleanup from the ChildExit handler because ChildExit runs *before*
any cleanups. (Now I know why mod_perl doesn't use child_exit.)
Sep 8 2000 - Sean True's fix to call note_basic_auth_failure added.
Sep 6 2000 - Stphane Bidoul's Win32 fixes applied.
Sep 5 2000 - 2.5 released.
Sep 4 2000 - Added the PythonCleanupHandler.
Sep 4 2000 - Added req.register_cleanup(). Still need server.register_cleanup(),
as well as a PythonCleanupHandler.
Sep 2 2000 - Added PythonInterpPerServer directive. Fixed a bug relating
to ap_add_version_component.
Aug 28 2000 - Added Richard Barret's patch that gives python socket module
behaviour from req.connection.local_addr and remote_addr.
Aug 27 2000 - Added PythonInitHandler. Also, it looks like dynamic handler
addition now works correctly, after trying 15 different ways of
implementing it, resorting to req->notes seems to be the only
option.
Aug 18 2000 - Added req.get_remote_host()
Aug 16 2000 - Added Dr. Timochouk's PythonOptimize directive patch.
Aug 15 2000 - Extensive improvements to req.read() prompted by Dr. Timochouk's
patches.
Aug 10 2000 - Documentation change - get_basic_auth_pw must be called before
using connection.user.
Aug 06 2000 - Table oject now has a new method "add" which allows creation
of multiple keys. This is useful with things like "Set-Cookie"
headers.
Jul 22 2000 - Added req.add_handler (dynamic handler registration)
Jul 18 2000 - Added PythonEnablePdb
ChildExitHandler now properly calls Py_Finalize()
python_handler is now cumulative rather than overriding
Jul 04 2000 - 2.4.1 Released. Mostly bug fixes. Should be pretty stable.
Jun 20 2000 - 2.4 Released.
Jun 17 2000 - Started the tutorial.html.
Jun 11 2000 - Stephane Bidoul's thread-safe win32 changes put in. As part
of this, all chdir()'s are gone and now instead of '.', the
file path is prepended to pythonpath.
Jun 8 2000 - 2.3 Released.
Jun 7 2000 - PythonImport now works.
Jun 5 2000 - PythonDebug and other on/off type handlers are now of type FLAG
so they require an argument of On or Off.
Apr 2000 - rename to mod_python and go apache-specific.
Nov 1998 - support for multiple interpreters introduced.
May 1998 - initial release (httpdapy).
|