--- 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
--- a/.project Fri Mar 23 15:52:55 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>ZTFY.utils</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.python.pydev.PyDevBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.python.pydev.pythonNature</nature>
- </natures>
-</projectDescription>
--- a/.pydevproject Fri Mar 23 15:52:55 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<?eclipse-pydev version="1.0"?>
-
-<pydev_project>
-<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.6</pydev_property>
-<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
-<path>/ZTFY.utils (hg)</path>
-</pydev_pathproperty>
-
-<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Python 2.6</pydev_property>
-
-<pydev_pathproperty name="org.python.pydev.PROJECT_EXTERNAL_SOURCE_PATH">
-<path>/var/local/eggs/zope.schema-3.7.1-py2.6.egg</path>
-<path>/var/local/eggs/zope.interface-3.7.0-py2.6-linux-x86_64.egg</path>
-<path>/var/local/eggs/zope.i18n-3.7.4-py2.6.egg</path>
-<path>/var/local/eggs/zope.component-3.10.0-py2.6.egg</path>
-</pydev_pathproperty>
-</pydev_project>
--- 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]
--- 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
--- 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',
--- 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
--- 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
--- 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
--- 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