typus 3.0.6 → 3.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/.gitignore +15 -0
- data/Gemfile +9 -5
- data/Rakefile +34 -21
- data/app/controllers/admin/base_controller.rb +0 -4
- data/app/controllers/admin/resources_controller.rb +77 -213
- data/app/controllers/admin/session_controller.rb +1 -1
- data/app/helpers/admin/base_helper.rb +4 -4
- data/app/helpers/admin/dashboard_helper.rb +1 -3
- data/app/helpers/admin/display_helper.rb +49 -0
- data/app/helpers/admin/file_preview_helper.rb +10 -12
- data/app/helpers/admin/filters_helper.rb +1 -1
- data/app/helpers/admin/form_helper.rb +2 -13
- data/app/helpers/admin/list_helper.rb +14 -3
- data/app/helpers/admin/relationships_helper.rb +79 -62
- data/app/helpers/admin/resources_helper.rb +17 -16
- data/app/helpers/admin/search_helper.rb +1 -1
- data/app/helpers/admin/sidebar_helper.rb +1 -2
- data/app/helpers/admin/table_helper.rb +9 -4
- data/app/views/admin/helpers/_file_preview.html.erb +1 -1
- data/app/views/admin/helpers/base/_apps.html.erb +23 -0
- data/app/views/admin/helpers/{_flash_message.html.erb → base/_flash_message.html.erb} +0 -0
- data/app/views/admin/helpers/{_header.html.erb → base/_header.html.erb} +0 -0
- data/app/views/admin/helpers/{_login_info.html.erb → base/_login_info.html.erb} +0 -0
- data/app/views/admin/helpers/resources/_display_link_to_previous.html.erb +1 -1
- data/app/views/admin/resources/show.html.erb +4 -27
- data/app/views/admin/templates/_belongs_to_with_autocomplete.html.erb +11 -0
- data/app/views/admin/templates/_has_n.html.erb +1 -1
- data/app/views/admin/templates/_has_one.html.erb +3 -3
- data/app/views/admin/templates/_relate_form.html.erb +1 -1
- data/app/views/admin/templates/_relate_form_with_autocomplete.html.erb +24 -0
- data/app/views/layouts/admin/base.html.erb +15 -9
- data/app/views/layouts/admin/headless.html.erb +44 -0
- data/app/views/layouts/admin/session.html.erb +3 -2
- data/doc/hudson_setup.md +19 -0
- data/lib/generators/typus/assets_generator.rb +0 -4
- data/lib/generators/typus/config_generator.rb +107 -0
- data/lib/generators/typus/controller_generator.rb +0 -4
- data/lib/generators/typus/initializers_generator.rb +22 -0
- data/lib/generators/typus/migration_generator.rb +0 -4
- data/lib/generators/typus/typus_generator.rb +8 -101
- data/lib/generators/typus/views_generator.rb +0 -4
- data/lib/support/active_record.rb +8 -2
- data/lib/support/fake_user.rb +2 -0
- data/lib/support/hash.rb +1 -1
- data/lib/support/string.rb +3 -3
- data/lib/tasks/typus.rake +1 -1
- data/lib/typus.rb +15 -6
- data/lib/typus/controller/actions.rb +69 -0
- data/lib/typus/controller/associations.rb +82 -0
- data/lib/typus/controller/autocomplete.rb +16 -0
- data/lib/typus/controller/filters.rb +24 -0
- data/lib/typus/controller/format.rb +70 -0
- data/lib/typus/orm/active_record.rb +9 -240
- data/lib/typus/orm/active_record/class_methods.rb +227 -0
- data/lib/typus/orm/active_record/instance_methods.rb +13 -0
- data/lib/typus/orm/active_record/search.rb +17 -5
- data/lib/typus/orm/active_record/user.rb +157 -0
- data/lib/typus/regex.rb +11 -0
- data/lib/typus/version.rb +1 -1
- data/test/app/controllers/admin/account_controller_test.rb +104 -0
- data/test/app/controllers/admin/assets_controller_test.rb +153 -0
- data/test/app/controllers/admin/base_controller_test.rb +41 -0
- data/test/app/controllers/admin/birds_controller_test.rb +42 -0
- data/test/app/controllers/admin/cases_controller_test.rb +21 -0
- data/test/app/controllers/admin/categories_controller_test.rb +141 -0
- data/test/app/controllers/admin/comments_controller_test.rb +79 -0
- data/test/app/controllers/admin/dashboard_controller_test.rb +162 -0
- data/test/app/controllers/admin/image_holders_controller_test.rb +75 -0
- data/test/app/controllers/admin/invoices_controller_test.rb +78 -0
- data/test/app/controllers/admin/orders_controller_test.rb +18 -0
- data/test/app/controllers/admin/pages_controller_test.rb +37 -0
- data/test/app/controllers/admin/posts_controller_test.rb +745 -0
- data/test/app/controllers/admin/projects_controller_test.rb +52 -0
- data/test/app/controllers/admin/session_controller_test.rb +92 -0
- data/test/app/controllers/admin/status_controller_test.rb +54 -0
- data/test/app/controllers/admin/typus_users_controller_test.rb +160 -0
- data/test/app/controllers/admin/users_controller_test.rb +106 -0
- data/test/app/helpers/admin/base_helper_test.rb +83 -0
- data/test/app/helpers/admin/dashboard_helper_test.rb +32 -0
- data/test/app/helpers/admin/file_preview_helper_test.rb +82 -0
- data/test/app/helpers/admin/filters_helper_test.rb +161 -0
- data/test/app/helpers/admin/form_helper_test.rb +126 -0
- data/test/app/helpers/admin/list_helper_test.rb +59 -0
- data/test/app/helpers/admin/relationships_helper_test.rb +19 -0
- data/test/app/helpers/admin/resources_helper_test.rb +46 -0
- data/test/app/helpers/admin/search_helper_test.rb +60 -0
- data/test/app/helpers/admin/sidebar_helper_test.rb +34 -0
- data/test/app/helpers/admin/table_helper_test.rb +215 -0
- data/test/app/mailers/admin/mailer_test.rb +32 -0
- data/test/app/models/typus_user_roles_test.rb +124 -0
- data/test/app/models/typus_user_test.rb +194 -0
- data/test/config/routes_test.rb +29 -0
- data/test/factories.rb +111 -0
- data/test/fixtures/config/broken/application.yml +68 -0
- data/test/fixtures/config/broken/application_roles.yml +20 -0
- data/test/fixtures/config/broken/empty.yml +0 -0
- data/test/fixtures/config/broken/empty_roles.yml +0 -0
- data/test/fixtures/config/broken/undefined.yml +3 -0
- data/test/fixtures/config/broken/undefined_roles.yml +6 -0
- data/test/fixtures/config/default/typus.yml +13 -0
- data/test/fixtures/config/default/typus_roles.yml +2 -0
- data/test/fixtures/config/empty/empty_01.yml +0 -0
- data/test/fixtures/config/empty/empty_01_roles.yml +0 -0
- data/test/fixtures/config/empty/empty_02.yml +0 -0
- data/test/fixtures/config/empty/empty_02_roles.yml +0 -0
- data/test/fixtures/config/locales/es.yml +10 -0
- data/test/fixtures/config/namespaced/application.yml +5 -0
- data/test/fixtures/config/namespaced/application_roles.yml +2 -0
- data/test/fixtures/config/ordered/001_roles.yml +2 -0
- data/test/fixtures/config/ordered/002_roles.yml +2 -0
- data/test/fixtures/config/unordered/app_one_roles.yml +2 -0
- data/test/fixtures/config/unordered/app_two_roles.yml +2 -0
- data/test/fixtures/rails_app/.gitignore +4 -0
- data/test/fixtures/rails_app/Capfile +6 -0
- data/test/fixtures/rails_app/README +256 -0
- data/test/fixtures/rails_app/Rakefile +7 -0
- data/test/fixtures/rails_app/app/controllers/admin/animals_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/articles_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/assets_controller.rb +51 -0
- data/test/fixtures/rails_app/app/controllers/admin/birds_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/cases_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/categories_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/comments_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/dogs_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/entries_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/image_holders_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/invoices_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/orders_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/pages_controller.rb +7 -0
- data/test/fixtures/rails_app/app/controllers/admin/posts_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/project_collaborators_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/projects_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/status_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/typus_users_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/users_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/views_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/admin/watch_dog_controller.rb +2 -0
- data/test/fixtures/rails_app/app/controllers/application_controller.rb +3 -0
- data/test/fixtures/rails_app/app/helpers/application_helper.rb +2 -0
- data/test/fixtures/rails_app/app/helpers/form_helper.rb +3 -0
- data/test/fixtures/rails_app/app/models/animal.rb +21 -0
- data/test/fixtures/rails_app/app/models/article.rb +10 -0
- data/test/fixtures/rails_app/app/models/asset.rb +39 -0
- data/test/fixtures/rails_app/app/models/bird.rb +2 -0
- data/test/fixtures/rails_app/app/models/case.rb +2 -0
- data/test/fixtures/rails_app/app/models/category.rb +31 -0
- data/test/fixtures/rails_app/app/models/comment.rb +17 -0
- data/test/fixtures/rails_app/app/models/delayed/task.rb +5 -0
- data/test/fixtures/rails_app/app/models/dog.rb +2 -0
- data/test/fixtures/rails_app/app/models/entry.rb +23 -0
- data/test/fixtures/rails_app/app/models/image_holder.rb +21 -0
- data/test/fixtures/rails_app/app/models/invoice.rb +10 -0
- data/test/fixtures/rails_app/app/models/order.rb +9 -0
- data/test/fixtures/rails_app/app/models/page.rb +24 -0
- data/test/fixtures/rails_app/app/models/post.rb +32 -0
- data/test/fixtures/rails_app/app/models/project.rb +17 -0
- data/test/fixtures/rails_app/app/models/project_collaborator.rb +16 -0
- data/test/fixtures/rails_app/app/models/typus_user.rb +22 -0
- data/test/fixtures/rails_app/app/models/user.rb +10 -0
- data/test/fixtures/rails_app/app/models/view.rb +17 -0
- data/test/fixtures/rails_app/app/views/admin/assets/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/cases/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/categories/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/dashboard/_sidebar.html.erb +11 -0
- data/test/fixtures/rails_app/app/views/admin/entries/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/pages/_index.html.erb +3 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_edit.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_index.html.erb +5 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_new.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/posts/_show.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/resources/_sidebar.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/status/index.html.erb +9 -0
- data/test/fixtures/rails_app/app/views/admin/templates/_datepicker.html.erb +1 -0
- data/test/fixtures/rails_app/app/views/admin/watch_dog/index.html.erb +9 -0
- data/test/fixtures/rails_app/app/views/layouts/admin/headless.html.erb +38 -0
- data/test/fixtures/rails_app/config.ru +4 -0
- data/test/fixtures/rails_app/config/application.rb +44 -0
- data/test/fixtures/rails_app/config/boot.rb +13 -0
- data/test/fixtures/rails_app/config/database.yml +34 -0
- data/test/fixtures/rails_app/config/deploy.rb +32 -0
- data/test/fixtures/rails_app/config/environment.rb +5 -0
- data/test/fixtures/rails_app/config/environments/development.rb +32 -0
- data/test/fixtures/rails_app/config/environments/production.rb +54 -0
- data/test/fixtures/rails_app/config/environments/test.rb +40 -0
- data/test/fixtures/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/fixtures/rails_app/config/initializers/dragonfly.rb +1 -0
- data/test/fixtures/rails_app/config/initializers/inflections.rb +12 -0
- data/test/fixtures/rails_app/config/initializers/mime_types.rb +5 -0
- data/test/fixtures/rails_app/config/initializers/secret_token.rb +7 -0
- data/test/fixtures/rails_app/config/initializers/session_store.rb +8 -0
- data/test/fixtures/rails_app/config/initializers/typus.rb +5 -0
- data/test/fixtures/rails_app/config/initializers/typus_resources.rb +27 -0
- data/test/fixtures/rails_app/config/locales/en.yml +5 -0
- data/test/fixtures/rails_app/config/routes.rb +61 -0
- data/test/fixtures/rails_app/config/typus/README +68 -0
- data/test/fixtures/rails_app/config/typus/crud_basic.yml +10 -0
- data/test/fixtures/rails_app/config/typus/crud_basic_roles.yml +2 -0
- data/test/fixtures/rails_app/config/typus/crud_extended.yml +64 -0
- data/test/fixtures/rails_app/config/typus/crud_extended_roles.yml +18 -0
- data/test/fixtures/rails_app/config/typus/has_many.yml +0 -0
- data/test/fixtures/rails_app/config/typus/has_many_roles.yml +0 -0
- data/test/fixtures/rails_app/config/typus/has_many_through.yml +23 -0
- data/test/fixtures/rails_app/config/typus/has_many_through_roles.yml +4 -0
- data/test/fixtures/rails_app/config/typus/has_one.yml +12 -0
- data/test/fixtures/rails_app/config/typus/has_one_roles.yml +3 -0
- data/test/fixtures/rails_app/config/typus/polymorphic.yml +17 -0
- data/test/fixtures/rails_app/config/typus/polymorphic_roles.yml +5 -0
- data/test/fixtures/rails_app/config/typus/resource_roles.yml +7 -0
- data/test/fixtures/rails_app/config/typus/sti.yml +5 -0
- data/test/fixtures/rails_app/config/typus/sti_roles.yml +2 -0
- data/test/fixtures/rails_app/config/typus/typus.yml +13 -0
- data/test/fixtures/rails_app/config/typus/typus_roles.yml +2 -0
- data/test/fixtures/rails_app/config/typus/unknown.yml +3 -0
- data/test/fixtures/rails_app/config/typus/unknown_roles.yml +5 -0
- data/test/fixtures/rails_app/db/.gitkeep +0 -0
- data/test/fixtures/rails_app/db/schema.rb +174 -0
- data/test/fixtures/rails_app/db/seeds.rb +54 -0
- data/test/fixtures/rails_app/db/seeds/assets/000.jpg +0 -0
- data/test/fixtures/rails_app/db/seeds/assets/001.jpg +0 -0
- data/test/fixtures/rails_app/db/seeds/assets/002.jpg +0 -0
- data/test/fixtures/rails_app/db/seeds/assets/003.jpg +0 -0
- data/test/fixtures/rails_app/db/seeds/assets/004.jpg +0 -0
- data/test/fixtures/rails_app/public/404.html +26 -0
- data/test/fixtures/rails_app/public/422.html +26 -0
- data/test/fixtures/rails_app/public/500.html +26 -0
- data/test/fixtures/rails_app/public/favicon.ico +0 -0
- data/test/fixtures/rails_app/public/images/rails.png +0 -0
- data/test/fixtures/rails_app/public/javascripts/application.js +2 -0
- data/test/fixtures/rails_app/public/javascripts/controls.js +965 -0
- data/test/fixtures/rails_app/public/javascripts/dragdrop.js +974 -0
- data/test/fixtures/rails_app/public/javascripts/effects.js +1123 -0
- data/test/fixtures/rails_app/public/javascripts/prototype.js +6001 -0
- data/test/fixtures/rails_app/public/javascripts/rails.js +175 -0
- data/test/fixtures/rails_app/public/robots.txt +5 -0
- data/test/fixtures/rails_app/public/stylesheets/.gitkeep +0 -0
- data/test/fixtures/rails_app/script/rails +6 -0
- data/test/lib/support/active_record_test.rb +150 -0
- data/test/lib/support/fake_user_test.rb +59 -0
- data/test/lib/support/hash_test.rb +29 -0
- data/test/lib/support/object_test.rb +17 -0
- data/test/lib/support/string_test.rb +116 -0
- data/test/lib/typus/configuration_test.rb +46 -0
- data/test/lib/typus/controller/actions_test.rb +141 -0
- data/test/lib/typus/controller/associations_test.rb +7 -0
- data/test/lib/typus/controller/autocomplete_test.rb +7 -0
- data/test/lib/typus/controller/filters_test.rb +73 -0
- data/test/lib/typus/controller/format_test.rb +7 -0
- data/test/lib/typus/i18n_test.rb +9 -0
- data/test/lib/typus/orm/active_record/class_methods_test.rb +378 -0
- data/test/lib/typus/orm/active_record/search_test.rb +330 -0
- data/test/lib/typus/regex_test.rb +53 -0
- data/test/lib/typus/resources_test.rb +41 -0
- data/test/lib/typus_test.rb +141 -0
- data/test/test_helper.rb +15 -0
- data/typus.gemspec +25 -0
- metadata +586 -64
- data/Gemfile.lock +0 -149
- data/app/views/admin/helpers/_apps.html.erb +0 -9
- data/lib/generators/templates/public/admin/javascripts/application.js +0 -2
- data/lib/generators/templates/public/admin/javascripts/jquery-1.4.4.min.js +0 -167
- data/lib/generators/templates/public/admin/javascripts/jquery.application.js +0 -16
- data/lib/generators/templates/public/admin/javascripts/jquery.rails.js +0 -160
- data/lib/generators/templates/public/admin/javascripts/jquery.searchField.js +0 -91
- data/lib/generators/templates/public/admin/stylesheets/application.css +0 -11
- data/lib/generators/templates/public/admin/stylesheets/screen.css +0 -367
- data/lib/generators/templates/public/admin/vendor/fancybox/blank.gif +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_close.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_loading.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_nav_left.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_nav_right.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_e.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_n.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_ne.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_nw.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_s.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_se.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_sw.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_shadow_w.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_left.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_main.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_over.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_title_right.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancybox-x.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancybox-y.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/fancybox.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.easing-1.3.pack.js +0 -72
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.4.css +0 -359
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.4.js +0 -1156
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.4.pack.js +0 -46
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.mousewheel-3.0.4.pack.js +0 -14
- data/lib/typus/actions.rb +0 -41
- data/lib/typus/filters.rb +0 -12
- data/lib/typus/format.rb +0 -70
- data/lib/typus/user.rb +0 -157
data/test/test_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
|
3
|
+
##
|
4
|
+
# Boot rails_app and load the schema.
|
5
|
+
#
|
6
|
+
require "fixtures/rails_app/config/environment"
|
7
|
+
require "fixtures/rails_app/db/schema"
|
8
|
+
|
9
|
+
require "rails/test_help"
|
10
|
+
require "factories"
|
11
|
+
|
12
|
+
class ActiveSupport::TestCase
|
13
|
+
self.use_transactional_fixtures = true
|
14
|
+
self.use_instantiated_fixtures = false
|
15
|
+
end
|
data/typus.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "typus/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "typus"
|
7
|
+
s.version = Typus::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Francesc Esplugas"]
|
10
|
+
s.email = ["core@typuscms.com"]
|
11
|
+
s.homepage = "http://core.typuscms.com/"
|
12
|
+
s.summary = "Effortless backend interface for Ruby on Rails applications. (Admin scaffold generator)"
|
13
|
+
s.description = "Ruby on Rails Admin Panel (Engine) to allow trusted users edit structured content."
|
14
|
+
|
15
|
+
s.rubyforge_project = "typus"
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
|
22
|
+
s.add_dependency "fastercsv", "~> 1.5" if RUBY_VERSION < '1.9'
|
23
|
+
s.add_dependency "render_inheritable"
|
24
|
+
s.add_dependency "will_paginate", "~> 3.0.pre2"
|
25
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 9
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 3.0.
|
9
|
+
- 7
|
10
|
+
version: 3.0.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Francesc Esplugas
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-02-13 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -55,15 +55,16 @@ dependencies:
|
|
55
55
|
requirements:
|
56
56
|
- - ~>
|
57
57
|
- !ruby/object:Gem::Version
|
58
|
-
hash:
|
58
|
+
hash: 1923831917
|
59
59
|
segments:
|
60
60
|
- 3
|
61
61
|
- 0
|
62
|
-
-
|
62
|
+
- pre
|
63
|
+
- 2
|
63
64
|
version: 3.0.pre2
|
64
65
|
type: :runtime
|
65
66
|
version_requirements: *id003
|
66
|
-
description:
|
67
|
+
description: Ruby on Rails Admin Panel (Engine) to allow trusted users edit structured content.
|
67
68
|
email:
|
68
69
|
- core@typuscms.com
|
69
70
|
executables: []
|
@@ -73,6 +74,12 @@ extensions: []
|
|
73
74
|
extra_rdoc_files: []
|
74
75
|
|
75
76
|
files:
|
77
|
+
- .gemtest
|
78
|
+
- .gitignore
|
79
|
+
- Gemfile
|
80
|
+
- MIT-LICENSE
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
76
83
|
- app/controllers/admin/account_controller.rb
|
77
84
|
- app/controllers/admin/base_controller.rb
|
78
85
|
- app/controllers/admin/dashboard_controller.rb
|
@@ -81,6 +88,7 @@ files:
|
|
81
88
|
- app/controllers/admin/session_controller.rb
|
82
89
|
- app/helpers/admin/base_helper.rb
|
83
90
|
- app/helpers/admin/dashboard_helper.rb
|
91
|
+
- app/helpers/admin/display_helper.rb
|
84
92
|
- app/helpers/admin/file_preview_helper.rb
|
85
93
|
- app/helpers/admin/filters_helper.rb
|
86
94
|
- app/helpers/admin/form_helper.rb
|
@@ -97,11 +105,11 @@ files:
|
|
97
105
|
- app/views/admin/dashboard/_sidebar.html.erb
|
98
106
|
- app/views/admin/dashboard/show.html.erb
|
99
107
|
- app/views/admin/dashboard/styles.html.erb
|
100
|
-
- app/views/admin/helpers/_apps.html.erb
|
101
108
|
- app/views/admin/helpers/_file_preview.html.erb
|
102
|
-
- app/views/admin/helpers/
|
103
|
-
- app/views/admin/helpers/
|
104
|
-
- app/views/admin/helpers/
|
109
|
+
- app/views/admin/helpers/base/_apps.html.erb
|
110
|
+
- app/views/admin/helpers/base/_flash_message.html.erb
|
111
|
+
- app/views/admin/helpers/base/_header.html.erb
|
112
|
+
- app/views/admin/helpers/base/_login_info.html.erb
|
105
113
|
- app/views/admin/helpers/dashboard/_applications.html.erb
|
106
114
|
- app/views/admin/helpers/dashboard/_resources.html.erb
|
107
115
|
- app/views/admin/helpers/filters/_filters.html.erb
|
@@ -122,6 +130,7 @@ files:
|
|
122
130
|
- app/views/admin/resources/show.html.erb
|
123
131
|
- app/views/admin/session/new.html.erb
|
124
132
|
- app/views/admin/templates/_belongs_to.html.erb
|
133
|
+
- app/views/admin/templates/_belongs_to_with_autocomplete.html.erb
|
125
134
|
- app/views/admin/templates/_boolean.html.erb
|
126
135
|
- app/views/admin/templates/_date.html.erb
|
127
136
|
- app/views/admin/templates/_datetime.html.erb
|
@@ -131,12 +140,14 @@ files:
|
|
131
140
|
- app/views/admin/templates/_password.html.erb
|
132
141
|
- app/views/admin/templates/_profile_sidebar.html.erb
|
133
142
|
- app/views/admin/templates/_relate_form.html.erb
|
143
|
+
- app/views/admin/templates/_relate_form_with_autocomplete.html.erb
|
134
144
|
- app/views/admin/templates/_selector.html.erb
|
135
145
|
- app/views/admin/templates/_string.html.erb
|
136
146
|
- app/views/admin/templates/_text.html.erb
|
137
147
|
- app/views/admin/templates/_time.html.erb
|
138
148
|
- app/views/admin/templates/_tree.html.erb
|
139
149
|
- app/views/layouts/admin/base.html.erb
|
150
|
+
- app/views/layouts/admin/headless.html.erb
|
140
151
|
- app/views/layouts/admin/session.html.erb
|
141
152
|
- config/locales/typus.ca.models.yml
|
142
153
|
- config/locales/typus.ca.yml
|
@@ -161,53 +172,72 @@ files:
|
|
161
172
|
- config/locales/typus.zh-CN.models.yml
|
162
173
|
- config/locales/typus.zh-CN.yml
|
163
174
|
- config/routes.rb
|
164
|
-
-
|
165
|
-
- Gemfile.lock
|
175
|
+
- doc/hudson_setup.md
|
166
176
|
- lib/generators/templates/config/initializers/typus.rb
|
167
177
|
- lib/generators/templates/config/initializers/typus_authentication.rb
|
168
178
|
- lib/generators/templates/config/initializers/typus_resources.rb
|
179
|
+
- lib/generators/templates/config/typus/README
|
169
180
|
- lib/generators/templates/config/typus/application.yml
|
170
181
|
- lib/generators/templates/config/typus/application_roles.yml
|
171
|
-
- lib/generators/templates/config/typus/README
|
172
182
|
- lib/generators/templates/config/typus/typus.yml
|
173
183
|
- lib/generators/templates/config/typus/typus_roles.yml
|
174
184
|
- lib/generators/templates/controller.rb
|
175
185
|
- lib/generators/templates/migration.rb
|
176
|
-
- lib/generators/templates/public/
|
177
|
-
- lib/generators/templates/public/
|
178
|
-
- lib/generators/templates/public/
|
179
|
-
- lib/generators/templates/public/
|
180
|
-
- lib/generators/templates/public/
|
181
|
-
- lib/generators/templates/public/
|
182
|
-
- lib/generators/templates/public/
|
183
|
-
- lib/generators/templates/public/
|
184
|
-
- lib/generators/templates/public/
|
185
|
-
- lib/generators/templates/public/
|
186
|
-
- lib/generators/templates/public/
|
187
|
-
- lib/generators/templates/public/
|
188
|
-
- lib/generators/templates/public/
|
189
|
-
- lib/generators/templates/public/
|
190
|
-
- lib/generators/templates/public/
|
191
|
-
- lib/generators/templates/public/
|
192
|
-
- lib/generators/templates/public/
|
193
|
-
- lib/generators/templates/public/
|
194
|
-
- lib/generators/templates/public/
|
195
|
-
- lib/generators/templates/public/
|
196
|
-
- lib/generators/templates/public/
|
197
|
-
- lib/generators/templates/public/
|
198
|
-
- lib/generators/templates/public/
|
199
|
-
- lib/generators/templates/public/
|
200
|
-
- lib/generators/templates/public/
|
201
|
-
- lib/generators/templates/public/
|
202
|
-
- lib/generators/templates/public/
|
203
|
-
- lib/generators/templates/public/
|
204
|
-
- lib/generators/templates/public/
|
205
|
-
- lib/generators/templates/public/
|
206
|
-
- lib/generators/templates/public/
|
207
|
-
- lib/generators/templates/public/
|
186
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
187
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
188
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
|
189
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
|
190
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
|
191
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
|
192
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
193
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
194
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
195
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_222222_256x240.png
|
196
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_228ef1_256x240.png
|
197
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
|
198
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
199
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ffffff_256x240.png
|
200
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/jquery-ui-1.8.9.custom.css
|
201
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/js/jquery-1.4.4.min.js
|
202
|
+
- lib/generators/templates/public/vendor/jquery-ui-1.8.9.custom/js/jquery-ui-1.8.9.custom.min.js
|
203
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/blank.gif
|
204
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_close.png
|
205
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_loading.png
|
206
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_nav_left.png
|
207
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_nav_right.png
|
208
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_e.png
|
209
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_n.png
|
210
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_ne.png
|
211
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_nw.png
|
212
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_s.png
|
213
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_se.png
|
214
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_sw.png
|
215
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_w.png
|
216
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_left.png
|
217
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_main.png
|
218
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_over.png
|
219
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_right.png
|
220
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox-x.png
|
221
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox-y.png
|
222
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox.png
|
223
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.easing-1.3.pack.js
|
224
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.css
|
225
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.js
|
226
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.pack.js
|
227
|
+
- lib/generators/templates/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.mousewheel-3.0.4.pack.js
|
228
|
+
- lib/generators/templates/public/vendor/typus/javascripts/application.js
|
229
|
+
- lib/generators/templates/public/vendor/typus/javascripts/jquery.application.js
|
230
|
+
- lib/generators/templates/public/vendor/typus/javascripts/jquery.rails.autocomplete.js
|
231
|
+
- lib/generators/templates/public/vendor/typus/javascripts/jquery.rails.js
|
232
|
+
- lib/generators/templates/public/vendor/typus/javascripts/jquery.searchField.js
|
233
|
+
- lib/generators/templates/public/vendor/typus/stylesheets/application.css
|
234
|
+
- lib/generators/templates/public/vendor/typus/stylesheets/reset.css
|
235
|
+
- lib/generators/templates/public/vendor/typus/stylesheets/screen.css
|
208
236
|
- lib/generators/templates/view.html.erb
|
209
237
|
- lib/generators/typus/assets_generator.rb
|
238
|
+
- lib/generators/typus/config_generator.rb
|
210
239
|
- lib/generators/typus/controller_generator.rb
|
240
|
+
- lib/generators/typus/initializers_generator.rb
|
211
241
|
- lib/generators/typus/migration_generator.rb
|
212
242
|
- lib/generators/typus/typus_generator.rb
|
213
243
|
- lib/generators/typus/views_generator.rb
|
@@ -217,25 +247,274 @@ files:
|
|
217
247
|
- lib/support/object.rb
|
218
248
|
- lib/support/string.rb
|
219
249
|
- lib/tasks/typus.rake
|
220
|
-
- lib/typus
|
250
|
+
- lib/typus.rb
|
221
251
|
- lib/typus/authentication/base.rb
|
222
252
|
- lib/typus/authentication/http_basic.rb
|
223
253
|
- lib/typus/authentication/none.rb
|
224
254
|
- lib/typus/authentication/session.rb
|
225
255
|
- lib/typus/configuration.rb
|
256
|
+
- lib/typus/controller/actions.rb
|
257
|
+
- lib/typus/controller/associations.rb
|
258
|
+
- lib/typus/controller/autocomplete.rb
|
259
|
+
- lib/typus/controller/filters.rb
|
260
|
+
- lib/typus/controller/format.rb
|
226
261
|
- lib/typus/engine.rb
|
227
|
-
- lib/typus/filters.rb
|
228
|
-
- lib/typus/format.rb
|
229
262
|
- lib/typus/i18n.rb
|
230
|
-
- lib/typus/orm/active_record/search.rb
|
231
263
|
- lib/typus/orm/active_record.rb
|
264
|
+
- lib/typus/orm/active_record/class_methods.rb
|
265
|
+
- lib/typus/orm/active_record/instance_methods.rb
|
266
|
+
- lib/typus/orm/active_record/search.rb
|
267
|
+
- lib/typus/orm/active_record/user.rb
|
268
|
+
- lib/typus/regex.rb
|
232
269
|
- lib/typus/resources.rb
|
233
|
-
- lib/typus/user.rb
|
234
270
|
- lib/typus/version.rb
|
235
|
-
-
|
236
|
-
-
|
237
|
-
-
|
238
|
-
-
|
271
|
+
- test/app/controllers/admin/account_controller_test.rb
|
272
|
+
- test/app/controllers/admin/assets_controller_test.rb
|
273
|
+
- test/app/controllers/admin/base_controller_test.rb
|
274
|
+
- test/app/controllers/admin/birds_controller_test.rb
|
275
|
+
- test/app/controllers/admin/cases_controller_test.rb
|
276
|
+
- test/app/controllers/admin/categories_controller_test.rb
|
277
|
+
- test/app/controllers/admin/comments_controller_test.rb
|
278
|
+
- test/app/controllers/admin/dashboard_controller_test.rb
|
279
|
+
- test/app/controllers/admin/image_holders_controller_test.rb
|
280
|
+
- test/app/controllers/admin/invoices_controller_test.rb
|
281
|
+
- test/app/controllers/admin/orders_controller_test.rb
|
282
|
+
- test/app/controllers/admin/pages_controller_test.rb
|
283
|
+
- test/app/controllers/admin/posts_controller_test.rb
|
284
|
+
- test/app/controllers/admin/projects_controller_test.rb
|
285
|
+
- test/app/controllers/admin/session_controller_test.rb
|
286
|
+
- test/app/controllers/admin/status_controller_test.rb
|
287
|
+
- test/app/controllers/admin/typus_users_controller_test.rb
|
288
|
+
- test/app/controllers/admin/users_controller_test.rb
|
289
|
+
- test/app/helpers/admin/base_helper_test.rb
|
290
|
+
- test/app/helpers/admin/dashboard_helper_test.rb
|
291
|
+
- test/app/helpers/admin/file_preview_helper_test.rb
|
292
|
+
- test/app/helpers/admin/filters_helper_test.rb
|
293
|
+
- test/app/helpers/admin/form_helper_test.rb
|
294
|
+
- test/app/helpers/admin/list_helper_test.rb
|
295
|
+
- test/app/helpers/admin/relationships_helper_test.rb
|
296
|
+
- test/app/helpers/admin/resources_helper_test.rb
|
297
|
+
- test/app/helpers/admin/search_helper_test.rb
|
298
|
+
- test/app/helpers/admin/sidebar_helper_test.rb
|
299
|
+
- test/app/helpers/admin/table_helper_test.rb
|
300
|
+
- test/app/mailers/admin/mailer_test.rb
|
301
|
+
- test/app/models/typus_user_roles_test.rb
|
302
|
+
- test/app/models/typus_user_test.rb
|
303
|
+
- test/config/routes_test.rb
|
304
|
+
- test/factories.rb
|
305
|
+
- test/fixtures/config/broken/application.yml
|
306
|
+
- test/fixtures/config/broken/application_roles.yml
|
307
|
+
- test/fixtures/config/broken/empty.yml
|
308
|
+
- test/fixtures/config/broken/empty_roles.yml
|
309
|
+
- test/fixtures/config/broken/undefined.yml
|
310
|
+
- test/fixtures/config/broken/undefined_roles.yml
|
311
|
+
- test/fixtures/config/default/typus.yml
|
312
|
+
- test/fixtures/config/default/typus_roles.yml
|
313
|
+
- test/fixtures/config/empty/empty_01.yml
|
314
|
+
- test/fixtures/config/empty/empty_01_roles.yml
|
315
|
+
- test/fixtures/config/empty/empty_02.yml
|
316
|
+
- test/fixtures/config/empty/empty_02_roles.yml
|
317
|
+
- test/fixtures/config/locales/es.yml
|
318
|
+
- test/fixtures/config/namespaced/application.yml
|
319
|
+
- test/fixtures/config/namespaced/application_roles.yml
|
320
|
+
- test/fixtures/config/ordered/001_roles.yml
|
321
|
+
- test/fixtures/config/ordered/002_roles.yml
|
322
|
+
- test/fixtures/config/unordered/app_one_roles.yml
|
323
|
+
- test/fixtures/config/unordered/app_two_roles.yml
|
324
|
+
- test/fixtures/rails_app/.gitignore
|
325
|
+
- test/fixtures/rails_app/Capfile
|
326
|
+
- test/fixtures/rails_app/README
|
327
|
+
- test/fixtures/rails_app/Rakefile
|
328
|
+
- test/fixtures/rails_app/app/controllers/admin/animals_controller.rb
|
329
|
+
- test/fixtures/rails_app/app/controllers/admin/articles_controller.rb
|
330
|
+
- test/fixtures/rails_app/app/controllers/admin/assets_controller.rb
|
331
|
+
- test/fixtures/rails_app/app/controllers/admin/birds_controller.rb
|
332
|
+
- test/fixtures/rails_app/app/controllers/admin/cases_controller.rb
|
333
|
+
- test/fixtures/rails_app/app/controllers/admin/categories_controller.rb
|
334
|
+
- test/fixtures/rails_app/app/controllers/admin/comments_controller.rb
|
335
|
+
- test/fixtures/rails_app/app/controllers/admin/dogs_controller.rb
|
336
|
+
- test/fixtures/rails_app/app/controllers/admin/entries_controller.rb
|
337
|
+
- test/fixtures/rails_app/app/controllers/admin/image_holders_controller.rb
|
338
|
+
- test/fixtures/rails_app/app/controllers/admin/invoices_controller.rb
|
339
|
+
- test/fixtures/rails_app/app/controllers/admin/orders_controller.rb
|
340
|
+
- test/fixtures/rails_app/app/controllers/admin/pages_controller.rb
|
341
|
+
- test/fixtures/rails_app/app/controllers/admin/posts_controller.rb
|
342
|
+
- test/fixtures/rails_app/app/controllers/admin/project_collaborators_controller.rb
|
343
|
+
- test/fixtures/rails_app/app/controllers/admin/projects_controller.rb
|
344
|
+
- test/fixtures/rails_app/app/controllers/admin/status_controller.rb
|
345
|
+
- test/fixtures/rails_app/app/controllers/admin/typus_users_controller.rb
|
346
|
+
- test/fixtures/rails_app/app/controllers/admin/users_controller.rb
|
347
|
+
- test/fixtures/rails_app/app/controllers/admin/views_controller.rb
|
348
|
+
- test/fixtures/rails_app/app/controllers/admin/watch_dog_controller.rb
|
349
|
+
- test/fixtures/rails_app/app/controllers/application_controller.rb
|
350
|
+
- test/fixtures/rails_app/app/helpers/application_helper.rb
|
351
|
+
- test/fixtures/rails_app/app/helpers/form_helper.rb
|
352
|
+
- test/fixtures/rails_app/app/models/animal.rb
|
353
|
+
- test/fixtures/rails_app/app/models/article.rb
|
354
|
+
- test/fixtures/rails_app/app/models/asset.rb
|
355
|
+
- test/fixtures/rails_app/app/models/bird.rb
|
356
|
+
- test/fixtures/rails_app/app/models/case.rb
|
357
|
+
- test/fixtures/rails_app/app/models/category.rb
|
358
|
+
- test/fixtures/rails_app/app/models/comment.rb
|
359
|
+
- test/fixtures/rails_app/app/models/delayed/task.rb
|
360
|
+
- test/fixtures/rails_app/app/models/dog.rb
|
361
|
+
- test/fixtures/rails_app/app/models/entry.rb
|
362
|
+
- test/fixtures/rails_app/app/models/image_holder.rb
|
363
|
+
- test/fixtures/rails_app/app/models/invoice.rb
|
364
|
+
- test/fixtures/rails_app/app/models/order.rb
|
365
|
+
- test/fixtures/rails_app/app/models/page.rb
|
366
|
+
- test/fixtures/rails_app/app/models/post.rb
|
367
|
+
- test/fixtures/rails_app/app/models/project.rb
|
368
|
+
- test/fixtures/rails_app/app/models/project_collaborator.rb
|
369
|
+
- test/fixtures/rails_app/app/models/typus_user.rb
|
370
|
+
- test/fixtures/rails_app/app/models/user.rb
|
371
|
+
- test/fixtures/rails_app/app/models/view.rb
|
372
|
+
- test/fixtures/rails_app/app/views/admin/assets/_index.html.erb
|
373
|
+
- test/fixtures/rails_app/app/views/admin/cases/_index.html.erb
|
374
|
+
- test/fixtures/rails_app/app/views/admin/categories/_index.html.erb
|
375
|
+
- test/fixtures/rails_app/app/views/admin/dashboard/_sidebar.html.erb
|
376
|
+
- test/fixtures/rails_app/app/views/admin/entries/_index.html.erb
|
377
|
+
- test/fixtures/rails_app/app/views/admin/pages/_index.html.erb
|
378
|
+
- test/fixtures/rails_app/app/views/admin/posts/_edit.html.erb
|
379
|
+
- test/fixtures/rails_app/app/views/admin/posts/_index.html.erb
|
380
|
+
- test/fixtures/rails_app/app/views/admin/posts/_new.html.erb
|
381
|
+
- test/fixtures/rails_app/app/views/admin/posts/_show.html.erb
|
382
|
+
- test/fixtures/rails_app/app/views/admin/resources/_sidebar.html.erb
|
383
|
+
- test/fixtures/rails_app/app/views/admin/status/index.html.erb
|
384
|
+
- test/fixtures/rails_app/app/views/admin/templates/_datepicker.html.erb
|
385
|
+
- test/fixtures/rails_app/app/views/admin/watch_dog/index.html.erb
|
386
|
+
- test/fixtures/rails_app/app/views/layouts/admin/headless.html.erb
|
387
|
+
- test/fixtures/rails_app/config.ru
|
388
|
+
- test/fixtures/rails_app/config/application.rb
|
389
|
+
- test/fixtures/rails_app/config/boot.rb
|
390
|
+
- test/fixtures/rails_app/config/database.yml
|
391
|
+
- test/fixtures/rails_app/config/deploy.rb
|
392
|
+
- test/fixtures/rails_app/config/environment.rb
|
393
|
+
- test/fixtures/rails_app/config/environments/development.rb
|
394
|
+
- test/fixtures/rails_app/config/environments/production.rb
|
395
|
+
- test/fixtures/rails_app/config/environments/test.rb
|
396
|
+
- test/fixtures/rails_app/config/initializers/backtrace_silencers.rb
|
397
|
+
- test/fixtures/rails_app/config/initializers/dragonfly.rb
|
398
|
+
- test/fixtures/rails_app/config/initializers/inflections.rb
|
399
|
+
- test/fixtures/rails_app/config/initializers/mime_types.rb
|
400
|
+
- test/fixtures/rails_app/config/initializers/secret_token.rb
|
401
|
+
- test/fixtures/rails_app/config/initializers/session_store.rb
|
402
|
+
- test/fixtures/rails_app/config/initializers/typus.rb
|
403
|
+
- test/fixtures/rails_app/config/initializers/typus_resources.rb
|
404
|
+
- test/fixtures/rails_app/config/locales/en.yml
|
405
|
+
- test/fixtures/rails_app/config/routes.rb
|
406
|
+
- test/fixtures/rails_app/config/typus/README
|
407
|
+
- test/fixtures/rails_app/config/typus/crud_basic.yml
|
408
|
+
- test/fixtures/rails_app/config/typus/crud_basic_roles.yml
|
409
|
+
- test/fixtures/rails_app/config/typus/crud_extended.yml
|
410
|
+
- test/fixtures/rails_app/config/typus/crud_extended_roles.yml
|
411
|
+
- test/fixtures/rails_app/config/typus/has_many.yml
|
412
|
+
- test/fixtures/rails_app/config/typus/has_many_roles.yml
|
413
|
+
- test/fixtures/rails_app/config/typus/has_many_through.yml
|
414
|
+
- test/fixtures/rails_app/config/typus/has_many_through_roles.yml
|
415
|
+
- test/fixtures/rails_app/config/typus/has_one.yml
|
416
|
+
- test/fixtures/rails_app/config/typus/has_one_roles.yml
|
417
|
+
- test/fixtures/rails_app/config/typus/polymorphic.yml
|
418
|
+
- test/fixtures/rails_app/config/typus/polymorphic_roles.yml
|
419
|
+
- test/fixtures/rails_app/config/typus/resource_roles.yml
|
420
|
+
- test/fixtures/rails_app/config/typus/sti.yml
|
421
|
+
- test/fixtures/rails_app/config/typus/sti_roles.yml
|
422
|
+
- test/fixtures/rails_app/config/typus/typus.yml
|
423
|
+
- test/fixtures/rails_app/config/typus/typus_roles.yml
|
424
|
+
- test/fixtures/rails_app/config/typus/unknown.yml
|
425
|
+
- test/fixtures/rails_app/config/typus/unknown_roles.yml
|
426
|
+
- test/fixtures/rails_app/db/.gitkeep
|
427
|
+
- test/fixtures/rails_app/db/schema.rb
|
428
|
+
- test/fixtures/rails_app/db/seeds.rb
|
429
|
+
- test/fixtures/rails_app/db/seeds/assets/000.jpg
|
430
|
+
- test/fixtures/rails_app/db/seeds/assets/001.jpg
|
431
|
+
- test/fixtures/rails_app/db/seeds/assets/002.jpg
|
432
|
+
- test/fixtures/rails_app/db/seeds/assets/003.jpg
|
433
|
+
- test/fixtures/rails_app/db/seeds/assets/004.jpg
|
434
|
+
- test/fixtures/rails_app/public/404.html
|
435
|
+
- test/fixtures/rails_app/public/422.html
|
436
|
+
- test/fixtures/rails_app/public/500.html
|
437
|
+
- test/fixtures/rails_app/public/favicon.ico
|
438
|
+
- test/fixtures/rails_app/public/images/rails.png
|
439
|
+
- test/fixtures/rails_app/public/javascripts/application.js
|
440
|
+
- test/fixtures/rails_app/public/javascripts/controls.js
|
441
|
+
- test/fixtures/rails_app/public/javascripts/dragdrop.js
|
442
|
+
- test/fixtures/rails_app/public/javascripts/effects.js
|
443
|
+
- test/fixtures/rails_app/public/javascripts/prototype.js
|
444
|
+
- test/fixtures/rails_app/public/javascripts/rails.js
|
445
|
+
- test/fixtures/rails_app/public/robots.txt
|
446
|
+
- test/fixtures/rails_app/public/stylesheets/.gitkeep
|
447
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
448
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
449
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
|
450
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
|
451
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
|
452
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
|
453
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
454
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
455
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
456
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_222222_256x240.png
|
457
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_228ef1_256x240.png
|
458
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
|
459
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
460
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ffffff_256x240.png
|
461
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/jquery-ui-1.8.9.custom.css
|
462
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/js/jquery-1.4.4.min.js
|
463
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/js/jquery-ui-1.8.9.custom.min.js
|
464
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/blank.gif
|
465
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_close.png
|
466
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_loading.png
|
467
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_nav_left.png
|
468
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_nav_right.png
|
469
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_e.png
|
470
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_n.png
|
471
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_ne.png
|
472
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_nw.png
|
473
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_s.png
|
474
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_se.png
|
475
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_sw.png
|
476
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_w.png
|
477
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_left.png
|
478
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_main.png
|
479
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_over.png
|
480
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_right.png
|
481
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox-x.png
|
482
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox-y.png
|
483
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox.png
|
484
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.easing-1.3.pack.js
|
485
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.css
|
486
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.js
|
487
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.pack.js
|
488
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.mousewheel-3.0.4.pack.js
|
489
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/application.js
|
490
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.application.js
|
491
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.rails.autocomplete.js
|
492
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.rails.js
|
493
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.searchField.js
|
494
|
+
- test/fixtures/rails_app/public/vendor/typus/stylesheets/application.css
|
495
|
+
- test/fixtures/rails_app/public/vendor/typus/stylesheets/reset.css
|
496
|
+
- test/fixtures/rails_app/public/vendor/typus/stylesheets/screen.css
|
497
|
+
- test/fixtures/rails_app/script/rails
|
498
|
+
- test/fixtures/rails_app/tmp/.gitkeep
|
499
|
+
- test/lib/support/active_record_test.rb
|
500
|
+
- test/lib/support/fake_user_test.rb
|
501
|
+
- test/lib/support/hash_test.rb
|
502
|
+
- test/lib/support/object_test.rb
|
503
|
+
- test/lib/support/string_test.rb
|
504
|
+
- test/lib/typus/configuration_test.rb
|
505
|
+
- test/lib/typus/controller/actions_test.rb
|
506
|
+
- test/lib/typus/controller/associations_test.rb
|
507
|
+
- test/lib/typus/controller/autocomplete_test.rb
|
508
|
+
- test/lib/typus/controller/filters_test.rb
|
509
|
+
- test/lib/typus/controller/format_test.rb
|
510
|
+
- test/lib/typus/i18n_test.rb
|
511
|
+
- test/lib/typus/orm/active_record/class_methods_test.rb
|
512
|
+
- test/lib/typus/orm/active_record/search_test.rb
|
513
|
+
- test/lib/typus/regex_test.rb
|
514
|
+
- test/lib/typus/resources_test.rb
|
515
|
+
- test/lib/typus_test.rb
|
516
|
+
- test/test_helper.rb
|
517
|
+
- typus.gemspec
|
239
518
|
has_rdoc: true
|
240
519
|
homepage: http://core.typuscms.com/
|
241
520
|
licenses: []
|
@@ -259,18 +538,261 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
259
538
|
requirements:
|
260
539
|
- - ">="
|
261
540
|
- !ruby/object:Gem::Version
|
262
|
-
hash:
|
541
|
+
hash: 3
|
263
542
|
segments:
|
264
|
-
-
|
265
|
-
|
266
|
-
- 6
|
267
|
-
version: 1.3.6
|
543
|
+
- 0
|
544
|
+
version: "0"
|
268
545
|
requirements: []
|
269
546
|
|
270
547
|
rubyforge_project: typus
|
271
|
-
rubygems_version: 1.
|
548
|
+
rubygems_version: 1.5.2
|
272
549
|
signing_key:
|
273
550
|
specification_version: 3
|
274
551
|
summary: Effortless backend interface for Ruby on Rails applications. (Admin scaffold generator)
|
275
|
-
test_files:
|
276
|
-
|
552
|
+
test_files:
|
553
|
+
- test/app/controllers/admin/account_controller_test.rb
|
554
|
+
- test/app/controllers/admin/assets_controller_test.rb
|
555
|
+
- test/app/controllers/admin/base_controller_test.rb
|
556
|
+
- test/app/controllers/admin/birds_controller_test.rb
|
557
|
+
- test/app/controllers/admin/cases_controller_test.rb
|
558
|
+
- test/app/controllers/admin/categories_controller_test.rb
|
559
|
+
- test/app/controllers/admin/comments_controller_test.rb
|
560
|
+
- test/app/controllers/admin/dashboard_controller_test.rb
|
561
|
+
- test/app/controllers/admin/image_holders_controller_test.rb
|
562
|
+
- test/app/controllers/admin/invoices_controller_test.rb
|
563
|
+
- test/app/controllers/admin/orders_controller_test.rb
|
564
|
+
- test/app/controllers/admin/pages_controller_test.rb
|
565
|
+
- test/app/controllers/admin/posts_controller_test.rb
|
566
|
+
- test/app/controllers/admin/projects_controller_test.rb
|
567
|
+
- test/app/controllers/admin/session_controller_test.rb
|
568
|
+
- test/app/controllers/admin/status_controller_test.rb
|
569
|
+
- test/app/controllers/admin/typus_users_controller_test.rb
|
570
|
+
- test/app/controllers/admin/users_controller_test.rb
|
571
|
+
- test/app/helpers/admin/base_helper_test.rb
|
572
|
+
- test/app/helpers/admin/dashboard_helper_test.rb
|
573
|
+
- test/app/helpers/admin/file_preview_helper_test.rb
|
574
|
+
- test/app/helpers/admin/filters_helper_test.rb
|
575
|
+
- test/app/helpers/admin/form_helper_test.rb
|
576
|
+
- test/app/helpers/admin/list_helper_test.rb
|
577
|
+
- test/app/helpers/admin/relationships_helper_test.rb
|
578
|
+
- test/app/helpers/admin/resources_helper_test.rb
|
579
|
+
- test/app/helpers/admin/search_helper_test.rb
|
580
|
+
- test/app/helpers/admin/sidebar_helper_test.rb
|
581
|
+
- test/app/helpers/admin/table_helper_test.rb
|
582
|
+
- test/app/mailers/admin/mailer_test.rb
|
583
|
+
- test/app/models/typus_user_roles_test.rb
|
584
|
+
- test/app/models/typus_user_test.rb
|
585
|
+
- test/config/routes_test.rb
|
586
|
+
- test/factories.rb
|
587
|
+
- test/fixtures/config/broken/application.yml
|
588
|
+
- test/fixtures/config/broken/application_roles.yml
|
589
|
+
- test/fixtures/config/broken/empty.yml
|
590
|
+
- test/fixtures/config/broken/empty_roles.yml
|
591
|
+
- test/fixtures/config/broken/undefined.yml
|
592
|
+
- test/fixtures/config/broken/undefined_roles.yml
|
593
|
+
- test/fixtures/config/default/typus.yml
|
594
|
+
- test/fixtures/config/default/typus_roles.yml
|
595
|
+
- test/fixtures/config/empty/empty_01.yml
|
596
|
+
- test/fixtures/config/empty/empty_01_roles.yml
|
597
|
+
- test/fixtures/config/empty/empty_02.yml
|
598
|
+
- test/fixtures/config/empty/empty_02_roles.yml
|
599
|
+
- test/fixtures/config/locales/es.yml
|
600
|
+
- test/fixtures/config/namespaced/application.yml
|
601
|
+
- test/fixtures/config/namespaced/application_roles.yml
|
602
|
+
- test/fixtures/config/ordered/001_roles.yml
|
603
|
+
- test/fixtures/config/ordered/002_roles.yml
|
604
|
+
- test/fixtures/config/unordered/app_one_roles.yml
|
605
|
+
- test/fixtures/config/unordered/app_two_roles.yml
|
606
|
+
- test/fixtures/rails_app/.gitignore
|
607
|
+
- test/fixtures/rails_app/Capfile
|
608
|
+
- test/fixtures/rails_app/README
|
609
|
+
- test/fixtures/rails_app/Rakefile
|
610
|
+
- test/fixtures/rails_app/app/controllers/admin/animals_controller.rb
|
611
|
+
- test/fixtures/rails_app/app/controllers/admin/articles_controller.rb
|
612
|
+
- test/fixtures/rails_app/app/controllers/admin/assets_controller.rb
|
613
|
+
- test/fixtures/rails_app/app/controllers/admin/birds_controller.rb
|
614
|
+
- test/fixtures/rails_app/app/controllers/admin/cases_controller.rb
|
615
|
+
- test/fixtures/rails_app/app/controllers/admin/categories_controller.rb
|
616
|
+
- test/fixtures/rails_app/app/controllers/admin/comments_controller.rb
|
617
|
+
- test/fixtures/rails_app/app/controllers/admin/dogs_controller.rb
|
618
|
+
- test/fixtures/rails_app/app/controllers/admin/entries_controller.rb
|
619
|
+
- test/fixtures/rails_app/app/controllers/admin/image_holders_controller.rb
|
620
|
+
- test/fixtures/rails_app/app/controllers/admin/invoices_controller.rb
|
621
|
+
- test/fixtures/rails_app/app/controllers/admin/orders_controller.rb
|
622
|
+
- test/fixtures/rails_app/app/controllers/admin/pages_controller.rb
|
623
|
+
- test/fixtures/rails_app/app/controllers/admin/posts_controller.rb
|
624
|
+
- test/fixtures/rails_app/app/controllers/admin/project_collaborators_controller.rb
|
625
|
+
- test/fixtures/rails_app/app/controllers/admin/projects_controller.rb
|
626
|
+
- test/fixtures/rails_app/app/controllers/admin/status_controller.rb
|
627
|
+
- test/fixtures/rails_app/app/controllers/admin/typus_users_controller.rb
|
628
|
+
- test/fixtures/rails_app/app/controllers/admin/users_controller.rb
|
629
|
+
- test/fixtures/rails_app/app/controllers/admin/views_controller.rb
|
630
|
+
- test/fixtures/rails_app/app/controllers/admin/watch_dog_controller.rb
|
631
|
+
- test/fixtures/rails_app/app/controllers/application_controller.rb
|
632
|
+
- test/fixtures/rails_app/app/helpers/application_helper.rb
|
633
|
+
- test/fixtures/rails_app/app/helpers/form_helper.rb
|
634
|
+
- test/fixtures/rails_app/app/models/animal.rb
|
635
|
+
- test/fixtures/rails_app/app/models/article.rb
|
636
|
+
- test/fixtures/rails_app/app/models/asset.rb
|
637
|
+
- test/fixtures/rails_app/app/models/bird.rb
|
638
|
+
- test/fixtures/rails_app/app/models/case.rb
|
639
|
+
- test/fixtures/rails_app/app/models/category.rb
|
640
|
+
- test/fixtures/rails_app/app/models/comment.rb
|
641
|
+
- test/fixtures/rails_app/app/models/delayed/task.rb
|
642
|
+
- test/fixtures/rails_app/app/models/dog.rb
|
643
|
+
- test/fixtures/rails_app/app/models/entry.rb
|
644
|
+
- test/fixtures/rails_app/app/models/image_holder.rb
|
645
|
+
- test/fixtures/rails_app/app/models/invoice.rb
|
646
|
+
- test/fixtures/rails_app/app/models/order.rb
|
647
|
+
- test/fixtures/rails_app/app/models/page.rb
|
648
|
+
- test/fixtures/rails_app/app/models/post.rb
|
649
|
+
- test/fixtures/rails_app/app/models/project.rb
|
650
|
+
- test/fixtures/rails_app/app/models/project_collaborator.rb
|
651
|
+
- test/fixtures/rails_app/app/models/typus_user.rb
|
652
|
+
- test/fixtures/rails_app/app/models/user.rb
|
653
|
+
- test/fixtures/rails_app/app/models/view.rb
|
654
|
+
- test/fixtures/rails_app/app/views/admin/assets/_index.html.erb
|
655
|
+
- test/fixtures/rails_app/app/views/admin/cases/_index.html.erb
|
656
|
+
- test/fixtures/rails_app/app/views/admin/categories/_index.html.erb
|
657
|
+
- test/fixtures/rails_app/app/views/admin/dashboard/_sidebar.html.erb
|
658
|
+
- test/fixtures/rails_app/app/views/admin/entries/_index.html.erb
|
659
|
+
- test/fixtures/rails_app/app/views/admin/pages/_index.html.erb
|
660
|
+
- test/fixtures/rails_app/app/views/admin/posts/_edit.html.erb
|
661
|
+
- test/fixtures/rails_app/app/views/admin/posts/_index.html.erb
|
662
|
+
- test/fixtures/rails_app/app/views/admin/posts/_new.html.erb
|
663
|
+
- test/fixtures/rails_app/app/views/admin/posts/_show.html.erb
|
664
|
+
- test/fixtures/rails_app/app/views/admin/resources/_sidebar.html.erb
|
665
|
+
- test/fixtures/rails_app/app/views/admin/status/index.html.erb
|
666
|
+
- test/fixtures/rails_app/app/views/admin/templates/_datepicker.html.erb
|
667
|
+
- test/fixtures/rails_app/app/views/admin/watch_dog/index.html.erb
|
668
|
+
- test/fixtures/rails_app/app/views/layouts/admin/headless.html.erb
|
669
|
+
- test/fixtures/rails_app/config.ru
|
670
|
+
- test/fixtures/rails_app/config/application.rb
|
671
|
+
- test/fixtures/rails_app/config/boot.rb
|
672
|
+
- test/fixtures/rails_app/config/database.yml
|
673
|
+
- test/fixtures/rails_app/config/deploy.rb
|
674
|
+
- test/fixtures/rails_app/config/environment.rb
|
675
|
+
- test/fixtures/rails_app/config/environments/development.rb
|
676
|
+
- test/fixtures/rails_app/config/environments/production.rb
|
677
|
+
- test/fixtures/rails_app/config/environments/test.rb
|
678
|
+
- test/fixtures/rails_app/config/initializers/backtrace_silencers.rb
|
679
|
+
- test/fixtures/rails_app/config/initializers/dragonfly.rb
|
680
|
+
- test/fixtures/rails_app/config/initializers/inflections.rb
|
681
|
+
- test/fixtures/rails_app/config/initializers/mime_types.rb
|
682
|
+
- test/fixtures/rails_app/config/initializers/secret_token.rb
|
683
|
+
- test/fixtures/rails_app/config/initializers/session_store.rb
|
684
|
+
- test/fixtures/rails_app/config/initializers/typus.rb
|
685
|
+
- test/fixtures/rails_app/config/initializers/typus_resources.rb
|
686
|
+
- test/fixtures/rails_app/config/locales/en.yml
|
687
|
+
- test/fixtures/rails_app/config/routes.rb
|
688
|
+
- test/fixtures/rails_app/config/typus/README
|
689
|
+
- test/fixtures/rails_app/config/typus/crud_basic.yml
|
690
|
+
- test/fixtures/rails_app/config/typus/crud_basic_roles.yml
|
691
|
+
- test/fixtures/rails_app/config/typus/crud_extended.yml
|
692
|
+
- test/fixtures/rails_app/config/typus/crud_extended_roles.yml
|
693
|
+
- test/fixtures/rails_app/config/typus/has_many.yml
|
694
|
+
- test/fixtures/rails_app/config/typus/has_many_roles.yml
|
695
|
+
- test/fixtures/rails_app/config/typus/has_many_through.yml
|
696
|
+
- test/fixtures/rails_app/config/typus/has_many_through_roles.yml
|
697
|
+
- test/fixtures/rails_app/config/typus/has_one.yml
|
698
|
+
- test/fixtures/rails_app/config/typus/has_one_roles.yml
|
699
|
+
- test/fixtures/rails_app/config/typus/polymorphic.yml
|
700
|
+
- test/fixtures/rails_app/config/typus/polymorphic_roles.yml
|
701
|
+
- test/fixtures/rails_app/config/typus/resource_roles.yml
|
702
|
+
- test/fixtures/rails_app/config/typus/sti.yml
|
703
|
+
- test/fixtures/rails_app/config/typus/sti_roles.yml
|
704
|
+
- test/fixtures/rails_app/config/typus/typus.yml
|
705
|
+
- test/fixtures/rails_app/config/typus/typus_roles.yml
|
706
|
+
- test/fixtures/rails_app/config/typus/unknown.yml
|
707
|
+
- test/fixtures/rails_app/config/typus/unknown_roles.yml
|
708
|
+
- test/fixtures/rails_app/db/.gitkeep
|
709
|
+
- test/fixtures/rails_app/db/schema.rb
|
710
|
+
- test/fixtures/rails_app/db/seeds.rb
|
711
|
+
- test/fixtures/rails_app/db/seeds/assets/000.jpg
|
712
|
+
- test/fixtures/rails_app/db/seeds/assets/001.jpg
|
713
|
+
- test/fixtures/rails_app/db/seeds/assets/002.jpg
|
714
|
+
- test/fixtures/rails_app/db/seeds/assets/003.jpg
|
715
|
+
- test/fixtures/rails_app/db/seeds/assets/004.jpg
|
716
|
+
- test/fixtures/rails_app/public/404.html
|
717
|
+
- test/fixtures/rails_app/public/422.html
|
718
|
+
- test/fixtures/rails_app/public/500.html
|
719
|
+
- test/fixtures/rails_app/public/favicon.ico
|
720
|
+
- test/fixtures/rails_app/public/images/rails.png
|
721
|
+
- test/fixtures/rails_app/public/javascripts/application.js
|
722
|
+
- test/fixtures/rails_app/public/javascripts/controls.js
|
723
|
+
- test/fixtures/rails_app/public/javascripts/dragdrop.js
|
724
|
+
- test/fixtures/rails_app/public/javascripts/effects.js
|
725
|
+
- test/fixtures/rails_app/public/javascripts/prototype.js
|
726
|
+
- test/fixtures/rails_app/public/javascripts/rails.js
|
727
|
+
- test/fixtures/rails_app/public/robots.txt
|
728
|
+
- test/fixtures/rails_app/public/stylesheets/.gitkeep
|
729
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
|
730
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
|
731
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
|
732
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
|
733
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
|
734
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
|
735
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
|
736
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
737
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
|
738
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_222222_256x240.png
|
739
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_228ef1_256x240.png
|
740
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
|
741
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
|
742
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/images/ui-icons_ffffff_256x240.png
|
743
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/css/ui-lightness/jquery-ui-1.8.9.custom.css
|
744
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/js/jquery-1.4.4.min.js
|
745
|
+
- test/fixtures/rails_app/public/vendor/jquery-ui-1.8.9.custom/js/jquery-ui-1.8.9.custom.min.js
|
746
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/blank.gif
|
747
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_close.png
|
748
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_loading.png
|
749
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_nav_left.png
|
750
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_nav_right.png
|
751
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_e.png
|
752
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_n.png
|
753
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_ne.png
|
754
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_nw.png
|
755
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_s.png
|
756
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_se.png
|
757
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_sw.png
|
758
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_shadow_w.png
|
759
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_left.png
|
760
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_main.png
|
761
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_over.png
|
762
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancy_title_right.png
|
763
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox-x.png
|
764
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox-y.png
|
765
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/fancybox.png
|
766
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.easing-1.3.pack.js
|
767
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.css
|
768
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.js
|
769
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.fancybox-1.3.4.pack.js
|
770
|
+
- test/fixtures/rails_app/public/vendor/jquery.fancybox-1.3.4/fancybox/jquery.mousewheel-3.0.4.pack.js
|
771
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/application.js
|
772
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.application.js
|
773
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.rails.autocomplete.js
|
774
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.rails.js
|
775
|
+
- test/fixtures/rails_app/public/vendor/typus/javascripts/jquery.searchField.js
|
776
|
+
- test/fixtures/rails_app/public/vendor/typus/stylesheets/application.css
|
777
|
+
- test/fixtures/rails_app/public/vendor/typus/stylesheets/reset.css
|
778
|
+
- test/fixtures/rails_app/public/vendor/typus/stylesheets/screen.css
|
779
|
+
- test/fixtures/rails_app/script/rails
|
780
|
+
- test/fixtures/rails_app/tmp/.gitkeep
|
781
|
+
- test/lib/support/active_record_test.rb
|
782
|
+
- test/lib/support/fake_user_test.rb
|
783
|
+
- test/lib/support/hash_test.rb
|
784
|
+
- test/lib/support/object_test.rb
|
785
|
+
- test/lib/support/string_test.rb
|
786
|
+
- test/lib/typus/configuration_test.rb
|
787
|
+
- test/lib/typus/controller/actions_test.rb
|
788
|
+
- test/lib/typus/controller/associations_test.rb
|
789
|
+
- test/lib/typus/controller/autocomplete_test.rb
|
790
|
+
- test/lib/typus/controller/filters_test.rb
|
791
|
+
- test/lib/typus/controller/format_test.rb
|
792
|
+
- test/lib/typus/i18n_test.rb
|
793
|
+
- test/lib/typus/orm/active_record/class_methods_test.rb
|
794
|
+
- test/lib/typus/orm/active_record/search_test.rb
|
795
|
+
- test/lib/typus/regex_test.rb
|
796
|
+
- test/lib/typus/resources_test.rb
|
797
|
+
- test/lib/typus_test.rb
|
798
|
+
- test/test_helper.rb
|