Changeset 6821 for main/waeup.sirp/trunk/src
- Timestamp:
- 27 Sep 2011, 08:36:16 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/browser/batchprocessing.txt
r6754 r6821 94 94 >>> importerselect.displayOptions 95 95 ['Applicants Container Importer', 96 'CertificateCourse importer', 97 'Certificate importer', 98 'Course importer', 99 'Department importer', 100 'Faculty importer'] 101 102 >>> importerselect.getControl('Faculty importer').selected = True 96 'Student Importer', 97 'CertificateCourse Importer', 98 'Certificate Importer', 99 'Course Importer', 100 'Department Importer', 101 'Faculty Importer'] 102 103 >>> importerselect.getControl('Faculty Importer').selected = True 103 104 104 105 >>> modeselect = browser.getControl(name='mode') … … 188 189 189 190 >>> importerselect = browser.getControl(name='importer') 190 >>> importerselect.getControl('Department importer').selected = True191 >>> importerselect.getControl('Department Importer').selected = True 191 192 >>> modeselect = browser.getControl(name='mode') 192 193 >>> modeselect.getControl(value='create').selected = True … … 253 254 254 255 >>> importerselect = browser.getControl(name='importer') 255 >>> importerselect.getControl('Course importer', index=1).selected = True256 >>> importerselect.getControl('Course Importer', index=1).selected = True 256 257 >>> modeselect = browser.getControl(name='mode') 257 258 >>> modeselect.getControl(value='create').selected = True … … 319 320 320 321 >>> importerselect = browser.getControl(name='importer') 321 >>> importerselect.getControl('Certificate importer').selected = True322 >>> importerselect.getControl('Certificate Importer').selected = True 322 323 >>> modeselect = browser.getControl(name='mode') 323 324 >>> modeselect.getControl(value='create').selected = True … … 384 385 385 386 >>> importerselect = browser.getControl(name='importer') 386 >>> importerselect.getControl('CertificateCourse importer').selected = True387 >>> importerselect.getControl('CertificateCourse Importer').selected = True 387 388 >>> modeselect = browser.getControl(name='mode') 388 389 >>> modeselect.getControl(value='create').selected = True … … 457 458 458 459 >>> importerselect = browser.getControl(name='importer') 459 >>> importerselect.getControl('Faculty importer').selected = True460 >>> importerselect.getControl('Faculty Importer').selected = True 460 461 >>> modeselect = browser.getControl(name='mode') 461 462 >>> modeselect.getControl(value='create').selected = True … … 519 520 520 521 >>> importerselect = browser.getControl(name='importer') 521 >>> importerselect.getControl('Faculty importer').selected = True522 >>> importerselect.getControl('Faculty Importer').selected = True 522 523 >>> modeselect = browser.getControl(name='mode') 523 524 >>> modeselect.getControl(value='create').selected = True -
main/waeup.sirp/trunk/src/waeup/sirp/university/batching.py
r6628 r6821 24 24 grok.name(util_name) 25 25 26 name = u'Faculty importer'26 name = u'Faculty Importer' 27 27 iface = IFaculty 28 28 … … 66 66 grok.name(util_name) 67 67 68 name = u'Department importer'68 name = u'Department Importer' 69 69 iface = IDepartment 70 70 … … 113 113 grok.name(util_name) 114 114 115 name = u'Course importer'115 name = u'Course Importer' 116 116 iface = ICourse 117 117 … … 164 164 grok.name(util_name) 165 165 166 name = u'Certificate importer'166 name = u'Certificate Importer' 167 167 iface = ICertificate 168 168 … … 215 215 grok.name(util_name) 216 216 217 name = u'CertificateCourse importer'217 name = u'CertificateCourse Importer' 218 218 iface = ICertificateCourse 219 219
Note: See TracChangeset for help on using the changeset viewer.