diff --git a/colab/plugins/redmine/__init__.py b/colab/plugins/redmine/__init__.py
deleted file mode 100644
index 4f1ae83..0000000
--- a/colab/plugins/redmine/__init__.py
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-default_app_config = 'colab.plugins.redmine.apps.ProxyRedmineAppConfig'
diff --git a/colab/plugins/redmine/apps.py b/colab/plugins/redmine/apps.py
deleted file mode 100644
index 8c190b8..0000000
--- a/colab/plugins/redmine/apps.py
+++ /dev/null
@@ -1,7 +0,0 @@
-
-from ..utils.apps import ColabProxiedAppConfig
-
-
-class ProxyRedmineAppConfig(ColabProxiedAppConfig):
- name = 'colab.plugins.redmine'
- verbose_name = 'Redmine Proxy'
diff --git a/colab/plugins/redmine/data_api.py b/colab/plugins/redmine/data_api.py
deleted file mode 100644
index f43b6a1..0000000
--- a/colab/plugins/redmine/data_api.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from colab.plugins.utils.proxy_data_api import ProxyDataAPI
-
-
-class RedmineDataAPI(ProxyDataAPI):
-
- def fetch_data(self):
- pass
diff --git a/colab/plugins/redmine/diazo.xml b/colab/plugins/redmine/diazo.xml
deleted file mode 100644
index ba2fad0..0000000
--- a/colab/plugins/redmine/diazo.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/colab/plugins/redmine/models.py b/colab/plugins/redmine/models.py
deleted file mode 100644
index e69de29..0000000
--- a/colab/plugins/redmine/models.py
+++ /dev/null
diff --git a/colab/plugins/redmine/urls.py b/colab/plugins/redmine/urls.py
deleted file mode 100644
index d8e908b..0000000
--- a/colab/plugins/redmine/urls.py
+++ /dev/null
@@ -1,10 +0,0 @@
-
-from django.conf.urls import patterns, url
-
-from .views import RedmineProxyView
-
-
-urlpatterns = patterns('',
- # RedmineProxyView URLs
- url(r'^redmine/(?P.*)$', RedmineProxyView.as_view()),
-)
diff --git a/colab/plugins/redmine/views.py b/colab/plugins/redmine/views.py
deleted file mode 100644
index de1994e..0000000
--- a/colab/plugins/redmine/views.py
+++ /dev/null
@@ -1,7 +0,0 @@
-
-from ..utils.views import ColabProxyView
-
-
-class RedmineProxyView(ColabProxyView):
- app_label = 'redmine'
- diazo_theme_template = 'proxy/redmine.html'
--
libgit2 0.21.2