<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/paste.git/paste/auth/form.py, branch pytest</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/paste-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/'/>
<entry>
<title>Strip trailing spaces</title>
<updated>2015-04-21T13:26:47+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2015-04-21T13:26:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=04ecd5542849191457ccfc3e42a39452db47825a'/>
<id>04ecd5542849191457ccfc3e42a39452db47825a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for #174; Paste Deploy entry point for paste.auth.form broken</title>
<updated>2007-05-25T02:27:57+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2007-05-25T02:27:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=c105d8bfcc0e9762663b4a4d22a66deea2f82ac8'/>
<id>c105d8bfcc0e9762663b4a4d22a66deea2f82ac8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>convert old-style classes to new-style classes</title>
<updated>2007-01-05T03:18:34+00:00</updated>
<author>
<name>pjenvey</name>
<email>devnull@localhost</email>
</author>
<published>2007-01-05T03:18:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=c3489449893fc6facc58dd06a2ea13091d9096fa'/>
<id>c3489449893fc6facc58dd06a2ea13091d9096fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #133 from cookedm: paste.auth.form doesn't return valid headers</title>
<updated>2006-11-02T17:35:04+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2006-11-02T17:35:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=0bccb82337e0707a7e629564fed8941c3d69bbe3'/>
<id>0bccb82337e0707a7e629564fed8941c3d69bbe3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>A big commit, primarily aesthetic/whitespace in nature.  This is the result of running pylint over the codebase.  Some minor/hard-to-reach typos were also picked up.</title>
<updated>2006-10-20T22:08:05+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2006-10-20T22:08:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=44fa5352360b78696c3d81cafa8e24eaa4f6c3ed'/>
<id>44fa5352360b78696c3d81cafa8e24eaa4f6c3ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Patch from Brad Clements to add Paste Deploy support for paste.auth methods</title>
<updated>2006-06-30T01:20:37+00:00</updated>
<author>
<name>ianb</name>
<email>devnull@localhost</email>
</author>
<published>2006-06-30T01:20:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=9fbe95205d4a9d5ee875ce16c7ffd8ce4fb0b94d'/>
<id>9fbe95205d4a9d5ee875ce16c7ffd8ce4fb0b94d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>This updates the paste.auth.* modules to include</title>
<updated>2006-02-24T06:24:10+00:00</updated>
<author>
<name>cce</name>
<email>devnull@localhost</email>
</author>
<published>2006-02-24T06:24:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=3ece86d36d841c3d5023f7bab029c0b2b235e7e7'/>
<id>3ece86d36d841c3d5023f7bab029c0b2b235e7e7</id>
<content type='text'>
environ in the authentication callback functions.

- auth.basic was modified to have a callback of
  authfunc(environ, username, password)

- auth.digest was modified in a similar manner,
  authfunc(environ, realm, password)

- auth.digest's digest_password also had it's
  arguments reversed to be consistent with the
  corresponding authfunc(); if you're going to
  break -- let's fix two things at once!

- auth.form has a change similar to auth.basic

These changes were suggested via Matthew Scott
on the paste mailing list; only that I put the
environ first to be consistent with other
WSGI functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
environ in the authentication callback functions.

- auth.basic was modified to have a callback of
  authfunc(environ, username, password)

- auth.digest was modified in a similar manner,
  authfunc(environ, realm, password)

- auth.digest's digest_password also had it's
  arguments reversed to be consistent with the
  corresponding authfunc(); if you're going to
  break -- let's fix two things at once!

- auth.form has a change similar to auth.basic

These changes were suggested via Matthew Scott
on the paste mailing list; only that I put the
environ first to be consistent with other
WSGI functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>moving httpserver from util sub-package up a level</title>
<updated>2006-01-09T06:26:36+00:00</updated>
<author>
<name>cce</name>
<email>devnull@localhost</email>
</author>
<published>2006-01-09T06:26:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=95c32e90659ff1969ae542e3d6533283a34a76c2'/>
<id>95c32e90659ff1969ae542e3d6533283a34a76c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- cleaned up documentation for paste.auth.cookie</title>
<updated>2005-12-31T06:57:42+00:00</updated>
<author>
<name>cce</name>
<email>devnull@localhost</email>
</author>
<published>2005-12-31T06:57:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=98f2eef2897f1670bf5540e6199724aaf56ea5b4'/>
<id>98f2eef2897f1670bf5540e6199724aaf56ea5b4</id>
<content type='text'>
- cleaned up documentation for paste.auth.form
- cleaned up documentation for paste.auth.basic
- converted InternalServerError into its own class (httpexceptions)
- converted BadRequest into its own class (httpexceptions)
- a few minor cleanups
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- cleaned up documentation for paste.auth.form
- cleaned up documentation for paste.auth.basic
- converted InternalServerError into its own class (httpexceptions)
- converted BadRequest into its own class (httpexceptions)
- a few minor cleanups
</pre>
</div>
</content>
</entry>
<entry>
<title>migrating tests to use util.httpserver rather than util.baseserver</title>
<updated>2005-12-14T18:42:14+00:00</updated>
<author>
<name>cce</name>
<email>devnull@localhost</email>
</author>
<published>2005-12-14T18:42:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/paste.git/commit/?id=8a1a2d97cd184f0618ef8647e4964f8b6a90a9e7'/>
<id>8a1a2d97cd184f0618ef8647e4964f8b6a90a9e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
