From f5852778520c7ed6fe4ecfea0837d77534901b29 Mon Sep 17 00:00:00 2001
From: Michael Ziegler
Date: Mon, 18 May 2009 23:54:37 +0200
Subject: [PATCH 1/2] added hint about image size
---
pyweb/mumble/urls.py | 6 +++---
template/mumble/mumble.htm | 2 ++
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/pyweb/mumble/urls.py b/pyweb/mumble/urls.py
index d18fb4e..632db00 100644
--- a/pyweb/mumble/urls.py
+++ b/pyweb/mumble/urls.py
@@ -18,7 +18,7 @@ from django.conf.urls.defaults import *
urlpatterns = patterns(
'mumble.views',
- ( r'(?P\d+)/texture.jpg', 'showTexture' ),
- ( r'(?P\d+)', 'show' ),
- ( r'$', 'mumbles' ),
+ ( r'(?P\d+)/texture.jpg', 'showTexture' ),
+ ( r'(?P\d+)', 'show' ),
+ ( r'$', 'mumbles' ),
)
diff --git a/template/mumble/mumble.htm b/template/mumble/mumble.htm
index 9c3c7c2..90dec4d 100644
--- a/template/mumble/mumble.htm
+++ b/template/mumble/mumble.htm
@@ -44,6 +44,8 @@
You can upload an image that you would like to use as your user texture here.
Your current texture is:
+ Hint: The texture image needs to be 600x60 in size. If you upload an image with
+ a different size, it will be resized accordingly.