Mercurial > public > sg101
diff gpp/gcalendar/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/gcalendar/forms.py Sat Apr 11 19:45:17 2009 +0000 +++ b/gpp/gcalendar/forms.py Sat Apr 11 22:50:56 2009 +0000 @@ -4,6 +4,7 @@ import datetime import pytz from django import forms +from django.conf import settings from gcalendar.models import Event @@ -80,19 +81,14 @@ class Media: css = { - 'all': ('js/markitup/skins/markitup/style.css', - 'js/markitup/sets/markdown/style.css', - 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/redmond/jquery-ui.css', - 'css/gcalendar.css', - ) + 'all': settings.GPP_THIRD_PARTY_CSS['markitup'] + \ + settings.GPP_THIRD_PARTY_CSS['jquery-ui'] + \ + ('css/gcalendar.css', ) } - js = ( - 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', - 'js/markitup/jquery.markitup.pack.js', - 'js/markitup/sets/markdown/set.js', - 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/jquery-ui.js', - 'js/gcalendar.js', - ) + js = settings.GPP_THIRD_PARTY_JS['jquery'] + \ + settings.GPP_THIRD_PARTY_JS['markitup'] + \ + settings.GPP_THIRD_PARTY_JS['jquery-ui'] + \ + ('js/gcalendar.js', ) def __init__(self, *args, **kwargs): initial = kwargs.get('initial', {})