savannah-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Savannah-cvs] [SCM] Savane-cleanup framework branch, master, updated. 7


From: Sylvain Beucler
Subject: [Savannah-cvs] [SCM] Savane-cleanup framework branch, master, updated. 7a86e8f87a564ead2ef2250c6f4261a5bd2a02dd
Date: Thu, 18 Feb 2010 20:22:15 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Savane-cleanup framework".

The branch, master has been updated
       via  7a86e8f87a564ead2ef2250c6f4261a5bd2a02dd (commit)
       via  32555a3e83d3c8af81867fa81a27905f1f547de3 (commit)
       via  618a5d2c9a2d2e619b723d40e57a07ce0a3dba5e (commit)
       via  345d7d04e12a423d3b899802f6d159c25cb2bc3f (commit)
      from  7de299df3ddfbec710aed9eee04b4b64ba3ae836 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/savane-cleanup/framework.git/commit/?id=7a86e8f87a564ead2ef2250c6f4261a5bd2a02dd

commit 7a86e8f87a564ead2ef2250c6f4261a5bd2a02dd
Author: Sylvain Beucler <address@hidden>
Date:   Thu Feb 18 21:22:15 2010 +0100

    Reuse default context processors

diff --git a/src/settings.py b/src/settings.py
index 23c0867..73e1de6 100644
--- a/src/settings.py
+++ b/src/settings.py
@@ -1,5 +1,7 @@
 # Django settings for savane project.
 
+from django.conf import global_settings
+
 DEBUG = True
 TEMPLATE_DEBUG = DEBUG
 
@@ -43,12 +45,7 @@ TEMPLATE_LOADERS = (
 #     'django.template.loaders.eggs.load_template_source',
 )
 
-TEMPLATE_CONTEXT_PROCESSORS = (
-    'django.core.context_processors.auth',
-    'django.core.context_processors.debug',
-    'django.core.context_processors.i18n',
-    'django.core.context_processors.media',
-    'django.core.context_processors.request',
+TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
     'savane.context_processors.media',
 )
 

http://git.savannah.gnu.org/cgit/savane-cleanup/framework.git/commit/?id=32555a3e83d3c8af81867fa81a27905f1f547de3

commit 32555a3e83d3c8af81867fa81a27905f1f547de3
Author: Sylvain Beucler <address@hidden>
Date:   Thu Feb 18 21:21:27 2010 +0100

    Fix double slash bug in base template

diff --git a/template/base.html b/template/base.html
index f8925e8..abced1e 100644
--- a/template/base.html
+++ b/template/base.html
@@ -5,8 +5,8 @@
     <title>Welcome [Savannah]</title>
     <meta name="Generator" content="Savane 3.1-cleanup, see 
http://savannah.nongnu.org/projects/savane-cleanup"; />
     <meta http-equiv="Content-Script-Type" content="text/javascript" />
-    <link rel="stylesheet" type="text/css" 
href="{{STATIC_MEDIA_URL}}/savane/css/Savannah.css" />
-    <link rel="icon" type="image/png" 
href="{{STATIC_MEDIA_URL}}/savane/images/icon.png" />
+    <link rel="stylesheet" type="text/css" 
href="{{STATIC_MEDIA_URL}}savane/css/Savannah.css" />
+    <link rel="icon" type="image/png" 
href="{{STATIC_MEDIA_URL}}savane/images/icon.png" />
     <meta name="Author" content="Copyright (C) 2000, 2001, 2002, 2003 Free 
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA 
Verbatim copying and distribution of this entire article is permitted in any 
medium, provided this notice is preserved" />
     <meta name="Keywords" content="Savannah,GNU, FSF, Free Software 
Foundation, GNU/Linux, Linux, Emacs, GCC, Unix, Free Software, Operating 
System, GNU Kernel, HURD, gnus, SourceForge" />
     <meta name="Description" content="Savannah is a central point for 
development, distribution and maintainance of Free Software. It allows 
contributors to easily join existing Free Software projects." />
@@ -14,7 +14,7 @@
   </head>
   <body>
     <div class="main_menu">
-      <a href="/"><img src="{{STATIC_MEDIA_URL}}/savane/images/floating.png" 
alt="Back to Savannah Homepage" border="0" width="118" height="100" /></a>
+      <a href="/"><img src="{{STATIC_MEDIA_URL}}savane/images/floating.png" 
alt="Back to Savannah Homepage" border="0" width="118" height="100" /></a>
       <a href="">Hosted Projects</a>
       <a href="">Help</a>
 

http://git.savannah.gnu.org/cgit/savane-cleanup/framework.git/commit/?id=618a5d2c9a2d2e619b723d40e57a07ce0a3dba5e

commit 618a5d2c9a2d2e619b723d40e57a07ce0a3dba5e
Author: Sylvain Beucler <address@hidden>
Date:   Thu Feb 18 21:20:58 2010 +0100

    Reuse default context processors

diff --git a/src/savane/context_processors.py b/src/savane/context_processors.py
index c0828d7..c8b2a7e 100644
--- a/src/savane/context_processors.py
+++ b/src/savane/context_processors.py
@@ -16,7 +16,7 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-import settings
+from django.conf import settings
 
 def media(request):
     """

http://git.savannah.gnu.org/cgit/savane-cleanup/framework.git/commit/?id=345d7d04e12a423d3b899802f6d159c25cb2bc3f

commit 345d7d04e12a423d3b899802f6d159c25cb2bc3f
Author: Sylvain Beucler <address@hidden>
Date:   Thu Feb 18 21:20:37 2010 +0100

    .fcgi need to be made executable

diff --git a/INSTALL b/INSTALL
index 08f2e66..c7c4bc3 100644
--- a/INSTALL
+++ b/INSTALL
@@ -86,7 +86,7 @@ httpd.conf:
   </Directory>
  
 
-savane.fcgi:
+savane.fcgi (chmod 755):
 
 #!/usr/bin/python
 import sys, os

-----------------------------------------------------------------------

Summary of changes:
 INSTALL                          |    2 +-
 src/savane/context_processors.py |    2 +-
 src/settings.py                  |    9 +++------
 template/base.html               |    6 +++---
 4 files changed, 8 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
Savane-cleanup framework




reply via email to

[Prev in Thread] Current Thread [Next in Thread]