-
-
Save jaroel/4bdd0e7a0093ae7cc46b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[settings] | |
multi_line_output=3 | |
known_first_party=ames | |
default_section=THIRDPARTY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from Products.Archetypes.annotations import ( | |
AT_ANN_STORAGE, | |
AT_FIELD_MD, | |
AT_MD_STORAGE, | |
AT_REF, | |
getAnnotation | |
) | |
from Products.Archetypes.ArchetypeTool import ( | |
listTypes, | |
process_types, | |
registerClasses, | |
registerType | |
) | |
from Products.Archetypes.athistoryaware import ATHistoryAwareMixin | |
from Products.Archetypes.BaseBTreeFolder import ( | |
BaseBTreeFolder, | |
BaseBTreeFolderSchema | |
) | |
from Products.Archetypes.BaseContent import ( | |
BaseContent, | |
BaseContentMixin, | |
BaseSchema | |
) | |
from Products.Archetypes.BaseFolder import ( | |
BaseFolder, | |
BaseFolderMixin, | |
BaseFolderSchema | |
) | |
from Products.Archetypes.BaseObject import ( | |
AttributeValidator, | |
BaseObject, | |
MinimalSchema | |
) | |
from Products.Archetypes.BaseUnit import BaseUnit | |
from Products.Archetypes.ClassGen import AT_GENERATE_METHOD | |
from Products.Archetypes.debug import log, log_exc | |
from Products.Archetypes.ExtensibleMetadata import ( | |
ExtensibleMetadata, | |
ExtensibleMetadataSchema | |
) | |
from Products.Archetypes.Field import * | |
from Products.Archetypes.fieldproperty import ( | |
ATDateTimeFieldProperty, | |
ATFieldProperty, | |
ATReferenceFieldProperty | |
) | |
from Products.Archetypes.Marshall import ( | |
PrimaryFieldMarshaller, | |
RFC822Marshaller | |
) | |
from Products.Archetypes.OrderedBaseFolder import ( | |
OrderedBaseFolder, | |
OrderedBaseFolderSchema | |
) | |
from Products.Archetypes.Schema import ( | |
BasicSchema, | |
ManagedSchema, | |
MetadataSchema, | |
Schema | |
) | |
from Products.Archetypes.Schema.Composite import CompositeSchema | |
from Products.Archetypes.Schema.Facade import FacadeMetadataSchema | |
from Products.Archetypes.SQLStorage import ( | |
BaseSQLStorage, | |
GadflySQLStorage, | |
MySQLSQLStorage, | |
PostgreSQLStorage, | |
SQLServerStorage | |
) | |
from Products.Archetypes.Storage import * | |
from Products.Archetypes.Storage.annotation import ( | |
AnnotationStorage, | |
MetadataAnnotationStorage | |
) | |
from Products.Archetypes.TemplateMixin import ( | |
TemplateMixin, | |
TemplateMixinSchema | |
) | |
from Products.Archetypes.utils import DisplayList, IntDisplayList, Vocabulary | |
from Products.Archetypes.VariableSchemaSupport import VariableSchemaSupport | |
from Products.Archetypes.Widget import * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment