Changeset 144 for waeup_product/trunk


Ignore:
Timestamp:
3 Nov 2005, 08:41:59 (19 years ago)
Author:
joachim
Message:

=fixed Title bug in Course and Hall

Location:
waeup_product/trunk/skins
Files:
4 edited

Legend:

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

    r142 r144  
    6363         'data': {
    6464                'fields': ['Title'],
    65                 'level': 1,
    6665                'is_i18n': 0,
    6766                'is_required': 1,
     
    821820    'widgets': {
    822821        'heading': {
    823          'type': 'Heading Widget',
     822         'type': 'String Widget',
    824823         'data': {
    825824                'fields': ['heading'],
    826                 'level': 2,
    827825                'is_i18n': 0,
    828826                'is_required': 1,
     
    834832            },
    835833        },
    836         'title': Title,
    837834        'text': Text,
    838835        'level': {
     
    920917        'ncols': 1,
    921918        'rows': [
    922             #[{'widget_id': 'heading', 'ncols': 1},],
    923             [{'widget_id': 'title', 'ncols': 1},],
     919            [{'widget_id': 'heading', 'ncols': 1},],
     920            #[{'widget_id': 'Title', 'ncols': 1},],
    924921            [{'widget_id': 'text', 'ncols': 1},],
    925922            [{'widget_id': 'level', 'ncols': 1},],
     
    10321029    'widgets': {
    10331030        'heading': {
    1034          'type': 'Heading Widget',
     1031         'type': 'String Widget',
    10351032         'data': {
    10361033                'fields': ['heading'],
     
    10451042            },
    10461043        },
    1047         'Title': Title,
    10481044        'text': Text,
    10491045        'which_sex': {
     
    11371133        'ncols': 1,
    11381134        'rows': [
    1139             #[{'widget_id': 'heading', 'ncols': 1},],
    1140             [{'widget_id': 'Title', 'ncols': 1},],
     1135            [{'widget_id': 'heading', 'ncols': 1},],
     1136            #[{'widget_id': 'Title', 'ncols': 1},],
    11411137            [{'widget_id': 'text', 'ncols': 1},],
    11421138            [{'widget_id': 'which_sex', 'ncols': 1},],
  • waeup_product/trunk/skins/waeup_default/getWAeUPSchemas.py

    r142 r144  
    321321
    322322course_schema = { ###(
    323     'Title': {
    324         'type': 'CPS String Field',
    325         'data': {
    326             'default_expr': '',
    327             'is_searchabletext': True,
    328         },
    329     },
     323##    'Title': {
     324##        'type': 'CPS String Field',
     325##        'data': {
     326##            'default_expr': '',
     327##            'is_searchabletext': True,
     328##        },
     329##    },
    330330    'heading': {
    331331        'type': 'CPS String Field',
    332332        'data': {
    333             'default_expr': '',
    334333            'is_searchabletext': True,
    335334        },
     
    338337        'type': 'CPS String Field',
    339338        'data': {
    340             'default_expr': 'string:',
    341339            'is_searchabletext': True,
    342340        },
     
    381379accommodation = { ###(
    382380    'heading': {
    383         'type': 'CPS String Field',
    384         'data': {
    385             'is_searchabletext': True,
    386         },
    387     },
    388     'Title': {
    389381        'type': 'CPS String Field',
    390382        'data': {
  • waeup_product/trunk/skins/waeup_faculty/create_course.py

    r142 r144  
    22# $Id$
    33"""
    4 Create a Faculty
     4Create a Course
    55
    66"""
     
    2828                                 create = 1,
    2929                                 type_name = type_name,
    30                                  #psm = str(ds),
    3130                                 psm = 'Please correct your errors',
    3231                                 )
     
    4140    oid = "%s" % ds.get('code').replace(' ','')
    4241    context.invokeFactory(type_name,oid)
    43     object = getattr(context,oid)   
     42    object = getattr(context,oid)
     43    ds.set('title',ds.get('heading'))
    4444    object.getContent().edit(mapping=ds,proxy=object)
    4545    context.notifyCPSDocumentCreation(ob=object)
  • waeup_product/trunk/skins/waeup_student/add_accommodation.py

    r139 r144  
    3737                                 )
    3838elif psm == 'valid':
    39     oid = "%s" % ds.get('Title').replace(' ','')
     39    oid = "%s" % ds.get('heading').replace(' ','')
    4040    context.invokeFactory(type_name,oid)
    4141    object = getattr(context,oid)
     42    ds.set('title',ds.get('heading'))
    4243    object.getContent().edit(mapping=ds)
    4344    context.notifyCPSDocumentCreation(ob=object)
Note: See TracChangeset for help on using the changeset viewer.