Merge lp:~allenap/launchpad/sub-filters-via-api-bug-672619 into lp:launchpad
| Status: | Merged |
|---|---|
| Approved by: | Gavin Panella on 2010-12-21 |
| Approved revision: | no longer in the source branch. |
| Merged at revision: | 12132 |
| Proposed branch: | lp:~allenap/launchpad/sub-filters-via-api-bug-672619 |
| Merge into: | lp:launchpad |
| Diff against target: |
727 lines (+373/-51) 12 files modified
lib/canonical/launchpad/interfaces/_schema_circular_imports.py (+2/-0) lib/lp/bugs/browser/configure.zcml (+9/-0) lib/lp/bugs/browser/tests/test_bugsubscriptionfilter.py (+210/-0) lib/lp/bugs/interfaces/bugsubscriptionfilter.py (+44/-28) lib/lp/bugs/interfaces/webservice.py (+6/-1) lib/lp/registry/browser/configure.zcml (+3/-0) lib/lp/registry/browser/structuralsubscription.py (+19/-3) lib/lp/registry/browser/tests/test_structuralsubscription.py (+53/-1) lib/lp/registry/interfaces/structuralsubscription.py (+3/-2) lib/lp/registry/model/structuralsubscription.py (+2/-0) lib/lp/registry/stories/webservice/xx-structuralsubscription.txt (+3/-0) utilities/format-imports (+19/-16) |
| To merge this branch: | bzr merge lp:~allenap/launchpad/sub-filters-via-api-bug-672619 |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Deryck Hodge (community) | code | 2010-12-21 | Approve on 2010-12-21 |
|
Review via email:
|
|||
Commit Message
[r=deryck]
Description of the Change
This exposes bug subscription filters to the API.
There are a few parts to making this happen:
- Providing URL information for bug subscription filters:
lib/lp/
- Providing navigation for bug subscription filters:
lib/lp/
lib/lp/
for TestBugSubscrip
lib/lp/
for StructuralSubsc
- Exporting IStructuralSubs
lib/canonical
lib/lp/
lib/lp/
- Exporting IBugSubscriptio
lib/lp/
for TestBugSubscrip
for TestBugSubscrip
lib/lp/
lib/lp/
- Fix a weird issue where navigation was attempted on a non-flushed
object. Haven't investigated this, but a flush prevents issues.
lib/lp/
| Gavin Panella (allenap) wrote : | # |
| Deryck Hodge (deryck) wrote : | # |
Looks fine to me, per our discussions on IRC.

I also fixed some lint in utilities/ format- imports.