Version 0.2.0 0.2.0
authorThierry Florac <tflorac@ulthar.net>
Wed, 26 Jun 2019 11:13:45 +0200
changeset 22 15a227cafabb
parent 21 5f2f72c00120
child 23 5d4441d834c7
Version 0.2.0
.idea/pyams_notify_ws.iml
buildout.cfg
docs/HISTORY.txt
setup.py
src/pyams_notify_ws.egg-info/PKG-INFO
src/pyams_notify_ws.egg-info/SOURCES.txt
src/pyams_notify_ws.egg-info/requires.txt
--- 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 @@
     <orderEntry type="module" module-name="pyams_utils" />
     <orderEntry type="module" module-name="pyams_cache" />
   </component>
+  <component name="PackageRequirementsSettings">
+    <option name="requirementsPath" value="" />
+  </component>
+  <component name="TestRunnerService">
+    <option name="PROJECT_TEST_RUNNER" value="Unittests" />
+  </component>
+  <component name="sonarModuleSettings">
+    <option name="localAnalysisScripName" value="&lt;PROJECT&gt;" />
+    <option name="serverName" value="&lt;PROJECT&gt;" />
+  </component>
 </module>
\ No newline at end of file
--- 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
--- 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
--- 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'
       ],
--- 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
--- 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
--- 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