Skip to content
This repository has been archived by the owner on Dec 18, 2020. It is now read-only.

Commit

Permalink
- adjust zope.app.session to zope.session in ftesting.zcml
Browse files Browse the repository at this point in the history
- adjust zope.app.securitypolicy to zope.securitpolicy in ftesting.zcml

TODO:
Check why we load the old zope.app configure.zcml in ftesting.zcml?
  • Loading branch information
projekt01 committed Nov 22, 2008
1 parent 8126024 commit 61b6665
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 12 deletions.
12 changes: 12 additions & 0 deletions CHANGES.txt
Expand Up @@ -2,6 +2,18 @@
CHANGES
=======

Before next release check why we load the old zope.app configure.zcml in
ftesting.zcml


0.2.0dev (unreleased)
---------------------

- adjust zope.app.session to zope.session in ftesting.zcml

- adjust zope.app.securitypolicy to zope.securitpolicy in ftesting.zcml


0.1.0 (2008-02-14)
------------------

Expand Down
33 changes: 21 additions & 12 deletions src/z3c/sampledata/ftesting.zcml
@@ -1,35 +1,44 @@
<configure xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="zope">
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="zope">

<include package="zope.app" />

<include package="zope.viewlet" file="meta.zcml"/>
<include package="zope.app.securitypolicy" file="meta.zcml" />
<include package="zope.securitypolicy" file="meta.zcml" />
<include package="z3c.sampledata" file="meta.zcml" />

<include package="zope.app.server" />
<include package="zope.app.authentication" />
<securityPolicy
component="zope.app.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
<include package="zope.app.securitypolicy" />
<include package="zope.app.session" />
component="zope.securitypolicy.zopepolicy.ZopeSecurityPolicy" />
<include package="zope.securitypolicy" />

<include package="zope.session" />
<include package="zope.contentprovider"/>
<include package="zope.viewlet"/>
<include package="zope.formlib"/>
<include package="z3c.sampledata"/>

<role id="zope.Anonymous" title="Everybody"
description="All users have this role implicitly" />
<role id="zope.Manager" title="Site Manager" />
<grantAll role="zope.Manager" />
<role
id="zope.Anonymous" title="Everybody"
description="All users have this role implicitly"
/>
<role
id="zope.Manager"
title="Site Manager"
/>
<grantAll
role="zope.Manager"
/>

<principal
id="zope.manager"
title="Administrator"
login="mgr"
password="mgrpw" />
password="mgrpw"
/>
<grant
role="zope.Manager"
principal="zope.manager"
Expand Down

0 comments on commit 61b6665

Please sign in to comment.