# HG changeset patch # User Thierry Florac # Date 1561540425 -7200 # Node ID 15a227cafabbd3800da83f797692dd226481bd4a # Parent 5f2f72c00120502c326799b6620231c51c944b8e Version 0.2.0 diff -r 5f2f72c00120 -r 15a227cafabb .idea/pyams_notify_ws.iml --- a/.idea/pyams_notify_ws.iml Thu Jun 20 12:51:25 2019 +0200 +++ b/.idea/pyams_notify_ws.iml Wed Jun 26 11:13:45 2019 +0200 @@ -9,4 +9,14 @@ + + + + + + \ No newline at end of file diff -r 5f2f72c00120 -r 15a227cafabb buildout.cfg --- a/buildout.cfg Thu Jun 20 12:51:25 2019 +0200 +++ b/buildout.cfg Wed Jun 26 11:13:45 2019 +0200 @@ -1,23 +1,14 @@ [buildout] eggs-directory = /var/local/env/pyams/eggs +extends = http://download.ztfy.org/pyams/pyams-dev.cfg +find-links = http://download.ztfy.org/eggs/ +socket-timeout = 3 -socket-timeout = 3 +versions = versions +#allow-picked-versions = false show-picked-versions = true newest = false -allow-hosts = - bitbucket.org - *.python.org - *.sourceforge.net - github.com - download.ztfy.org - -extends = http://download.ztfy.org/pyams/pyams-dev.cfg -find-links = http://download.ztfy.org/eggs/ -versions = versions -newest = false -#allow-picked-versions = false - src = src develop = . @@ -65,4 +56,4 @@ eggs = pyams_notify_ws [test] [versions] -pyams_notify_ws = 0.1.4 +pyams_notify_ws = 0.2.0 diff -r 5f2f72c00120 -r 15a227cafabb docs/HISTORY.txt --- a/docs/HISTORY.txt Thu Jun 20 12:51:25 2019 +0200 +++ b/docs/HISTORY.txt Wed Jun 26 11:13:45 2019 +0200 @@ -1,6 +1,13 @@ History ======= +0.2.0 +----- + - added authentication check while subscribing to notifications. + As a side effect, you must register the same authentication and authorization + policies as in your Pyramid application (authorization policy is not actually used + but must be defined at the same time as authentication policy). + 0.1.4 ----- - use Python 3.5 "async/await" syntax for coroutines diff -r 5f2f72c00120 -r 15a227cafabb setup.py --- a/setup.py Thu Jun 20 12:51:25 2019 +0200 +++ b/setup.py Wed Jun 26 11:13:45 2019 +0200 @@ -13,6 +13,7 @@ """ This module contains pyams_notify_ws package """ + import os from setuptools import setup, find_packages @@ -22,7 +23,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.4' +version = '0.2.0' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] @@ -58,7 +59,7 @@ 'setuptools', # -*- Extra requirements: -*- 'aiopyramid', - 'pyams-cache', + 'pyams_cache', 'pyramid', 'zope.interface' ], diff -r 5f2f72c00120 -r 15a227cafabb src/pyams_notify_ws.egg-info/PKG-INFO --- a/src/pyams_notify_ws.egg-info/PKG-INFO Thu Jun 20 12:51:25 2019 +0200 +++ b/src/pyams_notify_ws.egg-info/PKG-INFO Wed Jun 26 11:13:45 2019 +0200 @@ -1,12 +1,11 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: pyams-notify-ws -Version: 0.1.4 +Version: 0.2.0 Summary: PyAMS notifications server management package Home-page: http://hg.ztfy.org/pyams/pyams_notify_ws Author: Thierry Florac Author-email: tflorac@ulthar.net License: ZPL -Description-Content-Type: UNKNOWN Description: .. contents:: @@ -25,6 +24,13 @@ History ======= + 0.2.0 + ----- + - added authentication check while subscribing to notifications. + As a side effect, you must register the same authentication and authorization + policies as in your Pyramid application (authorization policy is not actually used + but must be defined at the same time as authentication policy). + 0.1.4 ----- - use Python 3.5 "async/await" syntax for coroutines @@ -53,3 +59,4 @@ Classifier: Programming Language :: Python Classifier: Framework :: Pyramid Classifier: Topic :: Software Development :: Libraries :: Python Modules +Provides-Extra: test diff -r 5f2f72c00120 -r 15a227cafabb src/pyams_notify_ws.egg-info/SOURCES.txt --- a/src/pyams_notify_ws.egg-info/SOURCES.txt Thu Jun 20 12:51:25 2019 +0200 +++ b/src/pyams_notify_ws.egg-info/SOURCES.txt Wed Jun 26 11:13:45 2019 +0200 @@ -16,6 +16,9 @@ src/pyams_notify_ws.egg-info/top_level.txt src/pyams_notify_ws/doctests/README.txt src/pyams_notify_ws/interfaces/__init__.py +src/pyams_notify_ws/locales/pyams_notify_ws.pot +src/pyams_notify_ws/locales/fr/LC_MESSAGES/pyams_notify_ws.mo +src/pyams_notify_ws/locales/fr/LC_MESSAGES/pyams_notify_ws.po src/pyams_notify_ws/tests/__init__.py src/pyams_notify_ws/tests/test_utilsdocs.py src/pyams_notify_ws/tests/test_utilsdocstrings.py \ No newline at end of file diff -r 5f2f72c00120 -r 15a227cafabb src/pyams_notify_ws.egg-info/requires.txt --- a/src/pyams_notify_ws.egg-info/requires.txt Thu Jun 20 12:51:25 2019 +0200 +++ b/src/pyams_notify_ws.egg-info/requires.txt Wed Jun 26 11:13:45 2019 +0200 @@ -1,6 +1,6 @@ setuptools aiopyramid -pyams-cache +pyams_cache pyramid zope.interface