summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-05-18 10:21:31 +0200
committerAndrew Godwin <andrew@aeracode.org>2013-05-18 10:21:31 +0200
commitb31eea069cf9bc801c82a975307a9173527d78f2 (patch)
treed3fb5b6e5ae4e6d4293786b94a193ed4f9fc4959 /docs/internals
parent76d93a52cd56be23104f824e6755ecc8d3a34d94 (diff)
parentf54a8880d78f4b0b37371b0b295b2b1e73c8b67f (diff)
Merge branch 'master' into schema-alteration
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/committers.txt43
-rw-r--r--docs/internals/deprecation.txt17
2 files changed, 47 insertions, 13 deletions
diff --git a/docs/internals/committers.txt b/docs/internals/committers.txt
index f891bc4eb7..6b9c7df14a 100644
--- a/docs/internals/committers.txt
+++ b/docs/internals/committers.txt
@@ -30,13 +30,10 @@ Journal-World`_ of Lawrence, Kansas, USA.
Simon lives in Brighton, England.
`Jacob Kaplan-Moss`_
- Jacob is a partner at `Revolution Systems`_ which provides support services
- around Django and related open source technologies. A good deal of Jacob's
- work time is devoted to working on Django. Jacob previously worked at World
- Online, where Django was invented, where he was the lead developer of
- Ellington, a commercial Web publishing platform for media companies.
-
- Jacob lives in Lawrence, Kansas, USA.
+ Jacob is Director of Platform Security at Heroku_. He worked at World
+ Online for four years, where he helped open source Django and found
+ the Django Software Foundation. Jacob lives on a hobby farm outside of
+ Lawrence where he spends his weekends playing with dirt and power tools.
`Wilson Miner`_
Wilson's design-fu is what makes Django look so nice. He designed the
@@ -55,6 +52,7 @@ Journal-World`_ of Lawrence, Kansas, USA.
.. _jacob kaplan-moss: http://jacobian.org/
.. _revolution systems: http://revsys.com/
.. _wilson miner: http://wilsonminer.com/
+.. _heroku: http://heroku.com/
Current developers
==================
@@ -200,7 +198,7 @@ Karen Tracey
He has worked on Django's auth, admin and staticfiles apps as well as
the form, core, internationalization and test systems. He currently works
- as the lead engineer at Gidsy_.
+ at Mozilla_.
Jannis lives in Berlin, Germany.
@@ -208,7 +206,7 @@ Karen Tracey
.. _Bauhaus-University Weimar: http://www.uni-weimar.de/
.. _virtualenv: http://www.virtualenv.org/
.. _pip: http://www.pip-installer.org/
-.. _Gidsy: http://gidsy.com/
+.. _Mozilla: http://www.mozilla.org/
`James Tauber`_
James is the lead developer of Pinax_ and the CEO and founder of
@@ -455,9 +453,6 @@ Jeremy Dunck
.. _`Daniel Lindsley`: http://toastdriven.com/
.. _`Amazon Web Services`: https://aws.amazon.com/
-Specialists
------------
-
`James Bennett`_
James is Django's release manager, and also contributes to the
documentation and provide the occasional bugfix.
@@ -508,6 +503,30 @@ Tim Graham
Tim works as a software engineer and lives in Philadelphia, PA, USA.
+Marc Tamlyn
+ Marc started life on the web using Django 1.2 back in 2010, and has never
+ looked back. He was involved with rewriting the class based view
+ documentation at DjangoCon EU 2012, and also helped to develop `CCBV`_, an
+ additional class based view reference tool.
+
+ Marc currently works at `Incuna Ltd`_, a digital healthcare agency in
+ Oxford, UK.
+
+.. _CCBV: http://ccbv.co.uk/
+.. _Incuna Ltd: http://incuna.com/
+
+Donald Stufft
+ Donald found Python and Django in 2007 while trying to find a language,
+ and web framework that he really enjoyed using after many years of PHP. He
+ fell in love with the beauty of Python and the way Django made tasks simple
+ and easy. His contributions to Django focus primarily on ensuring that it
+ is and remains a secure web framework.
+
+ Donald currently works at `Nebula Inc`_ as a Software Engineer for their
+ security team and lives in the Greater Philadelphia Area.
+
+.. _Nebula Inc: https://www.nebula.com/
+
Developers Emeritus
===================
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 1533e25dc8..774de2a2fd 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -73,7 +73,7 @@ these changes.
``django.utils.formats.get_format()`` to get the appropriate
formats.
-* The ability to use a function-based test runners will be removed,
+* The ability to use a function-based test runner will be removed,
along with the ``django.test.simple.run_tests()`` test runner.
* The ``views.feed()`` view and ``feeds.Feed`` class in
@@ -365,6 +365,12 @@ these changes.
* ``django.conf.urls.shortcut`` and ``django.views.defaults.shortcut`` will be
removed.
+* Support for the Python Imaging Library (PIL) module will be removed, as it
+ no longer appears to be actively maintained & does not work on Python 3.
+ You are advised to install `Pillow`_, which should be used instead.
+
+.. _`Pillow`: https://pypi.python.org/pypi/Pillow
+
* The following private APIs will be removed:
- ``django.db.close_connection()``
@@ -375,6 +381,15 @@ these changes.
* ``django.forms.widgets.RadioInput`` will be removed in favor of
``django.forms.widgets.RadioChoiceInput``.
+* The module ``django.test.simple`` and the class
+ ``django.test.simple.DjangoTestSuiteRunner`` will be removed. Instead use
+ ``django.test.runner.DiscoverRunner``.
+
+* The module ``django.test._doctest`` and the classes
+ ``django.test.testcases.DocTestRunner`` and
+ ``django.test.testcases.OutputChecker`` will be removed. Instead use the
+ doctest module from the Python standard library.
+
2.0
---