# HG changeset patch # User ymh # Date 1361485758 -3600 # Node ID 2a0fc38c2f099f89c02d2a81776badfb21088d81 # Parent 8b7aa5d4b891932806d0603da1e988d1a1a9b51b small change in config template + django 1.5rc2 + prepare semantic tagging diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 sbin/sync/config.py.tmpl --- a/sbin/sync/config.py.tmpl Thu Feb 21 22:58:11 2013 +0100 +++ b/sbin/sync/config.py.tmpl Thu Feb 21 23:29:18 2013 +0100 @@ -4,7 +4,7 @@ env.hosts = ['iri@web.iri.centrepompidou.fr'] env.web_group = 'www-data' -env.folders = ['log', 'static/media'] +env.folders = ['../run/log', 'static/media'] env.repos = {'web' : "/Users/ymh/dev/workspace/egonomy"} env.base_export_path = "~/tmp" diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/res/lib/lib_create_env.py --- a/virtualenv/res/lib/lib_create_env.py Thu Feb 21 22:58:11 2013 +0100 +++ b/virtualenv/res/lib/lib_create_env.py Thu Feb 21 23:29:18 2013 +0100 @@ -17,7 +17,7 @@ URLS = { #'': {'setup': '', 'url':'', 'local':''}, 'DISTRIBUTE': {'setup': 'distribute', 'url':'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.31.tar.gz', 'local':"distribute-0.6.31.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, - 'DJANGO': {'setup': 'django', 'url': 'https://www.djangoproject.com/download/1.5c1/tarball/', 'local':"Django-1.5c1.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, + 'DJANGO': {'setup': 'django', 'url': 'https://www.djangoproject.com/download/1.5c2/tarball/', 'local':"Django-1.5c2.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, 'DJANGO-EXTENSIONS': { 'setup': 'django-extensions', 'url':'https://github.com/django-extensions/django-extensions/archive/1.0.2.tar.gz', 'local':"django-extensions-1.0.2.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, 'DJANGO-REGISTRATION': { 'setup': 'django-registration', 'url':'https://bitbucket.org/ubernostrum/django-registration/get/v0.8.tar.gz', 'local':"django-registration-0.8.tar.gz", 'install': {'method': 'easy_install', 'option_str': '-Z', 'dict_extra_env': None}}, 'SOUTH': { 'setup': 'South', 'url':'http://www.aeracode.org/releases/south/south-0.7.5.tar.gz', 'local':"south-0.7.5.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, @@ -43,6 +43,9 @@ 'PYYAML' : {'setup':'pyyaml', 'url':'http://pypi.python.org/packages/source/P/PyYAML/PyYAML-3.10.tar.gz', 'local': 'PyYAML-3.10.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, 'PYTHON-DIGEST' : {'setup':'python-digest', 'url':'http://pypi.python.org/packages/source/p/python-digest/python-digest-1.7.tar.gz', 'local': 'python-digest-1.7.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, 'DJANGO-TASTYPIE' : {'setup':'django-tastypie', 'url':'django-tastypie-0.9.11-modified.tar.gz', 'local': 'django-tastypie-0.9.11-modified.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, + 'ISODATE' : {'setup': 'isodate', 'url': 'https://github.com/gweis/isodate/archive/0.4.9.tar.gz', 'local': 'isodate-0.4.9.tar.gz', 'install': {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, + 'HTML5LIB' : {'setup': 'html5lib', 'url': 'https://html5lib.googlecode.com/files/html5lib-0.95.tar.gz', 'local': 'html5lib-0.95.tar.gz', 'install': {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, + 'RDFLIB' : {'setup': 'rdflib', 'url': 'https://nodeload.github.com/RDFLib/rdflib/tar.gz/master', 'local': 'rdflib-2.4.0.tar.gz', 'install': {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, } if system_str == 'Windows': diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/res/src/Django-1.5c1.tar.gz Binary file virtualenv/res/src/Django-1.5c1.tar.gz has changed diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/res/src/Django-1.5c2.tar.gz Binary file virtualenv/res/src/Django-1.5c2.tar.gz has changed diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/res/src/html5lib-0.95.tar.gz Binary file virtualenv/res/src/html5lib-0.95.tar.gz has changed diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/res/src/isodate-0.4.9.tar.gz Binary file virtualenv/res/src/isodate-0.4.9.tar.gz has changed diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/res/src/rdflib-2.4.0.tar.gz Binary file virtualenv/res/src/rdflib-2.4.0.tar.gz has changed diff -r 8b7aa5d4b891 -r 2a0fc38c2f09 virtualenv/web/res/res_create_env.py --- a/virtualenv/web/res/res_create_env.py Thu Feb 21 22:58:11 2013 +0100 +++ b/virtualenv/web/res/res_create_env.py Thu Feb 21 23:29:18 2013 +0100 @@ -25,6 +25,9 @@ 'PYYAML', 'PYTHON-DIGEST', 'DJANGO-TASTYPIE', + 'ISODATE', + 'HTML5LIB', + 'RDFLIB', ] if system_str == "Linux" and 'PIL' in INSTALLS: