# HG changeset patch # User Thierry Florac # Date 1332545399 -3600 # Node ID 57d4ca60eb61145b6f3604e1769dedcb32c91a9a # Parent dec1ba47922a345245745dba0fbb97304c362009 Version 0.3.9 diff -r dec1ba47922a -r 57d4ca60eb61 .hgignore --- a/.hgignore Fri Mar 23 15:52:55 2012 +0100 +++ b/.hgignore Sat Mar 24 00:29:59 2012 +0100 @@ -11,4 +11,8 @@ syntax: regexp ^\.settings$ syntax: regexp -^bin$ \ No newline at end of file +^bin$ +syntax: regexp +^\.project$ +syntax: regexp +^\.pydevproject$ \ No newline at end of file diff -r dec1ba47922a -r 57d4ca60eb61 .project --- a/.project Fri Mar 23 15:52:55 2012 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ - - - ZTFY.utils - - - - - - org.python.pydev.PyDevBuilder - - - - - - org.python.pydev.pythonNature - - diff -r dec1ba47922a -r 57d4ca60eb61 .pydevproject --- a/.pydevproject Fri Mar 23 15:52:55 2012 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ - - - - -python 2.6 - -/ZTFY.utils (hg) - - -Python 2.6 - - -/var/local/eggs/zope.schema-3.7.1-py2.6.egg -/var/local/eggs/zope.interface-3.7.0-py2.6-linux-x86_64.egg -/var/local/eggs/zope.i18n-3.7.4-py2.6.egg -/var/local/eggs/zope.component-3.10.0-py2.6.egg - - diff -r dec1ba47922a -r 57d4ca60eb61 buildout.cfg --- a/buildout.cfg Fri Mar 23 15:52:55 2012 +0100 +++ b/buildout.cfg Sat Mar 24 00:29:59 2012 +0100 @@ -1,7 +1,9 @@ [buildout] eggs-directory = /var/local/eggs -extends = http://download.ztfy.org/webapp/ztfy.webapp-1.1.4.cfg +include-site-packages = false +extends = http://download.ztfy.org/webapp/ztfy.webapp.dev.cfg versions = versions +newest = false allow-picked-versions = false develop = . parts = package i18n test @@ -22,3 +24,5 @@ [test] recipe = zc.recipe.testrunner eggs = ztfy.utils [test] + +[versions] diff -r dec1ba47922a -r 57d4ca60eb61 setup.cfg --- a/setup.cfg Fri Mar 23 15:52:55 2012 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -[egg_info] -tag_build = -tag_svn_revision = true - -[aliases] -iw_upload = register sdist bdist_egg upload diff -r dec1ba47922a -r 57d4ca60eb61 setup.py --- a/setup.py Fri Mar 23 15:52:55 2012 +0100 +++ b/setup.py Sat Mar 24 00:29:59 2012 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.3.7' +version = '0.3.9' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ @@ -62,6 +62,7 @@ # -*- Extra requirements: -*- 'chardet', 'fanstatic', + 'httplib2', 'hurry.query', 'pytz', 'z3c.form', diff -r dec1ba47922a -r 57d4ca60eb61 ztfy.utils.egg-info/PKG-INFO --- a/ztfy.utils.egg-info/PKG-INFO Fri Mar 23 15:52:55 2012 +0100 +++ b/ztfy.utils.egg-info/PKG-INFO Sat Mar 24 00:29:59 2012 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: ztfy.utils -Version: 0.3.7 +Version: 0.3.9 Summary: ZTFY utility functions and classes for Zope3 Home-page: http://www.ztfy.org Author: Thierry Florac @@ -41,6 +41,14 @@ Changelog ========= + 0.3.9 + ----- + - added HTTP client based on httplib2, handling authentication and proxies + + 0.3.8 + ----- + - corrected encodings vocabulary + 0.3.7 ----- - added encodings vocabulary diff -r dec1ba47922a -r 57d4ca60eb61 ztfy.utils.egg-info/SOURCES.txt --- a/ztfy.utils.egg-info/SOURCES.txt Fri Mar 23 15:52:55 2012 +0100 +++ b/ztfy.utils.egg-info/SOURCES.txt Sat Mar 24 00:29:59 2012 +0100 @@ -7,14 +7,8 @@ README.txt bootstrap.py buildout.cfg -setup.cfg setup.py bin/buildout -bin/i18ncompile -bin/i18nextract -bin/i18nmergeall -bin/i18nstats -bin/test ztfy/__init__.py ztfy.utils.egg-info/PKG-INFO ztfy.utils.egg-info/SOURCES.txt @@ -55,6 +49,7 @@ ztfy/utils/locales/fr/LC_MESSAGES/ztfy.utils.mo ztfy/utils/locales/fr/LC_MESSAGES/ztfy.utils.po ztfy/utils/protocol/__init__.py +ztfy/utils/protocol/http.py ztfy/utils/protocol/xmlrpc.py ztfy/utils/tal/__init__.py ztfy/utils/tal/configure.zcml diff -r dec1ba47922a -r 57d4ca60eb61 ztfy.utils.egg-info/requires.txt --- a/ztfy.utils.egg-info/requires.txt Fri Mar 23 15:52:55 2012 +0100 +++ b/ztfy.utils.egg-info/requires.txt Sat Mar 24 00:29:59 2012 +0100 @@ -1,6 +1,7 @@ setuptools chardet fanstatic +httplib2 hurry.query pytz z3c.form diff -r dec1ba47922a -r 57d4ca60eb61 ztfy/utils/docs/HISTORY.txt --- a/ztfy/utils/docs/HISTORY.txt Fri Mar 23 15:52:55 2012 +0100 +++ b/ztfy/utils/docs/HISTORY.txt Sat Mar 24 00:29:59 2012 +0100 @@ -1,6 +1,14 @@ Changelog ========= +0.3.9 +----- + - added HTTP client based on httplib2, handling authentication and proxies + +0.3.8 +----- + - corrected encodings vocabulary + 0.3.7 ----- - added encodings vocabulary