diff --git a/colab/plugins/jenkins/__init__.py b/colab/plugins/jenkins/__init__.py deleted file mode 100644 index ed3d231..0000000 --- a/colab/plugins/jenkins/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ - - -default_app_config = 'colab.plugins.jenkins.apps.ProxyJenkinsAppConfig' diff --git a/colab/plugins/jenkins/apps.py b/colab/plugins/jenkins/apps.py deleted file mode 100644 index e61576d..0000000 --- a/colab/plugins/jenkins/apps.py +++ /dev/null @@ -1,16 +0,0 @@ - -from django.utils.translation import ugettext_lazy as _ - -from ..utils.apps import ColabProxiedAppConfig - - -class ProxyJenkinsAppConfig(ColabProxiedAppConfig): - name = 'colab.plugins.jenkins' - verbose_name = 'Jenkins Proxy' - - menu = { - 'title': _('Code'), - 'links': ( - (_('Continuos Integration'), ''), - ), - } diff --git a/colab/plugins/jenkins/data_api.py b/colab/plugins/jenkins/data_api.py deleted file mode 100644 index 6d1e189..0000000 --- a/colab/plugins/jenkins/data_api.py +++ /dev/null @@ -1,7 +0,0 @@ -from colab.plugins.utils.proxy_data_api import ProxyDataAPI - - -class JenkinsDataAPI(ProxyDataAPI): - - def fetch_data(self): - pass diff --git a/colab/plugins/jenkins/diazo.xml b/colab/plugins/jenkins/diazo.xml deleted file mode 100644 index 7eacea4..0000000 --- a/colab/plugins/jenkins/diazo.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/colab/plugins/jenkins/models.py b/colab/plugins/jenkins/models.py deleted file mode 100644 index e69de29..0000000 --- a/colab/plugins/jenkins/models.py +++ /dev/null diff --git a/colab/plugins/jenkins/urls.py b/colab/plugins/jenkins/urls.py deleted file mode 100644 index 162ec0e..0000000 --- a/colab/plugins/jenkins/urls.py +++ /dev/null @@ -1,10 +0,0 @@ - -from django.conf.urls import patterns, url - -from .views import JenkinsProxyView - - -urlpatterns = patterns('', - # Jenkins URLs - url(r'^(?P.*)$', JenkinsProxyView.as_view(), name='jenkins'), -) diff --git a/colab/plugins/jenkins/views.py b/colab/plugins/jenkins/views.py deleted file mode 100644 index 5555788..0000000 --- a/colab/plugins/jenkins/views.py +++ /dev/null @@ -1,6 +0,0 @@ - -from ..utils.views import ColabProxyView - - -class JenkinsProxyView(ColabProxyView): - app_label = 'jenkins' diff --git a/colab/urls.py b/colab/urls.py index 4329e74..b230bc9 100644 --- a/colab/urls.py +++ b/colab/urls.py @@ -39,7 +39,6 @@ urlpatterns = patterns('', url(r'^gitlab/', include('colab.plugins.gitlab.urls')), url(r'^mezuro/', include('colab.plugins.mezuro.urls')), url(r'^social/', include('colab.plugins.noosfero.urls')), - url(r'^ci/', include('colab.plugins.jenkins.urls')), url(r'', include('colab.plugins.urls')), ) -- libgit2 0.21.2