~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/interfaces/bugtracker.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
from zope.schema.interfaces import IObject
63
63
 
64
64
from lp import _
 
65
from lp.services.webservice.apihelpers import patch_reference_property
65
66
from lp.app.validators import LaunchpadValidationError
66
67
from lp.app.validators.name import name_validator
67
68
from lp.services.fields import (
69
70
    StrippedTextLine,
70
71
    URIField,
71
72
    )
72
 
from lp.services.webservice.apihelpers import patch_reference_property
73
73
 
74
74
 
75
75
LOCATION_SCHEMES_ALLOWED = 'http', 'https', 'mailto'