[PATCH] Move Transifex code into a subdirectory

6 views
Skip to first unread message

Ignacio Vazquez-Abrams

unread,
Mar 21, 2009, 10:14:33 PM3/21/09
to transif...@googlegroups.com
# HG changeset patch
# User Ignacio Vazquez-Abrams <ivazque...@gmail.com>
# Date 1237686948 14400
# Node ID 1b9b74269acfd221963e8ce842f7eb3e3343188b
# Parent 5e21c281981bf7b2931a8bdc5ea5b79f436d538a
Move Transifex code under transifex/

diff --git a/build-tools/SPECS/transifex.spec.in b/build-tools/SPECS/transifex.spec.in
--- a/build-tools/SPECS/transifex.spec.in
+++ b/build-tools/SPECS/transifex.spec.in
@@ -48,6 +48,7 @@
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}
+cd transifex
find -mindepth 1 -maxdepth 1 -type d \( \( -name .hg -o \
-name build-tools -o -name docs \) -prune -o -print \) | \
xargs cp -a -t $RPM_BUILD_ROOT/%{_datadir}/%{name}
diff --git a/docs/Makefile b/docs/Makefile
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -3,7 +3,7 @@

# You can set these variables from the command line.
SPHINXOPTS =
-SPHINXBUILD = env PYTHONPATH=".." DJANGO_SETTINGS_MODULE="settings" sphinx-build
+SPHINXBUILD = env PYTHONPATH="$(PWD)/../transifex" DJANGO_SETTINGS_MODULE="settings" sphinx-build
PAPER =

# Internal variables.
diff --git a/docs/conf.py b/docs/conf.py
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -13,6 +13,7 @@

import sys
import os
+import txcommon

# If your extensions are in another directory, add it here.
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
@@ -41,9 +42,9 @@
# other places throughout the built documents.
#
# The short X.Y version.
-version = '0.5'
+version = '.'.join(str(x) for x in txcommon.version_info[:3])
# The full version, including alpha/beta/rc tags.
-release = '0.5'
+release = txcommon.version

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
diff --git a/__init__.py b/transifex/__init__.py
rename from __init__.py
rename to transifex/__init__.py
diff --git a/actionlog/__init__.py b/transifex/actionlog/__init__.py
rename from actionlog/__init__.py
rename to transifex/actionlog/__init__.py
diff --git a/actionlog/models.py b/transifex/actionlog/models.py
rename from actionlog/models.py
rename to transifex/actionlog/models.py
diff --git a/actionlog/templates/object_action_list.html b/transifex/actionlog/templates/object_action_list.html
rename from actionlog/templates/object_action_list.html
rename to transifex/actionlog/templates/object_action_list.html
diff --git a/actionlog/templatetags/__init__.py b/transifex/actionlog/templatetags/__init__.py
rename from actionlog/templatetags/__init__.py
rename to transifex/actionlog/templatetags/__init__.py
diff --git a/actionlog/templatetags/tx_action_log.py b/transifex/actionlog/templatetags/tx_action_log.py
rename from actionlog/templatetags/tx_action_log.py
rename to transifex/actionlog/templatetags/tx_action_log.py
diff --git a/languages/__init__.py b/transifex/languages/__init__.py
rename from languages/__init__.py
rename to transifex/languages/__init__.py
diff --git a/languages/admin.py b/transifex/languages/admin.py
rename from languages/admin.py
rename to transifex/languages/admin.py
diff --git a/languages/feeds.py b/transifex/languages/feeds.py
rename from languages/feeds.py
rename to transifex/languages/feeds.py
diff --git a/languages/fixtures/initial_data.json b/transifex/languages/fixtures/initial_data.json
rename from languages/fixtures/initial_data.json
rename to transifex/languages/fixtures/initial_data.json
diff --git a/languages/models.py b/transifex/languages/models.py
rename from languages/models.py
rename to transifex/languages/models.py
diff --git a/languages/templates/feeds/all_description.html b/transifex/languages/templates/feeds/all_description.html
rename from languages/templates/feeds/all_description.html
rename to transifex/languages/templates/feeds/all_description.html
diff --git a/languages/templates/feeds/all_title.html b/transifex/languages/templates/feeds/all_title.html
rename from languages/templates/feeds/all_title.html
rename to transifex/languages/templates/feeds/all_title.html
diff --git a/languages/templates/feeds/language_release_description.html b/transifex/languages/templates/feeds/language_release_description.html
rename from languages/templates/feeds/language_release_description.html
rename to transifex/languages/templates/feeds/language_release_description.html
diff --git a/languages/templates/feeds/language_release_title.html b/transifex/languages/templates/feeds/language_release_title.html
rename from languages/templates/feeds/language_release_title.html
rename to transifex/languages/templates/feeds/language_release_title.html
diff --git a/languages/tests/__init__.py b/transifex/languages/tests/__init__.py
rename from languages/tests/__init__.py
rename to transifex/languages/tests/__init__.py
diff --git a/languages/tests/test_models.py b/transifex/languages/tests/test_models.py
rename from languages/tests/test_models.py
rename to transifex/languages/tests/test_models.py
diff --git a/languages/urls.py b/transifex/languages/urls.py
rename from languages/urls.py
rename to transifex/languages/urls.py
diff --git a/languages/views.py b/transifex/languages/views.py
rename from languages/views.py
rename to transifex/languages/views.py
diff --git a/locale/bal/LC_MESSAGES/django.po b/transifex/locale/bal/LC_MESSAGES/django.po
rename from locale/bal/LC_MESSAGES/django.po
rename to transifex/locale/bal/LC_MESSAGES/django.po
diff --git a/locale/ca/LC_MESSAGES/django.po b/transifex/locale/ca/LC_MESSAGES/django.po
rename from locale/ca/LC_MESSAGES/django.po
rename to transifex/locale/ca/LC_MESSAGES/django.po
diff --git a/locale/de/LC_MESSAGES/django.po b/transifex/locale/de/LC_MESSAGES/django.po
rename from locale/de/LC_MESSAGES/django.po
rename to transifex/locale/de/LC_MESSAGES/django.po
diff --git a/locale/el/LC_MESSAGES/django.po b/transifex/locale/el/LC_MESSAGES/django.po
rename from locale/el/LC_MESSAGES/django.po
rename to transifex/locale/el/LC_MESSAGES/django.po
diff --git a/locale/es/LC_MESSAGES/django.po b/transifex/locale/es/LC_MESSAGES/django.po
rename from locale/es/LC_MESSAGES/django.po
rename to transifex/locale/es/LC_MESSAGES/django.po
diff --git a/locale/fa/LC_MESSAGES/django.po b/transifex/locale/fa/LC_MESSAGES/django.po
rename from locale/fa/LC_MESSAGES/django.po
rename to transifex/locale/fa/LC_MESSAGES/django.po
diff --git a/locale/hu/LC_MESSAGES/django.po b/transifex/locale/hu/LC_MESSAGES/django.po
rename from locale/hu/LC_MESSAGES/django.po
rename to transifex/locale/hu/LC_MESSAGES/django.po
diff --git a/locale/it/LC_MESSAGES/django.po b/transifex/locale/it/LC_MESSAGES/django.po
rename from locale/it/LC_MESSAGES/django.po
rename to transifex/locale/it/LC_MESSAGES/django.po
diff --git a/locale/ms/LC_MESSAGES/django.po b/transifex/locale/ms/LC_MESSAGES/django.po
rename from locale/ms/LC_MESSAGES/django.po
rename to transifex/locale/ms/LC_MESSAGES/django.po
diff --git a/locale/pl/LC_MESSAGES/django.po b/transifex/locale/pl/LC_MESSAGES/django.po
rename from locale/pl/LC_MESSAGES/django.po
rename to transifex/locale/pl/LC_MESSAGES/django.po
diff --git a/locale/pt_BR/LC_MESSAGES/django.po b/transifex/locale/pt_BR/LC_MESSAGES/django.po
rename from locale/pt_BR/LC_MESSAGES/django.po
rename to transifex/locale/pt_BR/LC_MESSAGES/django.po
diff --git a/locale/ro/LC_MESSAGES/django.po b/transifex/locale/ro/LC_MESSAGES/django.po
rename from locale/ro/LC_MESSAGES/django.po
rename to transifex/locale/ro/LC_MESSAGES/django.po
diff --git a/locale/ru/LC_MESSAGES/django.po b/transifex/locale/ru/LC_MESSAGES/django.po
rename from locale/ru/LC_MESSAGES/django.po
rename to transifex/locale/ru/LC_MESSAGES/django.po
diff --git a/locale/sk/LC_MESSAGES/django.po b/transifex/locale/sk/LC_MESSAGES/django.po
rename from locale/sk/LC_MESSAGES/django.po
rename to transifex/locale/sk/LC_MESSAGES/django.po
diff --git a/locale/sq/LC_MESSAGES/django.po b/transifex/locale/sq/LC_MESSAGES/django.po
rename from locale/sq/LC_MESSAGES/django.po
rename to transifex/locale/sq/LC_MESSAGES/django.po
diff --git a/locale/sr/LC_MESSAGES/django.po b/transifex/locale/sr/LC_MESSAGES/django.po
rename from locale/sr/LC_MESSAGES/django.po
rename to transifex/locale/sr/LC_MESSAGES/django.po
diff --git a/locale/sv/LC_MESSAGES/django.po b/transifex/locale/sv/LC_MESSAGES/django.po
rename from locale/sv/LC_MESSAGES/django.po
rename to transifex/locale/sv/LC_MESSAGES/django.po
diff --git a/locale/zh_CN/LC_MESSAGES/django.po b/transifex/locale/zh_CN/LC_MESSAGES/django.po
rename from locale/zh_CN/LC_MESSAGES/django.po
rename to transifex/locale/zh_CN/LC_MESSAGES/django.po
diff --git a/manage.py b/transifex/manage.py
rename from manage.py
rename to transifex/manage.py
diff --git a/projects/__init__.py b/transifex/projects/__init__.py
rename from projects/__init__.py
rename to transifex/projects/__init__.py
diff --git a/projects/admin.py b/transifex/projects/admin.py
rename from projects/admin.py
rename to transifex/projects/admin.py
diff --git a/projects/evolutions/001_add_collection_release.py b/transifex/projects/evolutions/001_add_collection_release.py
rename from projects/evolutions/001_add_collection_release.py
rename to transifex/projects/evolutions/001_add_collection_release.py
diff --git a/projects/evolutions/__init__.py b/transifex/projects/evolutions/__init__.py
rename from projects/evolutions/__init__.py
rename to transifex/projects/evolutions/__init__.py
diff --git a/projects/feeds.py b/transifex/projects/feeds.py
rename from projects/feeds.py
rename to transifex/projects/feeds.py
diff --git a/projects/forms.py b/transifex/projects/forms.py
rename from projects/forms.py
rename to transifex/projects/forms.py
diff --git a/projects/handlers/__init__.py b/transifex/projects/handlers/__init__.py
rename from projects/handlers/__init__.py
rename to transifex/projects/handlers/__init__.py
diff --git a/projects/handlers/common.py b/transifex/projects/handlers/common.py
rename from projects/handlers/common.py
rename to transifex/projects/handlers/common.py
diff --git a/projects/handlers/types/__init__.py b/transifex/projects/handlers/types/__init__.py
rename from projects/handlers/types/__init__.py
rename to transifex/projects/handlers/types/__init__.py
diff --git a/projects/handlers/types/intltool.py b/transifex/projects/handlers/types/intltool.py
rename from projects/handlers/types/intltool.py
rename to transifex/projects/handlers/types/intltool.py
diff --git a/projects/handlers/types/pot.py b/transifex/projects/handlers/types/pot.py
rename from projects/handlers/types/pot.py
rename to transifex/projects/handlers/types/pot.py
diff --git a/projects/management/__init__.py b/transifex/projects/management/__init__.py
rename from projects/management/__init__.py
rename to transifex/projects/management/__init__.py
diff --git a/projects/management/commands/__init__.py b/transifex/projects/management/commands/__init__.py
rename from projects/management/commands/__init__.py
rename to transifex/projects/management/commands/__init__.py
diff --git a/projects/management/commands/txstatsrefresh.py b/transifex/projects/management/commands/txstatsrefresh.py
rename from projects/management/commands/txstatsrefresh.py
rename to transifex/projects/management/commands/txstatsrefresh.py
diff --git a/projects/models.py b/transifex/projects/models.py
rename from projects/models.py
rename to transifex/projects/models.py
diff --git a/projects/templates/feeds/latest_description.html b/transifex/projects/templates/feeds/latest_description.html
rename from projects/templates/feeds/latest_description.html
rename to transifex/projects/templates/feeds/latest_description.html
diff --git a/projects/templates/feeds/latest_title.html b/transifex/projects/templates/feeds/latest_title.html
rename from projects/templates/feeds/latest_title.html
rename to transifex/projects/templates/feeds/latest_title.html
diff --git a/projects/templates/feeds/project_description.html b/transifex/projects/templates/feeds/project_description.html
rename from projects/templates/feeds/project_description.html
rename to transifex/projects/templates/feeds/project_description.html
diff --git a/projects/templates/feeds/project_title.html b/transifex/projects/templates/feeds/project_title.html
rename from projects/templates/feeds/project_title.html
rename to transifex/projects/templates/feeds/project_title.html
diff --git a/projects/templates/poview.html b/transifex/projects/templates/poview.html
rename from projects/templates/poview.html
rename to transifex/projects/templates/poview.html
diff --git a/projects/templatetags/__init__.py b/transifex/projects/templatetags/__init__.py
rename from projects/templatetags/__init__.py
rename to transifex/projects/templatetags/__init__.py
diff --git a/projects/templatetags/forms_template_style.py b/transifex/projects/templatetags/forms_template_style.py
rename from projects/templatetags/forms_template_style.py
rename to transifex/projects/templatetags/forms_template_style.py
diff --git a/projects/tests.py b/transifex/projects/tests.py
rename from projects/tests.py
rename to transifex/projects/tests.py
diff --git a/projects/urls.py b/transifex/projects/urls.py
rename from projects/urls.py
rename to transifex/projects/urls.py
diff --git a/projects/views.py b/transifex/projects/views.py
rename from projects/views.py
rename to transifex/projects/views.py
diff --git a/releases/__init__.py b/transifex/releases/__init__.py
rename from releases/__init__.py
rename to transifex/releases/__init__.py
diff --git a/releases/models.py b/transifex/releases/models.py
rename from releases/models.py
rename to transifex/releases/models.py
diff --git a/repowatch/__init__.py b/transifex/repowatch/__init__.py
rename from repowatch/__init__.py
rename to transifex/repowatch/__init__.py
diff --git a/repowatch/admin.py b/transifex/repowatch/admin.py
rename from repowatch/admin.py
rename to transifex/repowatch/admin.py
diff --git a/repowatch/models.py b/transifex/repowatch/models.py
rename from repowatch/models.py
rename to transifex/repowatch/models.py
diff --git a/repowatch/templates/body.tmpl b/transifex/repowatch/templates/body.tmpl
rename from repowatch/templates/body.tmpl
rename to transifex/repowatch/templates/body.tmpl
diff --git a/repowatch/templates/subject.tmpl b/transifex/repowatch/templates/subject.tmpl
rename from repowatch/templates/subject.tmpl
rename to transifex/repowatch/templates/subject.tmpl
diff --git a/repowatch/update.py b/transifex/repowatch/update.py
rename from repowatch/update.py
rename to transifex/repowatch/update.py
diff --git a/repowatch/views.py b/transifex/repowatch/views.py
rename from repowatch/views.py
rename to transifex/repowatch/views.py
diff --git a/settings.py b/transifex/settings.py
rename from settings.py
rename to transifex/settings.py
diff --git a/simpleauth/__init__.py b/transifex/simpleauth/__init__.py
rename from simpleauth/__init__.py
rename to transifex/simpleauth/__init__.py
diff --git a/simpleauth/urls.py b/transifex/simpleauth/urls.py
rename from simpleauth/urls.py
rename to transifex/simpleauth/urls.py
diff --git a/simpleauth/util.py b/transifex/simpleauth/util.py
rename from simpleauth/util.py
rename to transifex/simpleauth/util.py
diff --git a/simpleauth/views.py b/transifex/simpleauth/views.py
rename from simpleauth/views.py
rename to transifex/simpleauth/views.py
diff --git a/simplelock/__init__.py b/transifex/simplelock/__init__.py
rename from simplelock/__init__.py
rename to transifex/simplelock/__init__.py
diff --git a/simplelock/admin.py b/transifex/simplelock/admin.py
rename from simplelock/admin.py
rename to transifex/simplelock/admin.py
diff --git a/simplelock/models.py b/transifex/simplelock/models.py
rename from simplelock/models.py
rename to transifex/simplelock/models.py
diff --git a/site_media/css/base.css b/transifex/site_media/css/base.css
rename from site_media/css/base.css
rename to transifex/site_media/css/base.css
diff --git a/site_media/css/icons.css b/transifex/site_media/css/icons.css
rename from site_media/css/icons.css
rename to transifex/site_media/css/icons.css
diff --git a/site_media/css/stats.css b/transifex/site_media/css/stats.css
rename from site_media/css/stats.css
rename to transifex/site_media/css/stats.css
diff --git a/site_media/images/favicon.ico b/transifex/site_media/images/favicon.ico
rename from site_media/images/favicon.ico
rename to transifex/site_media/images/favicon.ico
diff --git a/site_media/images/icons/accept.png b/transifex/site_media/images/icons/accept.png
rename from site_media/images/icons/accept.png
rename to transifex/site_media/images/icons/accept.png
diff --git a/site_media/images/icons/add.png b/transifex/site_media/images/icons/add.png
rename from site_media/images/icons/add.png
rename to transifex/site_media/images/icons/add.png
diff --git a/site_media/images/icons/arrow_branch.png b/transifex/site_media/images/icons/arrow_branch.png
rename from site_media/images/icons/arrow_branch.png
rename to transifex/site_media/images/icons/arrow_branch.png
diff --git a/site_media/images/icons/arrow_merge.png b/transifex/site_media/images/icons/arrow_merge.png
rename from site_media/images/icons/arrow_merge.png
rename to transifex/site_media/images/icons/arrow_merge.png
diff --git a/site_media/images/icons/award_star_gold_1.png b/transifex/site_media/images/icons/award_star_gold_1.png
rename from site_media/images/icons/award_star_gold_1.png
rename to transifex/site_media/images/icons/award_star_gold_1.png
diff --git a/site_media/images/icons/basket.png b/transifex/site_media/images/icons/basket.png
rename from site_media/images/icons/basket.png
rename to transifex/site_media/images/icons/basket.png
diff --git a/site_media/images/icons/bell.png b/transifex/site_media/images/icons/bell.png
rename from site_media/images/icons/bell.png
rename to transifex/site_media/images/icons/bell.png
diff --git a/site_media/images/icons/brick.png b/transifex/site_media/images/icons/brick.png
rename from site_media/images/icons/brick.png
rename to transifex/site_media/images/icons/brick.png
diff --git a/site_media/images/icons/bullet_red.png b/transifex/site_media/images/icons/bullet_red.png
rename from site_media/images/icons/bullet_red.png
rename to transifex/site_media/images/icons/bullet_red.png
diff --git a/site_media/images/icons/cancel.png b/transifex/site_media/images/icons/cancel.png
rename from site_media/images/icons/cancel.png
rename to transifex/site_media/images/icons/cancel.png
diff --git a/site_media/images/icons/chart_bar.png b/transifex/site_media/images/icons/chart_bar.png
rename from site_media/images/icons/chart_bar.png
rename to transifex/site_media/images/icons/chart_bar.png
diff --git a/site_media/images/icons/chart_bar_edit.png b/transifex/site_media/images/icons/chart_bar_edit.png
rename from site_media/images/icons/chart_bar_edit.png
rename to transifex/site_media/images/icons/chart_bar_edit.png
diff --git a/site_media/images/icons/cog.png b/transifex/site_media/images/icons/cog.png
rename from site_media/images/icons/cog.png
rename to transifex/site_media/images/icons/cog.png
diff --git a/site_media/images/icons/comment.png b/transifex/site_media/images/icons/comment.png
rename from site_media/images/icons/comment.png
rename to transifex/site_media/images/icons/comment.png
diff --git a/site_media/images/icons/cross.png b/transifex/site_media/images/icons/cross.png
rename from site_media/images/icons/cross.png
rename to transifex/site_media/images/icons/cross.png
diff --git a/site_media/images/icons/database_edit.png b/transifex/site_media/images/icons/database_edit.png
rename from site_media/images/icons/database_edit.png
rename to transifex/site_media/images/icons/database_edit.png
diff --git a/site_media/images/icons/database_gear.png b/transifex/site_media/images/icons/database_gear.png
rename from site_media/images/icons/database_gear.png
rename to transifex/site_media/images/icons/database_gear.png
diff --git a/site_media/images/icons/date.png b/transifex/site_media/images/icons/date.png
rename from site_media/images/icons/date.png
rename to transifex/site_media/images/icons/date.png
diff --git a/site_media/images/icons/date_error.png b/transifex/site_media/images/icons/date_error.png
rename from site_media/images/icons/date_error.png
rename to transifex/site_media/images/icons/date_error.png
diff --git a/site_media/images/icons/date_go.png b/transifex/site_media/images/icons/date_go.png
rename from site_media/images/icons/date_go.png
rename to transifex/site_media/images/icons/date_go.png
diff --git a/site_media/images/icons/delete.png b/transifex/site_media/images/icons/delete.png
rename from site_media/images/icons/delete.png
rename to transifex/site_media/images/icons/delete.png
diff --git a/site_media/images/icons/door_out.png b/transifex/site_media/images/icons/door_out.png
rename from site_media/images/icons/door_out.png
rename to transifex/site_media/images/icons/door_out.png
diff --git a/site_media/images/icons/drive_network.png b/transifex/site_media/images/icons/drive_network.png
rename from site_media/images/icons/drive_network.png
rename to transifex/site_media/images/icons/drive_network.png
diff --git a/site_media/images/icons/exclamation.png b/transifex/site_media/images/icons/exclamation.png
rename from site_media/images/icons/exclamation.png
rename to transifex/site_media/images/icons/exclamation.png
diff --git a/site_media/images/icons/feed.png b/transifex/site_media/images/icons/feed.png
rename from site_media/images/icons/feed.png
rename to transifex/site_media/images/icons/feed.png
diff --git a/site_media/images/icons/filter.png b/transifex/site_media/images/icons/filter.png
rename from site_media/images/icons/filter.png
rename to transifex/site_media/images/icons/filter.png
diff --git a/site_media/images/icons/generic16.png b/transifex/site_media/images/icons/generic16.png
rename from site_media/images/icons/generic16.png
rename to transifex/site_media/images/icons/generic16.png
diff --git a/site_media/images/icons/generic24.png b/transifex/site_media/images/icons/generic24.png
rename from site_media/images/icons/generic24.png
rename to transifex/site_media/images/icons/generic24.png
diff --git a/site_media/images/icons/generic48.png b/transifex/site_media/images/icons/generic48.png
rename from site_media/images/icons/generic48.png
rename to transifex/site_media/images/icons/generic48.png
diff --git a/site_media/images/icons/house.png b/transifex/site_media/images/icons/house.png
rename from site_media/images/icons/house.png
rename to transifex/site_media/images/icons/house.png
diff --git a/site_media/images/icons/key.png b/transifex/site_media/images/icons/key.png
rename from site_media/images/icons/key.png
rename to transifex/site_media/images/icons/key.png
diff --git a/site_media/images/icons/lightbulb.png b/transifex/site_media/images/icons/lightbulb.png
rename from site_media/images/icons/lightbulb.png
rename to transifex/site_media/images/icons/lightbulb.png
diff --git a/site_media/images/icons/lightning.png b/transifex/site_media/images/icons/lightning.png
rename from site_media/images/icons/lightning.png
rename to transifex/site_media/images/icons/lightning.png
diff --git a/site_media/images/icons/lock.png b/transifex/site_media/images/icons/lock.png
rename from site_media/images/icons/lock.png
rename to transifex/site_media/images/icons/lock.png
diff --git a/site_media/images/icons/lock_break.png b/transifex/site_media/images/icons/lock_break.png
rename from site_media/images/icons/lock_break.png
rename to transifex/site_media/images/icons/lock_break.png
diff --git a/site_media/images/icons/lock_none.png b/transifex/site_media/images/icons/lock_none.png
rename from site_media/images/icons/lock_none.png
rename to transifex/site_media/images/icons/lock_none.png
diff --git a/site_media/images/icons/lorry.png b/transifex/site_media/images/icons/lorry.png
rename from site_media/images/icons/lorry.png
rename to transifex/site_media/images/icons/lorry.png
diff --git a/site_media/images/icons/lorry_flatbed.png b/transifex/site_media/images/icons/lorry_flatbed.png
rename from site_media/images/icons/lorry_flatbed.png
rename to transifex/site_media/images/icons/lorry_flatbed.png
diff --git a/site_media/images/icons/magnifier.png b/transifex/site_media/images/icons/magnifier.png
rename from site_media/images/icons/magnifier.png
rename to transifex/site_media/images/icons/magnifier.png
diff --git a/site_media/images/icons/package.png b/transifex/site_media/images/icons/package.png
rename from site_media/images/icons/package.png
rename to transifex/site_media/images/icons/package.png
diff --git a/site_media/images/icons/page_add.png b/transifex/site_media/images/icons/page_add.png
rename from site_media/images/icons/page_add.png
rename to transifex/site_media/images/icons/page_add.png
diff --git a/site_media/images/icons/page_go.png b/transifex/site_media/images/icons/page_go.png
rename from site_media/images/icons/page_go.png
rename to transifex/site_media/images/icons/page_go.png
diff --git a/site_media/images/icons/page_magnify.png b/transifex/site_media/images/icons/page_magnify.png
rename from site_media/images/icons/page_magnify.png
rename to transifex/site_media/images/icons/page_magnify.png
diff --git a/site_media/images/icons/page_white_edit.png b/transifex/site_media/images/icons/page_white_edit.png
rename from site_media/images/icons/page_white_edit.png
rename to transifex/site_media/images/icons/page_white_edit.png
diff --git a/site_media/images/icons/page_white_go.png b/transifex/site_media/images/icons/page_white_go.png
rename from site_media/images/icons/page_white_go.png
rename to transifex/site_media/images/icons/page_white_go.png
diff --git a/site_media/images/icons/page_white_key.png b/transifex/site_media/images/icons/page_white_key.png
rename from site_media/images/icons/page_white_key.png
rename to transifex/site_media/images/icons/page_white_key.png
diff --git a/site_media/images/icons/page_white_put.png b/transifex/site_media/images/icons/page_white_put.png
rename from site_media/images/icons/page_white_put.png
rename to transifex/site_media/images/icons/page_white_put.png
diff --git a/site_media/images/icons/pencil.png b/transifex/site_media/images/icons/pencil.png
rename from site_media/images/icons/pencil.png
rename to transifex/site_media/images/icons/pencil.png
diff --git a/site_media/images/icons/stats/cyan-bar.png b/transifex/site_media/images/icons/stats/cyan-bar.png
rename from site_media/images/icons/stats/cyan-bar.png
rename to transifex/site_media/images/icons/stats/cyan-bar.png
diff --git a/site_media/images/icons/stats/green-bar.png b/transifex/site_media/images/icons/stats/green-bar.png
rename from site_media/images/icons/stats/green-bar.png
rename to transifex/site_media/images/icons/stats/green-bar.png
diff --git a/site_media/images/icons/stats/purple-bar.png b/transifex/site_media/images/icons/stats/purple-bar.png
rename from site_media/images/icons/stats/purple-bar.png
rename to transifex/site_media/images/icons/stats/purple-bar.png
diff --git a/site_media/images/icons/stats/red-bar.png b/transifex/site_media/images/icons/stats/red-bar.png
rename from site_media/images/icons/stats/red-bar.png
rename to transifex/site_media/images/icons/stats/red-bar.png
diff --git a/site_media/images/icons/tag_blue.png b/transifex/site_media/images/icons/tag_blue.png
rename from site_media/images/icons/tag_blue.png
rename to transifex/site_media/images/icons/tag_blue.png
diff --git a/site_media/images/icons/tick.png b/transifex/site_media/images/icons/tick.png
rename from site_media/images/icons/tick.png
rename to transifex/site_media/images/icons/tick.png
diff --git a/site_media/images/icons/user.png b/transifex/site_media/images/icons/user.png
rename from site_media/images/icons/user.png
rename to transifex/site_media/images/icons/user.png
diff --git a/site_media/images/icons/user_gray.png b/transifex/site_media/images/icons/user_gray.png
rename from site_media/images/icons/user_gray.png
rename to transifex/site_media/images/icons/user_gray.png
diff --git a/site_media/images/icons/vcs/bzr.png b/transifex/site_media/images/icons/vcs/bzr.png
rename from site_media/images/icons/vcs/bzr.png
rename to transifex/site_media/images/icons/vcs/bzr.png
diff --git a/site_media/images/icons/vcs/cvs.png b/transifex/site_media/images/icons/vcs/cvs.png
rename from site_media/images/icons/vcs/cvs.png
rename to transifex/site_media/images/icons/vcs/cvs.png
diff --git a/site_media/images/icons/vcs/git.png b/transifex/site_media/images/icons/vcs/git.png
rename from site_media/images/icons/vcs/git.png
rename to transifex/site_media/images/icons/vcs/git.png
diff --git a/site_media/images/icons/vcs/hg.png b/transifex/site_media/images/icons/vcs/hg.png
rename from site_media/images/icons/vcs/hg.png
rename to transifex/site_media/images/icons/vcs/hg.png
diff --git a/site_media/images/icons/vcs/mtn.png b/transifex/site_media/images/icons/vcs/mtn.png
rename from site_media/images/icons/vcs/mtn.png
rename to transifex/site_media/images/icons/vcs/mtn.png
diff --git a/site_media/images/icons/vcs/svn.png b/transifex/site_media/images/icons/vcs/svn.png
rename from site_media/images/icons/vcs/svn.png
rename to transifex/site_media/images/icons/vcs/svn.png
diff --git a/site_media/images/icons/world_link.png b/transifex/site_media/images/icons/world_link.png
rename from site_media/images/icons/world_link.png
rename to transifex/site_media/images/icons/world_link.png
diff --git a/site_media/images/light-separator.png b/transifex/site_media/images/light-separator.png
rename from site_media/images/light-separator.png
rename to transifex/site_media/images/light-separator.png
diff --git a/site_media/images/openid-icons/aol.ico b/transifex/site_media/images/openid-icons/aol.ico
rename from site_media/images/openid-icons/aol.ico
rename to transifex/site_media/images/openid-icons/aol.ico
diff --git a/site_media/images/openid-icons/blogger.ico b/transifex/site_media/images/openid-icons/blogger.ico
rename from site_media/images/openid-icons/blogger.ico
rename to transifex/site_media/images/openid-icons/blogger.ico
diff --git a/site_media/images/openid-icons/claimid.ico b/transifex/site_media/images/openid-icons/claimid.ico
rename from site_media/images/openid-icons/claimid.ico
rename to transifex/site_media/images/openid-icons/claimid.ico
diff --git a/site_media/images/openid-icons/flickr.ico b/transifex/site_media/images/openid-icons/flickr.ico
rename from site_media/images/openid-icons/flickr.ico
rename to transifex/site_media/images/openid-icons/flickr.ico
diff --git a/site_media/images/openid-icons/lj.ico b/transifex/site_media/images/openid-icons/lj.ico
rename from site_media/images/openid-icons/lj.ico
rename to transifex/site_media/images/openid-icons/lj.ico
diff --git a/site_media/images/openid-icons/myopenid.ico b/transifex/site_media/images/openid-icons/myopenid.ico
rename from site_media/images/openid-icons/myopenid.ico
rename to transifex/site_media/images/openid-icons/myopenid.ico
diff --git a/site_media/images/openid-icons/openid.ico b/transifex/site_media/images/openid-icons/openid.ico
rename from site_media/images/openid-icons/openid.ico
rename to transifex/site_media/images/openid-icons/openid.ico
diff --git a/site_media/images/openid-icons/openid.png b/transifex/site_media/images/openid-icons/openid.png
rename from site_media/images/openid-icons/openid.png
rename to transifex/site_media/images/openid-icons/openid.png
diff --git a/site_media/images/openid-icons/technorati.ico b/transifex/site_media/images/openid-icons/technorati.ico
rename from site_media/images/openid-icons/technorati.ico
rename to transifex/site_media/images/openid-icons/technorati.ico
diff --git a/site_media/images/openid-icons/verisign.ico b/transifex/site_media/images/openid-icons/verisign.ico
rename from site_media/images/openid-icons/verisign.ico
rename to transifex/site_media/images/openid-icons/verisign.ico
diff --git a/site_media/images/openid-icons/vidoop.ico b/transifex/site_media/images/openid-icons/vidoop.ico
rename from site_media/images/openid-icons/vidoop.ico
rename to transifex/site_media/images/openid-icons/vidoop.ico
diff --git a/site_media/images/openid-icons/vox.ico b/transifex/site_media/images/openid-icons/vox.ico
rename from site_media/images/openid-icons/vox.ico
rename to transifex/site_media/images/openid-icons/vox.ico
diff --git a/site_media/images/openid-icons/wordpress.ico b/transifex/site_media/images/openid-icons/wordpress.ico
rename from site_media/images/openid-icons/wordpress.ico
rename to transifex/site_media/images/openid-icons/wordpress.ico
diff --git a/site_media/images/openid-icons/yahoo.ico b/transifex/site_media/images/openid-icons/yahoo.ico
rename from site_media/images/openid-icons/yahoo.ico
rename to transifex/site_media/images/openid-icons/yahoo.ico
diff --git a/site_media/images/separator2.png b/transifex/site_media/images/separator2.png
rename from site_media/images/separator2.png
rename to transifex/site_media/images/separator2.png
diff --git a/site_media/images/top_bg_grad.png b/transifex/site_media/images/top_bg_grad.png
rename from site_media/images/top_bg_grad.png
rename to transifex/site_media/images/top_bg_grad.png
diff --git a/site_media/images/tx-logo.png b/transifex/site_media/images/tx-logo.png
rename from site_media/images/tx-logo.png
rename to transifex/site_media/images/tx-logo.png
diff --git a/site_media/js/file_submit.js b/transifex/site_media/js/file_submit.js
rename from site_media/js/file_submit.js
rename to transifex/site_media/js/file_submit.js
diff --git a/site_media/js/jquery-1.3.2.min.js b/transifex/site_media/js/jquery-1.3.2.min.js
rename from site_media/js/jquery-1.3.2.min.js
rename to transifex/site_media/js/jquery-1.3.2.min.js
diff --git a/templates/403.html b/transifex/templates/403.html
rename from templates/403.html
rename to transifex/templates/403.html
diff --git a/templates/404.html b/transifex/templates/404.html
rename from templates/404.html
rename to transifex/templates/404.html
diff --git a/templates/500.html b/transifex/templates/500.html
rename from templates/500.html
rename to transifex/templates/500.html
diff --git a/templates/about.html b/transifex/templates/about.html
rename from templates/about.html
rename to transifex/templates/about.html
diff --git a/templates/authopenid/base.html b/transifex/templates/authopenid/base.html
rename from templates/authopenid/base.html
rename to transifex/templates/authopenid/base.html
diff --git a/templates/authopenid/base_profile.html b/transifex/templates/authopenid/base_profile.html
rename from templates/authopenid/base_profile.html
rename to transifex/templates/authopenid/base_profile.html
diff --git a/templates/authopenid/changeemail.html b/transifex/templates/authopenid/changeemail.html
rename from templates/authopenid/changeemail.html
rename to transifex/templates/authopenid/changeemail.html
diff --git a/templates/authopenid/changeopenid.html b/transifex/templates/authopenid/changeopenid.html
rename from templates/authopenid/changeopenid.html
rename to transifex/templates/authopenid/changeopenid.html
diff --git a/templates/authopenid/changepw.html b/transifex/templates/authopenid/changepw.html
rename from templates/authopenid/changepw.html
rename to transifex/templates/authopenid/changepw.html
diff --git a/templates/authopenid/complete.html b/transifex/templates/authopenid/complete.html
rename from templates/authopenid/complete.html
rename to transifex/templates/authopenid/complete.html
diff --git a/templates/authopenid/confirm_email.txt b/transifex/templates/authopenid/confirm_email.txt
rename from templates/authopenid/confirm_email.txt
rename to transifex/templates/authopenid/confirm_email.txt
diff --git a/templates/authopenid/delete.html b/transifex/templates/authopenid/delete.html
rename from templates/authopenid/delete.html
rename to transifex/templates/authopenid/delete.html
diff --git a/templates/authopenid/failure.html b/transifex/templates/authopenid/failure.html
rename from templates/authopenid/failure.html
rename to transifex/templates/authopenid/failure.html
diff --git a/templates/authopenid/login_box.html b/transifex/templates/authopenid/login_box.html
rename from templates/authopenid/login_box.html
rename to transifex/templates/authopenid/login_box.html
diff --git a/templates/authopenid/sendpw.html b/transifex/templates/authopenid/sendpw.html
rename from templates/authopenid/sendpw.html
rename to transifex/templates/authopenid/sendpw.html
diff --git a/templates/authopenid/sendpw_email.txt b/transifex/templates/authopenid/sendpw_email.txt
rename from templates/authopenid/sendpw_email.txt
rename to transifex/templates/authopenid/sendpw_email.txt
diff --git a/templates/authopenid/settings.html b/transifex/templates/authopenid/settings.html
rename from templates/authopenid/settings.html
rename to transifex/templates/authopenid/settings.html
diff --git a/templates/authopenid/signin.html b/transifex/templates/authopenid/signin.html
rename from templates/authopenid/signin.html
rename to transifex/templates/authopenid/signin.html
diff --git a/templates/authopenid/signup.html b/transifex/templates/authopenid/signup.html
rename from templates/authopenid/signup.html
rename to transifex/templates/authopenid/signup.html
diff --git a/templates/authopenid/yadis.xrdf b/transifex/templates/authopenid/yadis.xrdf
rename from templates/authopenid/yadis.xrdf
rename to transifex/templates/authopenid/yadis.xrdf
diff --git a/templates/base.html b/transifex/templates/base.html
rename from templates/base.html
rename to transifex/templates/base.html
diff --git a/templates/contact_form/contact_form.html b/transifex/templates/contact_form/contact_form.html
rename from templates/contact_form/contact_form.html
rename to transifex/templates/contact_form/contact_form.html
diff --git a/templates/contact_form/contact_form.txt b/transifex/templates/contact_form/contact_form.txt
rename from templates/contact_form/contact_form.txt
rename to transifex/templates/contact_form/contact_form.txt
diff --git a/templates/contact_form/contact_form_sent.html b/transifex/templates/contact_form/contact_form_sent.html
rename from templates/contact_form/contact_form_sent.html
rename to transifex/templates/contact_form/contact_form_sent.html
diff --git a/templates/contact_form/contact_form_subject.txt b/transifex/templates/contact_form/contact_form_subject.txt
rename from templates/contact_form/contact_form_subject.txt
rename to transifex/templates/contact_form/contact_form_subject.txt
diff --git a/templates/flatpages/default.html b/transifex/templates/flatpages/default.html
rename from templates/flatpages/default.html
rename to transifex/templates/flatpages/default.html
diff --git a/templates/index.html b/transifex/templates/index.html
rename from templates/index.html
rename to transifex/templates/index.html
diff --git a/templates/languages/base.html b/transifex/templates/languages/base.html
rename from templates/languages/base.html
rename to transifex/templates/languages/base.html
diff --git a/templates/languages/language_detail.html b/transifex/templates/languages/language_detail.html
rename from templates/languages/language_detail.html
rename to transifex/templates/languages/language_detail.html
diff --git a/templates/languages/language_list.html b/transifex/templates/languages/language_list.html
rename from templates/languages/language_list.html
rename to transifex/templates/languages/language_list.html
diff --git a/templates/languages/language_release.html b/transifex/templates/languages/language_release.html
rename from templates/languages/language_release.html
rename to transifex/templates/languages/language_release.html
diff --git a/templates/notification/email_body.txt b/transifex/templates/notification/email_body.txt
rename from templates/notification/email_body.txt
rename to transifex/templates/notification/email_body.txt
diff --git a/templates/notification/notices.html b/transifex/templates/notification/notices.html
rename from templates/notification/notices.html
rename to transifex/templates/notification/notices.html
diff --git a/templates/notification/projects_added_new/plain.txt b/transifex/templates/notification/projects_added_new/plain.txt
rename from templates/notification/projects_added_new/plain.txt
rename to transifex/templates/notification/projects_added_new/plain.txt
diff --git a/templates/notification/projects_added_new/short.txt b/transifex/templates/notification/projects_added_new/short.txt
rename from templates/notification/projects_added_new/short.txt
rename to transifex/templates/notification/projects_added_new/short.txt
diff --git a/templates/notification/projects_added_new/teaser.html b/transifex/templates/notification/projects_added_new/teaser.html
rename from templates/notification/projects_added_new/teaser.html
rename to transifex/templates/notification/projects_added_new/teaser.html
diff --git a/templates/notification/projects_added_new_component/plain.txt b/transifex/templates/notification/projects_added_new_component/plain.txt
rename from templates/notification/projects_added_new_component/plain.txt
rename to transifex/templates/notification/projects_added_new_component/plain.txt
diff --git a/templates/notification/projects_added_new_component/short.txt b/transifex/templates/notification/projects_added_new_component/short.txt
rename from templates/notification/projects_added_new_component/short.txt
rename to transifex/templates/notification/projects_added_new_component/short.txt
diff --git a/templates/notification/projects_added_new_component/teaser.html b/transifex/templates/notification/projects_added_new_component/teaser.html
rename from templates/notification/projects_added_new_component/teaser.html
rename to transifex/templates/notification/projects_added_new_component/teaser.html
diff --git a/templates/notification/single.html b/transifex/templates/notification/single.html
rename from templates/notification/single.html
rename to transifex/templates/notification/single.html
diff --git a/templates/projects/base.html b/transifex/templates/projects/base.html
rename from templates/projects/base.html
rename to transifex/templates/projects/base.html
diff --git a/templates/projects/component_confirm_delete.html b/transifex/templates/projects/component_confirm_delete.html
rename from templates/projects/component_confirm_delete.html
rename to transifex/templates/projects/component_confirm_delete.html
diff --git a/templates/projects/component_detail.html b/transifex/templates/projects/component_detail.html
rename from templates/projects/component_detail.html
rename to transifex/templates/projects/component_detail.html
diff --git a/templates/projects/component_form.html b/transifex/templates/projects/component_form.html
rename from templates/projects/component_form.html
rename to transifex/templates/projects/component_form.html
diff --git a/templates/projects/component_list.html b/transifex/templates/projects/component_list.html
rename from templates/projects/component_list.html
rename to transifex/templates/projects/component_list.html
diff --git a/templates/projects/component_submit.html b/transifex/templates/projects/component_submit.html
rename from templates/projects/component_submit.html
rename to transifex/templates/projects/component_submit.html
diff --git a/templates/projects/component_submit_new_file.html b/transifex/templates/projects/component_submit_new_file.html
rename from templates/projects/component_submit_new_file.html
rename to transifex/templates/projects/component_submit_new_file.html
diff --git a/templates/projects/project_confirm_delete.html b/transifex/templates/projects/project_confirm_delete.html
rename from templates/projects/project_confirm_delete.html
rename to transifex/templates/projects/project_confirm_delete.html
diff --git a/templates/projects/project_detail.html b/transifex/templates/projects/project_detail.html
rename from templates/projects/project_detail.html
rename to transifex/templates/projects/project_detail.html
diff --git a/templates/projects/project_detail_childs.html b/transifex/templates/projects/project_detail_childs.html
rename from templates/projects/project_detail_childs.html
rename to transifex/templates/projects/project_detail_childs.html
diff --git a/templates/projects/project_form.html b/transifex/templates/projects/project_form.html
rename from templates/projects/project_form.html
rename to transifex/templates/projects/project_form.html
diff --git a/templates/projects/project_latests.html b/transifex/templates/projects/project_latests.html
rename from templates/projects/project_latests.html
rename to transifex/templates/projects/project_latests.html
diff --git a/templates/projects/project_list.html b/transifex/templates/projects/project_list.html
rename from templates/projects/project_list.html
rename to transifex/templates/projects/project_list.html
diff --git a/templates/releases/base.html b/transifex/templates/releases/base.html
rename from templates/releases/base.html
rename to transifex/templates/releases/base.html
diff --git a/templates/releases/release_confirm_delete.html b/transifex/templates/releases/release_confirm_delete.html
rename from templates/releases/release_confirm_delete.html
rename to transifex/templates/releases/release_confirm_delete.html
diff --git a/templates/releases/release_detail.html b/transifex/templates/releases/release_detail.html
rename from templates/releases/release_detail.html
rename to transifex/templates/releases/release_detail.html
diff --git a/templates/releases/release_form.html b/transifex/templates/releases/release_form.html
rename from templates/releases/release_form.html
rename to transifex/templates/releases/release_form.html
diff --git a/templates/releases/release_list.html b/transifex/templates/releases/release_list.html
rename from templates/releases/release_list.html
rename to transifex/templates/releases/release_list.html
diff --git a/templates/search.html b/transifex/templates/search.html
rename from templates/search.html
rename to transifex/templates/search.html
diff --git a/templates/search_form.html b/transifex/templates/search_form.html
rename from templates/search_form.html
rename to transifex/templates/search_form.html
diff --git a/templates/search_form_plain.html b/transifex/templates/search_form_plain.html
rename from templates/search_form_plain.html
rename to transifex/templates/search_form_plain.html
diff --git a/templates/simpleauth/base.html b/transifex/templates/simpleauth/base.html
rename from templates/simpleauth/base.html
rename to transifex/templates/simpleauth/base.html
diff --git a/templates/simpleauth/base_profile.html b/transifex/templates/simpleauth/base_profile.html
rename from templates/simpleauth/base_profile.html
rename to transifex/templates/simpleauth/base_profile.html
diff --git a/templates/simpleauth/login_box.html b/transifex/templates/simpleauth/login_box.html
rename from templates/simpleauth/login_box.html
rename to transifex/templates/simpleauth/login_box.html
diff --git a/templates/simpleauth/logout.html b/transifex/templates/simpleauth/logout.html
rename from templates/simpleauth/logout.html
rename to transifex/templates/simpleauth/logout.html
diff --git a/templates/simpleauth/settings.html b/transifex/templates/simpleauth/settings.html
rename from templates/simpleauth/settings.html
rename to transifex/templates/simpleauth/settings.html
diff --git a/templates/simpleauth/signin.html b/transifex/templates/simpleauth/signin.html
rename from templates/simpleauth/signin.html
rename to transifex/templates/simpleauth/signin.html
diff --git a/templates/txcollections/base.html b/transifex/templates/txcollections/base.html
rename from templates/txcollections/base.html
rename to transifex/templates/txcollections/base.html
diff --git a/templates/txcollections/base_childs.html b/transifex/templates/txcollections/base_childs.html
rename from templates/txcollections/base_childs.html
rename to transifex/templates/txcollections/base_childs.html
diff --git a/templates/txcollections/collection_confirm_delete.html b/transifex/templates/txcollections/collection_confirm_delete.html
rename from templates/txcollections/collection_confirm_delete.html
rename to transifex/templates/txcollections/collection_confirm_delete.html
diff --git a/templates/txcollections/collection_detail.html b/transifex/templates/txcollections/collection_detail.html
rename from templates/txcollections/collection_detail.html
rename to transifex/templates/txcollections/collection_detail.html
diff --git a/templates/txcollections/collection_form.html b/transifex/templates/txcollections/collection_form.html
rename from templates/txcollections/collection_form.html
rename to transifex/templates/txcollections/collection_form.html
diff --git a/templates/txcollections/collection_list.html b/transifex/templates/txcollections/collection_list.html
rename from templates/txcollections/collection_list.html
rename to transifex/templates/txcollections/collection_list.html
diff --git a/templates/txcollections/release_detail.html b/transifex/templates/txcollections/release_detail.html
rename from templates/txcollections/release_detail.html
rename to transifex/templates/txcollections/release_detail.html
diff --git a/templates/txcollections/release_form.html b/transifex/templates/txcollections/release_form.html
rename from templates/txcollections/release_form.html
rename to transifex/templates/txcollections/release_form.html
diff --git a/translations/__init__.py b/transifex/translations/__init__.py
rename from translations/__init__.py
rename to transifex/translations/__init__.py
diff --git a/translations/admin.py b/transifex/translations/admin.py
rename from translations/admin.py
rename to transifex/translations/admin.py
diff --git a/translations/lib/__init__.py b/transifex/translations/lib/__init__.py
rename from translations/lib/__init__.py
rename to transifex/translations/lib/__init__.py
diff --git a/translations/lib/types/__init__.py b/transifex/translations/lib/types/__init__.py
rename from translations/lib/types/__init__.py
rename to transifex/translations/lib/types/__init__.py
diff --git a/translations/lib/types/pot.py b/transifex/translations/lib/types/pot.py
rename from translations/lib/types/pot.py
rename to transifex/translations/lib/types/pot.py
diff --git a/translations/lib/utils.py b/transifex/translations/lib/utils.py
rename from translations/lib/utils.py
rename to transifex/translations/lib/utils.py
diff --git a/translations/management/__init__.py b/transifex/translations/management/__init__.py
rename from translations/management/__init__.py
rename to transifex/translations/management/__init__.py
diff --git a/translations/models.py b/transifex/translations/models.py
rename from translations/models.py
rename to transifex/translations/models.py
diff --git a/translations/templates/comp_stats_table.html b/transifex/translations/templates/comp_stats_table.html
rename from translations/templates/comp_stats_table.html
rename to transifex/translations/templates/comp_stats_table.html
diff --git a/translations/templates/lang_stats_table.html b/transifex/translations/templates/lang_stats_table.html
rename from translations/templates/lang_stats_table.html
rename to transifex/translations/templates/lang_stats_table.html
diff --git a/translations/templates/pofile_lock.html b/transifex/translations/templates/pofile_lock.html
rename from translations/templates/pofile_lock.html
rename to transifex/translations/templates/pofile_lock.html
diff --git a/translations/templates/project_stats_table.html b/transifex/translations/templates/project_stats_table.html
rename from translations/templates/project_stats_table.html
rename to transifex/translations/templates/project_stats_table.html
diff --git a/translations/templates/release_stats_table.html b/transifex/translations/templates/release_stats_table.html
rename from translations/templates/release_stats_table.html
rename to transifex/translations/templates/release_stats_table.html
diff --git a/translations/templates/stats_bar_full.html b/transifex/translations/templates/stats_bar_full.html
rename from translations/templates/stats_bar_full.html
rename to transifex/translations/templates/stats_bar_full.html
diff --git a/translations/templates/stats_bar_trans.html b/transifex/translations/templates/stats_bar_trans.html
rename from translations/templates/stats_bar_trans.html
rename to transifex/translations/templates/stats_bar_trans.html
diff --git a/translations/templatetags/__init__.py b/transifex/translations/templatetags/__init__.py
rename from translations/templatetags/__init__.py
rename to transifex/translations/templatetags/__init__.py
diff --git a/translations/templatetags/locks.py b/transifex/translations/templatetags/locks.py
rename from translations/templatetags/locks.py
rename to transifex/translations/templatetags/locks.py
diff --git a/translations/templatetags/statistics.py b/transifex/translations/templatetags/statistics.py
rename from translations/templatetags/statistics.py
rename to transifex/translations/templatetags/statistics.py
diff --git a/translations/tests/__init__.py b/transifex/translations/tests/__init__.py
rename from translations/tests/__init__.py
rename to transifex/translations/tests/__init__.py
diff --git a/translations/tests/test_models.py b/transifex/translations/tests/test_models.py
rename from translations/tests/test_models.py
rename to transifex/translations/tests/test_models.py
diff --git a/translations/tests/test_pot.py b/transifex/translations/tests/test_pot.py
rename from translations/tests/test_pot.py
rename to transifex/translations/tests/test_pot.py
diff --git a/txcollections/__init__.py b/transifex/txcollections/__init__.py
rename from txcollections/__init__.py
rename to transifex/txcollections/__init__.py
diff --git a/txcollections/admin.py b/transifex/txcollections/admin.py
rename from txcollections/admin.py
rename to transifex/txcollections/admin.py
diff --git a/txcollections/feeds.py b/transifex/txcollections/feeds.py
rename from txcollections/feeds.py
rename to transifex/txcollections/feeds.py
diff --git a/txcollections/forms.py b/transifex/txcollections/forms.py
rename from txcollections/forms.py
rename to transifex/txcollections/forms.py
diff --git a/txcollections/models.py b/transifex/txcollections/models.py
rename from txcollections/models.py
rename to transifex/txcollections/models.py
diff --git a/txcollections/templates/feeds/collection_description.html b/transifex/txcollections/templates/feeds/collection_description.html
rename from txcollections/templates/feeds/collection_description.html
rename to transifex/txcollections/templates/feeds/collection_description.html
diff --git a/txcollections/templates/feeds/collection_title.html b/transifex/txcollections/templates/feeds/collection_title.html
rename from txcollections/templates/feeds/collection_title.html
rename to transifex/txcollections/templates/feeds/collection_title.html
diff --git a/txcollections/templates/feeds/latest_description.html b/transifex/txcollections/templates/feeds/latest_description.html
rename from txcollections/templates/feeds/latest_description.html
rename to transifex/txcollections/templates/feeds/latest_description.html
diff --git a/txcollections/templates/feeds/latest_title.html b/transifex/txcollections/templates/feeds/latest_title.html
rename from txcollections/templates/feeds/latest_title.html
rename to transifex/txcollections/templates/feeds/latest_title.html
diff --git a/txcollections/urls.py b/transifex/txcollections/urls.py
rename from txcollections/urls.py
rename to transifex/txcollections/urls.py
diff --git a/txcollections/views.py b/transifex/txcollections/views.py
rename from txcollections/views.py
rename to transifex/txcollections/views.py
diff --git a/txcommon/__init__.py b/transifex/txcommon/__init__.py
rename from txcommon/__init__.py
rename to transifex/txcommon/__init__.py
diff --git a/txcommon/decorators.py b/transifex/txcommon/decorators.py
rename from txcommon/decorators.py
rename to transifex/txcommon/decorators.py
diff --git a/txcommon/fixtures/sample_data.json b/transifex/txcommon/fixtures/sample_data.json
rename from txcommon/fixtures/sample_data.json
rename to transifex/txcommon/fixtures/sample_data.json
diff --git a/txcommon/fixtures/sample_site.json b/transifex/txcommon/fixtures/sample_site.json
rename from txcommon/fixtures/sample_site.json
rename to transifex/txcommon/fixtures/sample_site.json
diff --git a/txcommon/fixtures/sample_users.json b/transifex/txcommon/fixtures/sample_users.json
rename from txcommon/fixtures/sample_users.json
rename to transifex/txcommon/fixtures/sample_users.json
diff --git a/txcommon/log/__init__.py b/transifex/txcommon/log/__init__.py
rename from txcommon/log/__init__.py
rename to transifex/txcommon/log/__init__.py
diff --git a/txcommon/log/receivers.py b/transifex/txcommon/log/receivers.py
rename from txcommon/log/receivers.py
rename to transifex/txcommon/log/receivers.py
diff --git a/txcommon/management/__init__.py b/transifex/txcommon/management/__init__.py
rename from txcommon/management/__init__.py
rename to transifex/txcommon/management/__init__.py
diff --git a/txcommon/management/commands/__init__.py b/transifex/txcommon/management/commands/__init__.py
rename from txcommon/management/commands/__init__.py
rename to transifex/txcommon/management/commands/__init__.py
diff --git a/txcommon/management/commands/txcreatedirs.py b/transifex/txcommon/management/commands/txcreatedirs.py
rename from txcommon/management/commands/txcreatedirs.py
rename to transifex/txcommon/management/commands/txcreatedirs.py
diff --git a/txcommon/templates/common_homelink.html b/transifex/txcommon/templates/common_homelink.html
rename from txcommon/templates/common_homelink.html
rename to transifex/txcommon/templates/common_homelink.html
diff --git a/txcommon/templates/common_render_metacount.html b/transifex/txcommon/templates/common_render_metacount.html
rename from txcommon/templates/common_render_metacount.html
rename to transifex/txcommon/templates/common_render_metacount.html
diff --git a/txcommon/templates/form_as_table_rows.html b/transifex/txcommon/templates/form_as_table_rows.html
rename from txcommon/templates/form_as_table_rows.html
rename to transifex/txcommon/templates/form_as_table_rows.html
diff --git a/txcommon/templatetags/__init__.py b/transifex/txcommon/templatetags/__init__.py
rename from txcommon/templatetags/__init__.py
rename to transifex/txcommon/templatetags/__init__.py
diff --git a/txcommon/templatetags/search_filters.py b/transifex/txcommon/templatetags/search_filters.py
rename from txcommon/templatetags/search_filters.py
rename to transifex/txcommon/templatetags/search_filters.py
diff --git a/txcommon/templatetags/txcommontags.py b/transifex/txcommon/templatetags/txcommontags.py
rename from txcommon/templatetags/txcommontags.py
rename to transifex/txcommon/templatetags/txcommontags.py
diff --git a/txcommon/views.py b/transifex/txcommon/views.py
rename from txcommon/views.py
rename to transifex/txcommon/views.py
diff --git a/urls.py b/transifex/urls.py
rename from urls.py
rename to transifex/urls.py
diff --git a/vcs/__init__.py b/transifex/vcs/__init__.py
rename from vcs/__init__.py
rename to transifex/vcs/__init__.py
diff --git a/vcs/admin.py b/transifex/vcs/admin.py
rename from vcs/admin.py
rename to transifex/vcs/admin.py
diff --git a/vcs/lib/__init__.py b/transifex/vcs/lib/__init__.py
rename from vcs/lib/__init__.py
rename to transifex/vcs/lib/__init__.py
diff --git a/vcs/lib/common.py b/transifex/vcs/lib/common.py
rename from vcs/lib/common.py
rename to transifex/vcs/lib/common.py
diff --git a/vcs/lib/support/__init__.py b/transifex/vcs/lib/support/__init__.py
rename from vcs/lib/support/__init__.py
rename to transifex/vcs/lib/support/__init__.py
diff --git a/vcs/lib/support/commands.py b/transifex/vcs/lib/support/commands.py
rename from vcs/lib/support/commands.py
rename to transifex/vcs/lib/support/commands.py
diff --git a/vcs/lib/support/cvs.py b/transifex/vcs/lib/support/cvs.py
rename from vcs/lib/support/cvs.py
rename to transifex/vcs/lib/support/cvs.py
diff --git a/vcs/lib/support/git.py b/transifex/vcs/lib/support/git.py
rename from vcs/lib/support/git.py
rename to transifex/vcs/lib/support/git.py
diff --git a/vcs/lib/types/__init__.py b/transifex/vcs/lib/types/__init__.py
rename from vcs/lib/types/__init__.py
rename to transifex/vcs/lib/types/__init__.py
diff --git a/vcs/lib/types/bzr.py b/transifex/vcs/lib/types/bzr.py
rename from vcs/lib/types/bzr.py
rename to transifex/vcs/lib/types/bzr.py
diff --git a/vcs/lib/types/cvs.py b/transifex/vcs/lib/types/cvs.py
rename from vcs/lib/types/cvs.py
rename to transifex/vcs/lib/types/cvs.py
diff --git a/vcs/lib/types/dummy.py b/transifex/vcs/lib/types/dummy.py
rename from vcs/lib/types/dummy.py
rename to transifex/vcs/lib/types/dummy.py
diff --git a/vcs/lib/types/git.py b/transifex/vcs/lib/types/git.py
rename from vcs/lib/types/git.py
rename to transifex/vcs/lib/types/git.py
diff --git a/vcs/lib/types/hg.py b/transifex/vcs/lib/types/hg.py
rename from vcs/lib/types/hg.py
rename to transifex/vcs/lib/types/hg.py
diff --git a/vcs/lib/types/svn.py b/transifex/vcs/lib/types/svn.py
rename from vcs/lib/types/svn.py
rename to transifex/vcs/lib/types/svn.py
diff --git a/vcs/models.py b/transifex/vcs/models.py
rename from vcs/models.py
rename to transifex/vcs/models.py
diff --git a/vcs/tests/__init__.py b/transifex/vcs/tests/__init__.py
rename from vcs/tests/__init__.py
rename to transifex/vcs/tests/__init__.py
diff --git a/vcs/tests/test_bzr.py b/transifex/vcs/tests/test_bzr.py
rename from vcs/tests/test_bzr.py
rename to transifex/vcs/tests/test_bzr.py
diff --git a/vcs/tests/test_cvs.py b/transifex/vcs/tests/test_cvs.py
rename from vcs/tests/test_cvs.py
rename to transifex/vcs/tests/test_cvs.py
diff --git a/vcs/tests/test_git.py b/transifex/vcs/tests/test_git.py
rename from vcs/tests/test_git.py
rename to transifex/vcs/tests/test_git.py
diff --git a/vcs/tests/test_hg.py b/transifex/vcs/tests/test_hg.py
rename from vcs/tests/test_hg.py
rename to transifex/vcs/tests/test_hg.py
diff --git a/vcs/tests/test_repo/bzr/.bzr/README b/transifex/vcs/tests/test_repo/bzr/.bzr/README
rename from vcs/tests/test_repo/bzr/.bzr/README
rename to transifex/vcs/tests/test_repo/bzr/.bzr/README
diff --git a/vcs/tests/test_repo/bzr/.bzr/branch-format b/transifex/vcs/tests/test_repo/bzr/.bzr/branch-format
rename from vcs/tests/test_repo/bzr/.bzr/branch-format
rename to transifex/vcs/tests/test_repo/bzr/.bzr/branch-format
diff --git a/vcs/tests/test_repo/bzr/.bzr/branch/branch.conf b/transifex/vcs/tests/test_repo/bzr/.bzr/branch/branch.conf
rename from vcs/tests/test_repo/bzr/.bzr/branch/branch.conf
rename to transifex/vcs/tests/test_repo/bzr/.bzr/branch/branch.conf
diff --git a/vcs/tests/test_repo/bzr/.bzr/branch/format b/transifex/vcs/tests/test_repo/bzr/.bzr/branch/format
rename from vcs/tests/test_repo/bzr/.bzr/branch/format
rename to transifex/vcs/tests/test_repo/bzr/.bzr/branch/format
diff --git a/vcs/tests/test_repo/bzr/.bzr/branch/last-revision b/transifex/vcs/tests/test_repo/bzr/.bzr/branch/last-revision
rename from vcs/tests/test_repo/bzr/.bzr/branch/last-revision
rename to transifex/vcs/tests/test_repo/bzr/.bzr/branch/last-revision
diff --git a/vcs/tests/test_repo/bzr/.bzr/branch/tags b/transifex/vcs/tests/test_repo/bzr/.bzr/branch/tags
rename from vcs/tests/test_repo/bzr/.bzr/branch/tags
rename to transifex/vcs/tests/test_repo/bzr/.bzr/branch/tags
diff --git a/vcs/tests/test_repo/bzr/.bzr/checkout/conflicts b/transifex/vcs/tests/test_repo/bzr/.bzr/checkout/conflicts
rename from vcs/tests/test_repo/bzr/.bzr/checkout/conflicts
rename to transifex/vcs/tests/test_repo/bzr/.bzr/checkout/conflicts
diff --git a/vcs/tests/test_repo/bzr/.bzr/checkout/dirstate b/transifex/vcs/tests/test_repo/bzr/.bzr/checkout/dirstate
rename from vcs/tests/test_repo/bzr/.bzr/checkout/dirstate
rename to transifex/vcs/tests/test_repo/bzr/.bzr/checkout/dirstate
diff --git a/vcs/tests/test_repo/bzr/.bzr/checkout/format b/transifex/vcs/tests/test_repo/bzr/.bzr/checkout/format
rename from vcs/tests/test_repo/bzr/.bzr/checkout/format
rename to transifex/vcs/tests/test_repo/bzr/.bzr/checkout/format
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/format b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/format
rename from vcs/tests/test_repo/bzr/.bzr/repository/format
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/format
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.iix b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.iix
rename from vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.iix
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.iix
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.rix b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.rix
rename from vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.rix
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.rix
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.six b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.six
rename from vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.six
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.six
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.tix b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.tix
rename from vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.tix
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/indices/ab5328fbeb83c1a7b7a3004d98919c8c.tix
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/pack-names b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/pack-names
rename from vcs/tests/test_repo/bzr/.bzr/repository/pack-names
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/pack-names
diff --git a/vcs/tests/test_repo/bzr/.bzr/repository/packs/ab5328fbeb83c1a7b7a3004d98919c8c.pack b/transifex/vcs/tests/test_repo/bzr/.bzr/repository/packs/ab5328fbeb83c1a7b7a3004d98919c8c.pack
rename from vcs/tests/test_repo/bzr/.bzr/repository/packs/ab5328fbeb83c1a7b7a3004d98919c8c.pack
rename to transifex/vcs/tests/test_repo/bzr/.bzr/repository/packs/ab5328fbeb83c1a7b7a3004d98919c8c.pack
diff --git a/vcs/tests/test_repo/bzr/po/pt_BR.po b/transifex/vcs/tests/test_repo/bzr/po/pt_BR.po
rename from vcs/tests/test_repo/bzr/po/pt_BR.po
rename to transifex/vcs/tests/test_repo/bzr/po/pt_BR.po
diff --git a/vcs/tests/test_repo/bzr/po/test_repo.pot b/transifex/vcs/tests/test_repo/bzr/po/test_repo.pot
rename from vcs/tests/test_repo/bzr/po/test_repo.pot
rename to transifex/vcs/tests/test_repo/bzr/po/test_repo.pot
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#checkoutlist b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#checkoutlist
rename from vcs/tests/test_repo/cvs/CVSROOT/.#checkoutlist
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#checkoutlist
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#commitinfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#commitinfo
rename from vcs/tests/test_repo/cvs/CVSROOT/.#commitinfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#commitinfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#config b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#config
rename from vcs/tests/test_repo/cvs/CVSROOT/.#config
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#config
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#cvswrappers b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#cvswrappers
rename from vcs/tests/test_repo/cvs/CVSROOT/.#cvswrappers
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#cvswrappers
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#editinfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#editinfo
rename from vcs/tests/test_repo/cvs/CVSROOT/.#editinfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#editinfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#loginfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#loginfo
rename from vcs/tests/test_repo/cvs/CVSROOT/.#loginfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#loginfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#modules b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#modules
rename from vcs/tests/test_repo/cvs/CVSROOT/.#modules
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#modules
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#notify b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#notify
rename from vcs/tests/test_repo/cvs/CVSROOT/.#notify
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#notify
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#rcsinfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#rcsinfo
rename from vcs/tests/test_repo/cvs/CVSROOT/.#rcsinfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#rcsinfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#taginfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#taginfo
rename from vcs/tests/test_repo/cvs/CVSROOT/.#taginfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#taginfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/.#verifymsg b/transifex/vcs/tests/test_repo/cvs/CVSROOT/.#verifymsg
rename from vcs/tests/test_repo/cvs/CVSROOT/.#verifymsg
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/.#verifymsg
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/checkoutlist b/transifex/vcs/tests/test_repo/cvs/CVSROOT/checkoutlist
rename from vcs/tests/test_repo/cvs/CVSROOT/checkoutlist
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/checkoutlist
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/checkoutlist,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/checkoutlist,v
rename from vcs/tests/test_repo/cvs/CVSROOT/checkoutlist,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/checkoutlist,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/commitinfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/commitinfo
rename from vcs/tests/test_repo/cvs/CVSROOT/commitinfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/commitinfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/commitinfo,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/commitinfo,v
rename from vcs/tests/test_repo/cvs/CVSROOT/commitinfo,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/commitinfo,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/config b/transifex/vcs/tests/test_repo/cvs/CVSROOT/config
rename from vcs/tests/test_repo/cvs/CVSROOT/config
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/config
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/config,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/config,v
rename from vcs/tests/test_repo/cvs/CVSROOT/config,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/config,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/cvswrappers b/transifex/vcs/tests/test_repo/cvs/CVSROOT/cvswrappers
rename from vcs/tests/test_repo/cvs/CVSROOT/cvswrappers
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/cvswrappers
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/cvswrappers,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/cvswrappers,v
rename from vcs/tests/test_repo/cvs/CVSROOT/cvswrappers,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/cvswrappers,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/editinfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/editinfo
rename from vcs/tests/test_repo/cvs/CVSROOT/editinfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/editinfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/editinfo,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/editinfo,v
rename from vcs/tests/test_repo/cvs/CVSROOT/editinfo,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/editinfo,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/history b/transifex/vcs/tests/test_repo/cvs/CVSROOT/history
rename from vcs/tests/test_repo/cvs/CVSROOT/history
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/history
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/loginfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/loginfo
rename from vcs/tests/test_repo/cvs/CVSROOT/loginfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/loginfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/loginfo,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/loginfo,v
rename from vcs/tests/test_repo/cvs/CVSROOT/loginfo,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/loginfo,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/modules b/transifex/vcs/tests/test_repo/cvs/CVSROOT/modules
rename from vcs/tests/test_repo/cvs/CVSROOT/modules
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/modules
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/modules,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/modules,v
rename from vcs/tests/test_repo/cvs/CVSROOT/modules,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/modules,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/notify b/transifex/vcs/tests/test_repo/cvs/CVSROOT/notify
rename from vcs/tests/test_repo/cvs/CVSROOT/notify
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/notify
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/notify,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/notify,v
rename from vcs/tests/test_repo/cvs/CVSROOT/notify,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/notify,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/rcsinfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/rcsinfo
rename from vcs/tests/test_repo/cvs/CVSROOT/rcsinfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/rcsinfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/rcsinfo,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/rcsinfo,v
rename from vcs/tests/test_repo/cvs/CVSROOT/rcsinfo,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/rcsinfo,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/taginfo b/transifex/vcs/tests/test_repo/cvs/CVSROOT/taginfo
rename from vcs/tests/test_repo/cvs/CVSROOT/taginfo
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/taginfo
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/taginfo,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/taginfo,v
rename from vcs/tests/test_repo/cvs/CVSROOT/taginfo,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/taginfo,v
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/val-tags b/transifex/vcs/tests/test_repo/cvs/CVSROOT/val-tags
rename from vcs/tests/test_repo/cvs/CVSROOT/val-tags
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/val-tags
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/verifymsg b/transifex/vcs/tests/test_repo/cvs/CVSROOT/verifymsg
rename from vcs/tests/test_repo/cvs/CVSROOT/verifymsg
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/verifymsg
diff --git a/vcs/tests/test_repo/cvs/CVSROOT/verifymsg,v b/transifex/vcs/tests/test_repo/cvs/CVSROOT/verifymsg,v
rename from vcs/tests/test_repo/cvs/CVSROOT/verifymsg,v
rename to transifex/vcs/tests/test_repo/cvs/CVSROOT/verifymsg,v
diff --git a/vcs/tests/test_repo/cvs/Test-CVS/po/pt_BR.po,v b/transifex/vcs/tests/test_repo/cvs/Test-CVS/po/pt_BR.po,v
rename from vcs/tests/test_repo/cvs/Test-CVS/po/pt_BR.po,v
rename to transifex/vcs/tests/test_repo/cvs/Test-CVS/po/pt_BR.po,v
diff --git a/vcs/tests/test_repo/cvs/Test-CVS/po/test_repo.pot,v b/transifex/vcs/tests/test_repo/cvs/Test-CVS/po/test_repo.pot,v
rename from vcs/tests/test_repo/cvs/Test-CVS/po/test_repo.pot,v
rename to transifex/vcs/tests/test_repo/cvs/Test-CVS/po/test_repo.pot,v
diff --git a/vcs/tests/test_repo/git/.git/COMMIT_EDITMSG b/transifex/vcs/tests/test_repo/git/.git/COMMIT_EDITMSG
rename from vcs/tests/test_repo/git/.git/COMMIT_EDITMSG
rename to transifex/vcs/tests/test_repo/git/.git/COMMIT_EDITMSG
diff --git a/vcs/tests/test_repo/git/.git/HEAD b/transifex/vcs/tests/test_repo/git/.git/HEAD
rename from vcs/tests/test_repo/git/.git/HEAD
rename to transifex/vcs/tests/test_repo/git/.git/HEAD
diff --git a/vcs/tests/test_repo/git/.git/config b/transifex/vcs/tests/test_repo/git/.git/config
rename from vcs/tests/test_repo/git/.git/config
rename to transifex/vcs/tests/test_repo/git/.git/config
diff --git a/vcs/tests/test_repo/git/.git/description b/transifex/vcs/tests/test_repo/git/.git/description
rename from vcs/tests/test_repo/git/.git/description
rename to transifex/vcs/tests/test_repo/git/.git/description
diff --git a/vcs/tests/test_repo/git/.git/hooks/applypatch-msg b/transifex/vcs/tests/test_repo/git/.git/hooks/applypatch-msg
rename from vcs/tests/test_repo/git/.git/hooks/applypatch-msg
rename to transifex/vcs/tests/test_repo/git/.git/hooks/applypatch-msg
diff --git a/vcs/tests/test_repo/git/.git/hooks/commit-msg b/transifex/vcs/tests/test_repo/git/.git/hooks/commit-msg
rename from vcs/tests/test_repo/git/.git/hooks/commit-msg
rename to transifex/vcs/tests/test_repo/git/.git/hooks/commit-msg
diff --git a/vcs/tests/test_repo/git/.git/hooks/post-commit b/transifex/vcs/tests/test_repo/git/.git/hooks/post-commit
rename from vcs/tests/test_repo/git/.git/hooks/post-commit
rename to transifex/vcs/tests/test_repo/git/.git/hooks/post-commit
diff --git a/vcs/tests/test_repo/git/.git/hooks/post-receive b/transifex/vcs/tests/test_repo/git/.git/hooks/post-receive
rename from vcs/tests/test_repo/git/.git/hooks/post-receive
rename to transifex/vcs/tests/test_repo/git/.git/hooks/post-receive
diff --git a/vcs/tests/test_repo/git/.git/hooks/post-update b/transifex/vcs/tests/test_repo/git/.git/hooks/post-update
rename from vcs/tests/test_repo/git/.git/hooks/post-update
rename to transifex/vcs/tests/test_repo/git/.git/hooks/post-update
diff --git a/vcs/tests/test_repo/git/.git/hooks/pre-applypatch b/transifex/vcs/tests/test_repo/git/.git/hooks/pre-applypatch
rename from vcs/tests/test_repo/git/.git/hooks/pre-applypatch
rename to transifex/vcs/tests/test_repo/git/.git/hooks/pre-applypatch
diff --git a/vcs/tests/test_repo/git/.git/hooks/pre-commit b/transifex/vcs/tests/test_repo/git/.git/hooks/pre-commit
rename from vcs/tests/test_repo/git/.git/hooks/pre-commit
rename to transifex/vcs/tests/test_repo/git/.git/hooks/pre-commit
diff --git a/vcs/tests/test_repo/git/.git/hooks/pre-rebase b/transifex/vcs/tests/test_repo/git/.git/hooks/pre-rebase
rename from vcs/tests/test_repo/git/.git/hooks/pre-rebase
rename to transifex/vcs/tests/test_repo/git/.git/hooks/pre-rebase
diff --git a/vcs/tests/test_repo/git/.git/hooks/prepare-commit-msg b/transifex/vcs/tests/test_repo/git/.git/hooks/prepare-commit-msg
rename from vcs/tests/test_repo/git/.git/hooks/prepare-commit-msg
rename to transifex/vcs/tests/test_repo/git/.git/hooks/prepare-commit-msg
diff --git a/vcs/tests/test_repo/git/.git/hooks/update b/transifex/vcs/tests/test_repo/git/.git/hooks/update
rename from vcs/tests/test_repo/git/.git/hooks/update
rename to transifex/vcs/tests/test_repo/git/.git/hooks/update
diff --git a/vcs/tests/test_repo/git/.git/index b/transifex/vcs/tests/test_repo/git/.git/index
rename from vcs/tests/test_repo/git/.git/index
rename to transifex/vcs/tests/test_repo/git/.git/index
diff --git a/vcs/tests/test_repo/git/.git/info/exclude b/transifex/vcs/tests/test_repo/git/.git/info/exclude
rename from vcs/tests/test_repo/git/.git/info/exclude
rename to transifex/vcs/tests/test_repo/git/.git/info/exclude
diff --git a/vcs/tests/test_repo/git/.git/logs/HEAD b/transifex/vcs/tests/test_repo/git/.git/logs/HEAD
rename from vcs/tests/test_repo/git/.git/logs/HEAD
rename to transifex/vcs/tests/test_repo/git/.git/logs/HEAD
diff --git a/vcs/tests/test_repo/git/.git/logs/refs/heads/master b/transifex/vcs/tests/test_repo/git/.git/logs/refs/heads/master
rename from vcs/tests/test_repo/git/.git/logs/refs/heads/master
rename to transifex/vcs/tests/test_repo/git/.git/logs/refs/heads/master
diff --git a/vcs/tests/test_repo/git/.git/objects/09/1c24a40fd230ae8dfa2a99da29732eb1ab45fe b/transifex/vcs/tests/test_repo/git/.git/objects/09/1c24a40fd230ae8dfa2a99da29732eb1ab45fe
rename from vcs/tests/test_repo/git/.git/objects/09/1c24a40fd230ae8dfa2a99da29732eb1ab45fe
rename to transifex/vcs/tests/test_repo/git/.git/objects/09/1c24a40fd230ae8dfa2a99da29732eb1ab45fe
diff --git a/vcs/tests/test_repo/git/.git/objects/3b/d53a917d038e9d6173405cacd4858c11242b77 b/transifex/vcs/tests/test_repo/git/.git/objects/3b/d53a917d038e9d6173405cacd4858c11242b77
rename from vcs/tests/test_repo/git/.git/objects/3b/d53a917d038e9d6173405cacd4858c11242b77
rename to transifex/vcs/tests/test_repo/git/.git/objects/3b/d53a917d038e9d6173405cacd4858c11242b77
diff --git a/vcs/tests/test_repo/git/.git/objects/66/d4af183da292f86c329ecbfca0063430f52d2a b/transifex/vcs/tests/test_repo/git/.git/objects/66/d4af183da292f86c329ecbfca0063430f52d2a
rename from vcs/tests/test_repo/git/.git/objects/66/d4af183da292f86c329ecbfca0063430f52d2a
rename to transifex/vcs/tests/test_repo/git/.git/objects/66/d4af183da292f86c329ecbfca0063430f52d2a
diff --git a/vcs/tests/test_repo/git/.git/objects/73/8114ae3aa436b081a08260c8f7235fee181c8d b/transifex/vcs/tests/test_repo/git/.git/objects/73/8114ae3aa436b081a08260c8f7235fee181c8d
rename from vcs/tests/test_repo/git/.git/objects/73/8114ae3aa436b081a08260c8f7235fee181c8d
rename to transifex/vcs/tests/test_repo/git/.git/objects/73/8114ae3aa436b081a08260c8f7235fee181c8d
diff --git a/vcs/tests/test_repo/git/.git/objects/ba/c22ccb04bbb895844c1b0ce7cedf4ebc0c798f b/transifex/vcs/tests/test_repo/git/.git/objects/ba/c22ccb04bbb895844c1b0ce7cedf4ebc0c798f
rename from vcs/tests/test_repo/git/.git/objects/ba/c22ccb04bbb895844c1b0ce7cedf4ebc0c798f
rename to transifex/vcs/tests/test_repo/git/.git/objects/ba/c22ccb04bbb895844c1b0ce7cedf4ebc0c798f
diff --git a/vcs/tests/test_repo/git/.git/refs/heads/master b/transifex/vcs/tests/test_repo/git/.git/refs/heads/master
rename from vcs/tests/test_repo/git/.git/refs/heads/master
rename to transifex/vcs/tests/test_repo/git/.git/refs/heads/master
diff --git a/vcs/tests/test_repo/git/po/pt_BR.po b/transifex/vcs/tests/test_repo/git/po/pt_BR.po
rename from vcs/tests/test_repo/git/po/pt_BR.po
rename to transifex/vcs/tests/test_repo/git/po/pt_BR.po
diff --git a/vcs/tests/test_repo/git/po/test_repo.pot b/transifex/vcs/tests/test_repo/git/po/test_repo.pot
rename from vcs/tests/test_repo/git/po/test_repo.pot
rename to transifex/vcs/tests/test_repo/git/po/test_repo.pot
diff --git a/vcs/tests/test_repo/hg/po/pt_BR.po b/transifex/vcs/tests/test_repo/hg/po/pt_BR.po
rename from vcs/tests/test_repo/hg/po/pt_BR.po
rename to transifex/vcs/tests/test_repo/hg/po/pt_BR.po
diff --git a/vcs/tests/test_repo/hg/po/test_repo.pot b/transifex/vcs/tests/test_repo/hg/po/test_repo.pot
rename from vcs/tests/test_repo/hg/po/test_repo.pot
rename to transifex/vcs/tests/test_repo/hg/po/test_repo.pot
diff --git a/vcs/tests/test_repo/svn/checkout/.svn/entries b/transifex/vcs/tests/test_repo/svn/checkout/.svn/entries
rename from vcs/tests/test_repo/svn/checkout/.svn/entries
rename to transifex/vcs/tests/test_repo/svn/checkout/.svn/entries
diff --git a/vcs/tests/test_repo/svn/checkout/.svn/format b/transifex/vcs/tests/test_repo/svn/checkout/.svn/format
rename from vcs/tests/test_repo/svn/checkout/.svn/format
rename to transifex/vcs/tests/test_repo/svn/checkout/.svn/format
diff --git a/vcs/tests/test_repo/svn/checkout/branches/.svn/entries b/transifex/vcs/tests/test_repo/svn/checkout/branches/.svn/entries
rename from vcs/tests/test_repo/svn/checkout/branches/.svn/entries
rename to transifex/vcs/tests/test_repo/svn/checkout/branches/.svn/entries
diff --git a/vcs/tests/test_repo/svn/checkout/branches/.svn/format b/transifex/vcs/tests/test_repo/svn/checkout/branches/.svn/format
rename from vcs/tests/test_repo/svn/checkout/branches/.svn/format
rename to transifex/vcs/tests/test_repo/svn/checkout/branches/.svn/format
diff --git a/vcs/tests/test_repo/svn/checkout/tags/.svn/entries b/transifex/vcs/tests/test_repo/svn/checkout/tags/.svn/entries
rename from vcs/tests/test_repo/svn/checkout/tags/.svn/entries
rename to transifex/vcs/tests/test_repo/svn/checkout/tags/.svn/entries
diff --git a/vcs/tests/test_repo/svn/checkout/tags/.svn/format b/transifex/vcs/tests/test_repo/svn/checkout/tags/.svn/format
rename from vcs/tests/test_repo/svn/checkout/tags/.svn/format
rename to transifex/vcs/tests/test_repo/svn/checkout/tags/.svn/format
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/.svn/entries b/transifex/vcs/tests/test_repo/svn/checkout/trunk/.svn/entries
rename from vcs/tests/test_repo/svn/checkout/trunk/.svn/entries
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/.svn/entries
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/.svn/format b/transifex/vcs/tests/test_repo/svn/checkout/trunk/.svn/format
rename from vcs/tests/test_repo/svn/checkout/trunk/.svn/format
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/.svn/format
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/entries b/transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/entries
rename from vcs/tests/test_repo/svn/checkout/trunk/po/.svn/entries
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/entries
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/format b/transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/format
rename from vcs/tests/test_repo/svn/checkout/trunk/po/.svn/format
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/format
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/pt_BR.po.svn-base b/transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/pt_BR.po.svn-base
rename from vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/pt_BR.po.svn-base
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/pt_BR.po.svn-base
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/test_repo.pot.svn-base b/transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/test_repo.pot.svn-base
rename from vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/test_repo.pot.svn-base
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/po/.svn/text-base/test_repo.pot.svn-base
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/po/pt_BR.po b/transifex/vcs/tests/test_repo/svn/checkout/trunk/po/pt_BR.po
rename from vcs/tests/test_repo/svn/checkout/trunk/po/pt_BR.po
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/po/pt_BR.po
diff --git a/vcs/tests/test_repo/svn/checkout/trunk/po/test_repo.pot b/transifex/vcs/tests/test_repo/svn/checkout/trunk/po/test_repo.pot
rename from vcs/tests/test_repo/svn/checkout/trunk/po/test_repo.pot
rename to transifex/vcs/tests/test_repo/svn/checkout/trunk/po/test_repo.pot
diff --git a/vcs/tests/test_repo/svn/svnrepo/README.txt b/transifex/vcs/tests/test_repo/svn/svnrepo/README.txt
rename from vcs/tests/test_repo/svn/svnrepo/README.txt
rename to transifex/vcs/tests/test_repo/svn/svnrepo/README.txt
diff --git a/vcs/tests/test_repo/svn/svnrepo/conf/authz b/transifex/vcs/tests/test_repo/svn/svnrepo/conf/authz
rename from vcs/tests/test_repo/svn/svnrepo/conf/authz
rename to transifex/vcs/tests/test_repo/svn/svnrepo/conf/authz
diff --git a/vcs/tests/test_repo/svn/svnrepo/conf/passwd b/transifex/vcs/tests/test_repo/svn/svnrepo/conf/passwd
rename from vcs/tests/test_repo/svn/svnrepo/conf/passwd
rename to transifex/vcs/tests/test_repo/svn/svnrepo/conf/passwd
diff --git a/vcs/tests/test_repo/svn/svnrepo/conf/svnserve.conf b/transifex/vcs/tests/test_repo/svn/svnrepo/conf/svnserve.conf
rename from vcs/tests/test_repo/svn/svnrepo/conf/svnserve.conf
rename to transifex/vcs/tests/test_repo/svn/svnrepo/conf/svnserve.conf
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/current b/transifex/vcs/tests/test_repo/svn/svnrepo/db/current
rename from vcs/tests/test_repo/svn/svnrepo/db/current
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/current
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/format b/transifex/vcs/tests/test_repo/svn/svnrepo/db/format
rename from vcs/tests/test_repo/svn/svnrepo/db/format
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/format
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/fs-type b/transifex/vcs/tests/test_repo/svn/svnrepo/db/fs-type
rename from vcs/tests/test_repo/svn/svnrepo/db/fs-type
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/fs-type
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/revprops/0 b/transifex/vcs/tests/test_repo/svn/svnrepo/db/revprops/0
rename from vcs/tests/test_repo/svn/svnrepo/db/revprops/0
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/revprops/0
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/revprops/1 b/transifex/vcs/tests/test_repo/svn/svnrepo/db/revprops/1
rename from vcs/tests/test_repo/svn/svnrepo/db/revprops/1
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/revprops/1
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/revs/0 b/transifex/vcs/tests/test_repo/svn/svnrepo/db/revs/0
rename from vcs/tests/test_repo/svn/svnrepo/db/revs/0
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/revs/0
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/revs/1 b/transifex/vcs/tests/test_repo/svn/svnrepo/db/revs/1
rename from vcs/tests/test_repo/svn/svnrepo/db/revs/1
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/revs/1
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/uuid b/transifex/vcs/tests/test_repo/svn/svnrepo/db/uuid
rename from vcs/tests/test_repo/svn/svnrepo/db/uuid
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/uuid
diff --git a/vcs/tests/test_repo/svn/svnrepo/db/write-lock b/transifex/vcs/tests/test_repo/svn/svnrepo/db/write-lock
rename from vcs/tests/test_repo/svn/svnrepo/db/write-lock
rename to transifex/vcs/tests/test_repo/svn/svnrepo/db/write-lock
diff --git a/vcs/tests/test_repo/svn/svnrepo/format b/transifex/vcs/tests/test_repo/svn/svnrepo/format
rename from vcs/tests/test_repo/svn/svnrepo/format
rename to transifex/vcs/tests/test_repo/svn/svnrepo/format
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/post-commit.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-commit.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/post-commit.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-commit.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/post-lock.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-lock.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/post-lock.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-lock.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/post-revprop-change.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-revprop-change.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/post-revprop-change.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-revprop-change.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/post-unlock.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-unlock.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/post-unlock.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/post-unlock.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/pre-commit.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-commit.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/pre-commit.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-commit.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/pre-lock.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-lock.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/pre-lock.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-lock.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/pre-revprop-change.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-revprop-change.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/pre-revprop-change.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-revprop-change.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/pre-unlock.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-unlock.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/pre-unlock.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/pre-unlock.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/hooks/start-commit.tmpl b/transifex/vcs/tests/test_repo/svn/svnrepo/hooks/start-commit.tmpl
rename from vcs/tests/test_repo/svn/svnrepo/hooks/start-commit.tmpl
rename to transifex/vcs/tests/test_repo/svn/svnrepo/hooks/start-commit.tmpl
diff --git a/vcs/tests/test_repo/svn/svnrepo/locks/db-logs.lock b/transifex/vcs/tests/test_repo/svn/svnrepo/locks/db-logs.lock
rename from vcs/tests/test_repo/svn/svnrepo/locks/db-logs.lock
rename to transifex/vcs/tests/test_repo/svn/svnrepo/locks/db-logs.lock
diff --git a/vcs/tests/test_repo/svn/svnrepo/locks/db.lock b/transifex/vcs/tests/test_repo/svn/svnrepo/locks/db.lock
rename from vcs/tests/test_repo/svn/svnrepo/locks/db.lock
rename to transifex/vcs/tests/test_repo/svn/svnrepo/locks/db.lock
diff --git a/vcs/tests/test_svn.py b/transifex/vcs/tests/test_svn.py
rename from vcs/tests/test_svn.py
rename to transifex/vcs/tests/test_svn.py
diff --git a/vcs/views.py b/transifex/vcs/views.py
rename from vcs/views.py
rename to transifex/vcs/views.py

Reply all
Reply to author
Forward
0 new messages