Changeset 80511
- Timestamp:
- 07/13/11 21:48:08 (4 years ago)
- Location:
- branches/gsoc11-statistics/stats-server
- Files:
-
- 153 added
-
. (added)
-
.gitignore (added)
-
Gemfile (added)
-
Gemfile.lock (added)
-
README (added)
-
Rakefile (added)
-
app (added)
-
app/controllers (added)
-
app/controllers/application_controller.rb (added)
-
app/controllers/categories_controller.rb (added)
-
app/controllers/home_controller.rb (added)
-
app/controllers/installed_ports_controller.rb (added)
-
app/controllers/os_statistics_controller.rb (added)
-
app/controllers/ports_controller.rb (added)
-
app/controllers/submissions_controller.rb (added)
-
app/helpers (added)
-
app/helpers/application_helper.rb (added)
-
app/helpers/categories_helper.rb (added)
-
app/helpers/home_helper.rb (added)
-
app/helpers/ports_helper.rb (added)
-
app/helpers/submissions_helper.rb (added)
-
app/mailers (added)
-
app/models (added)
-
app/models/category.rb (added)
-
app/models/installed_port.rb (added)
-
app/models/os_statistic.rb (added)
-
app/models/port.rb (added)
-
app/models/submission.rb (added)
-
app/sweepers (added)
-
app/sweepers/category_sweeper.rb (added)
-
app/sweepers/port_sweeper.rb (added)
-
app/views (added)
-
app/views/categories (added)
-
app/views/categories/index.html.erb (added)
-
app/views/home (added)
-
app/views/home/index.html.erb (added)
-
app/views/installed_ports (added)
-
app/views/installed_ports/index.html.erb (added)
-
app/views/installed_ports/show.html.erb (added)
-
app/views/layouts (added)
-
app/views/layouts/application.html.erb (added)
-
app/views/os_statistics (added)
-
app/views/os_statistics/index.html.erb (added)
-
app/views/os_statistics/show.html.erb (added)
-
app/views/partials (added)
-
app/views/partials/_nav.html.erb (added)
-
app/views/partials/_port_search.html.erb (added)
-
app/views/ports (added)
-
app/views/ports/index.html.erb (added)
-
app/views/ports/show.html.erb (added)
-
app/views/submissions (added)
-
app/views/submissions/_form.html.erb (added)
-
app/views/submissions/edit.html.erb (added)
-
app/views/submissions/index.html.erb (added)
-
app/views/submissions/new.html.erb (added)
-
app/views/submissions/show.html.erb (added)
-
config (added)
-
config.ru (added)
-
config/application.rb (added)
-
config/boot.rb (added)
-
config/database.yml (added)
-
config/environment.rb (added)
-
config/environments (added)
-
config/environments/development.rb (added)
-
config/environments/production.rb (added)
-
config/environments/test.rb (added)
-
config/initializers (added)
-
config/initializers/backtrace_silencers.rb (added)
-
config/initializers/inflections.rb (added)
-
config/initializers/mime_types.rb (added)
-
config/initializers/secret_token.rb (added)
-
config/initializers/session_store.rb (added)
-
config/locales (added)
-
config/locales/en.yml (added)
-
config/routes.rb (added)
-
db (added)
-
db/migrate (added)
-
db/migrate/20110711224239_create_os_statistics.rb (added)
-
db/migrate/20110711234237_create_submissions.rb (added)
-
db/migrate/20110712205901_add_mac_ports_version_to_os_statistics.rb (added)
-
db/migrate/20110712210009_add_osx_version_to_os_statistics.rb (added)
-
db/migrate/20110712210027_add_os_arch_to_os_statistics.rb (added)
-
db/migrate/20110712210045_add_os_platform_to_os_statistics.rb (added)
-
db/migrate/20110712210112_add_build_arch_to_os_statistics.rb (added)
-
db/migrate/20110712210134_add_x_code_version_to_os_statistics.rb (added)
-
db/migrate/20110712210349_remove_os_version_from_os_statistics.rb (added)
-
db/migrate/20110712210408_remove_machine_from_os_statistics.rb (added)
-
db/migrate/20110712210431_remove_gcc_version_from_os_statistics.rb (added)
-
db/migrate/20110712210452_remove_x11_installed_from_os_statistics.rb (added)
-
db/migrate/20110712210505_add_gcc_version_to_os_statistics.rb (added)
-
db/migrate/20110713172056_create_categories.rb (added)
-
db/migrate/20110713172322_create_ports.rb (added)
-
db/migrate/20110713200021_create_installed_ports.rb (added)
-
db/migrate/20110713220505_change_data_type_for_port_variants.rb (added)
-
db/migrate/20110713220512_change_data_type_for_installed_port_variants.rb (added)
-
db/schema.rb (added)
-
db/seeds.rb (added)
-
doc (added)
-
doc/README_FOR_APP (added)
-
lib (added)
-
lib/tasks (added)
-
lib/tasks/.gitkeep (added)
-
public (added)
-
public/404.html (added)
-
public/422.html (added)
-
public/500.html (added)
-
public/favicon.ico (added)
-
public/images (added)
-
public/images/rails.png (added)
-
public/javascripts (added)
-
public/javascripts/application.js (added)
-
public/javascripts/controls.js (added)
-
public/javascripts/dragdrop.js (added)
-
public/javascripts/effects.js (added)
-
public/javascripts/prototype.js (added)
-
public/javascripts/rails.js (added)
-
public/robots.txt (added)
-
public/stylesheets (added)
-
public/stylesheets/.gitkeep (added)
-
public/stylesheets/scaffold.css (added)
-
script (added)
-
script/rails (added)
-
test (added)
-
test/fixtures (added)
-
test/fixtures/categories.yml (added)
-
test/fixtures/installed_ports.yml (added)
-
test/fixtures/os_statistics.yml (added)
-
test/fixtures/ports.yml (added)
-
test/fixtures/submissions.yml (added)
-
test/functional (added)
-
test/functional/home_controller_test.rb (added)
-
test/functional/submissions_controller_test.rb (added)
-
test/integration (added)
-
test/performance (added)
-
test/performance/browsing_test.rb (added)
-
test/test_helper.rb (added)
-
test/unit (added)
-
test/unit/category_test.rb (added)
-
test/unit/helpers (added)
-
test/unit/helpers/home_helper_test.rb (added)
-
test/unit/helpers/submissions_helper_test.rb (added)
-
test/unit/installed_port_test.rb (added)
-
test/unit/os_statistic_test.rb (added)
-
test/unit/port_test.rb (added)
-
test/unit/submission_test.rb (added)
-
tmp (added)
-
tmp/cache (added)
-
tmp/pids (added)
-
tmp/sessions (added)
-
tmp/sockets (added)
-
vendor (added)
-
vendor/plugins (added)
-
vendor/plugins/.gitkeep (added)
Note: See TracChangeset
for help on using the changeset viewer.

