f h o b i a  - Web Site Change Log

f h o b i a

The Art of Brian Muramatsu


Fix Piece Data Migration Sun Jun 17 13:47:08 2007 -0700 Fixed missing entry for "Phallic Needle" and reordered statement to properly order exhibits and pieces as exhibits appear in the table. gallery/db/migrate/004_add_piece_data.rb | 14 ++++++++------ 1 files changed, 8 insertions(+), 6 deletions(-)
Join Exhibits and Pieces Sun Jun 17 13:14:22 2007 -0700 Create a join table between exhibits and pieces, so that each piece can belong to multiple galleries. Add "has_and_belongs_to_many" to exhibit and piece to reflect the database relationship. gallery/app/models/exhibit.rb | 1 + gallery/app/models/piece.rb | 1 + gallery/db/migrate/005_join_exhibits_pieces.rb | 15 +++++++++++++++ gallery/db/schema.rb | 10 +++++++++- 4 files changed, 26 insertions(+), 1 deletions(-)
Piece Data Migration Sun Jun 17 12:51:32 2007 -0700 Adds piece names to the database. gallery/db/migrate/004_add_piece_data.rb | 45 ++++++++++++++++++++++++++++++ gallery/db/schema.rb | 6 +++- 2 files changed, 50 insertions(+), 1 deletions(-)
Piece Model and Migration Sun Jun 17 11:47:49 2007 -0700 Creates a model for pieces in an exhibit and corresponding migration to create the table. So far, only the name of the piece is specified. gallery/app/models/piece.rb | 2 ++ gallery/db/migrate/003_create_pieces.rb | 11 +++++++++++ gallery/test/fixtures/pieces.yml | 5 +++++ gallery/test/unit/piece_test.rb | 10 ++++++++++ 4 files changed, 28 insertions(+), 0 deletions(-)
Display Gallery Names Sun Jun 17 11:37:03 2007 -0700 Change the controller to set the exhibits to a member datum and have the view template show the names in a list. gallery/app/controllers/gallery_controller.rb | 1 + gallery/app/views/gallery/index.rhtml | 3 +++ 2 files changed, 4 insertions(+), 0 deletions(-)
Exhibit Data Migration Sun Jun 17 11:25:21 2007 -0700 Adds exhibit names to the database. gallery/db/migrate/002_add_exhibit_data.rb | 15 +++++++++++++++ gallery/db/schema.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletions(-)
Exhibit Model and Migration Sun Jun 17 10:36:32 2007 -0700 Created a model for exhibits and a corresponding migration. The table has a single column for the name of the exhibit. gallery/app/models/exhibit.rb | 2 ++ gallery/db/migrate/001_create_exhibits.rb | 11 +++++++++++ gallery/db/schema.rb | 11 +++++++++++ gallery/test/fixtures/exhibits.yml | 5 +++++ gallery/test/unit/exhibit_test.rb | 10 ++++++++++ 5 files changed, 39 insertions(+), 0 deletions(-)
Setup MySQL Configuration Sun Jun 17 10:17:43 2007 -0700 Set the socket file used in Slackware. gallery/config/database.yml | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
Basic Gallery Controller Sun Jun 17 10:08:13 2007 -0700 Adds supporting files created by "rails script/generate controller gallery." Also adds the index action for the gallery controller with a view template that welcomes the visitor. gallery/app/controllers/gallery_controller.rb | 6 ++++++ gallery/app/helpers/gallery_helper.rb | 2 ++ gallery/app/views/gallery/index.rhtml | 8 ++++++++ gallery/test/functional/gallery_controller_test.rb | 18 ++++++++++++++++++ 4 files changed, 34 insertions(+), 0 deletions(-)
Initial Rails Structure Sun Jun 17 09:57:57 2007 -0700 Adds the files created by "rails gallery." gallery/README | 182 ++ gallery/Rakefile | 10 + gallery/app/controllers/application.rb | 7 + gallery/app/helpers/application_helper.rb | 3 + gallery/config/boot.rb | 45 + gallery/config/database.yml | 36 + gallery/config/environment.rb | 60 + gallery/config/environments/development.rb | 21 + gallery/config/environments/production.rb | 18 + gallery/config/environments/test.rb | 19 + gallery/config/routes.rb | 23 + gallery/doc/README_FOR_APP | 2 + gallery/public/.htaccess | 40 + gallery/public/404.html | 30 + gallery/public/500.html | 30 + gallery/public/dispatch.cgi | 10 + gallery/public/dispatch.fcgi | 24 + gallery/public/dispatch.rb | 10 + gallery/public/images/rails.png | Bin 0 -> 1787 bytes gallery/public/index.html | 277 +++ gallery/public/javascripts/application.js | 2 + gallery/public/javascripts/controls.js | 833 +++++++++ gallery/public/javascripts/dragdrop.js | 942 +++++++++++ gallery/public/javascripts/effects.js | 1088 ++++++++++++ gallery/public/javascripts/prototype.js | 2515 ++++++++++++++++++++++++++++ gallery/public/robots.txt | 1 + gallery/script/about | 3 + gallery/script/breakpointer | 3 + gallery/script/console | 3 + gallery/script/destroy | 3 + gallery/script/generate | 3 + gallery/script/performance/benchmarker | 3 + gallery/script/performance/profiler | 3 + gallery/script/plugin | 3 + gallery/script/process/inspector | 3 + gallery/script/process/reaper | 3 + gallery/script/process/spawner | 3 + gallery/script/runner | 3 + gallery/script/server | 3 + gallery/test/test_helper.rb | 28 + 40 files changed, 6295 insertions(+), 0 deletions(-)