__init__.py |
|
0 |
flags.py |
Class for flags in manifest entries in the form:
"flag" (same as "flag=true")
"flag=yes|true|1"
"flag=no|false|0"
|
8488 |
manifest.py |
Base class for all manifest entry types.
Subclasses may define the following class or member variables:
- localized: indicates whether the manifest entry is used for localized
data.
- type: the manifest entry type (e.g. 'content' in
'content global content/global/')
- allowed_flags: a set of flags allowed to be defined for the given
manifest entry type.
A manifest entry is attached to a base path, defining where the manifest
entry is bound to, and that is used to find relative paths defined in
entries.
|
10329 |