diff gpp/downloads/forms.py @ 6:b6263ac72052

Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author Brian Neal <bgneal@gmail.com>
date Sat, 11 Apr 2009 22:50:56 +0000
parents dbd703f7d63a
children f408971657b9
line wrap: on
line diff
--- a/gpp/downloads/forms.py	Sat Apr 11 19:45:17 2009 +0000
+++ b/gpp/downloads/forms.py	Sat Apr 11 22:50:56 2009 +0000
@@ -4,6 +4,7 @@
 import os
 
 from django import forms
+from django.conf import settings
 
 from downloads.models import Download
 from downloads.models import AllowedExtension
@@ -34,12 +35,9 @@
         
     class Media:
         css = {
-            'all': ('js/markitup/skins/markitup/style.css',
-                    'js/markitup/sets/markdown/style.css')
+            'all': settings.GPP_THIRD_PARTY_CSS['markitup'],
         }
-        js = (
-            'js/jquery-1.2.6.min.js',
-            'js/downloads/add.js',
-            'js/markitup/jquery.markitup.pack.js',
-            'js/markitup/sets/markdown/set.js',
-        )
+        js = settings.GPP_THIRD_PARTY_JS['jquery'] + \
+             settings.GPP_THIRD_PARTY_JS['markitup'] + \
+            ('js/downloads/add.js', )
+