]> git.ozlabs.org Git - patchwork/log
patchwork
15 years ago[html] Consolidate js files
Jeremy Kerr [Wed, 24 Sep 2008 06:21:38 +0000 (16:21 +1000)]
[html] Consolidate js files

We don't need most of the stuff in htdocs/js/. Put the only function
required into a common.js, which we can add other stuff to.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[views] Change default ordering to latest-first
Jeremy Kerr [Wed, 24 Sep 2008 05:13:39 +0000 (15:13 +1000)]
[views] Change default ordering to latest-first

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[css] Separate patchforms from list a little
Jeremy Kerr [Tue, 23 Sep 2008 12:03:35 +0000 (22:03 +1000)]
[css] Separate patchforms from list a little

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[html] Reinstate 'about' link
Jeremy Kerr [Tue, 23 Sep 2008 11:55:39 +0000 (21:55 +1000)]
[html] Reinstate 'about' link

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[css] Remove horizontal scrollbar
Jeremy Kerr [Tue, 23 Sep 2008 11:31:37 +0000 (21:31 +1000)]
[css] Remove horizontal scrollbar

We don't need to specify width on #title.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[views] Restructure profile view, simplify bundle access
Jeremy Kerr [Tue, 23 Sep 2008 10:52:53 +0000 (20:52 +1000)]
[views] Restructure profile view, simplify bundle access

Make bundles more like todo lists - the list itself has its own page,
accessible from the top user links.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[views] Fix empty bundle showing entire project's patches
Jeremy Kerr [Sat, 20 Sep 2008 05:31:32 +0000 (15:31 +1000)]
[views] Fix empty bundle showing entire project's patches

If a bundle is empty, we end up triggering the 'if not patches' check
in generic_list(), which repopulates the patch list with the current
project's patches.

So, check for None instead, and leave the patch list empty.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd comment signoffs and acks to mbox text
Jeremy Kerr [Sat, 20 Sep 2008 04:41:43 +0000 (14:41 +1000)]
Add comment signoffs and acks to mbox text

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[test] Move helper functions into tests/utils.py
Jeremy Kerr [Sat, 20 Sep 2008 04:11:49 +0000 (14:11 +1000)]
[test] Move helper functions into tests/utils.py

So that we can use them for other tests

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[models] Improve comment filter
Jeremy Kerr [Sat, 20 Sep 2008 03:28:54 +0000 (13:28 +1000)]
[models] Improve comment filter

We should be able to search on the patch_id faster.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[parser] Fix spacing for encoded headers
Jeremy Kerr [Sat, 20 Sep 2008 03:21:28 +0000 (13:21 +1000)]
[parser] Fix spacing for encoded headers

We need to join the fragments with a space.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[parser] Merge senders with different case
Jeremy Kerr [Sat, 20 Sep 2008 02:59:16 +0000 (12:59 +1000)]
[parser] Merge senders with different case

... and add tests

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[test] 2.4-ise test cases
Jeremy Kerr [Sat, 20 Sep 2008 02:14:23 +0000 (12:14 +1000)]
[test] 2.4-ise test cases

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd bin/__init__.py
Jeremy Kerr [Sat, 20 Sep 2008 02:13:58 +0000 (12:13 +1000)]
Add bin/__init__.py

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[parser] Decode From: headers
Jeremy Kerr [Sat, 20 Sep 2008 02:09:10 +0000 (12:09 +1000)]
[parser] Decode From: headers

We're getting a few utf-8 encoded From: addresses, so decode before
saving to the DB.

Also, add tests.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[parser] Don't remove --- update lines
Jeremy Kerr [Sat, 20 Sep 2008 00:30:05 +0000 (10:30 +1000)]
[parser] Don't remove --- update lines

We'd like to keep update lines in the patch comments, so change the
signature-removal code to allow them to pass through.

Also, add appropriate tests.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[test] Add test for signatures in comments
Jeremy Kerr [Sat, 20 Sep 2008 00:11:38 +0000 (10:11 +1000)]
[test] Add test for signatures in comments

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years ago[test] Add patchwork testing infrastructure
Jeremy Kerr [Fri, 19 Sep 2008 08:10:52 +0000 (18:10 +1000)]
[test] Add patchwork testing infrastructure

Add a small set of initial tests for the patch parsing code.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove superfluous print from parsemail.py
Jeremy Kerr [Fri, 19 Sep 2008 08:01:11 +0000 (18:01 +1000)]
Remove superfluous print from parsemail.py

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoFix handling of newlines in subjects
Jeremy Kerr [Tue, 16 Sep 2008 10:06:54 +0000 (20:06 +1000)]
Fix handling of newlines in subjects

By doing two passes of whitespace normalisation

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoDrop project.linkname from patch subject lines
Jeremy Kerr [Tue, 16 Sep 2008 07:39:50 +0000 (17:39 +1000)]
Drop project.linkname from patch subject lines

.. otherwise every cell patch will be prefixed with [Cbe-oss-dev]

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoImprove [PATCH] subject parsing
Jeremy Kerr [Tue, 16 Sep 2008 07:34:55 +0000 (17:34 +1000)]
Improve [PATCH] subject parsing

We'd like to leave some fragments of [PATCH]-style headers in the
patch subject, so add functionality to do this in clean_subject

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd 404 template
Jeremy Kerr [Tue, 16 Sep 2008 06:43:32 +0000 (16:43 +1000)]
Add 404 template

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoFix 'activate' mispelling
Jeremy Kerr [Fri, 12 Sep 2008 01:07:52 +0000 (11:07 +1000)]
Fix 'activate' mispelling

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoFix mishandling of existing querystring parameters
Jeremy Kerr [Fri, 12 Sep 2008 01:00:33 +0000 (11:00 +1000)]
Fix mishandling of existing querystring parameters

Currently, we only get the first character of order= parameters
in the 'remove this filter' querystring.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemember state filter settings
Jeremy Kerr [Fri, 12 Sep 2008 00:55:21 +0000 (10:55 +1000)]
Remember state filter settings

We need to set a few 'selected' options..

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoDon't apply delegate = Nobody filter by default
Jeremy Kerr [Fri, 12 Sep 2008 00:41:27 +0000 (10:41 +1000)]
Don't apply delegate = Nobody filter by default

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoMake state = Action Required a default filter
Jeremy Kerr [Fri, 12 Sep 2008 00:28:02 +0000 (10:28 +1000)]
Make state = Action Required a default filter

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd 'Action Required' meta-state filter
Jeremy Kerr [Fri, 12 Sep 2008 00:14:12 +0000 (10:14 +1000)]
Add 'Action Required' meta-state filter

This filter shows all patches in states with action_required = True.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoSave UserPersonConfirmations after activating
Jeremy Kerr [Thu, 11 Sep 2008 07:15:35 +0000 (17:15 +1000)]
Save UserPersonConfirmations after activating

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoSave confirmation object before trying to render user-link email
Jeremy Kerr [Thu, 11 Sep 2008 07:11:29 +0000 (17:11 +1000)]
Save confirmation object before trying to render user-link email

We need the key, which is generated in save()

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agopwclient: Get rid of underscore to dash replacement
Nate Case [Wed, 10 Sep 2008 22:14:33 +0000 (17:14 -0500)]
pwclient: Get rid of underscore to dash replacement

I was erroneously doing some string substitutions so that it
would find project names with an underscore in the name.  It
was only necessary due to a side effect of a bug fixed in commit
35241d528c3699b982730a333e236d57dc6451b6 (find project by linkname,
not full name).  In my test case, I had an underscore in the linkname,
but a dash in the full name.

No such string replacement is necessary, and actually breaks
filtering by projects with an underscore in the name now that
we're searching by linkname properly.

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoDon't just rely on random for UserPersonConfirmation keys
Jeremy Kerr [Thu, 11 Sep 2008 06:42:26 +0000 (16:42 +1000)]
Don't just rely on random for UserPersonConfirmation keys

It looks like we're getting identical keys generated for confirmation
keys. Problem has been reported to django, but in the meantime, salt
with the user and email details, then sha1 to give the final key.

This requires an increase in the field size for key, migration script
included.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd HashField.construct() method
Jeremy Kerr [Thu, 11 Sep 2008 05:53:08 +0000 (15:53 +1000)]
Add HashField.construct() method

To construct a new hash object for the given algorithm. While we're at
it, clean up the hashlib-wrapping code.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoxmlrpc: Fix Python 2.4 compatibility in _marshaled_dispatch
Jeremy Kerr [Wed, 10 Sep 2008 03:21:39 +0000 (13:21 +1000)]
xmlrpc: Fix Python 2.4 compatibility in _marshaled_dispatch

Based on an original patch from Nate Case <ncase@xes-inc.com>.

Python 24 doesn't accept encoding and allow_none fields for
xmlrpclib.dumps, so abstract this function at dispatcher init time.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoSimplify hashlib behaviour in HashField
Jeremy Kerr [Wed, 10 Sep 2008 03:20:29 +0000 (13:20 +1000)]
Simplify hashlib behaviour in HashField

We only need to keep the size of the field required, not the
whole hashlib constructor

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAllow pwclient to accept patch hashes
Jeremy Kerr [Wed, 10 Sep 2008 02:08:01 +0000 (12:08 +1000)]
Allow pwclient to accept patch hashes

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoMake parser.py invokation a little more flexible
Jeremy Kerr [Wed, 10 Sep 2008 02:03:50 +0000 (12:03 +1000)]
Make parser.py invokation a little more flexible

Add options to control output, allowing us to use the parser to
generate patch hashes.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAllow rehash for specific patches
Jeremy Kerr [Wed, 10 Sep 2008 02:02:50 +0000 (12:02 +1000)]
Allow rehash for specific patches

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse hex strings for hash values
Jeremy Kerr [Wed, 10 Sep 2008 01:21:19 +0000 (11:21 +1000)]
Use hex strings for hash values

Binary strings a too hard to manage in DB queries and XMLRPC methods,
as we get all kinds of encoding issues.

Change HashField to use a hex string, and add a migration script for db
updates. The patches should be rehashed after migration.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd patch_get_by_hash method to XMLRPC interface
Jeremy Kerr [Tue, 9 Sep 2008 08:19:19 +0000 (18:19 +1000)]
Add patch_get_by_hash method to XMLRPC interface

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoImport hashlib in HashField.db_type
Jeremy Kerr [Tue, 9 Sep 2008 08:15:43 +0000 (18:15 +1000)]
Import hashlib in HashField.db_type

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoHook-up hashing infrastructure
Jeremy Kerr [Tue, 9 Sep 2008 07:26:38 +0000 (17:26 +1000)]
Hook-up hashing infrastructure

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoMove patchparser to patchwork.parser
Jeremy Kerr [Tue, 9 Sep 2008 06:00:58 +0000 (16:00 +1000)]
Move patchparser to patchwork.parser

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove unused parser.py file
Jeremy Kerr [Tue, 9 Sep 2008 05:34:59 +0000 (15:34 +1000)]
Remove unused parser.py file

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd commit_ref field to patch page
Jeremy Kerr [Tue, 9 Sep 2008 04:47:09 +0000 (14:47 +1000)]
Add commit_ref field to patch page

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRe-save user profile after setting name
Jeremy Kerr [Tue, 9 Sep 2008 04:27:27 +0000 (14:27 +1000)]
Re-save user profile after setting name

This means we get Person objects created with the correct name, rather
than the username at time of creation.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoPass Authorization headers in fastcgi application
Jeremy Kerr [Tue, 9 Sep 2008 03:05:51 +0000 (13:05 +1000)]
Pass Authorization headers in fastcgi application

By default, mod_fcgi doens't allow the Authorization header, so
enable -pass-header, and handle the different header name in the
xmlrpc view

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoFix user/username mismatch on pwclientrc template
Jeremy Kerr [Tue, 9 Sep 2008 01:15:03 +0000 (11:15 +1000)]
Fix user/username mismatch on pwclientrc template

... and add a comment to the auth section

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse patchwork xmlrpc view in pwclientrc template
Jeremy Kerr [Tue, 9 Sep 2008 00:54:05 +0000 (10:54 +1000)]
Use patchwork xmlrpc view in pwclientrc template

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoFix broken pwclient link
Jeremy Kerr [Tue, 9 Sep 2008 00:51:17 +0000 (10:51 +1000)]
Fix broken pwclient link

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRename pwclient.py to pwclient
Jeremy Kerr [Tue, 9 Sep 2008 00:46:47 +0000 (10:46 +1000)]
Rename pwclient.py to pwclient

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd usage info for pwclient 'update' action
Jeremy Kerr [Mon, 8 Sep 2008 23:39:08 +0000 (09:39 +1000)]
Add usage info for pwclient 'update' action

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoEnable [auth] setion in pwclientrc template
Jeremy Kerr [Mon, 8 Sep 2008 23:37:05 +0000 (09:37 +1000)]
Enable [auth] setion in pwclientrc template

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove django_xmlrpc from about page.
Jeremy Kerr [Mon, 8 Sep 2008 23:31:28 +0000 (09:31 +1000)]
Remove django_xmlrpc from about page.

Since we don't use it.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd 'update' method to pwclient
Jeremy Kerr [Mon, 8 Sep 2008 23:28:33 +0000 (09:28 +1000)]
Add 'update' method to pwclient

This requires a new xmlrpc function, 'patch_set'. To do this, we
need HTTP Authentication support, which means changing to a custom
XMLRPC distpatcher that is aware of the Authorization: header.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse 'in' rather than '.count()'
Jeremy Kerr [Mon, 8 Sep 2008 03:35:55 +0000 (13:35 +1000)]
Use 'in' rather than '.count()'

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoMake pwclient visible thorugh site, and add .pwclientrc infrastructure
Jeremy Kerr [Mon, 8 Sep 2008 03:07:25 +0000 (13:07 +1000)]
Make pwclient visible thorugh site, and add .pwclientrc infrastructure

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoSet content-disposition header for pwclientrc
Jeremy Kerr [Mon, 8 Sep 2008 02:37:31 +0000 (12:37 +1000)]
Set content-disposition header for pwclientrc

So that browsers will save, rather than view.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd pwclientrc configuration file sample for each project
Jeremy Kerr [Mon, 8 Sep 2008 01:56:51 +0000 (11:56 +1000)]
Add pwclientrc configuration file sample for each project

This allows users to easily configure pwclient for a patchwork
instance.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse config file for pwclient settings
Jeremy Kerr [Mon, 8 Sep 2008 01:38:39 +0000 (11:38 +1000)]
Use config file for pwclient settings

Add a ConfigParser-style config file for patchwork settings, rather
than the environment. At present, only the XMLRPC URL and current
project are included.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoxmlrpc: filter projects on linkname, not name
Jeremy Kerr [Mon, 8 Sep 2008 01:33:49 +0000 (11:33 +1000)]
xmlrpc: filter projects on linkname, not name

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd credit for djagno-xmlrpc app
Jeremy Kerr [Mon, 8 Sep 2008 01:05:18 +0000 (11:05 +1000)]
Add credit for djagno-xmlrpc app

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoOnly add /xmlrpc/ URL if ENABLE_XMLRPC is set.
Jeremy Kerr [Mon, 8 Sep 2008 00:40:21 +0000 (10:40 +1000)]
Only add /xmlrpc/ URL if ENABLE_XMLRPC is set.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd XML-RPC interface and command line client
Nate Case [Fri, 5 Sep 2008 19:27:31 +0000 (14:27 -0500)]
Add XML-RPC interface and command line client

Introduce a new XML-RPC Patchwork interface inspired by the SOAP
interface from the old Patchwork.  The interface itself is fairly
lightweight and generic, and provides read-only access to a limited
subset of the Patchwork database, along with server-side search
and flexible filtering capabilities.

The command line client is modeled after the old one with some
additional filtering options.

The XML-RPC interface is disabled by default.  You can enable it
by setting ENABLE_XMLRPC = True in local_settings.py

This feature uses the django-xmlrpc package available from
http://django-xmlrpc.googlecode.com.

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agomod_python example configuration fixes
Nate Case [Fri, 5 Sep 2008 14:45:36 +0000 (09:45 -0500)]
mod_python example configuration fixes

These fixes correct the example patchwork.mod_python.conf file to
actually work properly:

* Patchwork base directory needs to be in PythonPath so that
  things like "apps.urls" will import

* Set DJANGO_SETTINGS_MODULE to "settings" instead of
  "patchwork.settings" so that it can find the settings file to
  import

* Use LocationMatch instead of Location in order for the pattern
  matching to work (this was causing none of the images/stylesheets
  to be found when using mod_python)

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoShow patch list checkboxes for all authenticated users
Jeremy Kerr [Fri, 5 Sep 2008 07:39:23 +0000 (17:39 +1000)]
Show patch list checkboxes for all authenticated users

Although only some users can alter patches, others still need the
checkboxes to select patches to bundle.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse local settings module
Jeremy Kerr [Fri, 5 Sep 2008 06:12:21 +0000 (16:12 +1000)]
Use local settings module

This makes checkouts into a working patchwork site much easier.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoparsemail: Dynamically determine PATCHWORK_BASE
Nate Case [Fri, 29 Aug 2008 22:25:46 +0000 (17:25 -0500)]
parsemail: Dynamically determine PATCHWORK_BASE

Remove hardcoded PATCHWORK_BASE in favor of determining it
relative to the script's location.

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoExclude packages tree from separate .gitignore file
Jeremy Kerr [Fri, 5 Sep 2008 05:40:43 +0000 (15:40 +1000)]
Exclude packages tree from separate .gitignore file

'cos it says so in the top-level .gitignore.

Also, this means that the lib/packages/ dir will be included in a git
checkout, which is helpful.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd top-level .gitignore file
Nate Case [Fri, 29 Aug 2008 22:25:47 +0000 (17:25 -0500)]
Add top-level .gitignore file

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd delegate column
Jeremy Kerr [Mon, 1 Sep 2008 03:56:09 +0000 (13:56 +1000)]
Add delegate column

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd content-disposition: attachment header to bundle download
Jeremy Kerr [Mon, 1 Sep 2008 03:39:34 +0000 (13:39 +1000)]
Add content-disposition: attachment header to bundle download

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove redundant 'Patchwork' from titles in registration templates
Jeremy Kerr [Sat, 23 Aug 2008 07:48:41 +0000 (15:48 +0800)]
Remove redundant 'Patchwork' from titles in registration templates

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse consistent icons for filter settings
Jeremy Kerr [Sat, 23 Aug 2008 07:23:49 +0000 (15:23 +0800)]
Use consistent icons for filter settings

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove duplicate "- Patchwork" from patch page titles
Jeremy Kerr [Sat, 23 Aug 2008 04:10:18 +0000 (12:10 +0800)]
Remove duplicate "- Patchwork" from patch page titles

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove bottom margin from title
Jeremy Kerr [Sat, 23 Aug 2008 04:00:57 +0000 (12:00 +0800)]
Remove bottom margin from title

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoRemove 'action: ' print output
Jeremy Kerr [Sat, 23 Aug 2008 03:38:34 +0000 (11:38 +0800)]
Remove 'action: ' print output

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse up/down arrows as sorting indicator
Jeremy Kerr [Sat, 23 Aug 2008 03:31:10 +0000 (11:31 +0800)]
Use up/down arrows as sorting indicator

.. rather than a red heading, which implies an error.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoClean up stylesheet whitespace
Jeremy Kerr [Sat, 23 Aug 2008 03:14:50 +0000 (11:14 +0800)]
Clean up stylesheet whitespace

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoparsemail.sh typo: Insert missing slash in path
Nate Case [Fri, 22 Aug 2008 20:58:07 +0000 (15:58 -0500)]
parsemail.sh typo: Insert missing slash in path

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoPython 2.4 exception printing compatibility
Nate Case [Fri, 22 Aug 2008 20:58:06 +0000 (15:58 -0500)]
Python 2.4 exception printing compatibility

Use str(ex) instead of ex.message for reporting exceptions

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoSupport postgresql_psycopg2 DATABASE_ENGINE
Nate Case [Fri, 22 Aug 2008 20:58:05 +0000 (15:58 -0500)]
Support postgresql_psycopg2 DATABASE_ENGINE

Check for "postgresql*" rather than just "postgresql" in
HashField.db_type() so that postgresql_psycopg2 will work.

While we're here, raise an exception if the database engine is
unknown rather than silently not returning anything.

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoIn some places tabs are used instead of spaces for indentation,
Nate Case [Sat, 23 Aug 2008 03:03:18 +0000 (11:03 +0800)]
In some places tabs are used instead of spaces for indentation,
even when other lines of a method are indented with spaces.

This gets rid of all tabs and uses spaces everywhere.

[Reworked to apply on newer code by Jeremy]

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd support for Python 2.4 email modules
Nate Case [Fri, 22 Aug 2008 20:58:03 +0000 (15:58 -0500)]
Add support for Python 2.4 email modules

Use email.MIMEText, email.Utils, and email.Header in the case
where importing the newer email.mime.text, email.utils, and
email.header modules failed.

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoEliminate hashlib requirement
Nate Case [Fri, 22 Aug 2008 20:58:02 +0000 (15:58 -0500)]
Eliminate hashlib requirement

If the hashlib module does not exist, use sha and md5 modules instead
to support Python 2.4.  The hashlib module was added to Python 2.5.

Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd simple help infrastructure, with an 'about' page.
Jeremy Kerr [Sat, 23 Aug 2008 02:29:12 +0000 (10:29 +0800)]
Add simple help infrastructure, with an 'about' page.

We'll need the about page for adding attribution for included
components.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse self.fields[field] rather than self.field when iterating form fields
Jeremy Kerr [Sat, 23 Aug 2008 02:25:43 +0000 (10:25 +0800)]
Use self.fields[field] rather than self.field when iterating form fields

This way, we included the delegate field added in the
MultiplePatchForm's constructor.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoPatchform.delegate isn't required
Jeremy Kerr [Sat, 23 Aug 2008 00:47:16 +0000 (08:47 +0800)]
Patchform.delegate isn't required

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd padding before each project in 'other projects' lists
Jeremy Kerr [Fri, 22 Aug 2008 07:17:05 +0000 (15:17 +0800)]
Add padding before each project in 'other projects' lists

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoTone down acked-by and signed-off-by colours a little
Jeremy Kerr [Fri, 22 Aug 2008 07:09:42 +0000 (15:09 +0800)]
Tone down acked-by and signed-off-by colours a little

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoZebra-stripe the patch list
Jeremy Kerr [Fri, 22 Aug 2008 06:17:44 +0000 (14:17 +0800)]
Zebra-stripe the patch list

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse DEFAULT_FROM_EMAIL rather than PATCHWORK_FROM_EMAIL
Jeremy Kerr [Fri, 22 Aug 2008 03:17:59 +0000 (11:17 +0800)]
Use DEFAULT_FROM_EMAIL rather than PATCHWORK_FROM_EMAIL

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd DB permissions for registration app
Jeremy Kerr [Fri, 22 Aug 2008 03:02:04 +0000 (11:02 +0800)]
Add DB permissions for registration app

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoDocument dependency on django-registration
Jeremy Kerr [Fri, 22 Aug 2008 02:42:05 +0000 (10:42 +0800)]
Document dependency on django-registration

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoUse django-registration infrastructure
Jeremy Kerr [Fri, 22 Aug 2008 02:41:25 +0000 (10:41 +0800)]
Use django-registration infrastructure

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoNo help for now.
Jeremy Kerr [Thu, 21 Aug 2008 10:15:19 +0000 (18:15 +0800)]
No help for now.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoPatchwork Beta 1.
Jeremy Kerr [Thu, 21 Aug 2008 09:45:00 +0000 (17:45 +0800)]
Patchwork Beta 1.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd project argument to set_bundle
Jeremy Kerr [Thu, 21 Aug 2008 09:25:35 +0000 (17:25 +0800)]
Add project argument to set_bundle

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
15 years agoAdd project argument to set_patches
Jeremy Kerr [Thu, 21 Aug 2008 09:24:01 +0000 (17:24 +0800)]
Add project argument to set_patches

MultiplePatchForm needs a project, so pass one down.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>