Initial commit to the repo
commitb581d783bed8d46a7ff398beab7285ca0372d814
authorBryan W Clark <clarkbw@gnome.org>
Thu, 8 Nov 2007 02:33:11 +0000 (7 21:33 -0500)
committerBryan W Clark <clarkbw@gnome.org>
Thu, 8 Nov 2007 02:33:11 +0000 (7 21:33 -0500)
tree6dfb54f6ac35ee84a24f422f00b7877d57da48ee
Initial commit to the repo
147 files changed:
.gitignore [new file with mode: 0644]
README [new file with mode: 0644]
Rakefile [new file with mode: 0644]
app/controllers/application.rb [new file with mode: 0644]
app/controllers/comments_controller.rb [new file with mode: 0644]
app/controllers/issues_controller.rb [new file with mode: 0644]
app/controllers/sessions_controller.rb [new file with mode: 0644]
app/controllers/users_controller.rb [new file with mode: 0644]
app/helpers/application_helper.rb [new file with mode: 0644]
app/helpers/comments_helper.rb [new file with mode: 0644]
app/helpers/issues_helper.rb [new file with mode: 0644]
app/helpers/sessions_helper.rb [new file with mode: 0644]
app/helpers/users_helper.rb [new file with mode: 0644]
app/models/comment.rb [new file with mode: 0644]
app/models/issue.rb [new file with mode: 0644]
app/models/user.rb [new file with mode: 0644]
app/models/user_action_observer.rb [new file with mode: 0644]
app/models/user_mailer.rb [new file with mode: 0644]
app/models/user_observer.rb [new file with mode: 0644]
app/views/comments/_form.rhtml [new file with mode: 0644]
app/views/comments/_show.rhtml [new file with mode: 0644]
app/views/comments/edit.rhtml [new file with mode: 0644]
app/views/comments/index.rhtml [new file with mode: 0644]
app/views/comments/show.rhtml [new file with mode: 0644]
app/views/issues/_form.rhtml [new file with mode: 0644]
app/views/issues/_show.rhtml [new file with mode: 0644]
app/views/issues/edit.rhtml [new file with mode: 0644]
app/views/issues/index.rhtml [new file with mode: 0644]
app/views/issues/new.rhtml [new file with mode: 0644]
app/views/issues/show.rhtml [new file with mode: 0644]
app/views/layouts/_bar.rhtml [new file with mode: 0644]
app/views/layouts/_footer.rhtml [new file with mode: 0644]
app/views/layouts/_header.rhtml [new file with mode: 0644]
app/views/layouts/comments.rhtml [new file with mode: 0644]
app/views/layouts/default.rhtml [new file with mode: 0644]
app/views/layouts/issues.rhtml [new file with mode: 0644]
app/views/sessions/new.rhtml [new file with mode: 0644]
app/views/user_mailer/activation.rhtml [new file with mode: 0644]
app/views/user_mailer/signup_notification.rhtml [new file with mode: 0644]
app/views/users/_show.rhtml [new file with mode: 0644]
app/views/users/new.rhtml [new file with mode: 0644]
app/views/users/show.rhtml [new file with mode: 0644]
config/boot.rb [new file with mode: 0644]
config/database.yml [new file with mode: 0644]
config/environment.rb [new file with mode: 0644]
config/environments/development.rb [new file with mode: 0644]
config/environments/production.rb [new file with mode: 0644]
config/environments/test.rb [new file with mode: 0644]
config/routes.rb [new file with mode: 0644]
db/migrate/001_create_users.rb [new file with mode: 0644]
db/migrate/002_add_open_id_authentication_tables.rb [new file with mode: 0644]
db/migrate/003_create_issues.rb [new file with mode: 0644]
db/migrate/004_create_comments.rb [new file with mode: 0644]
doc/GOALS [new file with mode: 0644]
doc/README_FOR_APP [new file with mode: 0644]
doc/issue page.svg [new file with mode: 0644]
doc/plugins.svg [new file with mode: 0644]
lib/authenticated_system.rb [new file with mode: 0644]
lib/authenticated_test_helper.rb [new file with mode: 0644]
public/.htaccess [new file with mode: 0644]
public/404.html [new file with mode: 0644]
public/500.html [new file with mode: 0644]
public/dispatch.cgi [new file with mode: 0755]
public/dispatch.fcgi [new file with mode: 0755]
public/dispatch.rb [new file with mode: 0755]
public/favicon.ico [new file with mode: 0644]
public/javascripts/application.js [new file with mode: 0644]
public/javascripts/controls.js [new file with mode: 0644]
public/javascripts/dragdrop.js [new file with mode: 0644]
public/javascripts/effects.js [new file with mode: 0644]
public/javascripts/prototype.js [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
public/stylesheets/scaffold.css [new file with mode: 0644]
script/about [new file with mode: 0755]
script/breakpointer [new file with mode: 0755]
script/console [new file with mode: 0755]
script/destroy [new file with mode: 0755]
script/generate [new file with mode: 0755]
script/performance/benchmarker [new file with mode: 0755]
script/performance/profiler [new file with mode: 0755]
script/plugin [new file with mode: 0755]
script/process/inspector [new file with mode: 0755]
script/process/reaper [new file with mode: 0755]
script/process/spawner [new file with mode: 0755]
script/runner [new file with mode: 0755]
script/server [new file with mode: 0755]
test/fixtures/comments.yml [new file with mode: 0644]
test/fixtures/issues.yml [new file with mode: 0644]
test/fixtures/users.yml [new file with mode: 0644]
test/functional/comments_controller_test.rb [new file with mode: 0644]
test/functional/issues_controller_test.rb [new file with mode: 0644]
test/functional/sessions_controller_test.rb [new file with mode: 0644]
test/functional/users_controller_test.rb [new file with mode: 0644]
test/test_helper.rb [new file with mode: 0644]
test/unit/comment_test.rb [new file with mode: 0644]
test/unit/issue_test.rb [new file with mode: 0644]
test/unit/user_action_observer_test.rb [new file with mode: 0644]
test/unit/user_mailer_test.rb [new file with mode: 0644]
test/unit/user_test.rb [new file with mode: 0644]
vendor/plugins/guid/README.TXT [new file with mode: 0644]
vendor/plugins/guid/init.rb [new file with mode: 0644]
vendor/plugins/guid/lib/usesguid.rb [new file with mode: 0644]
vendor/plugins/guid/lib/uuid22.rb [new file with mode: 0644]
vendor/plugins/guid/lib/uuidtools.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/CHANGELOG [new file with mode: 0644]
vendor/plugins/open_id_authentication/README [new file with mode: 0644]
vendor/plugins/open_id_authentication/Rakefile [new file with mode: 0644]
vendor/plugins/open_id_authentication/init.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/generators/open_id_authentication_tables/templates/migration.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/association.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/lib/open_id_authentication/setting.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/tasks/open_id_authentication_tasks.rake [new file with mode: 0644]
vendor/plugins/open_id_authentication/test/normalize_test.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/test/open_id_authentication_test.rb [new file with mode: 0644]
vendor/plugins/open_id_authentication/test/status_test.rb [new file with mode: 0644]
vendor/plugins/permalink_fu/README [new file with mode: 0644]
vendor/plugins/permalink_fu/init.rb [new file with mode: 0644]
vendor/plugins/permalink_fu/lib/permalink_fu.rb [new file with mode: 0644]
vendor/plugins/permalink_fu/test/permalink_fu_test.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/README [new file with mode: 0644]
vendor/plugins/restful_authentication/Rakefile [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/USAGE [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/authenticated_generator.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/activation.rhtml [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_system.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_test_helper.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/controller.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/fixtures.yml [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/functional_test.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/helper.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/login.rhtml [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/mailer.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/mailer_test.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/migration.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/model.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/model_controller.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/model_functional_test.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/observer.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/signup.rhtml [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/signup_notification.rhtml [new file with mode: 0644]
vendor/plugins/restful_authentication/generators/authenticated/templates/unit_test.rb [new file with mode: 0644]
vendor/plugins/restful_authentication/install.rb [new file with mode: 0644]