~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/browser/lazrjs.py

  • Committer: Henning Eggers
  • Date: 2011-05-20 15:09:30 UTC
  • mto: This revision was merged to the branch mainline in revision 13113.
  • Revision ID: henning@canonical.com-20110520150930-aaaf6a0666zarrui
Removed lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
        :param exported_field: The attribute being edited. This should be
248
248
            a field from an interface of the form ISomeInterface['fieldname']
249
249
        :param default_html: Default display of attribute.
250
 
        :param content_box_id: The HTML id to use for this widget. Automatically
251
 
            generated if this is not provided.
 
250
        :param content_box_id: The HTML id to use for this widget.
 
251
            Automatically generated if this is not provided.
252
252
        :param header: The large text at the top of the picker.
253
253
        :param step_title: Smaller line of text below the header.
254
254
        :param remove_button_text: Override default button text: "Remove"
494
494
        :param edit_url: The URL to use for editing when the user isn't logged
495
495
            in and when JS is off.  Defaults to the edit_view on the context.
496
496
        :param edit_title: Used to set the title attribute of the anchor.
497
 
        :param content_box_id: The HTML id to use for this widget. Automatically
498
 
            generated if this is not provided.
 
497
        :param content_box_id: The HTML id to use for this widget.
 
498
            Automatically generated if this is not provided.
499
499
        :param header: The large text at the top of the choice popup.
500
500
        """
501
501
        super(BooleanChoiceWidget, self).__init__(
547
547
        :param exported_field: The attribute being edited. This should be
548
548
            a field from an interface of the form ISomeInterface['fieldname']
549
549
        :param header: The large text at the top of the picker.
550
 
        :param content_box_id: The HTML id to use for this widget. Automatically
551
 
            generated if this is not provided.
 
550
        :param content_box_id: The HTML id to use for this widget.
 
551
            Automatically generated if this is not provided.
552
552
        :param enum: The enumerated type used to generate the widget items.
553
553
        :param edit_view: The view name to use to generate the edit_url if
554
554
            one is not specified.