Changeset 17296


Ignore:
Timestamp:
16 Jan 2023, 20:41:05 (20 months ago)
Author:
Henrik Bettermann
Message:

Adjust to base package.

Location:
main/kofacustom.nigeria/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/etc/site.zcml.in

    r17242 r17296  
    11<configure xmlns="http://namespaces.zope.org/zope"
     2           xmlns:browser="http://namespaces.zope.org/browser"
    23           xmlns:kofa="http://namespaces.waeup.org/kofa"
    34           xmlns:kofacustomng="http://namespaces.waeup.org/kofacustomng"
     
    8485             principal="zope.manager" />
    8586   </configure>
     87
     88   <!-- session -->
     89   <browser:beakerSession
     90        key="waeup.kofa.session.id"
     91        secret="KofaRocks"
     92        timeout="3600"
     93        type="cookie"
     94        validate_key="thisMightBeChanged"
     95        />
     96   
    8697</configure>
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/tests/test_browser.py

    r15489 r17296  
    356356        self.browser.getControl("Login").click()
    357357        self.assertTrue(
    358             'You logged in.' in self.browser.contents)
     358            'You logged in as an applicant.' in self.browser.contents)
    359359        self.browser.getLink("Edit application record").click()
    360360        self.browser.getControl(name="form.date_of_birth").value = '09/09/1988'
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/ftesting.zcml

    r17242 r17296  
    11<configure
    22   xmlns="http://namespaces.zope.org/zope"
     3   xmlns:browser="http://namespaces.zope.org/browser"
    34   xmlns:kofa="http://namespaces.waeup.org/kofa"
    45   xmlns:kofacustomng="http://namespaces.waeup.org/kofacustomng"
     
    9495      />
    9596
     97
     98   <!-- session -->
     99   <browser:beakerSession
     100        key="waeup.kofa.session.id"
     101        secret="KofaRocks"
     102        timeout="3600"
     103        type="cookie"
     104        validate_key="thisMightBeChanged"
     105        />
     106
    96107</configure>
Note: See TracChangeset for help on using the changeset viewer.