[Python-modules-commits] r12502 - in packages/webpy (11 files)
debacle at users.alioth.debian.org
debacle at users.alioth.debian.org
Mon Apr 5 14:31:58 UTC 2010
Date: Monday, April 5, 2010 @ 14:31:53
Author: debacle
Revision: 12502
Tag latest upload.
Added:
packages/webpy/tags/1:0.34-2/
packages/webpy/tags/1:0.34-2/debian/CHANGELOG
(from rev 12500, packages/webpy/trunk/debian/NEWS)
packages/webpy/trunk/debian/CHANGELOG
(from rev 12500, packages/webpy/trunk/debian/NEWS)
Modified:
packages/webpy/tags/1:0.34-2/debian/changelog
packages/webpy/tags/1:0.34-2/debian/control
packages/webpy/tags/1:0.34-2/debian/rules
packages/webpy/trunk/debian/changelog
packages/webpy/trunk/debian/control
packages/webpy/trunk/debian/rules
Deleted:
packages/webpy/tags/1:0.34-2/debian/NEWS
packages/webpy/trunk/debian/NEWS
Copied: packages/webpy/tags/1:0.34-2/debian/CHANGELOG (from rev 12500, packages/webpy/trunk/debian/NEWS)
===================================================================
--- packages/webpy/tags/1:0.34-2/debian/CHANGELOG (rev 0)
+++ packages/webpy/tags/1:0.34-2/debian/CHANGELOG 2010-04-05 14:31:53 UTC (rev 12502)
@@ -0,0 +1,89 @@
+webpy (1:0.34-1) unstable; urgency=low
+
+ * http://webpy.org/changes informs about the following recent changes in
+ web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
+ - 2010-03-20: web.py 0.34
+ - fix: boolen test works even for sqlite results (tx Emyr Thomas for the idea)
+ - fix issue with loop.xx variables in templetor (Bug#476708)
+ - hide unwanted tracebacks in debugerror
+ - display correct template line numbers in debugerror
+ - new utilities: counter, safeiter, safewrite, requeue, restack (by Aaron Swartz)
+ - various form.py fixes and improvements
+ - automatically escape % characters in the db query (Bug#516516)
+ - fix non-deterministic template order (Bug#490209)
+ - attachment support for web.sendmail (tx gregglind)
+ - template.py optimizations and extension support
+
+ -- W. Martin Borgert <debacle at debian.org> Sat, 20 Mar 2010 22:45:57 +0000
+
+webpy (1:0.33-1) unstable; urgency=low
+
+ * http://webpy.org/changes informs about the following recent changes in
+ web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
+ - 2009-10-28: web.py 0.33
+ - form.Button takes optional argument html
+ - remove obsolete write function in http.py (tx Justin) (Bug#315337)
+ - refactor httpserver.runsimple code
+ - improve form.py for customizability
+ - new: add background updating to memoize
+ - fix: use sendmail from web.config.sendmail_path (tx Daniel
+ Schwartz)
+ - fix: make web.profiler work on Windows (tx asmo) (Bug#325139)
+ - fix changequery to make it work correctly even when the input has
+ multi-valued fields (Bug#118229)
+ - fix: make sure sequence exists before queying for currval(seqname)
+ when executing postgres insert query (Bug#268705)
+ - fix: raise web.notfound() instead of return in autodelegate (tx
+ SeC)
+ - fix: raise NotSupportedError when len or bool is used on sqlite
+ result (Bug#179644)
+ - fix: make db parameter optional for creating postgres DB to allow
+ taking it from environ. (Bug#153491)
+ - fix unicode errors in db module
+ - fix: convert unicode strings to UTF8 before printing SQL queries
+ - fix unicode error in debugerror
+ - fix: don't convert file upload data to unicode even when file={} is
+ not passed to web.input
+ - fix checkbox value/checked confusion (Bug#128233)
+ - fix: consider empty lines as part of the indented block in templetor
+ - fix: fix a bug in web.group
+ - 2009-06-04: web.py 0.32
+ - optional from_address to web.emailerrors
+ - upgrade wsgiserver to CherryPy/3.1.2
+ - support for extensions in Jinja2 templates (tx Zhang Huangbin)
+ - support web.datestr for datetime.date objects also
+ - support for lists in db queries
+ - new: uniq and iterview
+ - fix: set debug=False when application is run with mod_wsgi (tx
+ Patrick Swieskowski) Bug#370904
+ - fix: make web.commify work with decimals Bug#317204
+ - fix: unicode issues with sqlite database Bug#373219
+ - fix: urlquote url when the server is lighttpd Bug#339858
+ - fix: issue with using date.format in templates
+ - fix: use TOP instead of LIMIT in mssql database Bug#324049
+ - fix: make sessions work well with expirations
+ - fix: accept both list and tuple as arg values in form.Dropdown
+ Bug#314970
+ - fix: match parenthesis when parsing for statement in templates
+ - fix: fix python 2.3 compatibility
+ - fix: ignore dot folders when compiling templates (tx Stuart
+ Langridge)
+ - fix: don't consume KeyboardInterrupt and SystemExit errors
+ - fix: make application work well with iterators
+ - 2008-12-10: web.py 0.31
+ - new: browser module
+ - new: test utilities
+ - new: ShelfStore
+ - fix: web.cookies error when default is None
+ - fix: paramstyle for OracleDB (tx kromakey)
+ - fix: performance issue in SQLQuery.join
+ - fix: use wsgi.url_scheme to find ctx.protocol
+
+ -- W. Martin Borgert <debacle at debian.org> Mon, 07 Dec 2009 19:32:18 +0000
+
+webpy (0.300-1) unstable; urgency=low
+
+ * Web.py 0.3 has several backward-incompatible changes.
+ http://webpy.org/docs/0.3/upgrade
+
+ -- Kai Hendry <hendry at iki.fi> Tue, 09 Dec 2008 22:24:34 +0000
Deleted: packages/webpy/tags/1:0.34-2/debian/NEWS
===================================================================
--- packages/webpy/trunk/debian/NEWS 2010-04-05 13:43:41 UTC (rev 12500)
+++ packages/webpy/tags/1:0.34-2/debian/NEWS 2010-04-05 14:31:53 UTC (rev 12502)
@@ -1,89 +0,0 @@
-webpy (1:0.34-1) unstable; urgency=low
-
- * http://webpy.org/changes informs about the following recent changes in
- web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
- - 2010-03-20: web.py 0.34
- - fix: boolen test works even for sqlite results (tx Emyr Thomas for the idea)
- - fix issue with loop.xx variables in templetor (Bug#476708)
- - hide unwanted tracebacks in debugerror
- - display correct template line numbers in debugerror
- - new utilities: counter, safeiter, safewrite, requeue, restack (by Aaron Swartz)
- - various form.py fixes and improvements
- - automatically escape % characters in the db query (Bug#516516)
- - fix non-deterministic template order (Bug#490209)
- - attachment support for web.sendmail (tx gregglind)
- - template.py optimizations and extension support
-
- -- W. Martin Borgert <debacle at debian.org> Sat, 20 Mar 2010 22:45:57 +0000
-
-webpy (1:0.33-1) unstable; urgency=low
-
- * http://webpy.org/changes informs about the following recent changes in
- web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
- - 2009-10-28: web.py 0.33
- - form.Button takes optional argument html
- - remove obsolete write function in http.py (tx Justin) (Bug#315337)
- - refactor httpserver.runsimple code
- - improve form.py for customizability
- - new: add background updating to memoize
- - fix: use sendmail from web.config.sendmail_path (tx Daniel
- Schwartz)
- - fix: make web.profiler work on Windows (tx asmo) (Bug#325139)
- - fix changequery to make it work correctly even when the input has
- multi-valued fields (Bug#118229)
- - fix: make sure sequence exists before queying for currval(seqname)
- when executing postgres insert query (Bug#268705)
- - fix: raise web.notfound() instead of return in autodelegate (tx
- SeC)
- - fix: raise NotSupportedError when len or bool is used on sqlite
- result (Bug#179644)
- - fix: make db parameter optional for creating postgres DB to allow
- taking it from environ. (Bug#153491)
- - fix unicode errors in db module
- - fix: convert unicode strings to UTF8 before printing SQL queries
- - fix unicode error in debugerror
- - fix: don't convert file upload data to unicode even when file={} is
- not passed to web.input
- - fix checkbox value/checked confusion (Bug#128233)
- - fix: consider empty lines as part of the indented block in templetor
- - fix: fix a bug in web.group
- - 2009-06-04: web.py 0.32
- - optional from_address to web.emailerrors
- - upgrade wsgiserver to CherryPy/3.1.2
- - support for extensions in Jinja2 templates (tx Zhang Huangbin)
- - support web.datestr for datetime.date objects also
- - support for lists in db queries
- - new: uniq and iterview
- - fix: set debug=False when application is run with mod_wsgi (tx
- Patrick Swieskowski) Bug#370904
- - fix: make web.commify work with decimals Bug#317204
- - fix: unicode issues with sqlite database Bug#373219
- - fix: urlquote url when the server is lighttpd Bug#339858
- - fix: issue with using date.format in templates
- - fix: use TOP instead of LIMIT in mssql database Bug#324049
- - fix: make sessions work well with expirations
- - fix: accept both list and tuple as arg values in form.Dropdown
- Bug#314970
- - fix: match parenthesis when parsing for statement in templates
- - fix: fix python 2.3 compatibility
- - fix: ignore dot folders when compiling templates (tx Stuart
- Langridge)
- - fix: don't consume KeyboardInterrupt and SystemExit errors
- - fix: make application work well with iterators
- - 2008-12-10: web.py 0.31
- - new: browser module
- - new: test utilities
- - new: ShelfStore
- - fix: web.cookies error when default is None
- - fix: paramstyle for OracleDB (tx kromakey)
- - fix: performance issue in SQLQuery.join
- - fix: use wsgi.url_scheme to find ctx.protocol
-
- -- W. Martin Borgert <debacle at debian.org> Mon, 07 Dec 2009 19:32:18 +0000
-
-webpy (0.300-1) unstable; urgency=low
-
- * Web.py 0.3 has several backward-incompatible changes.
- http://webpy.org/docs/0.3/upgrade
-
- -- Kai Hendry <hendry at iki.fi> Tue, 09 Dec 2008 22:24:34 +0000
Modified: packages/webpy/tags/1:0.34-2/debian/changelog
===================================================================
--- packages/webpy/trunk/debian/changelog 2010-04-05 13:43:41 UTC (rev 12500)
+++ packages/webpy/tags/1:0.34-2/debian/changelog 2010-04-05 14:31:53 UTC (rev 12502)
@@ -1,3 +1,10 @@
+webpy (1:0.34-2) unstable; urgency=low
+
+ * Upstream changelog is now debian/CHANGELOG, not
+ debian/NEWS
+
+ -- W. Martin Borgert <debacle at debian.org> Mon, 05 Apr 2010 14:09:58 +0000
+
webpy (1:0.34-1) unstable; urgency=low
* New upstream release
Modified: packages/webpy/tags/1:0.34-2/debian/control
===================================================================
--- packages/webpy/trunk/debian/control 2010-04-05 13:43:41 UTC (rev 12500)
+++ packages/webpy/tags/1:0.34-2/debian/control 2010-04-05 14:31:53 UTC (rev 12502)
@@ -3,7 +3,8 @@
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: W. Martin Borgert <debacle at debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), python-support (>= 0.3)
+Build-Depends: debhelper (>= 5.0.37.2)
+Build-Depends-Indep: python, python-support
Standards-Version: 3.8.4
XS-Python-Version: >= 2.4
Homepage: http://webpy.org/
Modified: packages/webpy/tags/1:0.34-2/debian/rules
===================================================================
--- packages/webpy/trunk/debian/rules 2010-04-05 13:43:41 UTC (rev 12500)
+++ packages/webpy/tags/1:0.34-2/debian/rules 2010-04-05 14:31:53 UTC (rev 12502)
@@ -20,7 +20,7 @@
binary-indep: build install
dh_testdir
dh_testroot
- dh_installchangelogs
+ dh_installchangelogs debian/CHANGELOG
dh_installdocs
dh_installexamples
dh_link
Copied: packages/webpy/trunk/debian/CHANGELOG (from rev 12500, packages/webpy/trunk/debian/NEWS)
===================================================================
--- packages/webpy/trunk/debian/CHANGELOG (rev 0)
+++ packages/webpy/trunk/debian/CHANGELOG 2010-04-05 14:31:53 UTC (rev 12502)
@@ -0,0 +1,89 @@
+webpy (1:0.34-1) unstable; urgency=low
+
+ * http://webpy.org/changes informs about the following recent changes in
+ web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
+ - 2010-03-20: web.py 0.34
+ - fix: boolen test works even for sqlite results (tx Emyr Thomas for the idea)
+ - fix issue with loop.xx variables in templetor (Bug#476708)
+ - hide unwanted tracebacks in debugerror
+ - display correct template line numbers in debugerror
+ - new utilities: counter, safeiter, safewrite, requeue, restack (by Aaron Swartz)
+ - various form.py fixes and improvements
+ - automatically escape % characters in the db query (Bug#516516)
+ - fix non-deterministic template order (Bug#490209)
+ - attachment support for web.sendmail (tx gregglind)
+ - template.py optimizations and extension support
+
+ -- W. Martin Borgert <debacle at debian.org> Sat, 20 Mar 2010 22:45:57 +0000
+
+webpy (1:0.33-1) unstable; urgency=low
+
+ * http://webpy.org/changes informs about the following recent changes in
+ web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
+ - 2009-10-28: web.py 0.33
+ - form.Button takes optional argument html
+ - remove obsolete write function in http.py (tx Justin) (Bug#315337)
+ - refactor httpserver.runsimple code
+ - improve form.py for customizability
+ - new: add background updating to memoize
+ - fix: use sendmail from web.config.sendmail_path (tx Daniel
+ Schwartz)
+ - fix: make web.profiler work on Windows (tx asmo) (Bug#325139)
+ - fix changequery to make it work correctly even when the input has
+ multi-valued fields (Bug#118229)
+ - fix: make sure sequence exists before queying for currval(seqname)
+ when executing postgres insert query (Bug#268705)
+ - fix: raise web.notfound() instead of return in autodelegate (tx
+ SeC)
+ - fix: raise NotSupportedError when len or bool is used on sqlite
+ result (Bug#179644)
+ - fix: make db parameter optional for creating postgres DB to allow
+ taking it from environ. (Bug#153491)
+ - fix unicode errors in db module
+ - fix: convert unicode strings to UTF8 before printing SQL queries
+ - fix unicode error in debugerror
+ - fix: don't convert file upload data to unicode even when file={} is
+ not passed to web.input
+ - fix checkbox value/checked confusion (Bug#128233)
+ - fix: consider empty lines as part of the indented block in templetor
+ - fix: fix a bug in web.group
+ - 2009-06-04: web.py 0.32
+ - optional from_address to web.emailerrors
+ - upgrade wsgiserver to CherryPy/3.1.2
+ - support for extensions in Jinja2 templates (tx Zhang Huangbin)
+ - support web.datestr for datetime.date objects also
+ - support for lists in db queries
+ - new: uniq and iterview
+ - fix: set debug=False when application is run with mod_wsgi (tx
+ Patrick Swieskowski) Bug#370904
+ - fix: make web.commify work with decimals Bug#317204
+ - fix: unicode issues with sqlite database Bug#373219
+ - fix: urlquote url when the server is lighttpd Bug#339858
+ - fix: issue with using date.format in templates
+ - fix: use TOP instead of LIMIT in mssql database Bug#324049
+ - fix: make sessions work well with expirations
+ - fix: accept both list and tuple as arg values in form.Dropdown
+ Bug#314970
+ - fix: match parenthesis when parsing for statement in templates
+ - fix: fix python 2.3 compatibility
+ - fix: ignore dot folders when compiling templates (tx Stuart
+ Langridge)
+ - fix: don't consume KeyboardInterrupt and SystemExit errors
+ - fix: make application work well with iterators
+ - 2008-12-10: web.py 0.31
+ - new: browser module
+ - new: test utilities
+ - new: ShelfStore
+ - fix: web.cookies error when default is None
+ - fix: paramstyle for OracleDB (tx kromakey)
+ - fix: performance issue in SQLQuery.join
+ - fix: use wsgi.url_scheme to find ctx.protocol
+
+ -- W. Martin Borgert <debacle at debian.org> Mon, 07 Dec 2009 19:32:18 +0000
+
+webpy (0.300-1) unstable; urgency=low
+
+ * Web.py 0.3 has several backward-incompatible changes.
+ http://webpy.org/docs/0.3/upgrade
+
+ -- Kai Hendry <hendry at iki.fi> Tue, 09 Dec 2008 22:24:34 +0000
Deleted: packages/webpy/trunk/debian/NEWS
===================================================================
--- packages/webpy/trunk/debian/NEWS 2010-04-05 14:05:46 UTC (rev 12501)
+++ packages/webpy/trunk/debian/NEWS 2010-04-05 14:31:53 UTC (rev 12502)
@@ -1,89 +0,0 @@
-webpy (1:0.34-1) unstable; urgency=low
-
- * http://webpy.org/changes informs about the following recent changes in
- web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
- - 2010-03-20: web.py 0.34
- - fix: boolen test works even for sqlite results (tx Emyr Thomas for the idea)
- - fix issue with loop.xx variables in templetor (Bug#476708)
- - hide unwanted tracebacks in debugerror
- - display correct template line numbers in debugerror
- - new utilities: counter, safeiter, safewrite, requeue, restack (by Aaron Swartz)
- - various form.py fixes and improvements
- - automatically escape % characters in the db query (Bug#516516)
- - fix non-deterministic template order (Bug#490209)
- - attachment support for web.sendmail (tx gregglind)
- - template.py optimizations and extension support
-
- -- W. Martin Borgert <debacle at debian.org> Sat, 20 Mar 2010 22:45:57 +0000
-
-webpy (1:0.33-1) unstable; urgency=low
-
- * http://webpy.org/changes informs about the following recent changes in
- web.py. Bug numbers refer to https://launchpad.net/webpy, not Debian.
- - 2009-10-28: web.py 0.33
- - form.Button takes optional argument html
- - remove obsolete write function in http.py (tx Justin) (Bug#315337)
- - refactor httpserver.runsimple code
- - improve form.py for customizability
- - new: add background updating to memoize
- - fix: use sendmail from web.config.sendmail_path (tx Daniel
- Schwartz)
- - fix: make web.profiler work on Windows (tx asmo) (Bug#325139)
- - fix changequery to make it work correctly even when the input has
- multi-valued fields (Bug#118229)
- - fix: make sure sequence exists before queying for currval(seqname)
- when executing postgres insert query (Bug#268705)
- - fix: raise web.notfound() instead of return in autodelegate (tx
- SeC)
- - fix: raise NotSupportedError when len or bool is used on sqlite
- result (Bug#179644)
- - fix: make db parameter optional for creating postgres DB to allow
- taking it from environ. (Bug#153491)
- - fix unicode errors in db module
- - fix: convert unicode strings to UTF8 before printing SQL queries
- - fix unicode error in debugerror
- - fix: don't convert file upload data to unicode even when file={} is
- not passed to web.input
- - fix checkbox value/checked confusion (Bug#128233)
- - fix: consider empty lines as part of the indented block in templetor
- - fix: fix a bug in web.group
- - 2009-06-04: web.py 0.32
- - optional from_address to web.emailerrors
- - upgrade wsgiserver to CherryPy/3.1.2
- - support for extensions in Jinja2 templates (tx Zhang Huangbin)
- - support web.datestr for datetime.date objects also
- - support for lists in db queries
- - new: uniq and iterview
- - fix: set debug=False when application is run with mod_wsgi (tx
- Patrick Swieskowski) Bug#370904
- - fix: make web.commify work with decimals Bug#317204
- - fix: unicode issues with sqlite database Bug#373219
- - fix: urlquote url when the server is lighttpd Bug#339858
- - fix: issue with using date.format in templates
- - fix: use TOP instead of LIMIT in mssql database Bug#324049
- - fix: make sessions work well with expirations
- - fix: accept both list and tuple as arg values in form.Dropdown
- Bug#314970
- - fix: match parenthesis when parsing for statement in templates
- - fix: fix python 2.3 compatibility
- - fix: ignore dot folders when compiling templates (tx Stuart
- Langridge)
- - fix: don't consume KeyboardInterrupt and SystemExit errors
- - fix: make application work well with iterators
- - 2008-12-10: web.py 0.31
- - new: browser module
- - new: test utilities
- - new: ShelfStore
- - fix: web.cookies error when default is None
- - fix: paramstyle for OracleDB (tx kromakey)
- - fix: performance issue in SQLQuery.join
- - fix: use wsgi.url_scheme to find ctx.protocol
-
- -- W. Martin Borgert <debacle at debian.org> Mon, 07 Dec 2009 19:32:18 +0000
-
-webpy (0.300-1) unstable; urgency=low
-
- * Web.py 0.3 has several backward-incompatible changes.
- http://webpy.org/docs/0.3/upgrade
-
- -- Kai Hendry <hendry at iki.fi> Tue, 09 Dec 2008 22:24:34 +0000
Modified: packages/webpy/trunk/debian/changelog
===================================================================
--- packages/webpy/trunk/debian/changelog 2010-04-05 14:05:46 UTC (rev 12501)
+++ packages/webpy/trunk/debian/changelog 2010-04-05 14:31:53 UTC (rev 12502)
@@ -1,3 +1,10 @@
+webpy (1:0.34-2) unstable; urgency=low
+
+ * Upstream changelog is now debian/CHANGELOG, not
+ debian/NEWS
+
+ -- W. Martin Borgert <debacle at debian.org> Mon, 05 Apr 2010 14:09:58 +0000
+
webpy (1:0.34-1) unstable; urgency=low
* New upstream release
Modified: packages/webpy/trunk/debian/control
===================================================================
--- packages/webpy/trunk/debian/control 2010-04-05 14:05:46 UTC (rev 12501)
+++ packages/webpy/trunk/debian/control 2010-04-05 14:31:53 UTC (rev 12502)
@@ -3,7 +3,8 @@
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: W. Martin Borgert <debacle at debian.org>
-Build-Depends: debhelper (>= 5.0.37.2), python-support (>= 0.3)
+Build-Depends: debhelper (>= 5.0.37.2)
+Build-Depends-Indep: python, python-support
Standards-Version: 3.8.4
XS-Python-Version: >= 2.4
Homepage: http://webpy.org/
Modified: packages/webpy/trunk/debian/rules
===================================================================
--- packages/webpy/trunk/debian/rules 2010-04-05 14:05:46 UTC (rev 12501)
+++ packages/webpy/trunk/debian/rules 2010-04-05 14:31:53 UTC (rev 12502)
@@ -20,7 +20,7 @@
binary-indep: build install
dh_testdir
dh_testroot
- dh_installchangelogs
+ dh_installchangelogs debian/CHANGELOG
dh_installdocs
dh_installexamples
dh_link
More information about the Python-modules-commits
mailing list