Tags · webpy/webpy · GitHub
Skip to content

Tags: webpy/webpy

Tags

v0.76

Toggle v0.76's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix session.py to allow suppression of the cookie (#737)

* Fix session.py to allow suppression of the cookie

There are often endpoints/targets in your web.py app where you do not want to use sessions and most importantly, you do not want a Set-Cookie header sent with the response. The Set-Cookie header invalidates your Cache-Control directives when you are caching your responses with many CDNs. This PR allows you to do session.no_cookie=True in your handler to suppress the session cookie when you do not want it.

* updates from code review

* Update __init__.py

* Update lint_python.yml

* Update session.py

* Update release.yml

---------

Co-authored-by: Christian Clauss <cclauss@me.com>

0.62

Toggle 0.62's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Release version 0.62 (#692)

0.61

Toggle 0.61's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix incorrect MANIFEST.in. (#663)

0.60

Toggle 0.60's commit message
Updated the latest version in README.

0.51

Toggle 0.51's commit message
Update setup.py.

0.50

Toggle 0.50's commit message
Bump version number: 0.50.

0.40

Toggle 0.40's commit message
Fixed the issue of len not working with the result of db query. (#554)

* Fixed the issue of len not working with the result of db query.

The earlier implentation was adding an __len__ function to the result
object and that worked fine for old-style classes. With old-style
classes gone in Python 3, that started giving trouble. Fixed it by
writing a ResultSet class and a special SqliteResultSet which doesn't
support len, but supports bool.

Fixes #547.

* cleanup of db tests.

webpy-0.39

Toggle webpy-0.39's commit message
switched to setuptools

webpy-0.38

Toggle webpy-0.38's commit message
Bumped version to 0.38 and updated ChangeLog

webpy-0.37

Toggle webpy-0.37's commit message
Added ChangeLog.