Mercurial > public > sg101
diff gpp/membermap/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 | c515b7401078 |
line wrap: on
line diff
--- a/gpp/membermap/forms.py Sat Apr 11 19:45:17 2009 +0000 +++ b/gpp/membermap/forms.py Sat Apr 11 22:50:56 2009 +0000 @@ -2,6 +2,8 @@ Forms for the member map application. """ from django import forms +from django.conf import settings + from membermap.models import MapEntry @@ -13,12 +15,8 @@ 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/markitup/jquery.markitup.pack.js', - 'js/markitup/sets/markdown/set.js', - ) + js = settings.GPP_THIRD_PARTY_JS['markitup'] # vim: ts=4 sw=4