8687.15.12
by Karl Fogel
Add the copyright header block to files under lib/lp/archivepublisher/ |
1 |
# Copyright 2009 Canonical Ltd. This software is licensed under the
|
2 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
|
8294.7.1
by Francis J. Lacoste
Add a +help export to all virtual hosts. |
3 |
|
4 |
"""This package contains the Launchpad.net web application.
|
|
5 |
||
6 |
It contains the code and templates that glue all the other components
|
|
7 |
together. As such, it can import from any modules, but nothing should import
|
|
11403.1.8
by Henning Eggers
Fixed another file using script r36 |
8 |
from it.
|
8294.7.1
by Francis J. Lacoste
Add a +help export to all virtual hosts. |
9 |
"""
|
10 |
||
11 |
__metaclass__ = type |
|
12 |
__all__ = [] |
|
13 |
||
9678.4.44
by Guilherme Salgado
[r=gary] Revert the behavior of itemswidgets with regards missing values to the old one by monkey patching itemswidgets.EXPLICIT_EMPTY_SELECTION |
14 |
# Zope recently changed the behavior of items widgets with regards to missing
|
15 |
# values, but they kindly left this global variable for you to monkey patch if
|
|
16 |
# you want the old behavior, just like we do.
|
|
17 |
from zope.app.form.browser import itemswidgets |
|
11403.1.8
by Henning Eggers
Fixed another file using script r36 |
18 |
|
14550.1.1
by Steve Kowalik
Run format-imports over lib/lp and lib/canonical/launchpad |
19 |
|
9678.4.44
by Guilherme Salgado
[r=gary] Revert the behavior of itemswidgets with regards missing values to the old one by monkey patching itemswidgets.EXPLICIT_EMPTY_SELECTION |
20 |
itemswidgets.EXPLICIT_EMPTY_SELECTION = False |
21 |
||
12046.2.1
by Danilo Segan
Move versioninfo to lp.app.versioninfo. |
22 |
# Load versioninfo.py so that we get errors on start-up rather than waiting
|
23 |
# for first page load.
|
|
24 |
import lp.app.versioninfo |