Commit b13054e8f6f783e66e742eb2d932096ff76a4fd3
1 parent
432a5e30
Exists in
master
and in
23 other branches
Removed mezuro from plugins
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br> Signed-off-by: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Showing
11 changed files
with
0 additions
and
53 deletions
Show diff stats
colab/plugins/mezuro/__init__.py
colab/plugins/mezuro/admin.py
colab/plugins/mezuro/apps.py
colab/plugins/mezuro/diazo.xml
@@ -1,18 +0,0 @@ | @@ -1,18 +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 | - | ||
11 | - <!-- Add mezuro properties --> | ||
12 | - <merge attributes="data-page" css:theme="body" css:content="body" /> | ||
13 | - <merge attributes="data-project-id" css:theme="body" css:content="body" /> | ||
14 | - | ||
15 | - <drop css:content=".navbar" /> <!-- Mezuro's navbar links are part of Colab's menu --> | ||
16 | - <drop css:theme="script[src$='bootstrap.min.js']" /> <!-- Fixes top menu dropdown by removing Colab's bootstrap JS --> | ||
17 | - <drop css:theme="script[src*='jquery']:not([src*='cookie']):not([src*='debouncedresize'])" /> <!-- Fixes accordion conflict by removing Colab's JQuery. But keeps the JS for cookie and debouncedresize --> | ||
18 | -</rules> |
colab/plugins/mezuro/migrations/__init__.py
colab/plugins/mezuro/models.py
colab/plugins/mezuro/templates/proxy/mezuro.html
@@ -1 +0,0 @@ | @@ -1 +0,0 @@ | ||
1 | -{% extends 'base.html' %} |
colab/plugins/mezuro/tests.py
colab/plugins/mezuro/urls.py
colab/plugins/mezuro/views.py
colab/urls.py
@@ -21,7 +21,6 @@ urlpatterns = patterns('', | @@ -21,7 +21,6 @@ urlpatterns = patterns('', | ||
21 | url(r'^colab/admin/', include(admin.site.urls)), | 21 | url(r'^colab/admin/', include(admin.site.urls)), |
22 | 22 | ||
23 | url(r'^archives/', include('colab.super_archives.urls')), | 23 | url(r'^archives/', include('colab.super_archives.urls')), |
24 | - url(r'^mezuro/', include('colab.plugins.mezuro.urls')), | ||
25 | 24 | ||
26 | url(r'', include('colab.plugins.urls')), | 25 | url(r'', include('colab.plugins.urls')), |
27 | ) | 26 | ) |