Commit dce5b60f38f986c971da408ba969837d0a113e3e

Authored by Gust
Committed by Luciano Prestes
1 parent 9332d182

Remove jenkins

colab/plugins/jenkins/__init__.py
... ... @@ -1,3 +0,0 @@
1   -
2   -
3   -default_app_config = 'colab.plugins.jenkins.apps.ProxyJenkinsAppConfig'
colab/plugins/jenkins/apps.py
... ... @@ -1,16 +0,0 @@
1   -
2   -from django.utils.translation import ugettext_lazy as _
3   -
4   -from ..utils.apps import ColabProxiedAppConfig
5   -
6   -
7   -class ProxyJenkinsAppConfig(ColabProxiedAppConfig):
8   - name = 'colab.plugins.jenkins'
9   - verbose_name = 'Jenkins Proxy'
10   -
11   - menu = {
12   - 'title': _('Code'),
13   - 'links': (
14   - (_('Continuos Integration'), ''),
15   - ),
16   - }
colab/plugins/jenkins/data_api.py
... ... @@ -1,7 +0,0 @@
1   -from colab.plugins.utils.proxy_data_api import ProxyDataAPI
2   -
3   -
4   -class JenkinsDataAPI(ProxyDataAPI):
5   -
6   - def fetch_data(self):
7   - pass
colab/plugins/jenkins/diazo.xml
... ... @@ -1,27 +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   -
12   - <drop attributes="style" css:content="#main-table" />
13   -
14   - <after theme-children="/html/head">
15   - <script>jQuery.noConflict();</script>
16   - <style>
17   - #breadcrumbs {
18   - border: 0 !important;
19   - }
20   -
21   - #right-top-nav {
22   - margin-right: 5em !important;
23   - }
24   - </style>
25   - </after>
26   -
27   -</rules>
colab/plugins/jenkins/models.py
colab/plugins/jenkins/urls.py
... ... @@ -1,10 +0,0 @@
1   -
2   -from django.conf.urls import patterns, url
3   -
4   -from .views import JenkinsProxyView
5   -
6   -
7   -urlpatterns = patterns('',
8   - # Jenkins URLs
9   - url(r'^(?P<path>.*)$', JenkinsProxyView.as_view(), name='jenkins'),
10   -)
colab/plugins/jenkins/views.py
... ... @@ -1,6 +0,0 @@
1   -
2   -from ..utils.views import ColabProxyView
3   -
4   -
5   -class JenkinsProxyView(ColabProxyView):
6   - app_label = 'jenkins'
colab/urls.py
... ... @@ -39,7 +39,6 @@ urlpatterns = patterns(&#39;&#39;,
39 39 url(r'^gitlab/', include('colab.plugins.gitlab.urls')),
40 40 url(r'^mezuro/', include('colab.plugins.mezuro.urls')),
41 41 url(r'^social/', include('colab.plugins.noosfero.urls')),
42   - url(r'^ci/', include('colab.plugins.jenkins.urls')),
43 42  
44 43 url(r'', include('colab.plugins.urls')),
45 44 )
... ...