[PULL] github.com/dlespiau/patchwork for-upstream

Damien Lespiau damien.lespiau at intel.com
Sat Sep 19 02:53:29 AEST 2015


Hi Jeremy,

Let's get going with the first pull request from me with some patches
that have been reviewed on the mailing list before. They are mostly
clean-up/test related ones this time around.

The main things are:
  - some PEP8 related clean ups
  - fix tox.ini to run the tests on django 1.6,1.7 and 1.8
  - fix the tests to actually pass, they aren't on master (oops)
  - improve test coverage with a few more tests
  - first steps towards having the documentation published on
    readthedocs.org
  - the only visual change: focus the username input when loading the
    login page

HTH,

-- 
Damien


The following changes since commit 9cab078fedd5bd4219e6819efc5d92eed310ea39:

  patchwork/templates: Suppress cycle template tag warning (2015-06-05 14:53:07 +0800)

are available in the git repository at:

  https://github.com/dlespiau/patchwork.git for-upstream

for you to fetch changes up to 634d97275f152470973996c242c9668bb53dff9f:

  login: Focus the username field on load (2015-09-18 16:49:26 +0100)

----------------------------------------------------------------
Damien Lespiau (2):
      templates: Pull jquery into base.html
      login: Focus the username field on load

Stephen Finucane (16):
      Add missing explicit state fixture load
      tox: Update versions of Django to be tested
      docs: Rewrite documentation
      trivial: Remove dead files/code
      trivial: Resolve some PEP8 issues
      trivial: Remove Python < 2.5 code
      tests/test_user: Add "profile unlink" tests
      tests/test_user: Add "profile POST" tests
      trivial: Remove dead imports from 'tests'
      management: Resolve bugs with 'cron' command
      management: Resolve a bug with 'retag' command
      trivial: Resolve PEP8 issues with 'management'
      trivial: Add missing licenses to 'management'
      settings: Fix deprecated 'TEST_CHARSET' warning
      settings: Move 'TEST_RUNNER' to correct location
      tests: Move 'reverse' calls inside 'setUp'

 docs/HACKING                              |  69 -------
 docs/INSTALL                              | 305 ------------------------------
 docs/development.md                       |  95 ++++++++++
 docs/index.md                             |  66 +++++++
 docs/installation.md                      | 290 ++++++++++++++++++++++++++++
 docs/requirements-base.txt                |   2 +-
 docs/requirements-prod.txt                |   2 +-
 mkdocs.yml                                |  10 +
 patchwork/bin/parsemail.py                |   9 +-
 patchwork/context_processors.py           |  32 ----
 patchwork/management/commands/cron.py     |  30 ++-
 patchwork/management/commands/retag.py    |  41 ++--
 patchwork/parser.py                       |  10 +-
 patchwork/requestcontext.py               |  46 ++---
 patchwork/settings/base.py                |   6 +-
 patchwork/settings/dev.py                 |   8 +-
 patchwork/settings/production.example.py  |   2 +-
 patchwork/templates/patchwork/bundle.html |   1 -
 patchwork/templates/patchwork/login.html  |   7 +
 patchwork/templatetags/filter.py          |  36 ----
 patchwork/templatetags/listurl.py         |  71 ++-----
 patchwork/templatetags/order.py           |  66 -------
 patchwork/templatetags/patch.py           |  46 +----
 patchwork/templatetags/pwurl.py           |  76 --------
 patchwork/tests/test_confirm.py           |   1 -
 patchwork/tests/test_mail_settings.py     |  41 ++--
 patchwork/tests/test_notifications.py     |   4 +-
 patchwork/tests/test_patchparser.py       |   6 +-
 patchwork/tests/test_user.py              | 129 +++++++++++--
 patchwork/tests/test_xmlrpc.py            |   5 +-
 patchwork/tests/utils.py                  |   9 +-
 patchwork/views/__init__.py               |  19 +-
 patchwork/views/xmlrpc.py                 |  21 +-
 templates/base.html                       |   2 +-
 tox.ini                                   |  42 ++--
 35 files changed, 753 insertions(+), 852 deletions(-)
 delete mode 100644 docs/HACKING
 delete mode 100644 docs/INSTALL
 create mode 100644 docs/development.md
 create mode 100644 docs/index.md
 create mode 100644 docs/installation.md
 create mode 100644 mkdocs.yml
 delete mode 100644 patchwork/context_processors.py
 delete mode 100644 patchwork/templatetags/filter.py
 delete mode 100644 patchwork/templatetags/order.py
 delete mode 100644 patchwork/templatetags/pwurl.py


More information about the Patchwork mailing list