Commit dce5b60f38f986c971da408ba969837d0a113e3e
Committed by
Luciano Prestes
1 parent
9332d182
Exists in
master
and in
31 other branches
Remove jenkins
Showing
8 changed files
with
0 additions
and
70 deletions
Show diff stats
colab/plugins/jenkins/__init__.py
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
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
colab/plugins/jenkins/views.py
colab/urls.py
| ... | ... | @@ -39,7 +39,6 @@ urlpatterns = patterns('', |
| 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 | ) | ... | ... |