diff options
Diffstat (limited to 'chimere/settings.py.example')
-rw-r--r-- | chimere/settings.py.example | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chimere/settings.py.example b/chimere/settings.py.example index 58d12f3..c0f6cb6 100644 --- a/chimere/settings.py.example +++ b/chimere/settings.py.example @@ -84,13 +84,13 @@ MEDIA_URL = '/' + EXTRA_URL + 'static/' # share with SHARE_NETWORKS = ( -("Email", 'mailto:?subject=TEXT&body=URL', +("Email", 'mailto:?subject=%(text)s&body=%(url)s', MEDIA_URL + 'icons/email.png'), -("Facebook", 'http://www.facebook.com/sharer.php?t=TEXT&u=URL', +("Facebook", 'http://www.facebook.com/sharer.php?t=%(text)s&u=%(url)s', MEDIA_URL + 'icons/facebook.png'), -("Twitter", 'http://twitter.com/home?status=TEXT URL', +("Twitter", 'http://twitter.com/home?status=%(text)s %(url)s', MEDIA_URL + 'icons/twitter.png'), -("Identi.ca", 'http://identi.ca/index.php?action=newnotice&status_textarea=TEXT URL', +("Identi.ca", 'http://identi.ca/index.php?action=newnotice&status_textarea=%(text)s %(url)s', MEDIA_URL + 'icons/identica.png'), ) |