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. r924 - in huginmunin/trunk/web/hm: . app/media/css app/media/js app/templates app/templates/browse app/templates/forms app/templates/graph app/templates/helpers app/templates/node app/views db db/fixtures db/fixtures/medium_dev lib lib/oembed lib/oembed/templatetags lib/pagination lib/pagination/locale lib/pagination/locale/de lib/pagination/locale/de/LC_MESSAGES lib/pagination/templates lib/pagination/templates/pagination lib/pagination/templatetags ([EMAIL PROTECTED]) 2. r925 - in huginmunin/trunk/web/hm/app/media: css img img/buttons ([EMAIL PROTECTED]) 3. r926 - in huginmunin/trunk/web/hm/app/templates: . user ([EMAIL PROTECTED]) 4. r927 - in huginmunin/trunk/web/hm: . app/views db/databases ([EMAIL PROTECTED]) 5. r928 - in huginmunin/trunk/web/hm/app: media/css templates/user views ([EMAIL PROTECTED]) 6. r929 - huginmunin/trunk/web/hm/app/templates/intro ([EMAIL PROTECTED]) ---------------------------------------------------------------------- Message: 1 Date: Sat, 27 Sep 2008 17:46:47 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [Dev-flock] r924 - in huginmunin/trunk/web/hm: . app/media/css app/media/js app/templates app/templates/browse app/templates/forms app/templates/graph app/templates/helpers app/templates/node app/views db db/fixtures db/fixtures/medium_dev lib lib/oembed lib/oembed/templatetags lib/pagination lib/pagination/locale lib/pagination/locale/de lib/pagination/locale/de/LC_MESSAGES lib/pagination/templates lib/pagination/templates/pagination lib/pagination/templatetags To: dev-flock@mit.edu Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8 Author: lucy Date: 2008-09-27 17:46:46 -0400 (Sat, 27 Sep 2008) New Revision: 924 Commit message: * added pagination library that lets templates create paginators for iterable data. used on browse page. no more js table means internet explorer is now a supported platform. plus load time is much decreased. * commented out oembed use from settings since we don't use it. updated oembed library from external svn repo...might come in handy later. ===== * action issues: actions seem not to be created when data is loaded into sqlite3. what should we do if an item has no action? used to raise runtimeexception. now simply pass...and template will display nothing. the right thing requires more thought. action data is pretty important since users would be surprised and hurt to lose attribution. would love to gain more confidence in the creation of actions when loading data and otherwise. will this area require more work if switch to different database, eg postgresql? * added 'medium_dev' data set, which is really just a json dump of the server from last week. it's more realistic in basic names and properties than what i was making up, but still needs barcodes and tags to be added to flesh things out. more reviews and ratings would be create. ===== * node page now reloads when behavior or rating is added. why? the load doesn't seem to take long at all, so why not? if we start having tons of data on the page we'll use pagination. for ratings we need to update three numbers (user rating, review rating, node rating). * barcodes (identifiers) added with nodes are now actually saved. * users are redirected to login or told to login if send POST to create nodes, reviews (behaviors) or ratings. templates don't show these forms unless user is logged in. show login link that redirects back to page. would be nice if could show forms and then, when user submits data, redirect to login/registration and then submit entered data. right now we lose that data. * commented out onload ajax calls to get nodelist for browse page and arguments for node page. * show server errors from ajax calls to add behavior or node (previously showed only client side form errors) * nodeblock.css: commented out css line offending firebug * general.css: fixed bug that was preventing latter part of file to be ignored. added css for browse page and 'add review' portion of node page. * would love to see more page specific css and js includes. maybe we have a script that generates this, or maybe this is done by hand. we only have 4 main parts to the site: main, browse, user, node. seems like not a big deal to keep track of different css and js. ===== * brevified model admin. check /Main/model/admin for the downlow. must have staff privileges. * problem with Dimension slug in main_api.py commented out. not sure that we make use of slugs--do we? * added absolute_url properties to node and user models. * continuing to make use of reverse and url template tag. ==== * commented out key, value javascript assignment from data in base.html. what's is for? what if someone puts a data variable into the context? nothing seems broken....but it's not like we have tests so....see what happens. on that note... (Dan says he has the repo up in git. Yeah Dawg! These commits will finally be able to get put together into some sense.) Added: huginmunin/trunk/web/hm/app/templates/browse/pagination.html huginmunin/trunk/web/hm/app/templates/forms/model_admin.html huginmunin/trunk/web/hm/app/templates/forms/model_admin_add.html huginmunin/trunk/web/hm/app/templates/forms/model_admin_list.html huginmunin/trunk/web/hm/db/fixtures/medium_dev/ huginmunin/trunk/web/hm/db/fixtures/medium_dev/README huginmunin/trunk/web/hm/db/fixtures/medium_dev/REAL_sept2008.json huginmunin/trunk/web/hm/lib/pagination/ huginmunin/trunk/web/hm/lib/pagination/__init__.py huginmunin/trunk/web/hm/lib/pagination/locale/ huginmunin/trunk/web/hm/lib/pagination/locale/de/ huginmunin/trunk/web/hm/lib/pagination/locale/de/LC_MESSAGES/ huginmunin/trunk/web/hm/lib/pagination/locale/de/LC_MESSAGES/django.po huginmunin/trunk/web/hm/lib/pagination/middleware.py huginmunin/trunk/web/hm/lib/pagination/models.py huginmunin/trunk/web/hm/lib/pagination/templates/ huginmunin/trunk/web/hm/lib/pagination/templates/pagination/ huginmunin/trunk/web/hm/lib/pagination/templates/pagination/pagination.html huginmunin/trunk/web/hm/lib/pagination/templatetags/ huginmunin/trunk/web/hm/lib/pagination/templatetags/__init__.py huginmunin/trunk/web/hm/lib/pagination/templatetags/pagination_tags.py huginmunin/trunk/web/hm/lib/pagination/tests.py Modified: huginmunin/trunk/web/hm/app/media/css/general.css huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/media/js/arguments.js huginmunin/trunk/web/hm/app/media/js/filter_nodes.js huginmunin/trunk/web/hm/app/media/js/jquery.rater.js huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/forms/login_form.html huginmunin/trunk/web/hm/app/templates/graph/create_node.html huginmunin/trunk/web/hm/app/templates/graph/list.html huginmunin/trunk/web/hm/app/templates/helpers/table_form.html huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/behaviors.html huginmunin/trunk/web/hm/app/templates/node/page.html huginmunin/trunk/web/hm/app/views/account.py huginmunin/trunk/web/hm/app/views/account_forms.py huginmunin/trunk/web/hm/app/views/main.py huginmunin/trunk/web/hm/app/views/main_api.py huginmunin/trunk/web/hm/app/views/main_urls.py huginmunin/trunk/web/hm/db/graph.py huginmunin/trunk/web/hm/db/log.py huginmunin/trunk/web/hm/lib/oembed/models.py huginmunin/trunk/web/hm/lib/oembed/templatetags/oembed_tags.py huginmunin/trunk/web/hm/settings.py ------------------------------ Message: 2 Date: Sat, 27 Sep 2008 18:15:34 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [Dev-flock] r925 - in huginmunin/trunk/web/hm/app/media: css img img/buttons To: dev-flock@mit.edu Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8 Author: clay Date: 2008-09-27 18:15:34 -0400 (Sat, 27 Sep 2008) New Revision: 925 Commit message: Added Jquery scripts to make mouse overs for buttons. Also created css files and the profile page to match. And added a bunch of buttons and moved around img folders. Added: huginmunin/trunk/web/hm/app/media/img/buttons/Cancel_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Edit_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Login_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Logout.png huginmunin/trunk/web/hm/app/media/img/buttons/Logout_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Preview_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Rate_It_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Register_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Submit_Mouse_Over.png huginmunin/trunk/web/hm/app/media/img/buttons/Update_Mouse_Over.png Removed: huginmunin/trunk/web/hm/app/media/img/button_Mouse_Overs/ Modified: huginmunin/trunk/web/hm/app/media/css/general.css ------------------------------ Message: 3 Date: Sat, 27 Sep 2008 18:16:54 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [Dev-flock] r926 - in huginmunin/trunk/web/hm/app/templates: . user To: dev-flock@mit.edu Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8 Author: clay Date: 2008-09-27 18:16:53 -0400 (Sat, 27 Sep 2008) New Revision: 926 Commit message: Modified login_menu as well. Base.html is where jquery scripts things are. Modified: huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/login_menu.html huginmunin/trunk/web/hm/app/templates/user/profile_display.html ------------------------------ Message: 4 Date: Sat, 27 Sep 2008 18:23:16 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [Dev-flock] r927 - in huginmunin/trunk/web/hm: . app/views db/databases To: dev-flock@mit.edu Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8 Author: lucy Date: 2008-09-27 18:23:16 -0400 (Sat, 27 Sep 2008) New Revision: 927 Commit message: remove old urls Modified: huginmunin/trunk/web/hm/ huginmunin/trunk/web/hm/app/views/main_urls.py huginmunin/trunk/web/hm/db/databases/ ------------------------------ Message: 5 Date: Sun, 28 Sep 2008 11:16:14 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [Dev-flock] r928 - in huginmunin/trunk/web/hm/app: media/css templates/user views To: dev-flock@mit.edu Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8 Author: lucy Date: 2008-09-28 11:16:13 -0400 (Sun, 28 Sep 2008) New Revision: 928 Commit message: fixed some bugs previously introduced: portfolio edit page shows interest names; admin had been broken because looking in locals() instead of globals(). removed underline from hover on image links. profile and portfolio display urls no longer contain display. Modified: huginmunin/trunk/web/hm/app/media/css/general.css huginmunin/trunk/web/hm/app/templates/user/portfolio_display.html huginmunin/trunk/web/hm/app/templates/user/portfolio_edit.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/main_urls.py ------------------------------ Message: 6 Date: Sun, 28 Sep 2008 11:31:15 -0400 (EDT) From: [EMAIL PROTECTED] Subject: [Dev-flock] r929 - huginmunin/trunk/web/hm/app/templates/intro To: dev-flock@mit.edu Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=UTF-8 Author: lucy Date: 2008-09-28 11:31:15 -0400 (Sun, 28 Sep 2008) New Revision: 929 Commit message: fixed bug for staff getting to recent activity link Modified: huginmunin/trunk/web/hm/app/templates/intro/intro_page.html ------------------------------ _______________________________________________ Dev-flock mailing list Dev-flock@mit.edu http://mailman.mit.edu/mailman/listinfo/dev-flock End of Dev-flock Digest, Vol 13, Issue 17 *****************************************