~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/features/flags.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-05-23 18:43:31 UTC
  • mfrom: (13084.2.6 page-match-rewrite-url)
  • Revision ID: launchpad@pqm.canonical.com-20110523184331-dhd2c7cgfuu49epw
[r=sinzui][bug=784273] Adds facility to the PageMatch to handle bad
        URIs

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
# NOTE: "default behaviour" does not specify a default value.  It
39
39
# merely documents the code's behaviour if no value is specified.
40
40
flag_info = sorted([
41
 
    ('bugs.bugtracker_components.enabled',
42
 
     'boolean',
43
 
     ('Enables the display of bugtracker components.'),
44
 
     ''),
45
41
    ('code.branchmergequeue',
46
42
     'boolean',
47
43
     'Enables merge queue pages and lists them on branch pages.',
82
78
     'int',
83
79
     "How many package syncs may be done directly in a web request.",
84
80
     '100'),
85
 
    ('soyuz.derived_series_ui.enabled',
 
81
    ('soyuz.derived-series-ui.enabled',
86
82
     'boolean',
87
83
     'Enables derivative distributions pages.',
88
84
     ''),
89
 
    ('soyuz.derived_series_sync.enabled',
 
85
    ('soyuz.derived-series-sync.enabled',
90
86
     'boolean',
91
87
     'Enables syncing of packages on derivative distributions pages.',
92
88
     ''),
106
102
     'boolean',
107
103
     'Changes the appearance of notifications on private bugs.',
108
104
     ''),
109
 
    ('disclosure.picker_enhancements.enabled',
110
 
     'boolean',
111
 
     ('Enables the display of extra details in the person picker.'),
112
 
     ''),
113
 
    ('disclosure.person_affiliation_rank.enabled',
114
 
     'boolean',
115
 
     ('Enables ranking by pillar affiliation in the person picker.'),
116
 
     ''),
117
105
    ])
118
106
 
119
107
# The set of all flag names that are documented.