Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(14) | Call(14) | Derive(0) | Import(0)
src/p/r/Products.CMFCore-2.2.8/Products/CMFCore/DirectoryView.py Products.CMFCore(Download)
t = DirectoryView metadata = FSMetadata(entry_filepath) metadata.read() ob = t( entry , entry_reg_key
if t is not None: metadata = FSMetadata(entry_filepath) metadata.read() try: ob = t(name, entry_filepath, fullname=entry,
src/p/r/Products.CMFFormController-3.0.3/Products/CMFFormController/FSControllerBase.py Products.CMFFormController(Download)
if os.path.exists(e_fp): metadata = FSMetadata(e_fp) metadata.read() self._setProperties(metadata.getProperties())
src/c/o/collective.portlet.ngcollection-1.4/collective/portlet/ngcollection/manager.py collective.portlet.ngcollection(Download)
tmplkey = getTemplateKey(dirkey, filename) metadata = FSMetadata(path) metadata.read() properties = metadata.getProperties() title = properties.get('title', filename[:-3])
src/p/r/Products.FileSystemSite-2.4/Products/FileSystemSite/tests/test_FSPythonScript.py Products.FileSystemSite(Download)
def _makeOne( self, id, filename ): path = join(self.skin_path_name, filename) metadata = FSMetadata(path) metadata.read() return FSPythonScript( id, path, properties=metadata.getProperties() )
src/p/r/Products.FileSystemSite-2.4/Products/FileSystemSite/tests/test_FSPageTemplate.py Products.FileSystemSite(Download)
def _makeOne( self, id, filename ): path = path_join(self.skin_path_name, filename) metadata = FSMetadata(path) metadata.read() return FSPageTemplate( id, path, properties=metadata.getProperties() )
src/p/r/Products.FileSystemSite-2.4/Products/FileSystemSite/tests/test_FSFile.py Products.FileSystemSite(Download)
full_path = path_join(self.skin_path_name, filename) metadata = FSMetadata(full_path) metadata.read() fsfile_ob = FSFile(id, full_path, properties=metadata.getProperties())
src/p/r/Products.CMFCore-2.2.8/Products/CMFCore/tests/test_FSZSQLMethod.py Products.CMFCore(Download)
def _makeOne( self, id, filename ): path = join(self.skin_path_name, filename) metadata = FSMetadata(path) metadata.read() return FSZSQLMethod( id, path, properties=metadata.getProperties() )
src/p/r/Products.CMFCore-2.2.8/Products/CMFCore/tests/test_FSSTXMethod.py Products.CMFCore(Download)
path = os.path.join(self.skin_path_name, filename) metadata = FSMetadata(path) metadata.read() return FSSTXMethod( id, path, properties=metadata.getProperties() )
src/p/r/Products.CMFCore-2.2.8/Products/CMFCore/tests/test_FSReSTMethod.py Products.CMFCore(Download)
path = os.path.join(self.skin_path_name, filename) metadata = FSMetadata(path) metadata.read() return FSReSTMethod( id, path, properties=metadata.getProperties() )
src/p/r/Products.CMFCore-2.2.8/Products/CMFCore/tests/test_FSPythonScript.py Products.CMFCore(Download)
def _makeOne( self, id, filename ): path = join(self.skin_path_name, filename) metadata = FSMetadata(path) metadata.read() return FSPythonScript( id, path, properties=metadata.getProperties() )
1 | 2 Next