+1.3
+---
+
+* Retrait de auf.django.idle
+
+* Importer django.conf.settings plutôt que settings directement
+
1.2
---
# -*- encoding: utf-8 -*-
-import settings
from auf.django.references import models as ref
+from django.conf import settings
PROJET_TITRE_KEY = 'PROJET_TITRE'
text-indent: 0 !important;
width: auto !important;
}
+
+.actions li {
+ list-style-type: none;
+ display: inline;
+ padding: 0 1em;
+}
+
-{% load i18n theming_tags idle %}
+{% load i18n theming_tags %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% admin_media_prefix %}css/rtl.css{% endblock %}" />{% endif %}
{% render_theming_css %}
<script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% admin_media_prefix %}{% endfilter %}";</script>
-{% idle_head %}
{% block extrahead %}{% endblock %}
{% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
</head>
<!-- Container -->
<div id="container">
{% if not is_popup %}
- {% idle_box %}
<!-- Header -->
<div id="header">
<div id="branding">
-{% load idle %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
<title>{% block title %}AUF - {{ AUF_SITE }}{% endblock %}</title>
<link rel="icon" type="image/png" href="{{ STATIC_URL }}skin/images/favicon.ico" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}skin/css/auf.css" media="all"/>
- {% idle_head %}
{% block extrahead %}{% endblock %}
</head>
<body class="{% block bodyclass %}{% endblock %}">
- {% idle_box %}
-
<div id="header">
<div id="logo">
import sys, os
name = 'auf.django.skin'
-version = '1.2'
+version = '1.3'
setup(name=name,
version=version,
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
- dependency_links = [
- 'http://pypi.auf.org/auf.django.idle',
- ],
- install_requires=[
- # -*- Extra requirements: -*-
- 'auf.django.idle',
- ],
- entry_points="""
- # -*- Entry points: -*-
- """,
)