pkgsrc/devel/py-quixote/PLIST

144 lines
5.4 KiB
Text
Raw Normal View History

Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
@comment $NetBSD: PLIST,v 1.5 2014/01/19 20:37:43 wiz Exp $
${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/quixote/__init__.py
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/__init__.pyc
${PYSITELIB}/quixote/__init__.pyo
${PYSITELIB}/quixote/config.py
${PYSITELIB}/quixote/config.pyc
${PYSITELIB}/quixote/config.pyo
${PYSITELIB}/quixote/demo/__init__.py
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/demo/__init__.pyc
${PYSITELIB}/quixote/demo/__init__.pyo
${PYSITELIB}/quixote/demo/altdemo.py
${PYSITELIB}/quixote/demo/altdemo.pyc
${PYSITELIB}/quixote/demo/altdemo.pyo
${PYSITELIB}/quixote/demo/extras.ptl
${PYSITELIB}/quixote/demo/forms.ptl
${PYSITELIB}/quixote/demo/integers.ptl
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/demo/mini_demo.py
${PYSITELIB}/quixote/demo/mini_demo.pyc
${PYSITELIB}/quixote/demo/mini_demo.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/demo/profile.py
${PYSITELIB}/quixote/demo/profile.pyc
${PYSITELIB}/quixote/demo/profile.pyo
${PYSITELIB}/quixote/demo/root.ptl
${PYSITELIB}/quixote/directory.py
${PYSITELIB}/quixote/directory.pyc
${PYSITELIB}/quixote/directory.pyo
${PYSITELIB}/quixote/errors.py
${PYSITELIB}/quixote/errors.pyc
${PYSITELIB}/quixote/errors.pyo
${PYSITELIB}/quixote/form/__init__.py
${PYSITELIB}/quixote/form/__init__.pyc
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/form/__init__.pyo
${PYSITELIB}/quixote/form/compatibility.py
${PYSITELIB}/quixote/form/compatibility.pyc
${PYSITELIB}/quixote/form/compatibility.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/form/css.py
${PYSITELIB}/quixote/form/css.pyc
${PYSITELIB}/quixote/form/css.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/form/form.py
${PYSITELIB}/quixote/form/form.pyc
${PYSITELIB}/quixote/form/form.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/form/widget.py
${PYSITELIB}/quixote/form/widget.pyc
${PYSITELIB}/quixote/form/widget.pyo
${PYSITELIB}/quixote/html/__init__.py
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/html/__init__.pyc
${PYSITELIB}/quixote/html/__init__.pyo
${PYSITELIB}/quixote/html/_c_htmltext.so
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/html/_py_htmltext.py
${PYSITELIB}/quixote/html/_py_htmltext.pyc
${PYSITELIB}/quixote/html/_py_htmltext.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/html/qpy_templateio.py
${PYSITELIB}/quixote/html/qpy_templateio.pyc
${PYSITELIB}/quixote/html/qpy_templateio.pyo
${PYSITELIB}/quixote/http_request.py
${PYSITELIB}/quixote/http_request.pyc
${PYSITELIB}/quixote/http_request.pyo
${PYSITELIB}/quixote/http_response.py
${PYSITELIB}/quixote/http_response.pyc
${PYSITELIB}/quixote/http_response.pyo
${PYSITELIB}/quixote/logger.py
${PYSITELIB}/quixote/logger.pyc
${PYSITELIB}/quixote/logger.pyo
${PYSITELIB}/quixote/ptl/__init__.py
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/ptl/__init__.pyc
${PYSITELIB}/quixote/ptl/__init__.pyo
${PYSITELIB}/quixote/ptl/cimport.so
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/ptl/ihooks_local.py
${PYSITELIB}/quixote/ptl/ihooks_local.pyc
${PYSITELIB}/quixote/ptl/ihooks_local.pyo
${PYSITELIB}/quixote/ptl/infinite_reload.py
${PYSITELIB}/quixote/ptl/infinite_reload.pyc
${PYSITELIB}/quixote/ptl/infinite_reload.pyo
${PYSITELIB}/quixote/ptl/install.py
${PYSITELIB}/quixote/ptl/install.pyc
${PYSITELIB}/quixote/ptl/install.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/ptl/ptl_compile.py
${PYSITELIB}/quixote/ptl/ptl_compile.pyc
${PYSITELIB}/quixote/ptl/ptl_compile.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/ptl/ptl_import.py
${PYSITELIB}/quixote/ptl/ptl_import.pyc
${PYSITELIB}/quixote/ptl/ptl_import.pyo
${PYSITELIB}/quixote/ptl/ptlrun.py
${PYSITELIB}/quixote/ptl/ptlrun.pyc
${PYSITELIB}/quixote/ptl/ptlrun.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/ptl/qx_distutils.py
${PYSITELIB}/quixote/ptl/qx_distutils.pyc
${PYSITELIB}/quixote/ptl/qx_distutils.pyo
${PYSITELIB}/quixote/ptl/relimport.py
${PYSITELIB}/quixote/ptl/relimport.pyc
${PYSITELIB}/quixote/ptl/relimport.pyo
${PYSITELIB}/quixote/ptl/test_import.py
${PYSITELIB}/quixote/ptl/test_import.pyc
${PYSITELIB}/quixote/ptl/test_import.pyo
${PYSITELIB}/quixote/publish.py
${PYSITELIB}/quixote/publish.pyc
${PYSITELIB}/quixote/publish.pyo
${PYSITELIB}/quixote/publish1.py
${PYSITELIB}/quixote/publish1.pyc
${PYSITELIB}/quixote/publish1.pyo
${PYSITELIB}/quixote/sendmail.py
${PYSITELIB}/quixote/sendmail.pyc
${PYSITELIB}/quixote/sendmail.pyo
${PYSITELIB}/quixote/server/__init__.py
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/__init__.pyc
${PYSITELIB}/quixote/server/__init__.pyo
${PYSITELIB}/quixote/server/_fcgi.py
${PYSITELIB}/quixote/server/_fcgi.pyc
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/_fcgi.pyo
${PYSITELIB}/quixote/server/cgi_server.py
${PYSITELIB}/quixote/server/cgi_server.pyc
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/cgi_server.pyo
${PYSITELIB}/quixote/server/fastcgi_server.py
${PYSITELIB}/quixote/server/fastcgi_server.pyc
${PYSITELIB}/quixote/server/fastcgi_server.pyo
${PYSITELIB}/quixote/server/medusa_server.py
${PYSITELIB}/quixote/server/medusa_server.pyc
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/medusa_server.pyo
${PYSITELIB}/quixote/server/mod_python_handler.py
${PYSITELIB}/quixote/server/mod_python_handler.pyc
${PYSITELIB}/quixote/server/mod_python_handler.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/scgi_server.py
${PYSITELIB}/quixote/server/scgi_server.pyc
${PYSITELIB}/quixote/server/scgi_server.pyo
${PYSITELIB}/quixote/server/simple_server.py
${PYSITELIB}/quixote/server/simple_server.pyc
${PYSITELIB}/quixote/server/simple_server.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/twisted_server.py
${PYSITELIB}/quixote/server/twisted_server.pyc
${PYSITELIB}/quixote/server/twisted_server.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/server/util.py
${PYSITELIB}/quixote/server/util.pyc
${PYSITELIB}/quixote/server/util.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/session.py
${PYSITELIB}/quixote/session.pyc
${PYSITELIB}/quixote/session.pyo
Update to 2.7: v2.7 ---- Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 20:22:33 2011 -0600 Update version to 2.7 Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Mar 16 19:30:00 2011 -0600 Relax MIME boundary pattern (some clients skip final \r\n). v2.7b2 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:35:21 2010 -0600 Update version to 2.7b2 Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:32:44 2010 -0600 Use the StringIO module rather than cStringIO. cStringIO is gone in Python 3 and also does not handle unicode strings properly. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:29:46 2010 -0600 By default, set Cache-Control in addition to the Expires header. The Expires header is sufficient for HTTP 1.0 but for HTTP 1.1 we must add a must-revalidate directive. Clients and proxies are allowed to ignore Expires in certain cases and use stale pages (RFC 2616 sections 13.1.5 and 14.9.4). Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Jan 22 13:28:58 2010 -0600 Disable cimport module for Python >= 2.6. The current version of the cimport module does not support relative imports. Disable it for now. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Dec 13 14:18:45 2009 -0600 Fix reference to compile_file function (fixes compile_dir function). v2.7b1 ------ Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:41:44 2009 -0600 Update version for 2.7b1 release. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 00:42:51 2009 -0600 Add session iterator. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 14:41:05 2008 -0600 Don't use callable(). Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:43:38 2008 -0600 Use __contains__ instead of has_key. Author: Neil Schemenauer <nas@arctrix.com> Date: Wed Dec 3 12:41:18 2008 -0600 Use utf-8 as default encoding. Author: Neil Schemenauer <nas@arctrix.com> Date: Fri Nov 28 23:00:40 2008 -0600 Use built-in set type. Author: Neil Schemenauer <nas@arctrix.com> Date: Mon Sep 7 01:30:26 2009 -0600 Work around broken ihooks module in Python 2.6. Using the import hook is still the most convenient way of using PTL modules. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun Apr 12 10:57:06 2009 -0600 Remove spurious kwargs from WidgetDict.__init__. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jun 16 09:55:31 2009 -0600 Add options to sendmail so it can be used without a Quixote config. Also, remove broken encode() call since it can't handle Unicode properly as implemented. Author: Neil Schemenauer <nas@arctrix.com> Date: Sun May 31 19:09:53 2009 -0600 Add SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY. Based on a suggestion from Emmanuel Dreyfus <manu@netbsd.org>, add the SESSION_COOKIE_SECURE and SESSION_COOKIE_HTTPONLY options. Setting them to true will cause the corresponding flag to be set on the session cookie. Author: Hamish Lawson <hbl@st-andrews.ac.uk> Date: Mon Feb 2 10:04:04 2009 -0600 Check for other possible values of HTTPS. Currently HTTPRequest only checks whether the HTTPS environment variable has a value of 'on', but other possible positive values are '1' (as set by mod_wsgi) and 'yes'. Author: Neil Schemenauer <nas@arctrix.com> Date: Tue Jan 6 20:16:39 2009 -0600 Avoid infinite redirect when PATH_INFO is empty.
2014-01-19 21:37:43 +01:00
${PYSITELIB}/quixote/util.py
${PYSITELIB}/quixote/util.pyc
${PYSITELIB}/quixote/util.pyo
${PYSITELIB}/quixote/wsgi.py
${PYSITELIB}/quixote/wsgi.pyc
${PYSITELIB}/quixote/wsgi.pyo