Ignore:
Timestamp:
29 Nov 2022, 15:09:46 (22 months ago)
Author:
uli
Message:

Upgrade beaker and dependencies.

The old version of beaker we used was using outdated cryptolibs that do not work on more recent operating systems. This upgrade introduces a new ZCML snippet in ftesting.zcml and site.zcml which replaces the former beaker.py submodule. Therefore this change is not backwards compatible and you must run buildout again to generate a new site.zcml (or at least change it manually).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/uli-upgrade-beaker/etc/site.zcml.in

    r14672 r17179  
    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           i18n_domain="${kofa_params:devel_pkg}">
     
    8081             principal="zope.manager" />
    8182   </configure>
     83
     84   <!-- session -->
     85   <browser:beakerSession
     86        key="waeup.kofa.session.id"
     87        secret="KofaRocks"
     88        timeout="3600"
     89        type="cookie"
     90        validate_key="thisMightBeChanged"
     91        />
     92
    8293</configure>
Note: See TracChangeset for help on using the changeset viewer.