~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/distroseries.py

XXX for some thread-UNsafe activity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
827
827
        super(DistroSeriesDifferenceBaseView, self).initialize()
828
828
 
829
829
    def initialize_sync_label(self, label):
 
830
        # XXX: GavinPanella 2011-07-13 bug=809985: Good thing the app servers
 
831
        # are running single threaded...
830
832
        self.__class__.actions.byname['actions.sync'].label = label
831
833
 
832
834
    @property
861
863
            SimpleTerm(diff, diff.id)
862
864
                    for diff in self.cached_differences.batch]
863
865
        diffs_vocabulary = SimpleVocabulary(terms)
 
866
        # XXX: GavinPanella 2011-07-13 bug=809985: Good thing the app servers
 
867
        # are running single threaded...
864
868
        choice = self.form_fields['selected_differences'].field.value_type
865
869
        choice.vocabulary = diffs_vocabulary
866
870