Ignore:
Timestamp:
11 Oct 2005, 12:10:17 (19 years ago)
Author:
joachim
Message:

major rewrite

Location:
waeup_product/trunk/skins/waeup_default
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • waeup_product/trunk/skins/waeup_default/getWAeUPLayouts.py

    r29 r45  
    44layouts = {}
    55
     6# common header layout
     7common_layout = {
     8    'widgets': {
     9        'LanguageSelector': {
     10            'type': 'Document Language Select Widget',
     11            'data': {
     12                'fields': ['Language'],
     13            },
     14        },
     15        'Title': {
     16            'type': 'Heading Widget',
     17            'data': {
     18                'fields': ['Title'],
     19                'level': 1,
     20                'is_i18n': 1,
     21                'is_required': 1,
     22                'label_edit': 'Name',
     23                'display_width': 40,
     24                'size_max': 200,
     25            },
     26        },
     27        'Description': {
     28            'type': 'Text Widget',
     29            'data': {
     30                'fields': ['Description'],
     31                'is_i18n': 1,
     32                'label_edit': 'cpsdoc_description_label_edit',
     33                'label': '',
     34                'css_class': 'ddescription',
     35                'width': 72,
     36                'height': 5,
     37                'render_format': 'text',
     38                'hidden_layout_modes': ('create','edit', 'view'),
     39            },
     40        },
     41        'LanguageSelectorCreation': {
     42            'type': 'Select Widget',
     43            'data': {
     44                'title': 'Language',
     45                'fields': ('Language',),
     46                'is_required': 0,
     47                'label': 'label_language',
     48                'label_edit': 'label_language',
     49                'description': '',
     50                'help': '',
     51                'is_i18n': 0,
     52                'readonly_layout_modes': (),
     53                'hidden_layout_modes': ('create','edit', 'view'),
     54                'hidden_readonly_layout_modes': (),
     55                'hidden_empty': 0,
     56                'hidden_if_expr': '',
     57                'css_class': '',
     58                'vocabulary': 'language_voc',
     59            },
     60        },
     61    },
     62    'layout': {
     63        'style_prefix': 'layout_default_',
     64        'rows': [
     65            [{'widget_id': 'LanguageSelector'}],
     66            [{'widget_id': 'Title'},],
     67            [{'widget_id': 'Description'},],
     68            [{'widget_id': 'LanguageSelectorCreation'}],
     69            ],
     70        },
     71    }
     72layouts['waeup_common'] = common_layout
     73#
     74#
    675student_layout = {
    776    'widgets': {
     
    108177}
    109178layouts['student'] = student_layout
    110 
     179#
     180#
    111181scratch_card = {
    112182    'widgets': {
  • waeup_product/trunk/skins/waeup_default/getWAeUPSchemas.py

    r29 r45  
     1university_schema = {
     2   'allow_discussion': {
     3        'type': 'CPS Int Field',
     4        'data': {
     5            'default_expr': 'python:0',
     6            'is_searchabletext': 0,
     7        },
     8    },
     9}
     10
     11students_folder_schema = {
     12   'allow_discussion': {
     13        'type': 'CPS Int Field',
     14        'data': {
     15            'default_expr': 'python:0',
     16            'is_searchabletext': 0,
     17        },
     18    },
     19}
     20
    121student_schema = {
    222   'allow_discussion': {
     
    300320}
    301321schemas = {}
     322schemas['university'] = university_schema
     323schemas['students'] = students_folder_schema
    302324schemas['student'] = student_schema
    303325schemas['jamb'] = jamb_schema
  • waeup_product/trunk/skins/waeup_default/getWAeUPTypes.py

    r28 r45  
    88ChangePermissions = 'Change permissions'
    99
    10 student_folder_type = {
     10university_type = {
     11    'title': 'WAeUP Base Folder',
     12    'description': 'The WAeUP Container',
     13    'content_icon': 'students_folder.gif',
     14    'content_meta_type': 'University',
     15    'product': 'WAeUP',
     16    'factory': 'addUniversity',
     17    'immediate_view': 'folder_view',
     18    'global_allow': 1,
     19    'filter_content_types': 1,
     20    'allowed_content_types': ('StudentsFolder'),
     21    'allow_discussion': 0,
     22    'cps_is_searchable': 1,
     23    'cps_display_as_document_in_listing': 1,
     24    'cps_proxy_type': 'folder',
     25    'schemas': ['metadata', 'common', 'folder'],
     26    'layouts': ['waeup_common', 'folder'],
     27    'layout_clusters': ['metadata:metadata'],
     28    'cps_section_wf': 'waeup_section_wf',
     29    'actions': ({'id': 'view',
     30                 'name': 'action_view',
     31                 'action': 'folder_view',
     32                 'permissions': (View,)},
     33                {'id': 'new_content',
     34                 'name': 'action_new_content',
     35                 'action': 'folder_factories',
     36                 'permissions': (AddPortalContent,)},
     37                {'id': 'contents',
     38                 'name': 'action_folder_contents',
     39                 'action': 'folder_contents',
     40                 'permissions': (ModifyPortalContent,)},
     41                {'id': 'edit',
     42                 'name': 'action_edit',
     43                 'action': 'cpsdocument_edit_form',
     44                 'permissions': (ModifyPortalContent,)},
     45                {'id': 'metadata',
     46                 'name': 'action_metadata',
     47                 'action': 'cpsdocument_metadata',
     48                 'condition': 'not:portal/portal_membership/isAnonymousUser',
     49                 'permissions': (View,)},
     50                {'id': 'localroles',
     51                 'name': 'action_local_roles',
     52                 'action': 'folder_localrole_form',
     53                 'permissions': (ChangePermissions,)},
     54    )
     55}
     56
     57students_folder_type = {
    1158    'title': 'WAeUP Student Folder',
    1259    'description': 'The WAeUP Student Folder',
    1360    'content_icon': 'students_folder.gif',
    14     'content_meta_type': 'Folder',
    15     'product': 'CPSDefault',
    16     'factory': 'addFolder',
    17     'immediate_view': 'student_folder_view',
     61    'content_meta_type': 'StudentsFolder',
     62    'product': 'WAeUP',
     63    'factory': 'addStudentsFolder',
     64    'immediate_view': 'folder_view',
    1865    'global_allow': 1,
    1966    'filter_content_types': 1,
     
    2572    'cps_proxy_type': 'folder',
    2673    'schemas': ['metadata', 'common', 'folder'],
    27     'layouts': ['folder'],
     74    'layouts': ['waeup_common','folder'],
    2875    'layout_clusters': ['metadata:metadata'],
    2976    'cps_section_wf': 'waeup_section_wf',
     
    3683                 'action': 'folder_factories',
    3784                 'permissions': (AddPortalContent,)},
    38 ##                {'id': 'contents',
    39 ##                 'name': 'action_folder_contents',
    40 ##                 'action': 'folder_contents',
    41 ##                 'permissions': (ModifyPortalContent,)},
     85                {'id': 'contents',
     86                 'name': 'action_folder_contents',
     87                 'action': 'folder_contents',
     88                 'permissions': (ModifyPortalContent,)},
    4289                {'id': 'edit',
    4390                 'name': 'action_edit',
     
    55102    )
    56103}
     104
    57105student_type = {
    58106    'title': 'WAeUP Student',
    59107    'description': '',
    60108    'content_icon': 'student.gif',
    61     'content_meta_type': 'CPS Document',
     109    'content_meta_type': 'Student',
    62110    'product': 'CPSDocument',
    63111    'factory': 'addCPSDocument',
    64112    'immediate_view': 'cpsdocument_view',
     113    #'product': 'WAeUP',
     114    #'factory': 'addStudent',
     115    #'immediate_view': 'student_view',
    65116    'global_allow': True,
    66117    'filter_content_types': True,
     
    70121    'cps_proxy_type': 'document',
    71122    'cps_display_as_document_in_listing': True,
    72     'schemas': ['student'],
    73     'layouts': ['student'],
     123    'schemas': ['metadata','common','student'],
     124    'layouts': ['waeup_common','student'],
     125    'flexible_layouts': (),
     126    'layout_clusters': ['metadata:metadata'],
    74127    'cps_workspace_wf': 'waeup_workspace_wf',
    75128    'cps_section_wf': 'waeup_section_wf',
     
    77130         {'id': 'view',
    78131          'name': 'action_view',
    79           'action': 'string:${object_url}/student_view',
     132          #'action': 'string:${object_url}/student_view',
     133          'action': 'string:${object_url}/cpsdocument_view',
    80134          'condition': '',
    81135          'permission': ('View',),
     
    109163    'description': '',
    110164    'content_icon': 'student.gif',
    111     'content_meta_type': 'CPS Document',
     165    'content_meta_type': 'Scratch Card',
    112166    'product': 'CPSDocument',
    113167    'factory': 'addCPSDocument',
     
    183237
    184238types = {}
    185 types['StudentFolder'] = student_folder_type
     239types['University'] = university_type
     240types['StudentsFolder'] = students_folder_type
    186241types['Student'] = student_type
    187242types['ScratchCard'] = scratch_card
Note: See TracChangeset for help on using the changeset viewer.