Exemple #1
0
class DomainUiConfig(Configuration):
    filename = 'domainui.config.py'
    config_key = 'workflowui'
    task_widgets = EntryPointClassList('reahl.workflowui.task_widgets', description='All available Widgets for displaying workflow tasks')
Exemple #2
0
class XMLReaderConfig(Configuration):
    xmlclasses = EntryPointClassList(
        'reahl.dev.xmlclasses',
        description='All classes that can be read by the xmlreader')
Exemple #3
0
class ReahlCommandlineConfig(Configuration):
    commands = EntryPointClassList(
        'reahl.component.commands',
        description='The commands (classes) available to the commandline shell'
    )
Exemple #4
0
class ProdShellConfig(Configuration):
    commands = EntryPointClassList(
        'reahl.component.prodcommands',
        description=
        'The commands (classes) available to the production commandline shell')
Exemple #5
0
class ConfigWithEntryPointClassList(Configuration):
    filename = 'config_file_for_this_egg.py'
    config_key = 'some_key'
    some_setting = EntryPointClassList('some.test.entrypoint',
                                       description='we test stuff')
Exemple #6
0
class DevShellConfig(Configuration):
    commands = EntryPointClassList(
        'reahl.dev.commands',
        description=
        'All commands (classes) that can be handled by the development shell')