From dan at thoughtandmemory.org Fri Nov 2 13:03:43 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:43 -0400 (EDT) Subject: [Dev-flock] r334 - in huginmunin/trunk/web: . hm hm/env hm/env/dan hm/env/thoughtandmemory.org hm/lib Message-ID: <20071102170343.AD28F75A6A@thoughtandmemory.org> r339 at insignificant: dan | 2007-11-01 13:34:06 -0400 Added /env directory to allow each developer to provide their own settings. The env/%DEVELOPER%/settings.py file is appended to the end of the normal settings.py, so it has access to all the settings variables. Added: huginmunin/trunk/web/hm/env/ huginmunin/trunk/web/hm/env/dan/ huginmunin/trunk/web/hm/env/dan/settings.py huginmunin/trunk/web/hm/env/thoughtandmemory.org/ huginmunin/trunk/web/hm/env/thoughtandmemory.org/settings.py Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/lib/sql_log_middleware.py huginmunin/trunk/web/hm/lib/visit_log_middleware.py huginmunin/trunk/web/hm/settings.py From dan at thoughtandmemory.org Fri Nov 2 13:03:38 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:38 -0400 (EDT) Subject: [Dev-flock] r333 - in huginmunin/trunk/web: . hm hm/app hm/app/media hm/app/media/css hm/app/media/css/i hm/app/media/img hm/app/media/js hm/app/media/js/MochiKit hm/app/templates hm/app/templates/account hm/app/views hm/db hm/db/databases hm/db/fixtures hm/db/tests hm/lib hm/lib/patches Message-ID: <20071102170338.ABAF175A6A@thoughtandmemory.org> r338 at insignificant: dan | 2007-11-01 03:53:18 -0400 Reorganized directory structure and removed many unnecessary/unused files and urls. Notes: change structure of model files - the database formerly known as hm_development.db is now db/databases/santa.db (i'm expecting to add more fixture-dbs in the future instead of making everyone build their own.) settings.py changed - local changes will have to be reimported (env/ directory coming soon) change views structure to views/main.py, views/account.py, views/main_urls.py, views/account_urls.py the only template directory is app/templates, so all templates should be referenced relative to there (e.g. 'node_centric.html' instead of 'Main/templates/node_centric.html') images referenced from .css files should go into css/i (so they can be cross-browser-compatibly referenced with a relative path) didn't flatten media, but added media/js, media/css, media/img Added: huginmunin/trunk/web/hm/ huginmunin/trunk/web/hm/__init__.py huginmunin/trunk/web/hm/app/ huginmunin/trunk/web/hm/app/__init__.py huginmunin/trunk/web/hm/app/media/ huginmunin/trunk/web/hm/app/media/css/ huginmunin/trunk/web/hm/app/media/css/eslides.css huginmunin/trunk/web/hm/app/media/css/i/ huginmunin/trunk/web/hm/app/media/css/i/Picture1.png huginmunin/trunk/web/hm/app/media/css/i/Picture2.png huginmunin/trunk/web/hm/app/media/css/i/Picture3.png huginmunin/trunk/web/hm/app/media/css/stylesheet.css huginmunin/trunk/web/hm/app/media/img/ huginmunin/trunk/web/hm/app/media/img/green.gif huginmunin/trunk/web/hm/app/media/js/ huginmunin/trunk/web/hm/app/media/js/MochiKit/ huginmunin/trunk/web/hm/app/media/js/MochiKit/Async.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Base.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Color.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Controls.js huginmunin/trunk/web/hm/app/media/js/MochiKit/DOM.js huginmunin/trunk/web/hm/app/media/js/MochiKit/DateTime.js huginmunin/trunk/web/hm/app/media/js/MochiKit/DragAndDrop.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Format.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Iter.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Logging.js huginmunin/trunk/web/hm/app/media/js/MochiKit/LoggingPane.js huginmunin/trunk/web/hm/app/media/js/MochiKit/MochiKit.js huginmunin/trunk/web/hm/app/media/js/MochiKit/MockDOM.js huginmunin/trunk/web/hm/app/media/js/MochiKit/New.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Signal.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Sortable.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Style.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Test.js huginmunin/trunk/web/hm/app/media/js/MochiKit/Visual.js huginmunin/trunk/web/hm/app/media/js/MochiKit/__package__.js huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/media/js/slide.js huginmunin/trunk/web/hm/app/root_urls.py huginmunin/trunk/web/hm/app/templates/ huginmunin/trunk/web/hm/app/templates/account/ huginmunin/trunk/web/hm/app/templates/account/activate.html huginmunin/trunk/web/hm/app/templates/account/activate_done.html huginmunin/trunk/web/hm/app/templates/account/activate_error.html huginmunin/trunk/web/hm/app/templates/account/activation_email.txt huginmunin/trunk/web/hm/app/templates/account/login.html huginmunin/trunk/web/hm/app/templates/account/logout.html huginmunin/trunk/web/hm/app/templates/account/register.html huginmunin/trunk/web/hm/app/templates/account/register_done.html huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/node_arguments_snippet.html huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html huginmunin/trunk/web/hm/app/templates/node_centric.html huginmunin/trunk/web/hm/app/templates/node_info_snippet.html huginmunin/trunk/web/hm/app/templates/node_list_snippet.html huginmunin/trunk/web/hm/app/templates/node_navigation_snippet.html huginmunin/trunk/web/hm/app/templates/user_centric.html huginmunin/trunk/web/hm/app/urls.py huginmunin/trunk/web/hm/app/views/ huginmunin/trunk/web/hm/app/views/__init__.py huginmunin/trunk/web/hm/app/views/account.py huginmunin/trunk/web/hm/app/views/account_urls.py huginmunin/trunk/web/hm/app/views/main.py huginmunin/trunk/web/hm/app/views/main_urls.py huginmunin/trunk/web/hm/app/views/ostruct.py huginmunin/trunk/web/hm/app/views/utils.py huginmunin/trunk/web/hm/db/ huginmunin/trunk/web/hm/db/__init__.py huginmunin/trunk/web/hm/db/citation.py huginmunin/trunk/web/hm/db/databases/ huginmunin/trunk/web/hm/db/databases/santa.db huginmunin/trunk/web/hm/db/fixtures/ huginmunin/trunk/web/hm/db/fixtures/build_fixtures.rb huginmunin/trunk/web/hm/db/fixtures/ct.json huginmunin/trunk/web/hm/db/fixtures/rebuild_fixtures.rb huginmunin/trunk/web/hm/db/fixtures/santa.json huginmunin/trunk/web/hm/db/fixtures/santa2.json huginmunin/trunk/web/hm/db/fixtures/sentences_1580.txt huginmunin/trunk/web/hm/db/fixtures/users.json huginmunin/trunk/web/hm/db/fixtures/words_10000.txt huginmunin/trunk/web/hm/db/graph.py huginmunin/trunk/web/hm/db/log.py huginmunin/trunk/web/hm/db/models.py huginmunin/trunk/web/hm/db/rating.py huginmunin/trunk/web/hm/db/search.py huginmunin/trunk/web/hm/db/state.py huginmunin/trunk/web/hm/db/tag.py huginmunin/trunk/web/hm/db/tests/ huginmunin/trunk/web/hm/db/tests/tests.py huginmunin/trunk/web/hm/db/urls.py huginmunin/trunk/web/hm/db/user.py huginmunin/trunk/web/hm/db/utils.py huginmunin/trunk/web/hm/lib/ huginmunin/trunk/web/hm/lib/__init__.py huginmunin/trunk/web/hm/lib/patches/ huginmunin/trunk/web/hm/lib/patches/patch_adding_store_original_values.diff huginmunin/trunk/web/hm/lib/patches/patch_to_fix_syncdb_with_generic_relations.diff huginmunin/trunk/web/hm/lib/sql_log_middleware.py huginmunin/trunk/web/hm/lib/threadlocals_middleware.py huginmunin/trunk/web/hm/lib/visit_log_middleware.py huginmunin/trunk/web/hm/manage.py huginmunin/trunk/web/hm/quickstart.py huginmunin/trunk/web/hm/settings.py Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:03:45 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:45 -0400 (EDT) Subject: [Dev-flock] r335 - in huginmunin/trunk/web: . hm/app hm/app/lib Message-ID: <20071102170345.B421F75A6A@thoughtandmemory.org> r340 at insignificant: dan | 2007-11-01 13:37:46 -0400 app/lib/json_template.py converts compiled Django templates into a json structure. Added: huginmunin/trunk/web/hm/app/lib/ huginmunin/trunk/web/hm/app/lib/json_template.py Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:03:50 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:50 -0400 (EDT) Subject: [Dev-flock] r336 - in huginmunin/trunk/web: . hm/app/media/js Message-ID: <20071102170350.2B9D675A6A@thoughtandmemory.org> r341 at insignificant: dan | 2007-11-01 14:38:55 -0400 Adding Dean Edward's base.js library - a common base class for easier/cleaner cross browser javascript class inheritance. Added: huginmunin/trunk/web/hm/app/media/js/base.js Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:03:53 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:53 -0400 (EDT) Subject: [Dev-flock] r337 - in huginmunin/trunk/web: . hm/app/media/js Message-ID: <20071102170353.4E51975A6A@thoughtandmemory.org> r342 at insignificant: dan | 2007-11-01 14:40:20 -0400 Added jQuery 1.2 library. Added: huginmunin/trunk/web/hm/app/media/js/jquery.min.js Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:03:55 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:55 -0400 (EDT) Subject: [Dev-flock] r338 - in huginmunin/trunk/web: . hm/app/media/js Message-ID: <20071102170355.E907875A6A@thoughtandmemory.org> r343 at insignificant: dan | 2007-11-01 14:41:36 -0400 Added client-side renderer for the django-to-json template system. Added: huginmunin/trunk/web/hm/app/media/js/json_template.js Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:03:58 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:03:58 -0400 (EDT) Subject: [Dev-flock] r339 - in huginmunin/trunk/web: . hm/app/views Message-ID: <20071102170358.7255C75A6A@thoughtandmemory.org> r344 at insignificant: dan | 2007-11-01 14:46:50 -0400 Factored utility methods out of main.py. These are now found in utils.py. Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/views/main.py From dan at thoughtandmemory.org Fri Nov 2 13:04:01 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:01 -0400 (EDT) Subject: [Dev-flock] r340 - in huginmunin/trunk/web: . hm/app/media/js hm/app/templates Message-ID: <20071102170401.6A44E75A6A@thoughtandmemory.org> r345 at insignificant: dan | 2007-11-01 14:54:28 -0400 Factored utility methods out of main.js; added utils.js to base.html. Added: huginmunin/trunk/web/hm/app/media/js/utils.js Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/templates/base.html From dan at thoughtandmemory.org Fri Nov 2 13:04:04 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:04 -0400 (EDT) Subject: [Dev-flock] r341 - in huginmunin/trunk/web: . hm/app/media/js hm/app/templates Message-ID: <20071102170404.87F1275A6A@thoughtandmemory.org> r346 at insignificant: dan | 2007-11-01 14:59:04 -0400 Moved some methods from json_template.js to utils.js; added base.js and json_template.js to base.html. Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/media/js/json_template.js huginmunin/trunk/web/hm/app/media/js/utils.js huginmunin/trunk/web/hm/app/templates/base.html From dan at thoughtandmemory.org Fri Nov 2 13:04:07 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:07 -0400 (EDT) Subject: [Dev-flock] r342 - in huginmunin/trunk/web: . hm/app/templates Message-ID: <20071102170407.51D3475A6A@thoughtandmemory.org> r347 at insignificant: dan | 2007-11-01 15:03:53 -0400 Added templates factored out of main.js Added: huginmunin/trunk/web/hm/app/templates/node_argument.html huginmunin/trunk/web/hm/app/templates/node_argument_list.html Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:04:09 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:09 -0400 (EDT) Subject: [Dev-flock] r343 - in huginmunin/trunk/web: . hm/app/templates Message-ID: <20071102170409.7645975A6B@thoughtandmemory.org> r348 at insignificant: dan | 2007-11-01 15:06:11 -0400 Two more templates factored out. Added: huginmunin/trunk/web/hm/app/templates/node_behavior_info.html huginmunin/trunk/web/hm/app/templates/node_citation.html Modified: huginmunin/trunk/web/ From dan at thoughtandmemory.org Fri Nov 2 13:04:13 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:13 -0400 (EDT) Subject: [Dev-flock] r344 - in huginmunin/trunk/web: . hm/app/media/js hm/app/templates hm/app/views Message-ID: <20071102170413.44D8275A6A@thoughtandmemory.org> r349 at insignificant: dan | 2007-11-01 16:00:24 -0400 Added CURRY method to utils.js. Fixed json structures returned from main.py. Added default_templates.js to base.html Changed main.js to use Template class. Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/media/js/utils.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/views/main.py From dan at thoughtandmemory.org Fri Nov 2 13:04:17 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:17 -0400 (EDT) Subject: [Dev-flock] r345 - in huginmunin/trunk/web: . hm/app/lib hm/app/media/js hm/app/templates hm/app/views Message-ID: <20071102170417.537AC75A6A@thoughtandmemory.org> r350 at insignificant: dan | 2007-11-01 16:28:50 -0400 Moved html from addDrop to templates/node_argument_add.html. Moved utility modules from app/views to app/lib. Fixed default_templates.js generation. Added: huginmunin/trunk/web/hm/app/lib/ostruct.py huginmunin/trunk/web/hm/app/lib/utils.py huginmunin/trunk/web/hm/app/templates/node_argument_add.html Removed: huginmunin/trunk/web/hm/app/views/ostruct.py huginmunin/trunk/web/hm/app/views/utils.py Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/views/main.py huginmunin/trunk/web/hm/app/views/main_urls.py From dan at thoughtandmemory.org Fri Nov 2 13:04:19 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:19 -0400 (EDT) Subject: [Dev-flock] r346 - in huginmunin/trunk/web: . hm/db Message-ID: <20071102170419.A7F2E75A6A@thoughtandmemory.org> r351 at insignificant: dan | 2007-11-01 20:59:32 -0400 Fixed some issues with ratings and added the average_rating mixins to Behavior and Node Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/db/rating.py huginmunin/trunk/web/hm/db/utils.py From dan at thoughtandmemory.org Fri Nov 2 13:04:23 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:23 -0400 (EDT) Subject: [Dev-flock] r347 - in huginmunin/trunk/web: . hm/app/lib hm/app/media/js hm/app/templates hm/app/views Message-ID: <20071102170423.BC92775A6A@thoughtandmemory.org> r352 at insignificant: dan | 2007-11-01 21:01:31 -0400 Added quite a bit of stuff, changed some main.py methods to include ratings, added a tag_add template, but it's not integrated yet. Adding ratings to behaviors now works. Added: huginmunin/trunk/web/hm/app/templates/tag_add.html Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/lib/json_template.py huginmunin/trunk/web/hm/app/lib/utils.py huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/media/js/utils.js huginmunin/trunk/web/hm/app/templates/node_behavior_info.html huginmunin/trunk/web/hm/app/views/main.py From dan at thoughtandmemory.org Fri Nov 2 13:04:26 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 13:04:26 -0400 (EDT) Subject: [Dev-flock] r348 - in huginmunin/trunk/web: . hm/app/templates hm/app/views Message-ID: <20071102170426.60C3F75A6A@thoughtandmemory.org> r353 at insignificant: dan | 2007-11-01 21:03:59 -0400 Removed a print statement and put the 'average_rating' into the template. Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/app/templates/node_behavior_info.html huginmunin/trunk/web/hm/app/views/main.py From dan at thoughtandmemory.org Fri Nov 2 15:26:14 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 15:26:14 -0400 (EDT) Subject: [Dev-flock] r349 - in huginmunin/trunk/web/hm: . app/lib app/views env/thoughtandmemory.org lib Message-ID: <20071102192614.43E8475A6A@thoughtandmemory.org> Added app/lib/__init__.py; changed manage.py back to using 'env python' rather than 'env python2.4'; fixed a few URLs, removed 'visit_log_middleware' from default middlewares because it fails when it doesn't detect the remote host correctly, and there's a difference between how apache gives it and how the django test server gives it; changed the way PROJECT_PATH is determined in settings.py to be more apache-friendly. Added: huginmunin/trunk/web/hm/app/lib/__init__.py Modified: huginmunin/trunk/web/hm/app/lib/utils.py huginmunin/trunk/web/hm/app/views/account.py huginmunin/trunk/web/hm/env/thoughtandmemory.org/settings.py huginmunin/trunk/web/hm/lib/visit_log_middleware.py huginmunin/trunk/web/hm/manage.py huginmunin/trunk/web/hm/settings.py From danring at MIT.EDU Fri Nov 2 16:29:26 2007 From: danring at MIT.EDU (Daniel Ring) Date: Fri, 02 Nov 2007 16:29:26 -0400 Subject: [Dev-flock] Recent changes Message-ID: <472B88A6.8090104@mit.edu> I copied the files we're actually using into /web/hm and removed files we're no longer using. Those are still available in /web/src, but the main tree is now /web/hm, and /web/src will be 'svn delete'd eventually. Also, you can now make your own settings.py file in /web/hm/env//settings.py. This file is appended to the normal settings.py file, so you can use modify settings and add to them (like middleware, if you want or don't want sql_log, for example). You should create a file hm/env/CURRENT containing only the name of the directory your settings.py is in (I do "echo 'dan' > env/CURRENT"). Non-linux devs: I think the settings.py changes are compatible, but if you have any problems, let me know. Other changes: - there's only one media directory now, called 'media' - templates should always be referenced relative to hm/app/templates, so "base.html" instead of "hm/app/templates/base.html" (or "Main/templates/base.html"). - Django templates are now cross-platform! They can be rendered on the client side (with a few restrictions on features we haven't used yet). - ratings can be added; aggregations are beginning to work - right now the average rating of a behavior is available, and average rating for a node is available but unweighted and unfiltered I'm working on making the template system better/persistent/updatable, especially with regard to forms and validations. I'd like to hear suggestions. From dan at thoughtandmemory.org Fri Nov 2 16:39:34 2007 From: dan at thoughtandmemory.org (dan@thoughtandmemory.org) Date: Fri, 2 Nov 2007 16:39:34 -0400 (EDT) Subject: [Dev-flock] r350 - in huginmunin/trunk/web: . hm Message-ID: <20071102203934.59E5D75A6A@thoughtandmemory.org> r352 at insignificant: dan | 2007-11-02 16:39:48 -0400 Added nicer error messages in settings.py for when env/CURRENT doesn't exist. Added 'log' directory so sql_log will work out of the box Added: huginmunin/trunk/web/hm/log/ Modified: huginmunin/trunk/web/ huginmunin/trunk/web/hm/settings.py From lucy at thoughtandmemory.org Thu Nov 8 10:54:02 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Thu, 8 Nov 2007 10:54:02 -0500 Subject: [Dev-flock] Web App GUI docs on wiki Message-ID: Yo, I made a new page on the trac wiki, GUI, which specifies the layout and functionality of the web app. If you have any ideas or feedback please feel free to add them to the page. If something is more complex than currently identified, then link to the Discussion page and put the pros and cons there. If you do make changes consider emailing the list to give a heads up. The new code (under hm insetad of src) is nicely modular. Someone (Dan, let me know if you can do this) can get the layout and form infrastructure done, while others can work on improving the block contents and functionality (sort and filter queries, style, defaults, form validation code). The ImplementationOverview page, under AJAX/templates (ish) *will* have documentation about the new code soon! L. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071108/ff1e6224/attachment.htm From noreply at googlegroups.com Thu Nov 8 14:18:20 2007 From: noreply at googlegroups.com (noreply@googlegroups.com) Date: Thu, 08 Nov 2007 19:18:20 +0000 Subject: [Dev-flock] Google Groups: You've been added to Hugin and Munin Message-ID: <20071108191824.B78E4B44F65@mit.edu> Clay Ward cwallardo at gmail.com has added you to the Hugin and Munin group with this message: Here is the group's description: Hugin (thought) and Munin (memory) circle the world dayly so that Odin can know what occurs. TwoRavens will similarly assist consumers in wise and responsible purchasing. We will design and implement software to provide cell phone access to a customizable database of product impact information. ----------------------- Google Groups Information ---------------------- The owner of the group has set your subscription type as "Email", meaning that you'll receive a copy of every message posted to the group as they are posted. To view this group on the web, or edit your subscription, you will need to create a Google Account by going to: http://www.google.com/accounts/NewAccount?service=groups2&dEM=dev-flock%40mit.edu&continue=http%3A%2F%2Fgroups.google.com%2Fgroup%2FTwoRavens%2F%3Fhl%3Den Visit this group on the web by using this URL: http://groups.google.com/group/TwoRavens?hl=en You can unsubscribe from this group using the following URL: http://groups.google.com/group/TwoRavens/unsub?u=9oo-dQgAAABqimpaQ2AIROnODPFi0NFT&hl=en -------------------- Information About This Message -------------------- If you feel that this message is abuse, please inform the Google Groups staff by using the URL below. http://groups.google.com/groups/abuse?direct=MQAAAHhePAAt3dwFq1cMBQ&hl=en From clay at thoughtandmemory.org Thu Nov 8 14:21:33 2007 From: clay at thoughtandmemory.org (Clay Ward) Date: Thu, 8 Nov 2007 14:21:33 -0500 Subject: [Dev-flock] Fwd: Several Updates and topics In-Reply-To: References: Message-ID: Yo! Sorry if this is redundant, but I didn't realize that dev-flock was not on our TwoRavens group. If you're getting multiple emails from me after this one then please let me know. ---------- Forwarded message --------- Hey, I had a lot of fun the other night at dinner and pool. Thanks for coming out on short notice, guys. I've added some images from the evening to our "about" page on our site. Sorry that not everyone could make it this time. Lucy and I were discussing the possibility of our using skype to get more people together next time. Like we could have a group work session at someone's apartment and other folks could skype in? Let me know if you guys want to get together more or - well it would be hard to get together less. I've just received the first draft of Taza chocolate's scouting report on the chocolate industry. It's really informative and I've asked them to elaborate on a lot of specific details. I expect that that will be ready some time later in November. I've also contacted a lot of other manufacturers of optimistic chocolate bars to see if they'd like to use the release of our site as a promotional opportunity. Lucy and I are attempting to arrange a meeting with a friend, Sharlene, who came to us for help thinking about how the insurance company that she works for could use a friendsharing database model to create a business to business listing of carbon footprint values and the like. There was also an excellent section in yesterday's NYT about the Business of Green. If Sharlene's company can get past the cloak and dagger stage then we might be able to design some new features into our system to help them. We could allow a business the option of publishing its information only to other businesses for example. Or only internally. Or if they wanted some positive press they could release it to the rest of our system. The theory is still that we want to empower individuals (even if those individuals are companies) to be empowered to follow their own concerns. Lots of companies are struggling know how to buy green and we could help them. Hopefully companies that are trying to improve would get that there is a value added aspect to providing more information (consumers will actually pay more for a product that they know is worth more.) So we'll see how this goes and what kind of business relationship Sharlene's company will propose, if anything. We're not planning on changing our function for individuals, just to be open to new sources of data and revenue. Fritz met with Lucy a few days ago to go over our system design. Sounds like he mostly encouraged her to release a dirty prototype so that we can move on the phase 2 (testing and research.) Lucy is aiming for an end of the weekend release of a user interface that includes a slightly dynamic workspace. I think that it's a really good step and I'm totally anxious to see it. Dan has been making the underlying format of our various user interfaces standard so that expansion and modification is easy. He's planning on implimenting an iterative process for calculating user input (I don't understand much more than that, but it sounds like this will solve a problem in cyclical relationships in our database until we can get someone who is expert in bayesian schemes for data relationships on the team.) Jamie and I are working on an application for Echoing Green. I've been working on a set of talking points for myself so that when our prototype is released I can really start stumping for grants. I've also contacted a friend at a non-profit in NYC who might give us a good deal on being our sponsor organization if we don't get the IRS stuff done soon. I've asked him to only take 2.5% of our grants, but that's well below average so we'll see how it goes. I'm meeting next week with several people who are interested in helping write a long term plotline for ThoughtAndMemory.org the comic book. We're looking into making puzzles and other interactive msteries that could get more people involved in the system. A way to bring the online communities of activists and gamers together. Eventually I would like to see us have a more interactive user view that included an avatar world of social research of some kind. That's far away, of course. We're looking for impressive names of people who are big supporters of ours so that we can list them on an Advisory Board (which is diferent than our governing Board.) CEOs of relevant tech companies, authors, professors, and leaders of industry would all be great additions if they really do support us. Let me know if you have any leads. Archon Fung just made tenure at the Kennedy School and has gotten back to me, but we haven't made a meeting yet. He wrote a book about "Targeted Transparency..." that we reference in our infomercial. Michael Pollan, who wrote "Omnivores Dilema" got back to me with compliments. But he's busy and it might be a while before a relationship can be cemented. More things are in the works, but nothing worth bragging about yet! woohoo! From lucy at thoughtandmemory.org Thu Nov 8 18:53:47 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Thu, 8 Nov 2007 18:53:47 -0500 Subject: [Dev-flock] block minimize/maximize proof of concept posted Message-ID: yo, Please have a look at http://thoughtandmemory.org/lucy/block_test/blocks.html http://thoughtandmemory.org/lucy/block_test/blocks.js http://thoughtandmemory.org/lucy/block_test/blocks.css For a proof of concept on maximizing and minimizing 'blocks' -->as explained on http://thoughtandmemory.org/trac/wiki/GUI If you click on the green title bar the block minimizes or maximizes. If you click on "Toggle Top Row " the right thing happens "Toggle Bottom Middle" works, but not quite as the third diagram wants it to (no horizontal minimizing right now, only vertical). Feedback on implementation (performance, engineering goodness (ease of use for other developers), etc) is appreciated. l. From lucy at thoughtandmemory.org Fri Nov 9 00:44:11 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 9 Nov 2007 00:44:11 -0500 (EST) Subject: [Dev-flock] r351 - in huginmunin/trunk/web/hm/app: media/css media/js templates templates/account Message-ID: <20071109054411.F08A475A6A@thoughtandmemory.org> added block functionality to behaviors and node info. had to introduce columns into node centric view. see my email to dev-flock regarding todo Added: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/layout.css huginmunin/trunk/web/hm/app/media/css/looks.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/node_children_snippet.html huginmunin/trunk/web/hm/app/templates/node_parents_snippet.html huginmunin/trunk/web/hm/app/templates/node_toolbar_snippet.html Removed: huginmunin/trunk/web/hm/app/templates/node_navigation_snippet.html Modified: huginmunin/trunk/web/hm/app/media/js/json_template.js huginmunin/trunk/web/hm/app/templates/account/login.html huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html huginmunin/trunk/web/hm/app/templates/node_centric.html huginmunin/trunk/web/hm/app/templates/node_info_snippet.html huginmunin/trunk/web/hm/app/templates/user_centric.html From lucy at thoughtandmemory.org Fri Nov 9 00:51:17 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Fri, 9 Nov 2007 00:51:17 -0500 Subject: [Dev-flock] blocks, GUI Message-ID: yo, My recent commits added the block functionality (minimize/maximize) and layout to the node-centric page. Admittedly, I haven't tested with IE/windows yet! but will do tomorrow. I'd like to finish up this iteration of the prototype by Sunday night. I won't have much time between now and saturday night, so feel free to dig into the code and make progress. I'll update the wiki docs and todo list tomorrow so that we can better coordinate. If you're feeling lost and want to meet let me know! l. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071109/850e66b2/attachment.htm From lucy at thoughtandmemory.org Fri Nov 9 09:03:05 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 9 Nov 2007 09:03:05 -0500 (EST) Subject: [Dev-flock] r352 - in huginmunin/trunk/web/hm/app: media/css templates Message-ID: <20071109140305.18F3175A6A@thoughtandmemory.org> added header stuff Added: huginmunin/trunk/web/hm/app/templates/blocks.html Modified: huginmunin/trunk/web/hm/app/media/css/layout.css huginmunin/trunk/web/hm/app/media/css/looks.css huginmunin/trunk/web/hm/app/templates/base.html From lucy at thoughtandmemory.org Fri Nov 9 09:52:01 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 9 Nov 2007 09:52:01 -0500 (EST) Subject: [Dev-flock] r353 - huginmunin/trunk/web/hm/app/media/css Message-ID: <20071109145201.9EF6F75A6A@thoughtandmemory.org> fix minor syntax errors in css Modified: huginmunin/trunk/web/hm/app/media/css/layout.css huginmunin/trunk/web/hm/app/media/css/looks.css From lucy at thoughtandmemory.org Fri Nov 9 16:02:47 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 9 Nov 2007 16:02:47 -0500 (EST) Subject: [Dev-flock] r354 - in huginmunin/trunk/web/hm/app: media/css media/img templates Message-ID: <20071109210247.1D05E75A6A@thoughtandmemory.org> behaviors cleaned up, but functionality from stylesheet.css not added yet. css cleaned up into conceptual/layout files. i'm confused about some things... will call Dan tonight or tomorrow and/or request docs. Added: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/footer.css huginmunin/trunk/web/hm/app/media/css/header.css huginmunin/trunk/web/hm/app/media/css/middle.css huginmunin/trunk/web/hm/app/media/img/LogoSmall.gif huginmunin/trunk/web/hm/app/media/img/LogoSmallPaint.gif huginmunin/trunk/web/hm/app/templates/graph.html Removed: huginmunin/trunk/web/hm/app/media/css/layout.css huginmunin/trunk/web/hm/app/media/css/looks.css Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html huginmunin/trunk/web/hm/app/templates/node_centric.html From lucy at thoughtandmemory.org Sat Nov 10 00:52:47 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 10 Nov 2007 00:52:47 -0500 (EST) Subject: [Dev-flock] r355 - in huginmunin/trunk/web/hm/app: media/css templates Message-ID: <20071110055247.521E275A6A@thoughtandmemory.org> added hide class so that some forms can be hidden. add tags has a bug and add new behavior doesn't work at all. add argument displays form but doesn't seem to work. Added: huginmunin/trunk/web/hm/app/media/css/forms.css Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html huginmunin/trunk/web/hm/app/templates/node_centric.html huginmunin/trunk/web/hm/app/templates/node_info_snippet.html From eggar at hotmail.com Sat Nov 10 02:16:25 2007 From: eggar at hotmail.com (Mike Eggar) Date: Sat, 10 Nov 2007 07:16:25 +0000 Subject: [Dev-flock] r355 - in huginmunin/trunk/web/hm/app: media/css templates In-Reply-To: <20071110055247.521E275A6A@thoughtandmemory.org> References: <20071110055247.521E275A6A@thoughtandmemory.org> Message-ID: little help? windows: "ImportError: No module named database" linux: "/web/hm/env/CURRENT does not exist! please specify an environment." > To: dev-flock at mit.edu> From: lucy at thoughtandmemory.org> Date: Sat, 10 Nov 2007 00:52:47 -0500> Subject: [Dev-flock] r355 - in huginmunin/trunk/web/hm/app: media/css templates> > added hide class so that some forms can be hidden. add tags has a bug and add new behavior doesn't work at all. add argument displays form but doesn't seem to work.> > Added:> huginmunin/trunk/web/hm/app/media/css/forms.css> Modified:> huginmunin/trunk/web/hm/app/media/css/blocks.css> huginmunin/trunk/web/hm/app/media/css/body.css> huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html> huginmunin/trunk/web/hm/app/templates/node_centric.html> huginmunin/trunk/web/hm/app/templates/node_info_snippet.html> _______________________________________________> Dev-flock mailing list> Dev-flock at mit.edu> http://mailman.mit.edu/mailman/listinfo/dev-flock _________________________________________________________________ Climb to the top of the charts!? Play Star Shuffle:? the word scramble challenge with star power. http://club.live.com/star_shuffle.aspx?icid=starshuffle_wlmailtextlink_oct -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071110/75038e05/attachment.htm From danring at MIT.EDU Sat Nov 10 03:25:22 2007 From: danring at MIT.EDU (Daniel Ring) Date: Sat, 10 Nov 2007 03:25:22 -0500 Subject: [Dev-flock] r355 - in huginmunin/trunk/web/hm/app: media/css templates In-Reply-To: References: <20071110055247.521E275A6A@thoughtandmemory.org> Message-ID: <47356AF2.2080800@mit.edu> Search your python files for where it's importing 'database.db' - this should be just 'db' now. Probably svn didn't merge it quite right. As for the CURRENT file, see below. Make a directory /web/hm/env/mike, echo 'mike' > /web/hm/env/CURRENT, then put your personal settings file at /web/hm/env/mike/settings.py (mainly this is where you should configure your database settings.) This was buried in a commit a while ago: "Also, you can now make your own settings.py file in /web/hm/env//settings.py. This file is appended to the normal settings.py file, so you can use modify settings and add to them (like middleware, if you want or don't want sql_log, for example). You should create a file hm/env/CURRENT containing only the name of the directory your settings.py is in (I do "echo 'dan' > env/CURRENT")." dan Mike Eggar wrote: > little help? > > windows: > "ImportError: No module named database" > > linux: > "/web/hm/env/CURRENT does not exist! please specify an environment." > > > >> To: dev-flock at mit.edu >> From: lucy at thoughtandmemory.org >> Date: Sat, 10 Nov 2007 00:52:47 -0500 >> Subject: [Dev-flock] r355 - in huginmunin/trunk/web/hm/app: media/css > templates >> >> added hide class so that some forms can be hidden. add tags has a bug > and add new behavior doesn't work at all. add argument displays form but > doesn't seem to work. >> >> Added: >> huginmunin/trunk/web/hm/app/media/css/forms.css >> Modified: >> huginmunin/trunk/web/hm/app/media/css/blocks.css >> huginmunin/trunk/web/hm/app/media/css/body.css >> huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html >> huginmunin/trunk/web/hm/app/templates/node_centric.html >> huginmunin/trunk/web/hm/app/templates/node_info_snippet.html >> _______________________________________________ >> Dev-flock mailing list >> Dev-flock at mit.edu >> http://mailman.mit.edu/mailman/listinfo/dev-flock > > > ------------------------------------------------------------------------ > Climb to the top of the charts! Play Star Shuffle: the word scramble > challenge with star power. Play Now! > > > > ------------------------------------------------------------------------ > > _______________________________________________ > Dev-flock mailing list > Dev-flock at mit.edu > http://mailman.mit.edu/mailman/listinfo/dev-flock From lucy at thoughtandmemory.org Sat Nov 10 11:17:50 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Sat, 10 Nov 2007 11:17:50 -0500 Subject: [Dev-flock] jquery Message-ID: yo, if you haven't already, please check out docs.jquery.com and ui.jquery.com the ui widgets especially will help us get a nice looking ui without writing everything from scratch. in general, jquery is quite intuitive and powerful. chaining is excellent. I'm converting the current block implementation to use jquery. Dan is on the verge of committing the error/validation/form infrastructure. Our main task is to get the functionality up to snuff. If you're not sure what to work on, let me know (or propose what you'd like to work on). Word! l. From lucy at thoughtandmemory.org Sat Nov 10 13:22:38 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 10 Nov 2007 13:22:38 -0500 (EST) Subject: [Dev-flock] r356 - in huginmunin/trunk/web/hm/app: media/css media/js templates templates/graph templates/node templates/user views Message-ID: <20071110182238.5164E75A6A@thoughtandmemory.org> using jquery for block toggling. refactored blocks into templates that extend block class. might be redone by dan in javascript... sorry if this causes massive conflicts Dan. i'm not too clear about the javascript framework you have setup right now... i understand that default templates are created from the templates in the templates folder.. and then modified via the ajax functions... eit. Added: huginmunin/trunk/web/hm/app/templates/block.html huginmunin/trunk/web/hm/app/templates/graph/ huginmunin/trunk/web/hm/app/templates/graph/graph.html huginmunin/trunk/web/hm/app/templates/graph/list.html huginmunin/trunk/web/hm/app/templates/node/ huginmunin/trunk/web/hm/app/templates/node/argument.html huginmunin/trunk/web/hm/app/templates/node/argument_add.html huginmunin/trunk/web/hm/app/templates/node/argument_list.html huginmunin/trunk/web/hm/app/templates/node/arguments.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/children.html huginmunin/trunk/web/hm/app/templates/node/citation.html huginmunin/trunk/web/hm/app/templates/node/node_info.html huginmunin/trunk/web/hm/app/templates/node/page.html huginmunin/trunk/web/hm/app/templates/node/parents.html huginmunin/trunk/web/hm/app/templates/node/tag_add.html huginmunin/trunk/web/hm/app/templates/node/toolbar.html huginmunin/trunk/web/hm/app/templates/user/ huginmunin/trunk/web/hm/app/templates/user/user_centric.html Removed: huginmunin/trunk/web/hm/app/templates/blocks.html huginmunin/trunk/web/hm/app/templates/graph.html huginmunin/trunk/web/hm/app/templates/node_argument.html huginmunin/trunk/web/hm/app/templates/node_argument_add.html huginmunin/trunk/web/hm/app/templates/node_argument_list.html huginmunin/trunk/web/hm/app/templates/node_arguments_snippet.html huginmunin/trunk/web/hm/app/templates/node_behavior_info.html huginmunin/trunk/web/hm/app/templates/node_behaviors_snippet.html huginmunin/trunk/web/hm/app/templates/node_centric.html huginmunin/trunk/web/hm/app/templates/node_children_snippet.html huginmunin/trunk/web/hm/app/templates/node_citation.html huginmunin/trunk/web/hm/app/templates/node_info_snippet.html huginmunin/trunk/web/hm/app/templates/node_list_snippet.html huginmunin/trunk/web/hm/app/templates/node_parents_snippet.html huginmunin/trunk/web/hm/app/templates/node_toolbar_snippet.html huginmunin/trunk/web/hm/app/templates/tag_add.html huginmunin/trunk/web/hm/app/templates/user_centric.html Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/views/main.py From lucy at thoughtandmemory.org Sat Nov 10 15:44:47 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Sat, 10 Nov 2007 15:44:47 -0500 Subject: [Dev-flock] http://www.visualjquery.com/ Message-ID: ps - this is a good way to browse the api http://www.visualjquery.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071110/d440def4/attachment.htm From lucy at thoughtandmemory.org Sat Nov 10 16:02:56 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 10 Nov 2007 16:02:56 -0500 (EST) Subject: [Dev-flock] r357 - in huginmunin/trunk/web/hm/app: media/css media/img media/js templates templates/node Message-ID: <20071110210256.E614375A6A@thoughtandmemory.org> futzed with header layout Added: huginmunin/trunk/web/hm/app/templates/header.html Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/header.css huginmunin/trunk/web/hm/app/media/img/LogoSmallPaint.gif huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/children.html huginmunin/trunk/web/hm/app/templates/node/parents.html From lucy at thoughtandmemory.org Sat Nov 10 19:26:13 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 10 Nov 2007 19:26:13 -0500 (EST) Subject: [Dev-flock] r358 - in huginmunin/trunk/web/hm/app: media/css media/js templates templates/graph templates/node views Message-ID: <20071111002613.C2CEE75A6A@thoughtandmemory.org> working on graph page. hooked up js to get node_list.... but object manipulation unclear to me, plus how to turn json -> template -> html...?? this is so much funsvn add templates/graph/page.html templates/graph/nodes.html @ Added: huginmunin/trunk/web/hm/app/media/js/node_list.js huginmunin/trunk/web/hm/app/templates/graph/nodes.html huginmunin/trunk/web/hm/app/templates/graph/page.html Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/graph/list.html huginmunin/trunk/web/hm/app/templates/header.html huginmunin/trunk/web/hm/app/templates/node/page.html huginmunin/trunk/web/hm/app/views/main.py huginmunin/trunk/web/hm/app/views/main_urls.py From lucy at thoughtandmemory.org Sat Nov 10 20:25:48 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 10 Nov 2007 20:25:48 -0500 (EST) Subject: [Dev-flock] r359 - huginmunin/trunk/web/hm/app/media/js Message-ID: <20071111012548.CB2EE75A6A@thoughtandmemory.org> added todo. if you pick up this task please let me know. thx Modified: huginmunin/trunk/web/hm/app/media/js/node_list.js From lucy at thoughtandmemory.org Sat Nov 10 21:57:13 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 10 Nov 2007 21:57:13 -0500 (EST) Subject: [Dev-flock] r360 - in huginmunin/trunk/web/hm/app/media: css img js Message-ID: <20071111025713.C33C275A6A@thoughtandmemory.org> filled in some table stuff. Added: huginmunin/trunk/web/hm/app/media/css/table.css huginmunin/trunk/web/hm/app/media/img/asc.png huginmunin/trunk/web/hm/app/media/img/bg.png huginmunin/trunk/web/hm/app/media/img/desc.png huginmunin/trunk/web/hm/app/media/js/jquery.tablesorter.js Modified: huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/media/js/node_list.js From lucy at thoughtandmemory.org Sun Nov 11 10:26:24 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 10:26:24 -0500 (EST) Subject: [Dev-flock] r361 - in huginmunin/trunk/web/hm/app: media/css media/img media/js templates templates/graph Message-ID: <20071111152624.2A5D375A6A@thoughtandmemory.org> table has data and kinda works. BUT: 1. i have to put breakpoint on line 33 of node_list.js using firebug. then i click the continue blue arrow and the table loads fine. otherwise, the sort function doesn't seem to get executed. (like 'this' is empty or something) can't find any indication of errors. 2. need to put json object together that contains, per node, the fields 'type' 'behaviors (or # behaviors)' 'dimensions' 'arguments', users... not exactly sure how this will work. we want to enable whatever sorts would be useful for finding nodes to explore/contribute. Added: huginmunin/trunk/web/hm/app/media/css/blue_table.css huginmunin/trunk/web/hm/app/media/img/asc.gif huginmunin/trunk/web/hm/app/media/img/bg.gif huginmunin/trunk/web/hm/app/media/img/desc.gif Modified: huginmunin/trunk/web/hm/app/media/css/table.css huginmunin/trunk/web/hm/app/media/js/node_list.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/block.html huginmunin/trunk/web/hm/app/templates/graph/list.html huginmunin/trunk/web/hm/app/templates/graph/page.html huginmunin/trunk/web/hm/app/templates/header.html From lucy at thoughtandmemory.org Sun Nov 11 11:37:49 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 11:37:49 -0500 (EST) Subject: [Dev-flock] r362 - in huginmunin/trunk/web/hm/app: media/css templates templates/account Message-ID: <20071111163749.C81B175A6A@thoughtandmemory.org> minor. link color edits Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/templates/account/login.html huginmunin/trunk/web/hm/app/templates/header.html From lucy at thoughtandmemory.org Sun Nov 11 12:05:49 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 12:05:49 -0500 (EST) Subject: [Dev-flock] r363 - in huginmunin/trunk/web/hm/app: media/css templates templates/graph templates/node templates/user views Message-ID: <20071111170549.E123E75A6A@thoughtandmemory.org> fleshed out user pages with block infrastructure and placeholders for user impact, profile and status blocks. fixed graph (not) login bug in main.py Added: huginmunin/trunk/web/hm/app/templates/user/impact.html huginmunin/trunk/web/hm/app/templates/user/page.html huginmunin/trunk/web/hm/app/templates/user/profile.html huginmunin/trunk/web/hm/app/templates/user/status.html Removed: huginmunin/trunk/web/hm/app/templates/user/user_centric.html Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/templates/graph/page.html huginmunin/trunk/web/hm/app/templates/header.html huginmunin/trunk/web/hm/app/templates/node/page.html huginmunin/trunk/web/hm/app/views/main.py From lucy at thoughtandmemory.org Sun Nov 11 12:12:51 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 12:12:51 -0500 (EST) Subject: [Dev-flock] r364 - huginmunin/trunk/web/hm/app/templates/user Message-ID: <20071111171251.E627775A6A@thoughtandmemory.org> minor. Modified: huginmunin/trunk/web/hm/app/templates/user/status.html From lucy at thoughtandmemory.org Sun Nov 11 14:57:04 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 14:57:04 -0500 (EST) Subject: [Dev-flock] r365 - in huginmunin/trunk/web/hm/app: media/css media/js templates templates/graph Message-ID: <20071111195704.2D97E75A6A@thoughtandmemory.org> min/max fixed and help fixed. any object with class help will hide/show when the turn on/off help buttons are pressed. this gives us a way to inline help into the page. Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/templates/block.html huginmunin/trunk/web/hm/app/templates/graph/list.html huginmunin/trunk/web/hm/app/templates/header.html From lucy at thoughtandmemory.org Sun Nov 11 17:47:49 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 17:47:49 -0500 (EST) Subject: [Dev-flock] r366 - in huginmunin/trunk/web/hm/app: media/css media/js templates templates/graph Message-ID: <20071111224749.B60B275A6A@thoughtandmemory.org> added create/modify forms to graph page. fixed table (not)sort bug... maybe we can use live query plugin to simplify code. click on node name to select it for the create node's parent. click details (eventually double click) to go to node page. Added: huginmunin/trunk/web/hm/app/templates/graph/create_node.html huginmunin/trunk/web/hm/app/templates/graph/modify_node.html Removed: huginmunin/trunk/web/hm/app/templates/graph/graph.html Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/media/js/node_list.js huginmunin/trunk/web/hm/app/templates/block.html huginmunin/trunk/web/hm/app/templates/graph/list.html huginmunin/trunk/web/hm/app/templates/graph/page.html From lucy at thoughtandmemory.org Sun Nov 11 19:50:30 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 19:50:30 -0500 (EST) Subject: [Dev-flock] r367 - in huginmunin/trunk/web/hm/app: media/css media/js templates/graph Message-ID: <20071112005030.7FB4175A6A@thoughtandmemory.org> minor. had been playing around with a plugin, but decided against using it. i wanted to get my whitespace and apostrophe changes in before someone else committed-- ha [exclamation point. otherwise -bash: event not found] Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/graph/create_node.html huginmunin/trunk/web/hm/app/templates/graph/modify_node.html From lucy at thoughtandmemory.org Sun Nov 11 20:29:26 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 20:29:26 -0500 (EST) Subject: [Dev-flock] r368 - in huginmunin/trunk/web/hm/app: media/css media/img media/img/jtageditor_icons media/img/jtageditor_icons/_notes media/img/jtageditor_images media/img/jtageditor_images/_notes media/js templates templates/graph Message-ID: <20071112012926.7EA2F75A6A@thoughtandmemory.org> jtageditor hooked up to create_node description. this isn't the right place for it (plain text descriptions are fine), but right now arguments and comments aren't hooked up right (Dan, you're on that, yes?) Added: huginmunin/trunk/web/hm/app/media/css/wiki-skin.css huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/ huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/_notes/ huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/_notes/dwsync.xml huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/bold.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/code.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/color.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/comments.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/emoticon-smile.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/emoticon-surprised.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/emoticon-tongue.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/emoticon-unhappy.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/emoticon-wink.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/error.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/folder.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/font.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/formula.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h1.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h2.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h3.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h4.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h5.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/h6.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/handle.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/image.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/indent.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/italic.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/link.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/list-bullets.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/list-item.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/list-numbers.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/media.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/paragraph.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/picture.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/preview.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/quotes.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/signature.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/stroke.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/style.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/subscript.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/superscript.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/table-col.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/table-row.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/table.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/tags-close.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/tags-delete.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/tags.png huginmunin/trunk/web/hm/app/media/img/jtageditor_icons/underline.png huginmunin/trunk/web/hm/app/media/img/jtageditor_images/ huginmunin/trunk/web/hm/app/media/img/jtageditor_images/_notes/ huginmunin/trunk/web/hm/app/media/img/jtageditor_images/_notes/dwsync.xml huginmunin/trunk/web/hm/app/media/img/jtageditor_images/bg-bbcode.png huginmunin/trunk/web/hm/app/media/img/jtageditor_images/bg-container.png huginmunin/trunk/web/hm/app/media/img/jtageditor_images/bg-html.png huginmunin/trunk/web/hm/app/media/img/jtageditor_images/bg-textile.png huginmunin/trunk/web/hm/app/media/img/jtageditor_images/bg-wiki.png huginmunin/trunk/web/hm/app/media/img/jtageditor_images/handle.png huginmunin/trunk/web/hm/app/media/js/jquery.jtageditor.js huginmunin/trunk/web/hm/app/media/js/wiki-parser.php huginmunin/trunk/web/hm/app/media/js/wiki-tags.js Modified: huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/graph/create_node.html From lucy at thoughtandmemory.org Sun Nov 11 20:38:13 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 20:38:13 -0500 (EST) Subject: [Dev-flock] r369 - huginmunin/trunk/web/hm/app/media/js Message-ID: <20071112013813.8F4CF75A6A@thoughtandmemory.org> alert (h) getting triggered when apache serves, but not when django serves... see comment in file. Modified: huginmunin/trunk/web/hm/app/media/js/node_list.js From lucy at thoughtandmemory.org Sun Nov 11 20:57:17 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 11 Nov 2007 20:57:17 -0500 (EST) Subject: [Dev-flock] r370 - in huginmunin/trunk/web/hm/app: media/css media/js templates/graph Message-ID: <20071112015718.01AEC75A6A@thoughtandmemory.org> [no parent] in label becomes [remove] in value Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/wiki-skin.css huginmunin/trunk/web/hm/app/media/js/node_list.js huginmunin/trunk/web/hm/app/templates/graph/create_node.html From lucy at thoughtandmemory.org Mon Nov 12 14:55:41 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Mon, 12 Nov 2007 14:55:41 -0500 (EST) Subject: [Dev-flock] r371 - in huginmunin/trunk/web/hm/app: media/css media/img media/img/rte media/js templates templates/graph templates/node Message-ID: <20071112195541.CDD5A75A6A@thoughtandmemory.org> the jtageditor requires wikisyntax parser. off the bat we could provide the html editor of the jtageditor (it has icons with tooltips, so eople wouldn't have to know html well), as well as the rich text editor, which i've just hooked up. that is, we could default to rte and then permit people use text areas with markup. i reused jtageditor icons and resize handle function in rte. both editors degrade gracefully to textareas. i fixed up some html tag w3c stuff. look at tempatles/graph/create and /modify for the proof of concept hookups. Added: huginmunin/trunk/web/hm/app/media/css/rte.css huginmunin/trunk/web/hm/app/media/img/rte/ huginmunin/trunk/web/hm/app/media/img/rte/bg-container.png huginmunin/trunk/web/hm/app/media/img/rte/bold.gif huginmunin/trunk/web/hm/app/media/img/rte/bold.png huginmunin/trunk/web/hm/app/media/img/rte/close.gif huginmunin/trunk/web/hm/app/media/img/rte/italic.gif huginmunin/trunk/web/hm/app/media/img/rte/italic.png huginmunin/trunk/web/hm/app/media/img/rte/link.png huginmunin/trunk/web/hm/app/media/img/rte/list-bullets.png huginmunin/trunk/web/hm/app/media/img/rte/picture.png huginmunin/trunk/web/hm/app/media/img/rte/unordered.gif huginmunin/trunk/web/hm/app/media/js/jquery.rte.js Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/forms.css huginmunin/trunk/web/hm/app/media/css/wiki-skin.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/graph/create_node.html huginmunin/trunk/web/hm/app/templates/graph/modify_node.html huginmunin/trunk/web/hm/app/templates/header.html huginmunin/trunk/web/hm/app/templates/node/argument_add.html huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/behaviors.html From lucy at thoughtandmemory.org Thu Nov 15 19:13:17 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Thu, 15 Nov 2007 19:13:17 -0500 Subject: [Dev-flock] prototype Message-ID: yo, It's important that we get the prototype into a working state ASAP and fully functional before Thanksgiving. Some tasks are on the wiki GUI page. The behavior/argument blocks are fairly broken and waiting for Dan's form validation---or would it still be good to get the javascript and HTML working for now? How much is the infrastructure changing? The graph and user pages need information from the database via python. Question: I want to give the django template and/or javascript function a datastructure like: array of { nodename, no.arguments, no.behaviors, all dimension names, tags, behavior tags, etc } a list of mappings created in the python code. I can create a list of mappings in python and then give that in the dictionary to the django template (i think)? can i serialize this to json? this is a bit of a dumb question, but i'm blocked on this. a quick example, or even filling in some values on the table in the graph page would be helpful to get things rolling. similar for the user page. i have to run now, but i'll be on later. you can call 617 216 8768 if you have questions or want to chat. Mike, I apologize for not getting back to you sooner. The task I mentioned above is fine to start working on, as are any of the open tasks on the wiki GUI page http://www.thoughtandmemory.org/trac/wiki/GUI thanks! l. From eggar at thoughtandmemory.org Thu Nov 15 21:45:40 2007 From: eggar at thoughtandmemory.org (eggar@thoughtandmemory.org) Date: Thu, 15 Nov 2007 21:45:40 -0500 (EST) Subject: [Dev-flock] r372 - huginmunin/trunk/web/hm/app/templates/node Message-ID: <20071116024540.7B61D75A67@thoughtandmemory.org> behaviors should be showing up now Modified: huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/behaviors.html From lucy at thoughtandmemory.org Thu Nov 15 23:36:13 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Thu, 15 Nov 2007 23:36:13 -0500 Subject: [Dev-flock] r372 - huginmunin/trunk/web/hm/app/templates/node In-Reply-To: <20071116024540.7B61D75A67@thoughtandmemory.org> References: <20071116024540.7B61D75A67@thoughtandmemory.org> Message-ID: word! unfortunately, the server is having cpu trouble.... it keeps spinning its gears. so i can't update. i just rebooted it, so we'll see if that helps. On Nov 15, 2007 9:45 PM, wrote: > behaviors should be showing up now > > > Modified: > huginmunin/trunk/web/hm/app/templates/node/behavior_info.html > huginmunin/trunk/web/hm/app/templates/node/behaviors.html > _______________________________________________ > Dev-flock mailing list > Dev-flock at mit.edu > http://mailman.mit.edu/mailman/listinfo/dev-flock > From eggar at thoughtandmemory.org Fri Nov 16 21:45:22 2007 From: eggar at thoughtandmemory.org (eggar@thoughtandmemory.org) Date: Fri, 16 Nov 2007 21:45:22 -0500 (EST) Subject: [Dev-flock] r373 - huginmunin/trunk/web/hm/app/templates/node Message-ID: <20071117024522.3847D75A67@thoughtandmemory.org> should be showing all arguments, I think the behaviors were showing up before but there were only a few in the database. node 36 has some. Modified: huginmunin/trunk/web/hm/app/templates/node/arguments.html huginmunin/trunk/web/hm/app/templates/node/behaviors.html huginmunin/trunk/web/hm/app/templates/node/page.html From eggar at thoughtandmemory.org Fri Nov 16 21:48:32 2007 From: eggar at thoughtandmemory.org (eggar@thoughtandmemory.org) Date: Fri, 16 Nov 2007 21:48:32 -0500 (EST) Subject: [Dev-flock] r374 - huginmunin/trunk/web/hm/app/templates/node Message-ID: <20071117024832.75F1975A67@thoughtandmemory.org> Modified: huginmunin/trunk/web/hm/app/templates/node/argument.html From eggar at thoughtandmemory.org Sat Nov 17 14:49:22 2007 From: eggar at thoughtandmemory.org (eggar@thoughtandmemory.org) Date: Sat, 17 Nov 2007 14:49:22 -0500 (EST) Subject: [Dev-flock] r375 - huginmunin/trunk/web/hm/app/templates/node Message-ID: <20071117194922.3EC2B75A67@thoughtandmemory.org> arguments and some responses are showing up, trying to figure out if recursion is possible just using the template. might not need ajax for the arguments, could just get all arguments and then control which ones are displayed and sorting with jquery Modified: huginmunin/trunk/web/hm/app/templates/node/argument.html huginmunin/trunk/web/hm/app/templates/node/arguments.html huginmunin/trunk/web/hm/app/templates/node/behaviors.html From lucy at thoughtandmemory.org Sat Nov 17 16:09:06 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Sat, 17 Nov 2007 16:09:06 -0500 Subject: [Dev-flock] r375 - huginmunin/trunk/web/hm/app/templates/node In-Reply-To: <20071117194922.3EC2B75A67@thoughtandmemory.org> References: <20071117194922.3EC2B75A67@thoughtandmemory.org> Message-ID: good approach. this is what i want to happen, but I couldn't figure out how to build the right structures. awesome! On Nov 17, 2007 2:49 PM, wrote: > arguments and some responses are showing up, trying to figure out if > recursion is possible just using the template. might not need ajax for > the arguments, could just get all arguments and then control which ones > are displayed and sorting with jquery > > > Modified: > huginmunin/trunk/web/hm/app/templates/node/argument.html > huginmunin/trunk/web/hm/app/templates/node/arguments.html > huginmunin/trunk/web/hm/app/templates/node/behaviors.html > _______________________________________________ > Dev-flock mailing list > Dev-flock at mit.edu > http://mailman.mit.edu/mailman/listinfo/dev-flock > From lucy at thoughtandmemory.org Sat Nov 17 17:03:50 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 17 Nov 2007 17:03:50 -0500 (EST) Subject: [Dev-flock] r376 - in huginmunin/trunk/web/hm/app: media media/flash templates templates/intro views Message-ID: <20071117220350.D3D8A75A67@thoughtandmemory.org> added some flash template stuff for the intro files that clay will upload Added: huginmunin/trunk/web/hm/app/media/flash/ huginmunin/trunk/web/hm/app/media/flash/hugin.swf huginmunin/trunk/web/hm/app/templates/intro/ huginmunin/trunk/web/hm/app/templates/intro/start.html Modified: huginmunin/trunk/web/hm/app/views/main.py huginmunin/trunk/web/hm/app/views/main_urls.py From eggar at thoughtandmemory.org Sat Nov 17 18:37:01 2007 From: eggar at thoughtandmemory.org (eggar@thoughtandmemory.org) Date: Sat, 17 Nov 2007 18:37:01 -0500 (EST) Subject: [Dev-flock] r377 - in huginmunin/trunk/web/hm/app: media/js templates templates/node templates/user Message-ID: <20071117233701.8CED275A67@thoughtandmemory.org> "show arguments" and "show responses" links should work. Added: huginmunin/trunk/web/hm/app/media/js/behavior.js huginmunin/trunk/web/hm/app/templates/node/argument_response.html Modified: huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/node/argument.html huginmunin/trunk/web/hm/app/templates/node/arguments.html huginmunin/trunk/web/hm/app/templates/user/impact.html From eggar at thoughtandmemory.org Wed Nov 21 14:55:58 2007 From: eggar at thoughtandmemory.org (eggar@thoughtandmemory.org) Date: Wed, 21 Nov 2007 14:55:58 -0500 (EST) Subject: [Dev-flock] r378 - in huginmunin/trunk/web/hm/app: media/js templates/node Message-ID: <20071121195558.2FE7375A6A@thoughtandmemory.org> Modified: huginmunin/trunk/web/hm/app/media/js/behavior.js huginmunin/trunk/web/hm/app/media/js/main.js huginmunin/trunk/web/hm/app/templates/node/argument.html From lucy at thoughtandmemory.org Fri Nov 23 19:47:28 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 23 Nov 2007 19:47:28 -0500 (EST) Subject: [Dev-flock] r382 - in huginmunin/trunk/web/hm/app: media/css templates/node Message-ID: <20071124004728.0A36575A6B@thoughtandmemory.org> carry over styling and created by refactoring. company name is big. Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/createdby.html huginmunin/trunk/web/hm/app/templates/node/node_info.html From lucy at thoughtandmemory.org Fri Nov 23 19:38:02 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 23 Nov 2007 19:38:02 -0500 (EST) Subject: [Dev-flock] r381 - in huginmunin/trunk/web/hm/app: media/css media/js templates templates/intro templates/node Message-ID: <20071124003802.36E4E75A6B@thoughtandmemory.org> add tag now works. cleaner, using jeditable. bug: a user can only add one tag per page load. added tag can be edited until page reloads. this isn't a *big* bug, so don't invest a lot of time in this, as our use case is unclear anyway. also added some files that may have been necesary for flash commit earlier. Added: huginmunin/trunk/web/hm/app/media/js/jquery.flash.js huginmunin/trunk/web/hm/app/media/js/jquery.jeditable.pack.js huginmunin/trunk/web/hm/app/templates/intro/page.html Modified: huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/node/node_info.html From lucy at thoughtandmemory.org Fri Nov 23 16:33:56 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 23 Nov 2007 16:33:56 -0500 (EST) Subject: [Dev-flock] r380 - in huginmunin/trunk/web/hm/app: media/css media/flash templates/node Message-ID: <20071123213356.2F90875A6B@thoughtandmemory.org> style sheet stuff for arg and behs. factored out 'created by' stuff. unfortunately, django filters for floatformat, dates and cycle don't pass with our templating stuff... not sure exactly, but definitely needs to be looked into. Added: huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/media/flash/cornerintro1tweens.swf huginmunin/trunk/web/hm/app/templates/node/createdby.html Modified: huginmunin/trunk/web/hm/app/templates/node/argument.html huginmunin/trunk/web/hm/app/templates/node/arguments.html huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/citation.html huginmunin/trunk/web/hm/app/templates/node/node_info.html huginmunin/trunk/web/hm/app/templates/node/page.html From lucy at thoughtandmemory.org Fri Nov 23 16:31:46 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 23 Nov 2007 16:31:46 -0500 (EST) Subject: [Dev-flock] r379 - in huginmunin/trunk/web/hm/app: media/css media/js templates/graph templates/user views Message-ID: <20071123213146.72C9975A6B@thoughtandmemory.org> main page goes to flash intro Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/graph/nodes.html huginmunin/trunk/web/hm/app/templates/user/profile.html huginmunin/trunk/web/hm/app/views/main.py huginmunin/trunk/web/hm/app/views/main_urls.py From lucy at thoughtandmemory.org Fri Nov 23 19:54:15 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 23 Nov 2007 19:54:15 -0500 (EST) Subject: [Dev-flock] r383 - in huginmunin/trunk/web/hm/app: media/css templates/node Message-ID: <20071124005415.A6FCB75A6B@thoughtandmemory.org> ok. now the company name is good Modified: huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/templates/node/node_info.html From lucy at thoughtandmemory.org Sat Nov 24 00:31:33 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sat, 24 Nov 2007 00:31:33 -0500 (EST) Subject: [Dev-flock] r384 - in huginmunin/trunk/web/hm/app: media/css templates templates/intro templates/node views Message-ID: <20071124053133.A248A75A6B@thoughtandmemory.org> finally restored forms to look reasonable (eit, myfault to begin with). commented out help button Modified: huginmunin/trunk/web/hm/app/media/css/forms.css huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/templates/header.html huginmunin/trunk/web/hm/app/templates/intro/page.html huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/views/main_urls.py From lucy at thoughtandmemory.org Sun Nov 25 17:25:16 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 25 Nov 2007 17:25:16 -0500 (EST) Subject: [Dev-flock] r385 - in huginmunin/trunk/web/hm/app: media/css media/js templates/node Message-ID: <20071125222516.C8F6175A6B@thoughtandmemory.org> tinkerings with display Modified: huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/media/css/rte.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/node/argument.html huginmunin/trunk/web/hm/app/templates/node/argument_add.html huginmunin/trunk/web/hm/app/templates/node/behavior_info.html huginmunin/trunk/web/hm/app/templates/node/createdby.html huginmunin/trunk/web/hm/app/templates/node/node_info.html From lucy at thoughtandmemory.org Sun Nov 25 18:06:10 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Sun, 25 Nov 2007 18:06:10 -0500 (EST) Subject: [Dev-flock] r386 - huginmunin/trunk/web/hm Message-ID: <20071125230611.0954D75A6B@thoughtandmemory.org> TODO started. (again) Added: huginmunin/trunk/web/hm/TODO From lucy at thoughtandmemory.org Sun Nov 25 21:03:45 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Sun, 25 Nov 2007 21:03:45 -0500 Subject: [Dev-flock] TODO in repo. wiki docs updated Message-ID: yo, I checked in a todo list to the repo. trunk/web/hm/TODO. I know I'm often starting management processes that aren't used, but I think this one can work! The commits lately have been really great-- Eggar, you are super quick at plugging in critical features without pausing at infrastructure changes. I think I've finally caught up on how things work, and Dan is going to continue updating the wiki. In particular, the ImplementationOverview should be updated. It might be useful to list what pieces of information are available per argument, behavior, node and user object, and how to get it. Good work, team!! I'm looking forward to the Dec 8/9th retreat! Lucy. From lucy at thoughtandmemory.org Sun Nov 25 22:30:52 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Sun, 25 Nov 2007 22:30:52 -0500 Subject: [Dev-flock] wiki needs new log in Message-ID: yo, Anyone can register for a wiki account now. This uses a trac plugin instead of apache's auth system. Thus, everyone needs to register for an account to use the wiki. your old account might work... i asked for my password as 'lucy' which seemed to have worked out fine. l. From clayward at MIT.EDU Tue Nov 27 09:48:08 2007 From: clayward at MIT.EDU (Clay Ward) Date: Tue, 27 Nov 2007 09:48:08 -0500 Subject: [Dev-flock] We have our tax exempt status! Message-ID: I just got a nice fat envelope from the IRS. They've granted us public status as a non-profit good until 2011 when we are reviewed. This means that we can apply for funding without having to explain to the foundations that we'll share that funding with a fiscal sponsor. So I'll stop typing now and start contacting the grants on our list! This also means that we can now accept tax deductible contributions! So let Santa know if you see him hanging around the water cooler, huh? Also, a big raven thank you goes out to Aresh and the MoreGardens! Coalition for agreeing to support us with fiscal sponsorship when we were in a pinch. Hurray! -clay -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071127/a57085ea/attachment.htm From eggar at hotmail.com Tue Nov 27 23:29:32 2007 From: eggar at hotmail.com (Mike Eggar) Date: Wed, 28 Nov 2007 04:29:32 +0000 Subject: [Dev-flock] TODO in repo. wiki docs updated In-Reply-To: References: Message-ID: I have the arguments going into a javascript object now when the node page loads, should be better performance than ajax and the display stuff should be trivial. need to clean it up a bit, will commit stuff by thursday. Mike > Date: Sun, 25 Nov 2007 21:03:45 -0500 > From: lucy at thoughtandmemory.org > To: dev-flock at mit.edu > Subject: [Dev-flock] TODO in repo. wiki docs updated > > yo, > > I checked in a todo list to the repo. trunk/web/hm/TODO. I know I'm > often starting management processes that aren't used, but I think this > one can work! > > The commits lately have been really great-- Eggar, you are super quick > at plugging in critical features without pausing at infrastructure > changes. > I think I've finally caught up on how things work, and Dan is going to > continue updating the wiki. In particular, the ImplementationOverview > should be updated. It might be useful to list what pieces of > information are available per argument, behavior, node and user > object, and how to get it. > > Good work, team!! > > I'm looking forward to the Dec 8/9th retreat! > > Lucy. > _______________________________________________ > Dev-flock mailing list > Dev-flock at mit.edu > http://mailman.mit.edu/mailman/listinfo/dev-flock _________________________________________________________________ Share life as it happens with the new Windows Live.Download today it's FREE! http://www.windowslive.com/share.html?ocid=TXT_TAGLM_Wave2_sharelife_112007 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071128/0cd66c8f/attachment.htm From lucy at thoughtandmemory.org Thu Nov 29 00:01:56 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Thu, 29 Nov 2007 00:01:56 -0500 Subject: [Dev-flock] forms, yeah! Message-ID: yo, the create node block on the graph view is almost working. I haven't quite plunged into the main.py python->db methods yet, but I finally figured out the javascript side of things. have a look at templates/graph/create_node.html and media/js/node_list.js and media/js/main.js (createNode()) for the low down. I'll keep working on the graph and user pages. Eggar is doing great work on the arguments, and Sean is learning great things about jquery and a certain charting plugin (though for purposes other than ThoughtAndMemory. currently). Another coop friend, Payaam, might begin working with us after Dec 15th. He is finishing up his masters this spring. I updated the ImplementationOverview wiki page this morning. Once I do a couple more forms I'll add docs for that, too. The infrastructure hasn't solidified yet... (incidentally, there are form plugins, eg jquery.form.jsbut that seemed more heavy weight than necessary. we'll see. Eggar, your thoughts on this matter are welcome. I have been building off your work a great deal.) I can't wait for our cape retreat next weekend (8th and 9th)!!! More details are on the way. keep it up! Lucy. ps - Charlie and Payaam, I'm adding you to the dev-flock email list. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071129/06986bf6/attachment.htm From cwallardo at gmail.com Tue Nov 27 10:16:57 2007 From: cwallardo at gmail.com (Clay Ward) Date: Tue, 27 Nov 2007 10:16:57 -0500 Subject: [Dev-flock] food tonight at 8pm! Message-ID: In celebration of ThoughtAndMemory.org's just now received tax exempt status I'm cooking dinner tonight at 17 Bishop Allen Drive at 8pm! Cooking helpers are welcome, but not required. I'm serving chili (spicy and not spicy) and a few other supporting character dishes. yeah! -clay -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071127/710c0529/attachment.htm From lucy at thoughtandmemory.org Thu Nov 29 13:53:19 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Thu, 29 Nov 2007 13:53:19 -0500 Subject: [Dev-flock] hooked up add behavior. Message-ID: yo, my commit message failed because i included funny characters (i think). i hooked up 'add behavior'. the process starts in behaviors.html, which calls addDrop2-- this function renders the provided template in the provided element id, with the provided parameter (currently, one can only provide a single param called 'id'). in this case, we drop (insert) the behavior_add.html form. onSubmit, this forms passes off the input values plus id (which in this case is for the node that the behavior is being attached to) to create_behavior(), which calls JSON and so on. again, i haven't actually saved any data in the db... still holding off on that until some docs pop up and/or i decided to dive in. i'm now going to make a note of 'how to add forms' to the ImplementationOverview wiki page. i'm not exactly sure the form process is the best one-- should we use onClick or onSubmit or $(foo).click( ? mainly, i wanted to show in the html file what other html snippet was going to be dropped, hence making the call to addDrop2 in the html file as opposed to in some javascript file. i don't know much about the speed or efficiency tradeoffs i'm making, though. good luck, let me know if ya'll have questions, l. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071129/c1f281c4/attachment.htm From eggar at hotmail.com Thu Nov 29 19:00:44 2007 From: eggar at hotmail.com (Mike Eggar) Date: Fri, 30 Nov 2007 00:00:44 +0000 Subject: [Dev-flock] hooked up add behavior. In-Reply-To: References: Message-ID: My commit message didnt work either. the arguments all show up now and the 'view arguments' link should filter arguments for each behavior. all the arguments can be controlled with jquery now. Mike Date: Thu, 29 Nov 2007 13:53:19 -0500 From: lucy at thoughtandmemory.org To: dev-flock at mit.edu Subject: [Dev-flock] hooked up add behavior. yo, my commit message failed because i included funny characters (i think). i hooked up 'add behavior'. the process starts in behaviors.html, which calls addDrop2-- this function renders the provided template in the provided element id, with the provided parameter (currently, one can only provide a single param called 'id'). in this case, we drop (insert) the behavior_add.html form. onSubmit, this forms passes off the input values plus id (which in this case is for the node that the behavior is being attached to) to create_behavior(), which calls JSON and so on. again, i haven't actually saved any data in the db... still holding off on that until some docs pop up and/or i decided to dive in. i'm now going to make a note of 'how to add forms' to the ImplementationOverview wiki page. i'm not exactly sure the form process is the best one-- should we use onClick or onSubmit or $(foo).click( ? mainly, i wanted to show in the html file what other html snippet was going to be dropped, hence making the call to addDrop2 in the html file as opposed to in some javascript file. i don't know much about the speed or efficiency tradeoffs i'm making, though. good luck, let me know if ya'll have questions, l. _________________________________________________________________ Connect and share in new ways with Windows Live. http://www.windowslive.com/connect.html?ocid=TXT_TAGLM_Wave2_newways_112007 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071130/8f64dad7/attachment.htm From lucy at thoughtandmemory.org Fri Nov 30 00:10:43 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 30 Nov 2007 00:10:43 -0500 (EST) Subject: [Dev-flock] r397 - huginmunin/trunk/web/src Message-ID: <20071130051043.7ACCE75A6B@thoughtandmemory.org> test. turned on auth for writing to trunk. Modified: huginmunin/trunk/web/src/test.test From lucy at thoughtandmemory.org Fri Nov 30 00:21:30 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 30 Nov 2007 00:21:30 -0500 (EST) Subject: [Dev-flock] r398 - huginmunin/trunk/web/hm Message-ID: <20071130052130.AB05075A6B@thoughtandmemory.org> added bug to TODO: [ ] if click 'Add Argument' and then click 'Add Behavior' get broken pipe error in django's runserver console Modified: huginmunin/trunk/web/hm/TODO From lucy at thoughtandmemory.org Fri Nov 30 00:42:17 2007 From: lucy at thoughtandmemory.org (Lucy Mendel) Date: Fri, 30 Nov 2007 00:42:17 -0500 Subject: [Dev-flock] hooked up add behavior. In-Reply-To: References: Message-ID: I saw your commit via the trac timeline-- cool!! I had removed authorization for commits in order to make us more open source in principle. I like the commit emails, and even better-- knowing who commits what (svn blame. or really, who to talk with when looking at a new piece of code). Auth is back. l. On Nov 29, 2007 7:00 PM, Mike Eggar wrote: > My commit message didnt work either. the arguments all show up now and > the 'view arguments' link should filter arguments for each behavior. all > the arguments can be controlled with jquery now. > > Mike > > ------------------------------ > Date: Thu, 29 Nov 2007 13:53:19 -0500 > From: lucy at thoughtandmemory.org > To: dev-flock at mit.edu > Subject: [Dev-flock] hooked up add behavior. > > > yo, > > my commit message failed because i included funny characters (i think). > > i hooked up 'add behavior'. the process starts in behaviors.html, which > calls addDrop2-- this function renders the provided template in the provided > element id, with the provided parameter (currently, one can only provide a > single param called 'id'). > > in this case, we drop (insert) the behavior_add.html form. > > onSubmit, this forms passes off the input values plus id (which in this > case is for the node that the behavior is being attached to) to > create_behavior(), which calls JSON and so on. > > again, i haven't actually saved any data in the db... still holding off on > that until some docs pop up and/or i decided to dive in. > > i'm now going to make a note of 'how to add forms' to the > ImplementationOverview wiki page. > > i'm not exactly sure the form process is the best one-- should we use > onClick or onSubmit or $(foo).click( ? mainly, i wanted to show in the > html file what other html snippet was going to be dropped, hence making the > call to addDrop2 in the html file as opposed to in some javascript file. i > don't know much about the speed or efficiency tradeoffs i'm making, though. > > > good luck, > let me know if ya'll have questions, > l. > > > ------------------------------ > Connect and share in new ways with Windows Live. Connect now! > > _______________________________________________ > Dev-flock mailing list > Dev-flock at mit.edu > http://mailman.mit.edu/mailman/listinfo/dev-flock > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071130/06b2608b/attachment.htm From lucy at thoughtandmemory.org Fri Nov 30 17:33:19 2007 From: lucy at thoughtandmemory.org (lucy@thoughtandmemory.org) Date: Fri, 30 Nov 2007 17:33:19 -0500 (EST) Subject: [Dev-flock] r399 - in huginmunin/trunk/web/hm/app: media/css media/img media/js templates templates/graph templates/node templates/user views Message-ID: <20071130223319.16CBF75A6B@thoughtandmemory.org> rearranged layout to make goal of page clearer to visitors; made ratings star; condensed createdby Added: huginmunin/trunk/web/hm/app/media/img/star_small.gif huginmunin/trunk/web/hm/app/media/js/jquery.rater.js huginmunin/trunk/web/hm/app/templates/anti_footer.html huginmunin/trunk/web/hm/app/templates/footer.html huginmunin/trunk/web/hm/app/templates/graph/info.html huginmunin/trunk/web/hm/app/templates/login_menu.html huginmunin/trunk/web/hm/app/templates/navigate.html Removed: huginmunin/trunk/web/hm/app/templates/header.html Modified: huginmunin/trunk/web/hm/app/media/css/blocks.css huginmunin/trunk/web/hm/app/media/css/body.css huginmunin/trunk/web/hm/app/media/css/footer.css huginmunin/trunk/web/hm/app/media/css/header.css huginmunin/trunk/web/hm/app/media/css/nodeblock.css huginmunin/trunk/web/hm/app/media/js/blocks.js huginmunin/trunk/web/hm/app/templates/base.html huginmunin/trunk/web/hm/app/templates/graph/create_node.html huginmunin/trunk/web/hm/app/templates/graph/nodes.html huginmunin/trunk/web/hm/app/templates/graph/page.html huginmunin/trunk/web/hm/app/templates/node/argument_add.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/children.html huginmunin/trunk/web/hm/app/templates/node/createdby.html huginmunin/trunk/web/hm/app/templates/node/node_info.html huginmunin/trunk/web/hm/app/templates/node/page.html huginmunin/trunk/web/hm/app/templates/node/parents.html huginmunin/trunk/web/hm/app/templates/user/impact.html huginmunin/trunk/web/hm/app/templates/user/page.html huginmunin/trunk/web/hm/app/templates/user/profile.html huginmunin/trunk/web/hm/app/templates/user/status.html huginmunin/trunk/web/hm/app/views/main.py From eggar at hotmail.com Fri Nov 30 22:30:48 2007 From: eggar at hotmail.com (Mike Eggar) Date: Sat, 1 Dec 2007 03:30:48 +0000 Subject: [Dev-flock] dumb question Message-ID: how can I add some data to the database, tried editing santa2.json then build_fixtures.rb and quickstart.py, no dice. probably a typo or am I missing something? Mike _________________________________________________________________ Share life as it happens with the new Windows Live.Download today it's FREE! http://www.windowslive.com/share.html?ocid=TXT_TAGLM_Wave2_sharelife_112007 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mailman.mit.edu/pipermail/dev-flock/attachments/20071201/9deea78c/attachment.htm