Use URL-encoding/decoding for all headers.
[pithos] / README.upgrade
index 9503920..5528308 100644 (file)
@@ -3,7 +3,7 @@ UPGRADE
 
 0.7.9 -> 0.7.10
 ---------------
-* Update settings.py (BACKEND*, SERVICE_NAME, *_EMAIL, *_TARGET, IM_*)
+* Update settings.py (BACKEND_*, SERVICE_NAME, *_EMAIL, *_TARGET, IM_*)
 * Update 'attributes' table in mysql (backend):
     
     mysql> update attributes set `key`='ETag' where `key`='hash';
@@ -12,7 +12,7 @@ UPGRADE
     
     ALTER TABLE im_user ADD COLUMN 'password' VARCHAR(255);
 
-0.7.10 -> 0.7.11
+0.7.10 -> 0.8.0
 ----------------
 * Upgrade 'public' table in mysql (backend):
        * Run: mysqldump pithosdb public > public-table.sql
@@ -22,13 +22,12 @@ UPGRADE
            
                INSERT INTO `public` VALUES (...);
       
-      Rewrite as:
+          Rewrite as:
            
                INSERT INTO `public`(`path`) VALUES (...);
          
          And execute in the database
-
-* Add 'south', remove 'pithos.public' in INSTALLED_APPS in settings.py
+* Create settings.local with local setting overrides
 * Install python-django-south
 * Setup south:
     python manage.py syncdb