Skip to content

Commit

Permalink
Merge pull request #7 from icemac/exclude-multiple-2.5
Browse files Browse the repository at this point in the history
Exclude multiple for version 2.5
  • Loading branch information
thefunny42 committed Feb 24, 2016
2 parents dcd4e0f + 62ef927 commit 2bacf7f
Show file tree
Hide file tree
Showing 17 changed files with 267 additions and 185 deletions.
11 changes: 11 additions & 0 deletions .gitignore
@@ -0,0 +1,11 @@
.installed.cfg
bin/
develop-eggs/
eggs/

*.py[co]
__pycache__/
build/
dist/
*.egg-info/
.tox/
11 changes: 11 additions & 0 deletions .travis.yml
@@ -0,0 +1,11 @@
language: python
python:
- 2.6
- 2.7
install:
- python bootstrap.py
- bin/buildout
script:
- bin/test -v1
notifications:
email: false
8 changes: 8 additions & 0 deletions CHANGES.txt
@@ -1,6 +1,14 @@
Changes
=======

2.5.1 (unreleased)
------------------

- Add ability to exclude more than one module or package using
``<grok:grok exclude="<names>" />`` and allow to use unix shell-style
wildcards within. (Backport of this feature from version 2.7)


2.5 (2012-05-01)
----------------

Expand Down
4 changes: 4 additions & 0 deletions README.txt
Expand Up @@ -49,6 +49,10 @@ To sum up, your ``site.zcml`` file should look like something like this::

</configure>

There is an optional ``exclude`` on the `grok` directive. It allows to specify
names of packages or modules that if encountered won't be grokked. These
names might contain unix shell-style wildcards.

Examples
========

Expand Down

0 comments on commit 2bacf7f

Please sign in to comment.