diff --git a/colab/plugins/mezuro/__init__.py b/colab/plugins/mezuro/__init__.py
deleted file mode 100644
index 68d3d02..0000000
--- a/colab/plugins/mezuro/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-default_app_config = 'colab.plugins.mezuro.apps.MezuroPluginAppConfig'
diff --git a/colab/plugins/mezuro/admin.py b/colab/plugins/mezuro/admin.py
deleted file mode 100644
index 4185d36..0000000
--- a/colab/plugins/mezuro/admin.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# from django.contrib import admin
-
-# Register your models here.
diff --git a/colab/plugins/mezuro/apps.py b/colab/plugins/mezuro/apps.py
deleted file mode 100644
index 6a406fd..0000000
--- a/colab/plugins/mezuro/apps.py
+++ /dev/null
@@ -1,7 +0,0 @@
-
-from ..utils.apps import ColabPluginAppConfig
-
-
-class MezuroPluginAppConfig(ColabPluginAppConfig):
- name = 'colab.plugins.mezuro'
- verbose_name = 'Mezuro Plugin'
diff --git a/colab/plugins/mezuro/diazo.xml b/colab/plugins/mezuro/diazo.xml
deleted file mode 100644
index 55fc7e2..0000000
--- a/colab/plugins/mezuro/diazo.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/colab/plugins/mezuro/migrations/__init__.py b/colab/plugins/mezuro/migrations/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/colab/plugins/mezuro/migrations/__init__.py
+++ /dev/null
diff --git a/colab/plugins/mezuro/models.py b/colab/plugins/mezuro/models.py
deleted file mode 100644
index 0b4331b..0000000
--- a/colab/plugins/mezuro/models.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# from django.db import models
-
-# Create your models here.
diff --git a/colab/plugins/mezuro/templates/proxy/mezuro.html b/colab/plugins/mezuro/templates/proxy/mezuro.html
deleted file mode 100644
index 21f5da2..0000000
--- a/colab/plugins/mezuro/templates/proxy/mezuro.html
+++ /dev/null
@@ -1 +0,0 @@
-{% extends 'base.html' %}
diff --git a/colab/plugins/mezuro/tests.py b/colab/plugins/mezuro/tests.py
deleted file mode 100644
index a79ca8b..0000000
--- a/colab/plugins/mezuro/tests.py
+++ /dev/null
@@ -1,3 +0,0 @@
-# from django.test import TestCase
-
-# Create your tests here.
diff --git a/colab/plugins/mezuro/urls.py b/colab/plugins/mezuro/urls.py
deleted file mode 100644
index c203869..0000000
--- a/colab/plugins/mezuro/urls.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from django.conf.urls import patterns, url
-from .views import MezuroProxyView
-
-urlpatterns = patterns('',
- # Gitlab URLs
- url(r'^(?P.*)$', MezuroProxyView.as_view(), name='mezuro'),
-)
diff --git a/colab/plugins/mezuro/views.py b/colab/plugins/mezuro/views.py
deleted file mode 100644
index eb6bcd1..0000000
--- a/colab/plugins/mezuro/views.py
+++ /dev/null
@@ -1,7 +0,0 @@
-
-from colab.plugins.views import ColabProxyView
-
-
-class MezuroProxyView(ColabProxyView):
- app_label = 'mezuro'
- diazo_theme_template = 'proxy/mezuro.html'
diff --git a/colab/urls.py b/colab/urls.py
index 7fedcec..bd9e229 100644
--- a/colab/urls.py
+++ b/colab/urls.py
@@ -21,7 +21,6 @@ urlpatterns = patterns('',
url(r'^colab/admin/', include(admin.site.urls)),
url(r'^archives/', include('colab.super_archives.urls')),
- url(r'^mezuro/', include('colab.plugins.mezuro.urls')),
url(r'', include('colab.plugins.urls')),
)
--
libgit2 0.21.2