Changeset 17179 for main/waeup.kofa
- Timestamp:
- 29 Nov 2022, 15:09:46 (2 years ago)
- Location:
- main/waeup.kofa/branches/uli-upgrade-beaker
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-upgrade-beaker/CHANGES.txt
r17094 r17179 70 70 71 71 * Add serial no to the coursetickets.pdf. 72 73 * Upgraded beaker dependency. Caution! This change is not backwards compatible 74 as it introduces a new ZCML snippet in site.zcml that will not be parsable 75 with older versions of kofa. 72 76 73 77 1.7.1 (2021-04-20) -
main/waeup.kofa/branches/uli-upgrade-beaker/etc/site.zcml.in
r14672 r17179 1 1 <configure xmlns="http://namespaces.zope.org/zope" 2 xmlns:browser="http://namespaces.zope.org/browser" 2 3 xmlns:kofa="http://namespaces.waeup.org/kofa" 3 4 i18n_domain="${kofa_params:devel_pkg}"> … … 80 81 principal="zope.manager" /> 81 82 </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 82 93 </configure> -
main/waeup.kofa/branches/uli-upgrade-beaker/src/waeup/kofa/ftesting.zcml
r9855 r17179 1 1 <configure 2 2 xmlns="http://namespaces.zope.org/zope" 3 xmlns:browser="http://namespaces.zope.org/browser" 3 4 xmlns:kofa="http://namespaces.waeup.org/kofa" 4 5 i18n_domain="waeup.kofa" … … 70 71 <grant role="zope.Manager" principal="zope.mgr" /> 71 72 73 <!-- session --> 74 <browser:beakerSession 75 key="waeup.kofa.session.id" 76 secret="KofaRocks" 77 timeout="3600" 78 type="cookie" 79 validate_key="thisMightBeChanged" 80 /> 81 72 82 </configure> -
main/waeup.kofa/branches/uli-upgrade-beaker/src/waeup/kofa/tests/test_beaker.py
r12110 r17179 20 20 session = ISession(request) 21 21 self.assertTrue(session.__module__.startswith('dolmen.beaker')) 22 self.assertTrue(session.get("_path", None) is not None) 22 23 return -
main/waeup.kofa/branches/uli-upgrade-beaker/versions.cfg
r16157 r17179 10 10 alabaster = 0.7.7 11 11 Babel = 1.3 12 Beaker = 1. 6.412 Beaker = 1.11.0 13 13 collective.recipe.sphinxbuilder = 0.8.2 14 14 collective.recipe.template = 2.1 … … 17 17 distribute = 0.6.49 18 18 docutils = 0.11 19 dolmen.beaker = 0. 119 dolmen.beaker = 0.4 20 20 experimental.cssselect = 0.3 21 funcsigs = 1.0.2 21 22 grok = 1.1.1 22 23 grokcore.view = 1.13.5 … … 47 48 psutil = 2.1.3 48 49 py = 1.0.2 49 pycryptopp = 0.6.0.120656932814151052564863480392819966882104540895850 50 Pygments = 2.0.2 51 51 pyprof2calltree = 1.1.1
Note: See TracChangeset for help on using the changeset viewer.