# HG changeset patch # User Atul Varma # Date 1204675997 21600 # Node ID 9853393348902880b8d95199f818f2117574dff5 # Parent 1d1f396c3264c43afabbd6b42871d91d45b51751 Changed the dir into which uploaded headers/footers are placed and added them to .hgignore. diff -r 1d1f396c3264 -r 985339334890 .hgignore --- a/.hgignore Tue Mar 04 17:43:40 2008 -0600 +++ b/.hgignore Tue Mar 04 18:13:17 2008 -0600 @@ -3,3 +3,5 @@ *.pyc temp_db *~ +media/hosted-content/footers/* +media/hosted-content/headers/* diff -r 1d1f396c3264 -r 985339334890 PersonasBackend/personas/models.py --- a/PersonasBackend/personas/models.py Tue Mar 04 17:43:40 2008 -0600 +++ b/PersonasBackend/personas/models.py Tue Mar 04 18:13:17 2008 -0600 @@ -156,7 +156,7 @@ help_text=("File for the image that will be placed behind " "the browser's top chrome. Only needed if " "a header image URL is not specified."), - upload_to="headers", + upload_to="hosted-content/headers", blank=True, max_length=MAX_FILE_NAME_LENGTH, ) @@ -176,7 +176,7 @@ help_text=("File for the image that will be placed behind " "the browser's bottom chrome. Only needed if " "a footer image URL is not specified."), - upload_to="footers", + upload_to="hosted-content/footers", blank=True, )