dependencies upgraded, some removed and migrations added in order to prepare

Django CMS 3 migration
This commit is contained in:
Serghei Mihai 2014-10-23 14:44:54 +02:00
parent c4fce7062a
commit ec271c5637
10 changed files with 67 additions and 31 deletions

7
README
View File

@ -27,10 +27,3 @@ How to save users settings
URL of the main agglo site URL of the main agglo site
Stacks
======
You can plug editable content in any template using Django-CMS stacks::
{% load stack_tags %}
{% stack 'my_content_id' %}

View File

@ -47,7 +47,6 @@ class CustomIndexDashboard(Dashboard):
'cms.models.pagemodel.Page', 'cms.models.pagemodel.Page',
'portail_citoyen.apps.data_source_plugin.models.DataSource', 'portail_citoyen.apps.data_source_plugin.models.DataSource',
'feed_plugin.models.Feed', 'feed_plugin.models.Feed',
'stacks.*',
), ),
)) ))

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models
class Migration(SchemaMigration):
def forwards(self, orm):
pass
def backwards(self, orm):
pass
models = {
}
complete_apps = ['compte_agglo_montpellier']

View File

@ -0,0 +1,28 @@
# -*- coding: utf-8 -*-
from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import DataMigration
from django.db import models
from djangocms_text_ckeditor.models import Text
class Migration(DataMigration):
def forwards(self, orm):
"Write your forwards methods here."
# Note: Don't use "from appname.models import ModelName".
# Use orm.ModelName to refer to models in this application,
# and orm['appname.ModelName'] for models in other applications.
for plugin in Text.objects.filter(plugin_type="TextPlugin"):
plugin.body = '<div class="block">%s</div>' % plugin.body
plugin.save()
def backwards(self, orm):
"Write your backwards methods here."
models = {
}
complete_apps = ['compte_agglo_montpellier']
symmetrical = True

View File

@ -96,7 +96,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request', 'django.core.context_processors.request',
'django.contrib.messages.context_processors.messages', 'django.contrib.messages.context_processors.messages',
'django.core.context_processors.static', 'django.core.context_processors.static',
'cms.context_processors.media', 'cms.context_processors.cms_settings',
'sekizai.context_processors.sekizai', 'sekizai.context_processors.sekizai',
'portail_citoyen.context_processors.portail_citoyen', 'portail_citoyen.context_processors.portail_citoyen',
'authentic2.context_processors.a2_processor', 'authentic2.context_processors.a2_processor',
@ -158,21 +158,15 @@ INSTALLED_APPS = (
'admin_tools.dashboard', 'admin_tools.dashboard',
'django.contrib.admin', 'django.contrib.admin',
'captcha', 'captcha',
'stacks',
'django_select2', 'django_select2',
'registration', 'registration',
'south', 'south',
'mptt', 'mptt',
'sekizai', 'sekizai',
'cms', 'cms',
'cms.plugins.file', 'djangocms_text_ckeditor',
'cms.plugins.googlemap', 'djangocms_link',
'cms.plugins.link', 'djangocms_video',
'cms.plugins.picture',
'cms.plugins.snippet',
'cms.plugins.teaser',
'cms.plugins.video',
'cmsplugin_text_wrapper',
'cms_ajax_text_plugin', 'cms_ajax_text_plugin',
'menus', 'menus',
'authentic2', 'authentic2',

View File

@ -1,5 +1,5 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n %} {% load i18n cms_tags %}
{% load staticfiles %} {% load staticfiles %}
{% load sekizai_tags %} {% load sekizai_tags %}
@ -21,8 +21,7 @@ class="narrow-page"
{% block content %} {% block content %}
<div id="welcome"> <div id="welcome">
{% load stack_tags %} {% static_placeholder 'welcome' %}
{% stack 'welcome' %}
</div> </div>
{% if messages %} {% if messages %}

View File

@ -1,5 +1,5 @@
{% extends "base.html" %} {% extends "base.html" %}
{% load i18n stack_tags %} {% load i18n cms_tags %}
{% block bodyargs %} {% block bodyargs %}
class="narrow-page" class="narrow-page"
@ -14,7 +14,7 @@ class="narrow-page"
{% block content %} {% block content %}
<div id="welcome"> <div id="welcome">
{% stack 'registration' %} {% static_placeholder 'registration' %}
</div> </div>
<div class="right"> <div class="right">

View File

@ -4,18 +4,19 @@
-f http://repos.entrouvert.org/tipi-payment-plugin.git/ -f http://repos.entrouvert.org/tipi-payment-plugin.git/
python-entrouvert python-entrouvert
git+git://repos.entrouvert.org/wcsinst#egg=wcsinst-0.9999999999<1.0 git+git://repos.entrouvert.org/wcsinst#egg=wcsinst-0.9999999999<1.0
git+git://repos.entrouvert.org/portail-citoyen#egg=portail-citoyen-0.1<1.0 git+git://repos.entrouvert.org/portail-citoyen
git+git://repos.entrouvert.org/portail-citoyen-announces#egg=portail-citoyen-announces-0.1.99999>=0.1,<0.2 git+git://repos.entrouvert.org/portail-citoyen-announces#egg=portail-citoyen-announces-0.1.99999>=0.1,<0.2
tipi-payment-plugin tipi-payment-plugin
cmsplugin-embedded-menu==0.0.7 cmsplugin-embedded-menu==0.0.7
cmsplugin-text-wrapper==0.5
gunicorn gunicorn
demjson demjson
django-simple-captcha==0.4.0 django-simple-captcha==0.4.0
raven raven
south>=0.8.4 south>=0.8.4
-f https://repos.entrouvert.org/django-cms.git/ django-cms>=3.0,<=3.0.3
djangocms-stacks
requests_oauthlib requests_oauthlib
django-cms-ajax-text-plugin djangocms-text-ckeditor
django-cms-ajax-text-plugin>=2.1.0
python-openid python-openid
djangocms-link
djangocms-video

View File

@ -126,15 +126,17 @@ setup(name="compte-agglo-montpellier",
'portail-citoyen<1.0', 'portail-citoyen<1.0',
'portail-citoyen-announces>=0.1,<0.2', 'portail-citoyen-announces>=0.1,<0.2',
'cmsplugin-embedded-menu==0.0.7', 'cmsplugin-embedded-menu==0.0.7',
'cmsplugin-text-wrapper==0.5',
'gunicorn', 'gunicorn',
'demjson', 'demjson',
'django-simple-captcha==0.4.0', 'django-simple-captcha==0.4.0',
'raven', 'raven',
'wcsinst<1.0', 'wcsinst<1.0',
'south>=0.8.4', 'south>=0.8.4',
'djangocms-stacks', 'django-cms>=3.0,<=3.0.3',
'django-cms-ajax-text-plugin', 'djangocms-text-ckeditor',
'django-cms-ajax-text-plugin>=2.1.0'
'djangocms-link',
'djangocms-video',
'tipi-payment-plugin', 'tipi-payment-plugin',
], ],
dependency_links = [ dependency_links = [