Commit 9332d1825e6b9446aeef1ec0f5198929f7d0c0fc

Authored by Gust
Committed by Luciano Prestes
1 parent bdb676c6

Remove redmine

colab/plugins/redmine/__init__.py
... ... @@ -1,3 +0,0 @@
1   -
2   -
3   -default_app_config = 'colab.plugins.redmine.apps.ProxyRedmineAppConfig'
colab/plugins/redmine/apps.py
... ... @@ -1,7 +0,0 @@
1   -
2   -from ..utils.apps import ColabProxiedAppConfig
3   -
4   -
5   -class ProxyRedmineAppConfig(ColabProxiedAppConfig):
6   - name = 'colab.plugins.redmine'
7   - verbose_name = 'Redmine Proxy'
colab/plugins/redmine/data_api.py
... ... @@ -1,7 +0,0 @@
1   -from colab.plugins.utils.proxy_data_api import ProxyDataAPI
2   -
3   -
4   -class RedmineDataAPI(ProxyDataAPI):
5   -
6   - def fetch_data(self):
7   - pass
colab/plugins/redmine/diazo.xml
... ... @@ -1,11 +0,0 @@
1   -<rules
2   - xmlns="http://namespaces.plone.org/diazo"
3   - xmlns:css="http://namespaces.plone.org/diazo/css"
4   - xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5   -
6   - <before theme-children="/html/head" content-children="/html/head" />
7   - <before css:theme-children="#main-content" css:content-children="body" />
8   -
9   - <merge attributes="class" css:theme="body" css:content="body" />
10   - <drop css:content="#top-panel" />
11   -</rules>
colab/plugins/redmine/models.py
colab/plugins/redmine/urls.py
... ... @@ -1,10 +0,0 @@
1   -
2   -from django.conf.urls import patterns, url
3   -
4   -from .views import RedmineProxyView
5   -
6   -
7   -urlpatterns = patterns('',
8   - # RedmineProxyView URLs
9   - url(r'^redmine/(?P<path>.*)$', RedmineProxyView.as_view()),
10   -)
colab/plugins/redmine/views.py
... ... @@ -1,7 +0,0 @@
1   -
2   -from ..utils.views import ColabProxyView
3   -
4   -
5   -class RedmineProxyView(ColabProxyView):
6   - app_label = 'redmine'
7   - diazo_theme_template = 'proxy/redmine.html'