summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | no need to stamp the testing dbAbhilash Raj2014-09-241-1/+0
| | | | |
| * | | | added license block for the new fileAbhilash Raj2014-09-242-1/+18
| | | | |
| * | | | added support for migrations via alembicAbhilash Raj2014-09-245-0/+106
| |/ / /
| * | | Update some comments.Barry Warsaw2014-09-231-1/+4
| | | |
| * | | Use a simpler UUID implementation.Barry Warsaw2014-09-232-30/+18
| | | | | | | | | | | | | | | | Fix a typo.
| * | | We do not need _database_exists() or _make_temporary() any more either.Barry Warsaw2014-09-234-101/+6
| | | |
| * | | Since we don't have migrations, we don't need the ITemporaryDatabase stuff,Barry Warsaw2014-09-236-90/+4
| | | | | | | | | | | | | | | | | | | | nor do we need the TAG mechanism. We also don't need load_sql() or load_migrations().
| * | | Migrations will be replaced with Alchemy.Barry Warsaw2014-09-2220-2716/+0
| | | | | | | | | | | | | | | | | | | | | | | | We don't need the raw SQL schema stuff any more. We don't need the Version table any more.
| * | | Re-add the _prepare() method for SQLite permissions.Barry Warsaw2014-09-221-0/+10
| | | |
| * | | Pass all tests with PYTHONWARNINGS=error.Barry Warsaw2014-09-227-27/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Switch away from a deprecated unittest method. * Switch away from using deprecated Exceptions.message attribute. * Decode the bytes b32 encoded X-Message-ID-Hash header into a Unicode. * Fix a rather glaring bug in Pendings.add() where we were actually not properly coercing bytes to unicode for the keys and values! I guess it's a good thing that SQLAlchemy is more strict than Storm. * Some cosmetic fixes.
| * | | Clean up pass.Barry Warsaw2014-09-2228-217/+216
| | | |
| * | | Another test repair.Barry Warsaw2014-09-211-0/+2
| | | |
| * | | Test repair:Barry Warsaw2014-09-215-3/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove an unused import. * Add skips for all migration unit tests. * Fix model class attribute typo. * .values() returns tuples, so adjust for that. * Add a test.
| * | | Merge Abilash's branchBarry Warsaw2014-09-2131-577/+612
|/| | |
| * | | * remove some unused codeAbhilash Raj2014-09-199-55/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * add left out documentation * remov super(<class>).__init__() calls in models as it was useless now. * remove schema_migrate func in mailman/database/base.py
| * | | * fix the circular dependecy problem between User and AdressAbhilash Raj2014-09-197-21/+31
| | | | | | | | | | | | | | | | * fix almost all the errors relating to doctests
| * | | call roster methods on mailinglist object after load from databaseAbhilash Raj2014-09-182-11/+15
| | | |
| * | | reset database by purging all data instead of dropping schema and recreating itAbhilash Raj2014-09-181-9/+10
| | | |
| * | | all tests except for importer working(ignoring test_migrations.py)Abhilash Raj2014-09-185-44/+21
| | | |
| * | | fix all tests in mailman.model.testsAbhilash Raj2014-09-1316-126/+123
| | | |
| * | | change leftover queriesAbhilash Raj2014-09-134-6/+5
| | | |
| * | | modify all storm queries to work with SAAbhilash Raj2014-09-1212-115/+121
| | | |
| * | | * change declarative_base class to use ModelMeta classAbhilash Raj2014-09-0625-159/+84
| | | | | | | | | | | | | | | | * update some queries to match SA style
| * | | replace all storm types and relationships with sqlalchemyAbhilash Raj2014-09-0517-107/+142
| | | |
| * | | add new UUID typeAbhilash Raj2014-09-051-23/+85
| | | |
| * | | change models to use sqlalchemy models<WIP>Abhilash Raj2014-09-049-141/+151
| | | |
| * | | add new database base model for sqlalchemyAbhilash Raj2014-09-041-0/+38
| |/ /
* / / Docs update.Barry Warsaw2014-08-231-3/+3
|/ /
* | Use print functions consistently through, and update all __future__ imports toBarry Warsaw2014-04-28189-747/+765
| | | | | | | | | | | | | | | | reflect this. Also, mock out sys.stderr on some tests so that their nose2 output is quieter. A few other minor coding style consistencies.
* | Carve away the stone.Barry Warsaw2014-04-222-3/+8
| |
* | Oops! Fix version string.Barry Warsaw2014-04-221-1/+1
| |
* | News for 3.0b4.Barry Warsaw2014-04-221-1/+1
| |
* | * Fix test isolation bug in ``languages.rst``.Barry Warsaw2014-04-172-5/+7
|\ \ | | | | | | | | | [Piotr Kasprzyk] (LP: #1308769)
| * | Make a copy before first usage of mgr.clear()Piotr Kasprzyk2014-04-161-4/+4
|/ /
* | * Fixed a crash in the REST server when searching for nonmembers viaBarry Warsaw2014-04-156-65/+251
| | | | | | | | | | | | | | | | ``/find`` which we've never seen before, because those members only have an address record, not a user record. This requires a small change in the API where the JSON response's ``address`` key now contains the URL to the address resource, the new ``email`` key contains the email address as a string, and the ``user`` key is optional.
* | * Use ``setuptools`` instead of ``distribute``, since the latter is defunct.Barry Warsaw2014-04-151-0/+1
|\ \
| * | * Use ``setuptools`` instead of ``distribute``, since the latter is defunct.Barry Warsaw2014-04-151-0/+1
| | |
* | | Add bug number.Barry Warsaw2014-04-151-1/+1
|/ /
* | Documentation updates from Stephen Turnbull.Barry Warsaw2014-04-153-8/+118
|\ \
| * | Improve documentation.Stephen J. Turnbull2014-03-293-7/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - ArchiveUIin5.rst: Add warning and pointer to "Development Setup Guide". - ArchiveUIin5.rst: Update the HyperKitty repos to FedoraHosted. - MTA.rst: Add some hints on Sendmail from Gary Algier. - START.rst: Add a section Documentation to point to hosted prebuilt documentation at PythonHosted, ReadTheDocs, and FedoraHosted. - START.rst: Update the quick start procedure to account for common stumbling blocks, including existing obsolete zope.interface and missing sphinx_build command.
* | | Remove a few redundant checks.Barry Warsaw2014-04-152-8/+0
| | |
* | | * Addresses can be added to existing users, including display names, via theBarry Warsaw2014-04-146-2/+215
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | REST API. [Florian Fuchs] Also, email addresses are validated when they are added via the IUserManager interface. They are still also validated when subscribing to a mailing list, but that is redundant.
| * | | Add an email address to an existing user via the REST API.Barry Warsaw2014-04-145-1/+212
|/| | |
| * | | Posting an invalid email address string to the user/addresses endpoint Florian Fuchs2014-04-142-2/+17
| | | | | | | | | | | | | | | | now returns a 400 status code
| * | | Instantiating an Address model now validates the email stringFlorian Fuchs2014-04-142-1/+49
| | | |
| * | | * Added an API endpoint to POST new email addresses to a user resource.Florian Fuchs2014-04-133-0/+87
| |/ / | | | | | | | | | * Updated docs.
* | | * Greatly improve the fidelity of the Mailman 2.1 list importer functionalityBarry Warsaw2014-04-1413-47/+1118
|\ \ \ | |/ / |/| | | | | | | | | | | (i.e. ``mailman import21``). [Aurélien Bompard]. * Fixed a typo in the IMailingList interface.
| * | IUserManager.create_address() is a better API to create unlinked addresses.Barry Warsaw2014-04-141-29/+5
| | |
| * | Trunk mergeBarry Warsaw2014-04-14326-482/+1575
| |\ \ | |/ / |/| |
* | | * Fix IntegrityError (against PostgreSQL) when deleting a list with contentBarry Warsaw2014-03-153-0/+19
| | | | | | | | | | | | filters. Given by Aurélien Bompard. (LP: #1117174)