diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-11-16 23:28:33 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-11-16 23:28:33 +0100 |
commit | 98b2ff68d82090bc0ec951a499580a682e4adff3 (patch) | |
tree | 30fbf7c8465fc348a6b0f0e292a87fa481e208a7 /chimere/settings.py.example | |
parent | 15f7f579eb1e3c9fec03cd58b83d132a275d9bb0 (diff) | |
download | Chimère-98b2ff68d82090bc0ec951a499580a682e4adff3.tar.bz2 Chimère-98b2ff68d82090bc0ec951a499580a682e4adff3.zip |
Simplify the management of tiny urls
Don't save the current window and avoid the opening of a window
considered has a popup
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'), ) |