diff -r 4775601a2531 -r 8e3281bcebc9 virtualenv/web/res/res_create_env.py --- a/virtualenv/web/res/res_create_env.py Fri Apr 08 17:21:37 2011 +0200 +++ b/virtualenv/web/res/res_create_env.py Wed Apr 20 11:29:59 2011 +0200 @@ -18,7 +18,6 @@ ('MYSQL', 'pip', None, None), ('PIL', 'easy_install', None, None), ('DJANGO','pip', None, None), - ('JOGGING','pip', None, None), ('DJANGO-EXTENSIONS', 'pip', None, None), ('DJANGO-REGISTRATION', 'easy_install', '-Z', None), ('DJANGO-TAGGING', 'pip', None, None), @@ -26,6 +25,9 @@ ('HTTPLIB2', 'pip', None, None), ('OAUTH2', 'easy_install', None, None), ('DJANGO-OAUTH-PLUS', 'pip', None, None), + ('OPENID', 'pip', None, None), + ('DJANGO_OPENID_CONSUMER', 'pip', None, None), + ('SOCIAL_AUTH', 'easy_install', None, None), ('PHOTOLOGUE', 'pip', None, None), ('MODELTRANSLATION', 'pip', None, None), ]) @@ -33,8 +35,8 @@ if system_str == 'Windows': INSTALLS.extend([ ('JCC','easy_install',None,None), + ('PSYCOPG2',install_psycopg2,None,None), ('PYLUCENE','easy_install',None,None), - ('PSYCOPG2',install_psycopg2,None,None), ]) else: INSTALLS.extend([ @@ -46,6 +48,10 @@ INSTALLS.extend([ ('LXML', 'pip', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.7.8', 'LIBXSLT_VERSION': '1.1.26'}), ]) +elif system_str == "Windows": + INSTALLS.extend([ + ('LXML', 'easy_install', None, None), + ]) else: INSTALLS.extend([ ('LXML', 'pip', None, None),