Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
zopyx committed Apr 12, 2012
1 parent c653b71 commit 7b104dd
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 13 deletions.
20 changes: 14 additions & 6 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This module helps you to analyze your current security settings - especially
local roles granted on some subfolder

Installation
============
------------

- add ``zopyx.plone.cassandra`` to the ``eggs`` and ``zcml``
options of your buildout.cfg.
Expand All @@ -16,24 +16,32 @@ Installation


Usage
=====
-----

Add '/@@cassandra' to the url of any object with your Plone site and
see what happens.

Note
====
----
This module should only be used on development systems since it might
reveal security related information to untrusted users.

Sources
-------
- https://github.com/zopyx/zopyx.plone.cassandra

Issue tracker
-------------
- https://github.com/zopyx/zopyx.plone.cassandra/issues

License
=======
-------
This module is licensed under the Zope Public License (ZPL 2.1).

Contact
=======
-------

| ZOPYX Ltd. & Co. KG
| ZOPYX Ltd.
| c/o Andreas Jung,
| Charlottenstr. 37/1
| D-72070 Tuebingen, Germany
Expand Down
13 changes: 9 additions & 4 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
Changelog
=========

0.2.0 - 30.11.2008
------------------
0.3.0 - (12.04.2012)
-------------------

* Plone 4(-only) compatibility

0.2.0 - (30.11.2008)
--------------------

* using @@cassandra now requires manager privileges
* fixed issues with the extension profile


0.1.0 - 29.11.2008
------------------
0.1.0 - (29.11.2008)
--------------------

* Initial release

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = '0.2.0'
version = '0.3.0'

setup(name='zopyx.plone.cassandra',
version=version,
Expand Down
3 changes: 1 addition & 2 deletions zopyx/plone/cassandra/cassandra.pt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@
<td>
<ul tal:define="rolemap row/rolemap;
test nocall: context/@@test;
rm python: test(filter_username, [item for item in rolemap if item['name'] == filter_username], rolemap)">

rm python: test(filter_username, [item for item in rolemap if item['id'] == filter_username], rolemap)">
<li tal:repeat="item rm">
<span tal:content="item/name"/>:
<tal:if condition="show_local">
Expand Down
1 change: 1 addition & 0 deletions zopyx/plone/cassandra/configure.zcml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
xmlns:browser="http://namespaces.zope.org/browser"
>

<include package="Products.CMFCore" file="permissions.zcml" />
<five:registerPackage package="." initialize=".initialize" />

<browser:pages
Expand Down

0 comments on commit 7b104dd

Please sign in to comment.