initial import boxroom 0.6.2v0.6.2
commit702b17ea44c853569d4dd6894d7346ac4fa061e6
authorStian Haklev <shaklev@gmail.com>
Wed, 9 May 2007 08:57:32 +0000 (9 15:57 +0700)
committerStian Haklev <shaklev@gmail.com>
Wed, 9 May 2007 08:57:32 +0000 (9 15:57 +0700)
tree0725ebb40593442a9a655cc1948657c7ed04316f
initial import boxroom 0.6.2
183 files changed:
CHANGELOG [new file with mode: 0644]
MIT.txt [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/authentication_controller.rb [new file with mode: 0644]
app/controllers/clipboard_controller.rb [new file with mode: 0644]
app/controllers/file_controller.rb [new file with mode: 0644]
app/controllers/folder_controller.rb [new file with mode: 0644]
app/controllers/group_controller.rb [new file with mode: 0644]
app/controllers/search_controller.rb [new file with mode: 0644]
app/controllers/user_controller.rb [new file with mode: 0644]
app/helpers/application_helper.rb [new file with mode: 0644]
app/helpers/authentication_helper.rb [new file with mode: 0644]
app/helpers/clipboard_helper.rb [new file with mode: 0644]
app/helpers/file_helper.rb [new file with mode: 0644]
app/helpers/folder_helper.rb [new file with mode: 0644]
app/helpers/group_helper.rb [new file with mode: 0644]
app/helpers/search_helper.rb [new file with mode: 0644]
app/helpers/user_helper.rb [new file with mode: 0644]
app/models/clipboard.rb [new file with mode: 0644]
app/models/folder.rb [new file with mode: 0644]
app/models/group.rb [new file with mode: 0644]
app/models/group_permission.rb [new file with mode: 0644]
app/models/myfile.rb [new file with mode: 0644]
app/models/password_mailer.rb [new file with mode: 0644]
app/models/usage.rb [new file with mode: 0644]
app/models/user.rb [new file with mode: 0644]
app/views/authentication/create_admin.rhtml [new file with mode: 0644]
app/views/authentication/forgot_password.rhtml [new file with mode: 0644]
app/views/authentication/login.rhtml [new file with mode: 0644]
app/views/clipboard/show.rhtml [new file with mode: 0644]
app/views/file/preview.rhtml [new file with mode: 0644]
app/views/file/rename.rhtml [new file with mode: 0644]
app/views/file/upload.rhtml [new file with mode: 0644]
app/views/file/upload_without_progress.rhtml [new file with mode: 0644]
app/views/folder/_form.rhtml [new file with mode: 0644]
app/views/folder/feed.rxml [new file with mode: 0644]
app/views/folder/feed_warning.rhtml [new file with mode: 0644]
app/views/folder/list.rhtml [new file with mode: 0644]
app/views/folder/new.rhtml [new file with mode: 0644]
app/views/folder/rename.rhtml [new file with mode: 0644]
app/views/group/_form.rhtml [new file with mode: 0644]
app/views/group/list.rhtml [new file with mode: 0644]
app/views/group/new.rhtml [new file with mode: 0644]
app/views/group/rename.rhtml [new file with mode: 0644]
app/views/layouts/authentication.rhtml [new file with mode: 0644]
app/views/layouts/clipboard.rhtml [new file with mode: 0644]
app/views/layouts/file.rhtml [new file with mode: 0644]
app/views/layouts/folder.rhtml [new file with mode: 0644]
app/views/layouts/group.rhtml [new file with mode: 0644]
app/views/layouts/search.rhtml [new file with mode: 0644]
app/views/layouts/user.rhtml [new file with mode: 0644]
app/views/password_mailer/forgotten.rhtml [new file with mode: 0644]
app/views/password_mailer/new_user.rhtml [new file with mode: 0644]
app/views/search/show_results.rhtml [new file with mode: 0644]
app/views/shared/_create_file_folder.rhtml [new file with mode: 0644]
app/views/shared/_go_to_menu.rhtml [new file with mode: 0644]
app/views/shared/_logged_in_user_menu.rhtml [new file with mode: 0644]
app/views/shared/_search_form.rhtml [new file with mode: 0644]
app/views/user/_form.rhtml [new file with mode: 0644]
app/views/user/edit.rhtml [new file with mode: 0644]
app/views/user/list.rhtml [new file with mode: 0644]
app/views/user/new.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/mongrel_upload_progress.conf [new file with mode: 0644]
config/routes.rb [new file with mode: 0644]
db/migrate/001_initial_schema.rb [new file with mode: 0644]
db/migrate/002_add_password_salt_to_user.rb [new file with mode: 0644]
db/migrate/003_add_access_key_column_to_user_table.rb [new file with mode: 0644]
db/migrate/004_add_indexed_field_to_myfiles.rb [new file with mode: 0644]
db/schema.rb [new file with mode: 0644]
doc/README_FOR_APP [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: 0644]
public/dispatch.fcgi [new file with mode: 0644]
public/dispatch.rb [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/images/asc.png [new file with mode: 0644]
public/images/delete.png [new file with mode: 0644]
public/images/desc.png [new file with mode: 0644]
public/images/dots.png [new file with mode: 0644]
public/images/edit.png [new file with mode: 0644]
public/images/file.png [new file with mode: 0644]
public/images/folder.png [new file with mode: 0644]
public/images/group.png [new file with mode: 0644]
public/images/group_grey.png [new file with mode: 0644]
public/images/logo.png [new file with mode: 0644]
public/images/rails.png [new file with mode: 0644]
public/images/spinner_mac.gif [new file with mode: 0644]
public/images/user.png [new file with mode: 0644]
public/images/zoom.png [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/boxroom.css [new file with mode: 0644]
public/stylesheets/scaffold.css [new file with mode: 0644]
script/about [new file with mode: 0644]
script/breakpointer [new file with mode: 0644]
script/console [new file with mode: 0644]
script/console_sandbox.rb [new file with mode: 0644]
script/destroy [new file with mode: 0644]
script/generate [new file with mode: 0644]
script/performance/benchmarker [new file with mode: 0644]
script/performance/profiler [new file with mode: 0644]
script/plugin [new file with mode: 0644]
script/process/inspector [new file with mode: 0644]
script/process/reaper [new file with mode: 0644]
script/process/spawner [new file with mode: 0644]
script/process/spinner [new file with mode: 0644]
script/runner [new file with mode: 0644]
script/server [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/ChangeLog [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/NEWS [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/README [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/Rakefile [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/TODO [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/install.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/download_quizzes.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Bill Guindon/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Carlos/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Dennis Ranke/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Florian Gross/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Glen M. Lewis/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/James Edward Gray II/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/bin/main.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/lib/cipher.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/lib/cli.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/test/tc_deck.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/test/tc_key-stream.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/test/tc_keying-algorithms.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/test/tc_solitaire-cipher.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/test/tc_unkeyed-algorithm.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jamis Buck/test/tests.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jim Menard/solitaire_cypher.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Jim Menard/test.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/cipher.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/deck.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/test_cipher.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/test_deck.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/test_util.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/testsuite.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Moses Hohman/util.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Niklas Frykholm/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/quiz1/t/solutions/Thomas Leitner/solitaire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/zip/ioextras.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/zip/stdrubyext.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/zip/tempfile_bugfixed.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/zip/zip.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/zip/zipfilesystem.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/lib/zip/ziprequire.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/samples/example.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/samples/example_filesystem.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/samples/gtkRubyzip.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/samples/qtzip.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/samples/write_simple.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/samples/zipfind.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/alltests.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/file1.txt [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/file1.txt.deflatedData [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/file2.txt [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/notzippedruby.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/rubycode.zip [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/rubycode2.zip [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/testDirectory.bin [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/data/zipWithDirs.zip [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/gentestfiles.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/ioextrastest.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/stdrubyexttest.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/zipfilesystemtest.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/ziprequiretest.rb [new file with mode: 0644]
vendor/plugins/rubyzip-0.9.1/test/ziptest.rb [new file with mode: 0644]