app/soc/models/work.py
changeset 513 3c1e16637ad7
parent 512 aae25d2b4464
child 533 ba3309b2fd30
equal deleted inserted replaced
512:aae25d2b4464 513:3c1e16637ad7
    60   #: Required path, prepended to a "link ID" to form the document URL.
    60   #: Required path, prepended to a "link ID" to form the document URL.
    61   #: The combined path and link ID must be globally unique on the
    61   #: The combined path and link ID must be globally unique on the
    62   #: site.  Except in /site/document (Developer) forms, this field is not
    62   #: site.  Except in /site/document (Developer) forms, this field is not
    63   #: usually directly editable by the User, but is instead set by controller
    63   #: usually directly editable by the User, but is instead set by controller
    64   #: logic to match the "scope" of the document.
    64   #: logic to match the "scope" of the document.
    65   partial_path = db.StringProperty(required=True,
    65   scope_path = db.StringProperty(required=True,
    66       verbose_name=ugettext_lazy('Partial path'))
    66       verbose_name=ugettext_lazy('Scope path'))
    67   partial_path.help_text = ugettext_lazy(
    67   scope_path.help_text = ugettext_lazy(
    68     'path portion of URLs, prepended to link ID')
    68     'path portion of URLs, prepended to link ID')
    69 
    69 
    70   #: Required link ID, appended to a "path" to form the document URL.
    70   #: Required link ID, appended to a "path" to form the document URL.
    71   #: The combined path and link ID must be globally unique on the
    71   #: The combined path and link ID must be globally unique on the
    72   #: site (but, unlike some link IDs, a Work link ID can be reused,
    72   #: site (but, unlike some link IDs, a Work link ID can be reused,