<feed xmlns='http://www.w3.org/2005/Atom'>
<title>django.git/django/contrib/admin/templates/widget/foreign.html, branch main</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/django.git/atom?h=main</id>
<link rel='self' href='http://cgit.adnoto.dev/django.git/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/'/>
<updated>2008-07-18T23:54:34Z</updated>
<entry>
<title>Merged the newforms-admin branch into trunk.</title>
<updated>2008-07-18T23:54:34Z</updated>
<author>
<name>Brian Rosner</name>
<email>brosner@gmail.com</email>
</author>
<published>2008-07-18T23:54:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=a19ed8aea395e8e07164ff7d85bd7dff2f24edca'/>
<id>urn:sha1:a19ed8aea395e8e07164ff7d85bd7dff2f24edca</id>
<content type='text'>
This is a backward incompatible change. The admin contrib app has been
refactored. The newforms module has several improvements including FormSets
and Media definitions.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Implemented auto-escaping of variable output in templates. Fully controllable by template authors and it's possible to write filters and templates that simulataneously work in both auto-escaped and non-auto-escaped environments if you need to. Fixed #2359</title>
<updated>2007-11-14T12:58:53Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2007-11-14T12:58:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=356662cf74c99fac90afb0f5e6aac8d2d573e62a'/>
<id>urn:sha1:356662cf74c99fac90afb0f5e6aac8d2d573e62a</id>
<content type='text'>
See documentation in templates.txt and templates_python.txt for how everything
works.

Backwards incompatible if you're inserting raw HTML output via template variables.

Based on an original design from Simon Willison and with debugging help from Michael Radziej.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@6671 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>More pre-emptive escaping of strings that should not be interpreted as HTML.</title>
<updated>2006-07-15T01:07:13Z</updated>
<author>
<name>Malcolm Tredinnick</name>
<email>malcolm.tredinnick@gmail.com</email>
</author>
<published>2006-07-15T01:07:13Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=6d104115d1e1e57acd4e9105bca6bdb8b5983230'/>
<id>urn:sha1:6d104115d1e1e57acd4e9105bca6bdb8b5983230</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3352 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions.</title>
<updated>2006-05-02T01:31:56Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2006-05-02T01:31:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=f69cf70ed813a8cd7e1f963a14ae39103e8d5265'/>
<id>urn:sha1:f69cf70ed813a8cd7e1f963a14ae39103e8d5265</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2809 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #620 -- raw_id_admin and limit_choices_to now play well together (thanks to David Schein)</title>
<updated>2006-02-27T18:52:54Z</updated>
<author>
<name>Jacob Kaplan-Moss</name>
<email>jacob@jacobian.org</email>
</author>
<published>2006-02-27T18:52:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=0df9fb8f9abdb0fbc1ba8b249ae9b71cc06af8e2'/>
<id>urn:sha1:0df9fb8f9abdb0fbc1ba8b249ae9b71cc06af8e2</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2414 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Negligible spacing fix to admin/templates/widget/foreign.html</title>
<updated>2005-11-29T05:50:31Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2005-11-29T05:50:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=5a54455ac8585920b4ded4b7191c6496e46fc2d7'/>
<id>urn:sha1:5a54455ac8585920b4ded4b7191c6496e46fc2d7</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>Fixed #911 -- Made template system scoped to the parser instead of the template module. Also changed the way tags/filters are registered and added support for multiple arguments to {% load %} tag. Thanks, rjwittams. This is a backwards-incompatible change for people who've created custom template tags or filters. See http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges for upgrade instructions.</title>
<updated>2005-11-26T22:46:31Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2005-11-26T22:46:31Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=3ede006fc98f7e96ae9fb997872f78635576d5f8'/>
<id>urn:sha1:3ede006fc98f7e96ae9fb997872f78635576d5f8</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1443 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
<entry>
<title>MERGED NEW-ADMIN BRANCH (except for po/mo files, which will come in a separate commit)</title>
<updated>2005-11-25T21:20:09Z</updated>
<author>
<name>Adrian Holovaty</name>
<email>adrian@holovaty.com</email>
</author>
<published>2005-11-25T21:20:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/django.git/commit/?id=9dda4abee1225db7a7b195b84c915fdd141a7260'/>
<id>urn:sha1:9dda4abee1225db7a7b195b84c915fdd141a7260</id>
<content type='text'>
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1434 bcc190cf-cafb-0310-a4f2-bffc1f526a37
</content>
</entry>
</feed>
