Version 0.1.23 0.1.23
authorThierry Florac <thierry.florac@onf.fr>
Fri, 16 Nov 2018 15:15:13 +0100
changeset 281 b04690a8d80f
parent 280 f37f19b7fff3
child 282 080ab31b269c
Version 0.1.23
docs/HISTORY.txt
src/pyams_utils.egg-info/PKG-INFO
src/pyams_utils.egg-info/SOURCES.txt
tox.ini
--- a/docs/HISTORY.txt	Wed Nov 14 17:56:13 2018 +0100
+++ b/docs/HISTORY.txt	Fri Nov 16 15:15:13 2018 +0100
@@ -1,6 +1,12 @@
 Changelog
 =========
 
+0.1.23
+------
+ - added function to check if TCP port is already opened
+ - added "truncate" TALES extension
+ - updated Fanstatic package docstring
+
 0.1.22
 ------
  - updated Fanstatic's external resource declaration to handle resources types not based on URLs
--- a/src/pyams_utils.egg-info/PKG-INFO	Wed Nov 14 17:56:13 2018 +0100
+++ b/src/pyams_utils.egg-info/PKG-INFO	Fri Nov 16 15:15:13 2018 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: pyams-utils
-Version: 0.1.22
+Version: 0.1.23
 Summary: Utility functions and classes for PyAMS
 Home-page: http://www.ztfy.org
 Author: Thierry Florac
@@ -47,6 +47,12 @@
         Changelog
         =========
         
+        0.1.23
+        ------
+         - added function to check if TCP port is already opened
+         - added "truncate" TALES extension
+         - updated Fanstatic package docstring
+        
         0.1.22
         ------
          - updated Fanstatic's external resource declaration to handle resources types not based on URLs
--- a/src/pyams_utils.egg-info/SOURCES.txt	Wed Nov 14 17:56:13 2018 +0100
+++ b/src/pyams_utils.egg-info/SOURCES.txt	Fri Nov 16 15:15:13 2018 +0100
@@ -70,6 +70,7 @@
 src/pyams_utils/locales/fr/LC_MESSAGES/pyams_utils.po
 src/pyams_utils/protocol/__init__.py
 src/pyams_utils/protocol/http.py
+src/pyams_utils/protocol/tcp.py
 src/pyams_utils/protocol/xmlrpc.py
 src/pyams_utils/scripts/__init__.py
 src/pyams_utils/scripts/zodb.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tox.ini	Fri Nov 16 15:15:13 2018 +0100
@@ -0,0 +1,11 @@
+# tox (https://tox.readthedocs.io/) is a tool for running tests
+# in multiple virtualenvs. This configuration file will run the
+# test suite on all supported python versions. To use it, "pip install tox"
+# and then run "tox" from this directory.
+
+[tox]
+envlist = py34, py35, py36, pypy
+
+[testenv]
+commands = python setup.py test
+deps = -c http://download.ztfy.org/pyams/requirements.txt