<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/contrib/comments/views/comments.py, branch archive/soc2010/app-loading</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=archive%2Fsoc2010%2Fapp-loading</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=archive%2Fsoc2010%2Fapp-loading'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2010-03-16T22:37:45Z</updated>
<entry>
<title>Changed the comments post view code to avoid raising an exception if handed invalid data for the object pk. Thanks to Leo for the test.</title>
<updated>2010-03-16T22:37:45Z</updated>
<author>
<name>Karen Tracey</name>
<email>kmtracey@gmail.com</email>
</author>
<published>2010-03-16T22:37:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=e434573ef12934d8e8f77e2e794d2968dd734ded'/>
<id>urn:sha1:e434573ef12934d8e8f77e2e794d2968dd734ded</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #12600 -- Added some extra search paths for comment preview templates, allowing for naming parity with other templates in comments and admin. Thanks to hvdklauw for the report.</title>
<updated>2010-01-28T11:30:29Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2010-01-28T11:30:29Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3f68d255e24b5696537572ff351a8ad9f91d1b9d'/>
<id>urn:sha1:3f68d255e24b5696537572ff351a8ad9f91d1b9d</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12337 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #1142 -- Added multiple database support.</title>
<updated>2009-12-22T15:18:51Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-12-22T15:18:51Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8'/>
<id>urn:sha1:ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8</id>
<content type='text'>
This monster of a patch is the result of Alex Gaynor's 2009 Google Summer of Code project.
Congratulations to Alex for a job well done.

Big thanks also go to:
 * Justin Bronn for keeping GIS in line with the changes,
 * Karen Tracey and Jani Tiainen for their help testing Oracle support
 * Brett Hoerner, Jon Loyens, and Craig Kimmerer for their feedback.
 * Malcolm Treddinick for his guidance during the GSoC submission process.
 * Simon Willison for driving the original design process
 * Cal Henderson for complaining about ponies he wanted.

... and everyone else too numerous to mention that helped to bring this feature into fruition.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11952 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Moved contrib.csrf.* to core code.</title>
<updated>2009-10-27T00:36:34Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2009-10-27T00:36:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=7230a995ce81a7b8dd093bd03cc5ebd34106ee80'/>
<id>urn:sha1:7230a995ce81a7b8dd093bd03cc5ebd34106ee80</id>
<content type='text'>
There is stub code for backwards compatiblity with Django 1.1 imports.

The documentation has been updated, but has been left in
docs/contrib/csrf.txt for now, in order to avoid dead links to
documentation on the website.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@11661 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #9977 - CsrfMiddleware gets template tag added, session dependency removed, and turned on by default.</title>
<updated>2009-10-26T23:23:07Z</updated>
<author>
<name>Luke Plant</name>
<email>L.Plant.98@cantab.net</email>
</author>
<published>2009-10-26T23:23:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=8e70cef9b67433edd70935dcc30c621d1e7fc0a0'/>
<id>urn:sha1:8e70cef9b67433edd70935dcc30c621d1e7fc0a0</id>
<content type='text'>
This is a large change to CSRF protection for Django.  It includes:

 * removing the dependency on the session framework.
 * deprecating CsrfResponseMiddleware, and replacing with a core template tag.
 * turning on CSRF protection by default by adding CsrfViewMiddleware to
   the default value of MIDDLEWARE_CLASSES.
 * protecting all contrib apps (whatever is in settings.py)
   using a decorator.

For existing users of the CSRF functionality, it should be a seamless update,
but please note that it includes DEPRECATION of features in Django 1.1,
and there are upgrade steps which are detailed in the docs.

Many thanks to 'Glenn' and 'bthomas', who did a lot of the thinking and work
on the patch, and to lots of other people including Simon Willison and
Russell Keith-Magee who refined the ideas.

Details of the rationale for these changes is found here:

http://code.djangoproject.com/wiki/CsrfProtection

As of this commit, the CSRF code is mainly in 'contrib'.  The code will be
moved to core in a separate commit, to make the changeset as readable as
possible.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@11660 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #9268 -- Ensured that the next argument is passed on when previewing comments. Thanks to leanmeandonothingmachine for the patch.</title>
<updated>2009-06-17T13:01:40Z</updated>
<author>
<name>Russell Keith-Magee</name>
<email>russell@keith-magee.com</email>
</author>
<published>2009-06-17T13:01:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f908eded21919cfbbbd1009c63f1cffa316ea2b2'/>
<id>urn:sha1:f908eded21919cfbbbd1009c63f1cffa316ea2b2</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11019 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #9268: pass the "next" param through in the comment preview/post view. Also updated the docs to make this a bit clearer.</title>
<updated>2009-04-07T19:28:13Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2009-04-07T19:28:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f8adf99cdb449924b2ed2ddac33744da7eeb1efc'/>
<id>urn:sha1:f8adf99cdb449924b2ed2ddac33744da7eeb1efc</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10418 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #8963 -- Use the require_POST decorator instead of doing things manually in one of the comment views. Thanks, zgoda.</title>
<updated>2008-10-05T05:10:35Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2008-10-05T05:10:35Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=cff78c60acb36382df6e21db2161ca43510062fe'/>
<id>urn:sha1:cff78c60acb36382df6e21db2161ca43510062fe</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9121 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Add internationalisation support to the comment templates. Fixed #8868, #8905</title>
<updated>2008-10-05T05:09:21Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2008-10-05T05:09:21Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=85240897695b39e40e36127f8b26c7d0f066c16a'/>
<id>urn:sha1:85240897695b39e40e36127f8b26c7d0f066c16a</id>
<content type='text'>
Thanks to zgoda for a patch that did most of the internationalisation part.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@9119 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #8803 -- Allow authenticated users without first_name/last_name values set to post comments.</title>
<updated>2008-10-05T05:07:32Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2008-10-05T05:07:32Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=227a93b64f582d62087ecbb19d281b9c6e5a2dcf'/>
<id>urn:sha1:227a93b64f582d62087ecbb19d281b9c6e5a2dcf</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9118 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
