Send Dev-flock mailing list submissions to
        dev-flock@mit.edu

To subscribe or unsubscribe via the World Wide Web, visit
        http://mailman.mit.edu/mailman/listinfo/dev-flock
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Dev-flock digest..."


Today's Topics:

   1. r913 - in huginmunin/trunk/web/hm: . app/media/css
      app/media/img/sketches app/templates app/templates/intro
      app/templates/user app/views db db/fixtures/small_dev env
      env/clay ([EMAIL PROTECTED])
   2. r914 - huginmunin/trunk/web/hm/app/templates/user
      ([EMAIL PROTECTED])
   3. user, local dev database. (Lucy Mendel)
   4. r915 - in huginmunin/trunk/web/hm/app/media/img: .        buttons
      ([EMAIL PROTECTED])
   5. r916 - in huginmunin/trunk/web/hm/app/media/img: .
      button_Mouse_Overs ([EMAIL PROTECTED])


----------------------------------------------------------------------

Message: 1
Date: Mon, 22 Sep 2008 13:23:49 -0400 (EDT)
From: [EMAIL PROTECTED]
Subject: [Dev-flock] r913 - in huginmunin/trunk/web/hm: .
        app/media/css   app/media/img/sketches app/templates app/templates/intro
        app/templates/user app/views db db/fixtures/small_dev env env/clay
To: dev-flock@mit.edu
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=UTF-8

Author: lucy
Date: 2008-09-22 13:23:47 -0400 (Mon, 22 Sep 2008)
New Revision: 913
Commit message:
fixed bug in db/log.py that used user with id 1 when encountered problems... 
still need a real fix; maybe use anonymous user? larger project because we want 
anonymous user that is actual user... then again, no actions without logging 
in. causing bug was calling User.get(user_id) where user_id is string. wrapped 
user_id in int(user_id), though perhaps get should except string forms of id? 
well, perhaps django's url patterns should send int arguments when found using 
\d+ explamation point.

Added:
   huginmunin/trunk/web/hm/app/media/img/sketches/Notes.png
   huginmunin/trunk/web/hm/env/clay/
   huginmunin/trunk/web/hm/env/clay/settings.py
Modified:
   huginmunin/trunk/web/hm/app/media/css/general.css
   huginmunin/trunk/web/hm/app/templates/base.html
   huginmunin/trunk/web/hm/app/templates/general_base.html
   huginmunin/trunk/web/hm/app/templates/general_extension.html
   huginmunin/trunk/web/hm/app/templates/gnrl_xtnsn_2.html
   huginmunin/trunk/web/hm/app/templates/intro/intro_page.html
   huginmunin/trunk/web/hm/app/templates/user/my_profile.html
   huginmunin/trunk/web/hm/app/templates/user/profile_display.html
   huginmunin/trunk/web/hm/app/templates/user/profile_edit.html
   huginmunin/trunk/web/hm/app/views/main.py
   huginmunin/trunk/web/hm/app/views/quickrate_main.py
   huginmunin/trunk/web/hm/db/fixtures/small_dev/load_full_small_dev_db.sh
   huginmunin/trunk/web/hm/db/log.py
   huginmunin/trunk/web/hm/db/user.py
   huginmunin/trunk/web/hm/settings.py


------------------------------

Message: 2
Date: Mon, 22 Sep 2008 13:31:40 -0400 (EDT)
From: [EMAIL PROTECTED]
Subject: [Dev-flock] r914 - huginmunin/trunk/web/hm/app/templates/user
To: dev-flock@mit.edu
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=UTF-8

Author: lucy
Date: 2008-09-22 13:31:33 -0400 (Mon, 22 Sep 2008)
New Revision: 914
Commit message:
attached

Added:
   huginmunin/trunk/web/hm/app/templates/user/user_menu_block.html


------------------------------

Message: 3
Date: Mon, 22 Sep 2008 13:46:00 -0400
From: "Lucy Mendel" <[EMAIL PROTECTED]>
Subject: [Dev-flock] user, local dev database.
To: Dev-Flock <dev-flock@mit.edu>
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=UTF-8

yo,

Note that revision 908 introduced backwards incompatible changes to
user.py for User and UserExtended.

This is stupid, since we already have users, and breaks a lot of Good
work to separate users and profiles (what we put in UserExtended), so
revision 913 reverted those changes to User. User Extended still has
the extra fields, but since no one has been able to edit their profile
before now we don't have to worry about data loss.

To be clear: if you already have a database full of users, then if you
update the bilumi code you'll need to run ./manage.py syncdb. You'll
probably need to drop the db_userextended table and then run syncdb
since we've added a bunch of *_isPublic columns and removed the name
column (seemed redundant with User information).

If you add data in UserExtended then you'll want to dump it first and
then reload it after sync-ing (which just creates an empty table).

If you're developing locally, you can load a small dev dataset by
running the following bash script
    ./db/fixtures/small_dev/local_full_small_dev_db.sh
One day we may want to create a large dataset with automatic population.


If you have any questions about recent changes let me know. I'm
working towards a 'release' of sorts for the end of October.

Lucy.


------------------------------

Message: 4
Date: Tue, 23 Sep 2008 11:54:50 -0400 (EDT)
From: [EMAIL PROTECTED]
Subject: [Dev-flock] r915 - in huginmunin/trunk/web/hm/app/media/img:
        .       buttons
To: dev-flock@mit.edu
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=UTF-8

Author: clay
Date: 2008-09-23 11:54:49 -0400 (Tue, 23 Sep 2008)
New Revision: 915
Commit message:


Added:
   huginmunin/trunk/web/hm/app/media/img/buttons/
   huginmunin/trunk/web/hm/app/media/img/buttons/Cancel.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Edit.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Login.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Preview.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Rate_It.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Register.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Submit.png
   huginmunin/trunk/web/hm/app/media/img/buttons/Update.png
   huginmunin/trunk/web/hm/app/media/img/buttons/signup.png


------------------------------

Message: 5
Date: Tue, 23 Sep 2008 11:55:13 -0400 (EDT)
From: [EMAIL PROTECTED]
Subject: [Dev-flock] r916 - in huginmunin/trunk/web/hm/app/media/img:
        .       button_Mouse_Overs
To: dev-flock@mit.edu
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=UTF-8

Author: clay
Date: 2008-09-23 11:55:13 -0400 (Tue, 23 Sep 2008)
New Revision: 916
Commit message:


Added:
   huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Cancel_Mouse_Over.png
   huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Edit_Mouse_Over.png
   huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Login_Mouse_Over.png
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Logout_Mouse_Over.png
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Preview_Mouse_Over.png
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Rate_It_Mouse_Over.png
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Register_Mouse_Over.png
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Submit_Mouse_Over.png
   
huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/Update_Mouse_Over.png


------------------------------

_______________________________________________
Dev-flock mailing list
Dev-flock@mit.edu
http://mailman.mit.edu/mailman/listinfo/dev-flock


End of Dev-flock Digest, Vol 13, Issue 13
*****************************************

Reply via email to