Skip to content

Commit

Permalink
Add stats info to failure requests
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Mar 27, 2012
1 parent 77a864d commit c0467cd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion collective/stats/configure.zcml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<configure
xmlns="http://namespaces.zope.org/zope"
xmlns:five="http://namespaces.zope.org/five"
i18n_domain="enfold.stats">
i18n_domain="collective.stats">

<five:registerPackage package="." initialize=".initialize" />

<subscriber handler=".pubtime.pubStartHandler" />
<subscriber handler=".pubtime.pubAfterTraverseHandler" />
<subscriber handler=".pubtime.pubBeforeCommitHandler" />
<subscriber handler=".pubtime.pubSucessHandler" />
<subscriber for="ZPublisher.interfaces.IPubFailure"
handler=".pubtime.pubSucessHandler" />

</configure>
6 changes: 6 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

0.9.2 (Unreleased)
------------------

- Add stats info to failure requests.
[fafhrd91]

0.9.1 (2011-12-01)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

version = '0.9.1'
version = '0.9.2'


setup(name='collective.stats',
Expand Down

0 comments on commit c0467cd

Please sign in to comment.