Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(43) | Call(0) | Derive(14) | Import(29)
src/p/r/Products.CMFPlomino-1.18.6/Products/CMFPlomino/PlominoDocument.py Products.CMFPlomino(Download)
from Products.CMFCore.CMFCatalogAware import CatalogAware except ImportError, e: from Products.CMFCore.CMFCatalogAware import CMFCatalogAware as CatalogAware try:
class PlominoDocument(CatalogAware, CMFBTreeFolder, Contained): """ These represent the contents in a Plomino database. A document contains *items*. An item may or may not correspond to fields on one or more forms.
src/p/l/plone.app.transmogrifier-1.2/src/plone/app/transmogrifier/reindexobject.py plone.app.transmogrifier(Download)
from Products.CMFCore.CMFCatalogAware import CatalogAware # Plone 4 except ImportError: from Products.CMFCore.CMFCatalogAware import CMFCatalogAware as CatalogAware from collective.transmogrifier.interfaces import ISectionBlueprint
src/p/l/Plomino-HEAD/Products/CMFPlomino/PlominoDocument.py Plomino(Download)
from Products.CMFCore.CMFCatalogAware import CatalogAware except ImportError, e: from Products.CMFCore.CMFCatalogAware import CMFCatalogAware as CatalogAware try:
class PlominoDocument(CatalogAware, CMFBTreeFolder, Contained): """ These represent the contents in a Plomino database. A document contains *items*. An item may or may not correspond to fields on one or more forms.
src/p/r/Products.CMFCore-2.2.8/Products/CMFCore/PortalContent.py Products.CMFCore(Download)
from zope.interface import implements from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.CMFCore.DynamicType import DynamicType from Products.CMFCore.exceptions import NotFound
class PortalContent(DynamicType, CMFCatalogAware, SimpleItem): """ Base class for portal objects. Provides hooks for reviewing, indexing, and CMF UI.
src/p/r/Products.Reflecto-3.0.5/Products/Reflecto/content/proxy.py Products.Reflecto(Download)
from Products.CMFCore.interfaces import ICatalogableDublinCore from Products.CMFCore.interfaces import IDublinCore from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.Reflecto.interfaces import IReflector
class BaseProxy(CMFCatalogAware, Item, Acquisition.Implicit): meta_type="Reflecto proxy" implements(IReflectoProxy, IDublinCore, ICatalogableDublinCore)
src/p/r/Products.listen-0.6.4/Products/listen/content/mailinglist.py Products.listen(Download)
from Products.CMFCore.utils import getToolByName from Products.CMFCore.DynamicType import DynamicType from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.MailBoxer.MailBoxer import MaildropHostIsAvailable
class MailingList(DynamicType, CMFCatalogAware, MailBoxerMailingList, FiveSite): """ A Mailing list implementation built on top of a customized MailBoxer. Let's see how this works:
src/o/p/opencore-listen-0.8.0/Products/listen/content/mailinglist.py opencore-listen(Download)
from Products.CMFCore.utils import getToolByName from Products.CMFCore.DynamicType import DynamicType from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.MailBoxer.MailBoxer import MaildropHostIsAvailable
class MailingList(DynamicType, CMFCatalogAware, MailBoxerMailingList, FiveSite): """ A Mailing list implementation built on top of a customized MailBoxer. Let's see how this works:
src/p/l/plone.app.content-3.0.0/plone/app/content/container.py plone.app.content(Download)
from Products.CMFCore.PortalContent import PortalContent from Products.CMFCore.PortalFolder import PortalFolderBase from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.CMFDefault.DublinCore import DefaultDublinCoreImpl
class Container(OFSContainer, CMFCatalogAware, PortalFolderBase, PortalContent, DefaultDublinCoreImpl, Contained): """A base class mixing in CMFish, contentish, containerish, containedish, dublincoreish behaviour. """
src/c/o/collective.alias-1.3.1/src/collective/alias/content.py collective.alias(Download)
from Products.CMFCore.PortalContent import PortalContent from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from collective.alias.interfaces import IAlias
class Alias(CMFCatalogAware, CMFOrderedBTreeFolderBase, PortalContent, Contained): grok.implements(IAlias, IDexterityContent, IHasRelations, IUUIDAware, IAttributeUUID) __providedBy__ = DelegatingSpecification() _alias_portal_type = None
src/c/o/collective.solr-4.0/src/collective/solr/indexer.py collective.solr(Download)
from ZODB.POSException import ConflictError from Products.CMFCore.utils import getToolByName from Products.CMFCore.CMFCatalogAware import CMFCatalogAware from Products.Archetypes.CatalogMultiplex import CatalogMultiplex from Products.Archetypes.interfaces import IBaseObject
1 | 2 | 3 Next