Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
author<jlsharps@mit.edu> <>
Sat, 4 Aug 2007 04:43:54 +0000 (00:43 -0400)
committer<jlsharps@mit.edu> <>
Sat, 4 Aug 2007 04:43:54 +0000 (00:43 -0400)
commit22f84a3ea8bc39eb4cb91575d35dfca683336032
treeb4cf0efc06fe17365abe740add792891109544b5
parentdc635b6d39be19a09a428282b6d639d029908df6
Well, it seems I forgot to add the acts_as_authenticated to the repository on my last commit, but they're there now. Also, I recently added the Gruff graphing plugin, and created a new controller for the graphs, with a method I ported from pollarize to chart how many people have voted per day. The basic_login page works, and the create user sstem works, but is unpolished and still points to a poem as the index page, so if you read a poem, it's supposed to happen. The quickvote creation from the homepage is NOT working however, and is about to be investigated. I'm not sure how much else isn't working. I noted details abotu acts_as_authenticated adn Gruff in the README.
71 files changed:
README
app/controllers/account_controller.rb [new file with mode: 0644]
app/controllers/application.rb
app/controllers/graphs_controller.rb [new file with mode: 0644]
app/controllers/quickvote_controller.rb
app/controllers/site_controller.rb
app/helpers/account_helper.rb [new file with mode: 0644]
app/models/account.rb [new file with mode: 0644]
app/views/account/index.rhtml [new file with mode: 0644]
app/views/account/login.rhtml [new file with mode: 0644]
app/views/account/signup.rhtml [new file with mode: 0644]
app/views/layouts/hc.rhtml
db/create.sql
db/migrate/004_create_users.rb [new file with mode: 0644]
lib/authenticated_system.rb [new file with mode: 0644]
lib/authenticated_test_helper.rb [new file with mode: 0644]
test/fixtures/users.yml [new file with mode: 0644]
test/functional/account_controller_test.rb [new file with mode: 0644]
test/functional/graphs_controller_test.rb [new file with mode: 0644]
test/unit/user_test.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/CHANGELOG [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/README [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/USAGE [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/authenticated_generator.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/authenticated_system.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/authenticated_test_helper.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/controller.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/fixtures.yml [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/functional_test.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/helper.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/index.rhtml [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/login.rhtml [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/migration.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/model.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/signup.rhtml [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated/templates/unit_test.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/USAGE [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/authenticated_mailer_generator.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/activation.rhtml [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/notifier.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/notifier_test.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/observer.rb [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/generators/authenticated_mailer/templates/signup_notification.rhtml [new file with mode: 0644]
vendor/plugins/acts_as_authenticated/install.rb [new file with mode: 0644]
vendor/plugins/gruff/MIT-LICENSE [new file with mode: 0644]
vendor/plugins/gruff/README [new file with mode: 0644]
vendor/plugins/gruff/Rakefile [new file with mode: 0644]
vendor/plugins/gruff/about.yml [new file with mode: 0644]
vendor/plugins/gruff/generators/gruff/gruff_generator.rb [new file with mode: 0644]
vendor/plugins/gruff/generators/gruff/templates/controller.rb [new file with mode: 0644]
vendor/plugins/gruff/generators/gruff/templates/functional_test.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/accumulator_bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/area.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/bar_conversion.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/base.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/deprecated.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/line.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/mini/bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/mini/legend.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/mini/pie.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/mini/side_bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/net.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/photo_bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/pie.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/scene.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/side_bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/side_stacked_bar.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/spider.rb [new file with mode: 0644]
vendor/plugins/gruff/lib/gruff/stacked_bar.rb [new file with mode: 0644]

Benjamin Mako Hill || Want to submit a patch?