Skip to content

Commit

Permalink
site name corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezekiah committed Jul 1, 2013
1 parent 642ddea commit f9eafc1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
7 changes: 4 additions & 3 deletions outside/sites.py
Expand Up @@ -3,6 +3,7 @@

# context variables

from django.conf import settings


OUTSIDE_SITES_AVAILABLE = [
Expand All @@ -25,8 +26,8 @@
'long_content': 'archiPolis est un consortium <a href="http://www.corpus-ir.fr/" target="_blank">IR Corpus</a> créé pour inventorier, sauver les enquêtes anciennes et organiser la collecte de celles en cours et à venir en sciences sociales du politique. Il a aussi pour objet de proposer une définition élargie et contextualisée de l’enquête et des solutions de conservation pérenne. Pour plus d’information sur archiPolis, <a href="http://bequali.fr/archipolis/">cliquez ici</a>. '
},
{
'name':'app',
'url':'/reanalyse',
'name':'reanalyse',
'url':'/reanalyse' if settings.DEBUG == True else '/app',
'label':'enQ<span class="cyan">uêtes</span>',
'title':'l’instrument de DIME-SHS',
'content':'La banque d’enquêtes qualitatives',
Expand All @@ -35,7 +36,7 @@

},
{
'name':'reanalyse',
'name':'reanalyse-blog',
'url':'/reanalyse-blog',
'label':'réA<span class="cyan">nalyse</span>',
'title':'le projet ANR',
Expand Down
5 changes: 2 additions & 3 deletions outside/templates/enquete/middle.html
Expand Up @@ -125,11 +125,10 @@

<div class="page" data-page-slug="{{ page.slug }}">

<!--[if lte IE 8]>
<!--[if lte IE 8]>
<h3 style="color:red"><span class="icon-warning-sign"></span>
Ce site n'est pas compatible avec les versions internet explorer inférieures à la 9,
veuillez utiliser au minimum IE9, <a href="http://www.google.fr/intl/fr/chrome/browser/">Google Chrome </a>ou <a href="http://www.mozilla.org/fr/firefox/new/">Firefox</a> </H2>
Ce site n'est pas compatible avec les versions d'Internet Explorer inférieures à la version 9, veuillez utiliser au minimum IE9, <a href="http://www.google.fr/intl/fr/chrome/browser/">Google Chrome </a>ou <a href="http://www.mozilla.org/fr/firefox/new/">Firefox</a> </H2>
<![endif]-->
Expand Down
3 changes: 1 addition & 2 deletions outside/templates/hub/middle.html
Expand Up @@ -151,8 +151,7 @@
<!--[if lte IE 8]>
<h3 style="color:red"><span class="icon-warning-sign"></span>
Ce site n'est pas compatible avec les versions internet explorer inférieures à la 9,
veuillez utiliser au minimum IE9, <a href="http://www.google.fr/intl/fr/chrome/browser/">Google Chrome </a>ou <a href="http://www.mozilla.org/fr/firefox/new/">Firefox</a> </H2>
Ce site n'est pas compatible avec les versions d'Internet Explorer inférieures à la version 9, veuillez utiliser au minimum IE9, <a href="http://www.google.fr/intl/fr/chrome/browser/">Google Chrome </a>ou <a href="http://www.mozilla.org/fr/firefox/new/">Firefox</a> </H2>
<![endif]-->
Expand Down
9 changes: 6 additions & 3 deletions settings.py
Expand Up @@ -3,8 +3,11 @@
# Django settings for reanalyse project.
# pierre.jdlf started working hardly !-!-!-!

import os
DEBUG = True
from settingsprivate import *

import os, sys


TEMPLATE_DEBUG = DEBUG

#REANALYSEURL
Expand All @@ -19,7 +22,7 @@
#EMAIL_HOST
#EMAIL_PORT
# .. are defined in :
from settingsprivate import *



REANALYSELOGPATH = REANALYSEPROJECTPATH + 'logs/' # needs to be accessible by www-data
Expand Down

0 comments on commit f9eafc1

Please sign in to comment.