Mercurial > public > sg101
comparison gpp/settings.py @ 484:bbbc357ac5f3
For #233; first commit for adding social media sharing buttons to news stories.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 18 Oct 2011 00:04:37 +0000 |
parents | 9a4bffdf37c3 |
children | f0f3966ea44f |
comparison
equal
deleted
inserted
replaced
483:3ac558402014 | 484:bbbc357ac5f3 |
---|---|
287 QUEUE_BACKEND = 'redisd' | 287 QUEUE_BACKEND = 'redisd' |
288 QUEUE_REDIS_CONNECTION = 'localhost:6379' | 288 QUEUE_REDIS_CONNECTION = 'localhost:6379' |
289 QUEUE_REDIS_DB = 0 | 289 QUEUE_REDIS_DB = 0 |
290 | 290 |
291 ####################################################################### | 291 ####################################################################### |
292 # Open Graph Protocol related settings | |
293 ####################################################################### | |
294 OGP_DEFAULT_IMAGE = 'http://surfguitar101.com/media/podcast/podcast_logo.jpg' | |
295 OGP_FB_ID = '100001558124013' | |
296 | |
297 ####################################################################### | |
292 # URL's of 3rd party Javascript and CSS files. | 298 # URL's of 3rd party Javascript and CSS files. |
293 # These dictionaries are used by core/templatetags/script_tags, and | 299 # These dictionaries are used by core/templatetags/script_tags, and |
294 # should also be used by developers when creating form media classes. | 300 # should also be used by developers when creating form media classes. |
295 GPP_THIRD_PARTY_JS = { | 301 GPP_THIRD_PARTY_JS = { |
296 'jquery': ( | 302 'jquery': [ |
297 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js', | 303 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js', |
298 ), | 304 ], |
299 'jquery-jeditable': ( | 305 'jquery-jeditable': [ |
300 'js/jquery.jeditable.mini.js', | 306 'js/jquery.jeditable.mini.js', |
301 ), | 307 ], |
302 'jquery-ui': ( | 308 'jquery-ui': [ |
303 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js', | 309 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js', |
304 ), | 310 ], |
305 'markitup': ( | 311 'markitup': [ |
306 'js/markitup/jquery.markitup.pack.js', | 312 'js/markitup/jquery.markitup.pack.js', |
307 'js/markitup/sets/markdown/set.js', | 313 'js/markitup/sets/markdown/set.js', |
308 ), | 314 ], |
309 'tiny_mce': ( | 315 'tiny_mce': [ |
310 'js/tiny_mce/tiny_mce.js', | 316 'js/tiny_mce/tiny_mce.js', |
311 'js/tiny_mce_init_std.js', | 317 'js/tiny_mce_init_std.js', |
312 ), | 318 ], |
319 'social': [ | |
320 'http://platform.twitter.com/widgets.js', | |
321 'https://apis.google.com/js/plusone.js', | |
322 ], | |
313 } | 323 } |
314 GPP_THIRD_PARTY_CSS = { | 324 GPP_THIRD_PARTY_CSS = { |
315 'jquery-ui': ( | 325 'jquery-ui': [ |
316 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/redmond/jquery-ui.css', | 326 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/themes/redmond/jquery-ui.css', |
317 ), | 327 ], |
318 'markitup': ( | 328 'markitup': [ |
319 'js/markitup/skins/markitup/style.css', | 329 'js/markitup/skins/markitup/style.css', |
320 'js/markitup/sets/markdown/style.css', | 330 'js/markitup/sets/markdown/style.css', |
321 ), | 331 ], |
322 } | 332 } |
323 | 333 |