Hallo!
Ich habe ein ArchTypes Produkt mit zwei neuen Content-Typen, die ich gerne in Plone verwenden würde.
Es besteht aus folgenden Dateien:
__init__.py
from Globals import package_home
from Products.CMFCore import utils
from Products.Archetypes.public import *
from Products.Archetypes import listTypes
ADD_CONTENT_PERMISSION = 'Add example content'
PROJECTNAME = "ArchExample";
def initialize(context):
import PDFFile
content_types, constructors, ftis = process_types(
listTypes(PROJECTNAME),
PROJECTNAME)
utils.ContentInit(
PROJECTNAME + ' Content',
content_types = content_types,
permission = ADD_CONTENT_PERMISSION,
extra_constructors = constructors,
fti = ftis,
).initialize(context)
Alles anzeigen
PDFFile.py:
from Products.Archetypes.public import *
PDFFileSchema = BaseSchema + Schema((
StringField('Beschreibung'),
StringField('Artikelnummer'),
FileField('PDF-Datei',
required=1,
primary=1,
widget=FileWidget(),
),
))
class PDFFile(BaseContent):
"""Raylase PDF-Dokument"""
global_allow = 1
schema = PDFFileSchema
registerType(PDFFile)
Alles anzeigen
Extensions/install.py
from Products.Archetypes.Extensions.utils import installTypes
from Products.Archetypes import listTypes
from Products.ArchExample import PROJECTNAME
from StringIO import StringIO
def install(self):
out = StringIO()
installTypes(self, out,
listTypes(PROJECTNAME),
PROJECTNAME)
print >> out, "Successfully installed %s." %
PROJECTNAME
return out.getvalue()
Alles anzeigen
Wenn ich das Ganze in Products-Verzeichnis kopiere erscheint es auch als Produkt in der Zope-Konsole.
Aber um die neuen Types verwenden zu können, muss das ja über den quick-Installer in Plone installiert werden.
Und hier beginnt mein Dilemma:
Das neue Produkt erscheint nicht im quick_installer.
Kann mir jemand sagen, was ich hier noch machen muss, um die Typen zu sehen und das Zeug endlich verwenden zu können?