~abompard/mailman/bug-1312884

« back to all changes in this revision

Viewing changes to src/mailman/commands/docs/withlist.rst

  • Committer: Barry Warsaw
  • Date: 2014-11-01 16:49:15 UTC
  • mfrom: (7251.1.38 abhilash)
  • Revision ID: barry@list.org-20141101164915-06wqfmya6wf47n6n
Database
--------
 * The ORM layer, previously implemented with Storm, has been replaced by
   SQLAlchemy, thanks to the fantastic work by Abhilash Raj and Aurélien
   Bompard.  Alembic is now used for all database schema migrations.
 * The new logger `mailman.database` logs any errors at the database layer.

API
---
 * Several changes to the internal API:
   - `IListManager.mailing_lists` is guaranteed to be sorted in List-ID order.
   - `IDomains.mailing_lists` is guaranteed to be sorted in List-ID order.
   - Iteration over domains via the `IDomainManager` is guaranteed to be sorted
     by `IDomain.mail_host` order.
   - `ITemporaryDatabase` interface and all implementations are removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    >>> args.listname = '^.*example.com'
91
91
    >>> command.process(args)
92
92
    The list's display name is Aardvark
 
93
    The list's display name is Badboys
93
94
    The list's display name is Badger
94
 
    The list's display name is Badboys
95
95
 
96
96
    >>> args.listname = '^bad.*'
97
97
    >>> command.process(args)
 
98
    The list's display name is Badboys
98
99
    The list's display name is Badger
99
 
    The list's display name is Badboys
100
100
 
101
101
    >>> args.listname = '^foo'
102
102
    >>> command.process(args)