summaryrefslogtreecommitdiff
path: root/chimere/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/settings.py')
-rw-r--r--chimere/settings.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/chimere/settings.py b/chimere/settings.py
index 3281277..6afb2af 100644
--- a/chimere/settings.py
+++ b/chimere/settings.py
@@ -81,6 +81,16 @@ MEDIA_ROOT = ROOT_PATH + 'static/'
# Example: "http://media.lawrence.com"
MEDIA_URL = '/' + EXTRA_URL + 'static/'
+# share with
+SHARE_NETWORKS = (
+("Facebook", 'http://www.facebook.com/sharer.php?t=TEXT&u=URL',
+ MEDIA_URL + 'icons/facebook.png'),
+("Twitter", 'http://twitter.com/home?status=TEXT URL',
+ MEDIA_URL + 'icons/twitter.png'),
+("Identi.ca", 'http://identi.ca/index.php?action=newnotice&status_textarea=TEXT URL',
+ MEDIA_URL + 'icons/identica.png'),
+)
+
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
# trailing slash.
# Examples: "http://foo.com/media/", "/media/".