sunrise-questions 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +34 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +21 -0
- data/Rakefile +27 -0
- data/app/controllers/manage/questions_controller.rb +36 -0
- data/app/views/manage/questions/_form.html.erb +17 -0
- data/app/views/manage/questions/_model_filter.html.erb +34 -0
- data/app/views/manage/questions/_question.html.erb +27 -0
- data/app/views/manage/questions/edit.html.erb +6 -0
- data/app/views/manage/questions/index.html.erb +32 -0
- data/app/views/manage/questions/new.html.erb +6 -0
- data/app/views/manage/questions/show.html.erb +29 -0
- data/config/locales/ru.yml +16 -0
- data/config/locales/uk.yml +16 -0
- data/config/routes.rb +7 -0
- data/lib/generators/sunrise/questions/USAGE +12 -0
- data/lib/generators/sunrise/questions/install_generator.rb +34 -0
- data/lib/generators/sunrise/questions/templates/create_questions.rb +20 -0
- data/lib/generators/sunrise/questions/templates/question.rb +5 -0
- data/lib/sunrise-questions.rb +1 -0
- data/lib/sunrise/models/question.rb +34 -0
- data/lib/sunrise/questions.rb +12 -0
- data/lib/sunrise/questions/engine.rb +18 -0
- data/lib/sunrise/questions/version.rb +5 -0
- data/spec/controllers/manage/questions_controller_spec.rb +96 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
- data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
- data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
- data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
- data/spec/dummy/app/models/defaults/ability.rb +39 -0
- data/spec/dummy/app/models/defaults/asset.rb +7 -0
- data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
- data/spec/dummy/app/models/defaults/avatar.rb +37 -0
- data/spec/dummy/app/models/defaults/header.rb +5 -0
- data/spec/dummy/app/models/defaults/page.rb +5 -0
- data/spec/dummy/app/models/defaults/picture.rb +35 -0
- data/spec/dummy/app/models/defaults/position_type.rb +7 -0
- data/spec/dummy/app/models/defaults/role.rb +20 -0
- data/spec/dummy/app/models/defaults/role_type.rb +8 -0
- data/spec/dummy/app/models/defaults/structure.rb +16 -0
- data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
- data/spec/dummy/app/models/defaults/user.rb +47 -0
- data/spec/dummy/app/models/question.rb +5 -0
- data/spec/dummy/app/views/layouts/application.html.erb +37 -0
- data/spec/dummy/app/views/pages/show.html.erb +2 -0
- data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +46 -0
- data/spec/dummy/config/application.yml.sample +4 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +22 -0
- data/spec/dummy/config/database.yml.sample +34 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/devise.rb +204 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/simple_form.rb +93 -0
- data/spec/dummy/config/initializers/sunrise.rb +7 -0
- data/spec/dummy/config/locales/devise.en.yml +53 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/locales/simple_form.en.yml +24 -0
- data/spec/dummy/config/logrotate-config.sample +9 -0
- data/spec/dummy/config/nginx-config-passenger.sample +51 -0
- data/spec/dummy/config/routes.rb +64 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
- data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
- data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
- data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
- data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
- data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
- data/spec/dummy/db/migrate/20110801161138_sunrise_create_questions.rb +20 -0
- data/spec/dummy/db/seeds.rb +25 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/dummy/log/development.log +5 -0
- data/spec/dummy/log/production.log +0 -0
- data/spec/dummy/log/server.log +0 -0
- data/spec/dummy/log/test.log +1830 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
- data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
- data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
- data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
- data/spec/dummy/public/images/manage/arrow.png +0 -0
- data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
- data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
- data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
- data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
- data/spec/dummy/public/images/manage/but_bg.png +0 -0
- data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
- data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
- data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
- data/spec/dummy/public/images/manage/but_search.gif +0 -0
- data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
- data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
- data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
- data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
- data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
- data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
- data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
- data/spec/dummy/public/images/manage/dot.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
- data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
- data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
- data/spec/dummy/public/images/manage/empty.gif +0 -0
- data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
- data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
- data/spec/dummy/public/images/manage/flag_en.gif +0 -0
- data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
- data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
- data/spec/dummy/public/images/manage/foto.jpg +0 -0
- data/spec/dummy/public/images/manage/ico_add.gif +0 -0
- data/spec/dummy/public/images/manage/ico_del.gif +0 -0
- data/spec/dummy/public/images/manage/ico_down.gif +0 -0
- data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
- data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
- data/spec/dummy/public/images/manage/ico_up.gif +0 -0
- data/spec/dummy/public/images/manage/input_bg.gif +0 -0
- data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
- data/spec/dummy/public/images/manage/mp3.png +0 -0
- data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
- data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
- data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
- data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
- data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
- data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
- data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
- data/spec/dummy/public/images/manage/preloader.gif +0 -0
- data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
- data/spec/dummy/public/images/manage/select_bg.gif +0 -0
- data/spec/dummy/public/images/manage/select_corn.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
- data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
- data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
- data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
- data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
- data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
- data/spec/dummy/public/images/manage/top_corn.gif +0 -0
- data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
- data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
- data/spec/dummy/public/images/manage/transp_cross.png +0 -0
- data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
- data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
- data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
- data/spec/dummy/public/images/manage/user_ico.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
- data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
- data/spec/dummy/public/javascripts/application.js +2 -0
- data/spec/dummy/public/javascripts/controls.js +965 -0
- data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
- data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
- data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
- data/spec/dummy/public/javascripts/dragdrop.js +974 -0
- data/spec/dummy/public/javascripts/effects.js +1123 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
- data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
- data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
- data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
- data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
- data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
- data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
- data/spec/dummy/public/javascripts/manage.js +294 -0
- data/spec/dummy/public/javascripts/preloader.js +47 -0
- data/spec/dummy/public/javascripts/prototype.js +6001 -0
- data/spec/dummy/public/javascripts/rails.js +331 -0
- data/spec/dummy/public/stylesheets/application.css +1 -0
- data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
- data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
- data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
- data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
- data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
- data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/factories/question_factory.rb +10 -0
- data/spec/factories/structure_factory.rb +22 -0
- data/spec/factories/user_factory.rb +48 -0
- data/spec/generators/install_generator_spec.rb +24 -0
- data/spec/integration/navigation_spec.rb +9 -0
- data/spec/models/question_spec.rb +30 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +57 -0
- data/spec/sunrise_questions_spec.rb +7 -0
- data/spec/support/helpers/controller_macros.rb +40 -0
- data/spec/tmp/app/models/question.rb +5 -0
- data/spec/tmp/db/migrate/20110801173811_sunrise_create_questions.rb +20 -0
- metadata +582 -0
data/Gemfile
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
gemspec
|
3
|
+
|
4
|
+
gem "rails", "3.0.9"
|
5
|
+
gem "capybara", ">= 0.4.0"
|
6
|
+
gem "sqlite3"
|
7
|
+
|
8
|
+
gem "rspec-rails", "~> 2.6.1"
|
9
|
+
gem "database_cleaner"
|
10
|
+
gem "fuubar"
|
11
|
+
gem "generator_spec"
|
12
|
+
gem "factory_girl_rails", "~> 1.1.0"
|
13
|
+
|
14
|
+
# Sunrise core gems
|
15
|
+
gem 'inherited_resources'
|
16
|
+
gem 'paperclip'
|
17
|
+
gem 'mime-types'
|
18
|
+
gem 'kaminari'
|
19
|
+
gem 'cancan'
|
20
|
+
gem 'cancan_namespace'
|
21
|
+
gem 'devise'
|
22
|
+
gem 'simple_form'
|
23
|
+
gem 'awesome_nested_set'
|
24
|
+
gem 'fastercsv'
|
25
|
+
gem 'ckeditor'
|
26
|
+
|
27
|
+
gem 'galetahub-enum_field', '~> 0.1.4', :require => 'enum_field'
|
28
|
+
gem 'galetahub-salty_slugs', '~> 1.0.0', :require => 'salty_slugs'
|
29
|
+
|
30
|
+
gem "sunrise-cms"
|
31
|
+
|
32
|
+
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
|
33
|
+
# gem 'ruby-debug'
|
34
|
+
# gem 'ruby-debug19'
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2011 AIMBULANCE
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
= Sunrise questions
|
2
|
+
|
3
|
+
== Install
|
4
|
+
|
5
|
+
rails generate sunrise:questions:install
|
6
|
+
|
7
|
+
rake db:migrate
|
8
|
+
|
9
|
+
== Usage
|
10
|
+
|
11
|
+
class Structure < ActiveRecord::Base
|
12
|
+
has_many :questions, :dependent => :delete_all
|
13
|
+
end
|
14
|
+
|
15
|
+
manage_structure_questions_path(:structure_id => structure.id)
|
16
|
+
|
17
|
+
== Test
|
18
|
+
|
19
|
+
rake test
|
20
|
+
|
21
|
+
Copyright (c) 2011 Aimbulance, released under the MIT license
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
require 'rubygems'
|
3
|
+
begin
|
4
|
+
require 'bundler/setup'
|
5
|
+
rescue LoadError
|
6
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
7
|
+
end
|
8
|
+
|
9
|
+
require 'rake'
|
10
|
+
require 'rake/rdoctask'
|
11
|
+
|
12
|
+
require 'rspec/core'
|
13
|
+
require 'rspec/core/rake_task'
|
14
|
+
|
15
|
+
RSpec::Core::RakeTask.new(:spec) do |t|
|
16
|
+
t.rspec_opts = ['--options', "spec/spec.opts"]
|
17
|
+
end
|
18
|
+
|
19
|
+
task :default => :spec
|
20
|
+
|
21
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
22
|
+
rdoc.rdoc_dir = 'rdoc'
|
23
|
+
rdoc.title = 'Sunrise-questions'
|
24
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
25
|
+
rdoc.rdoc_files.include('README.rdoc')
|
26
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
27
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
class Manage::QuestionsController < Manage::BaseController
|
2
|
+
inherit_resources
|
3
|
+
defaults :route_prefix => 'manage'
|
4
|
+
belongs_to :structure, :finder => :find_by_permalink!
|
5
|
+
|
6
|
+
before_filter :make_filter, :only => [:index]
|
7
|
+
|
8
|
+
load_and_authorize_resource :question, :through => :structure
|
9
|
+
|
10
|
+
def create
|
11
|
+
create!{ manage_structure_questions_path(@structure.id) }
|
12
|
+
end
|
13
|
+
|
14
|
+
def update
|
15
|
+
update!{ manage_structure_questions_path(@structure.id) }
|
16
|
+
end
|
17
|
+
|
18
|
+
def destroy
|
19
|
+
destroy!{ manage_structure_questions_path(@structure.id) }
|
20
|
+
end
|
21
|
+
|
22
|
+
protected
|
23
|
+
|
24
|
+
def begin_of_association_chain
|
25
|
+
@structure
|
26
|
+
end
|
27
|
+
|
28
|
+
def collection
|
29
|
+
@questions = (@questions || end_of_association_chain).merge(@search.scoped).page(params[:page])
|
30
|
+
end
|
31
|
+
|
32
|
+
def make_filter
|
33
|
+
@search = Sunrise::ModelFilter.new(Question, :attributes => [:title])
|
34
|
+
@search.update_attributes(params[:search])
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%= manage_form_for [@structure, @question] do |f| %>
|
2
|
+
<div class="edit-cont">
|
3
|
+
<div class="inputs-bl">
|
4
|
+
<%= f.input :title, :input_html => { :class => 'text name' } %>
|
5
|
+
|
6
|
+
<%= f.input :sort_order %>
|
7
|
+
|
8
|
+
<%= f.ckeditor :content, :input_html => options_for_ckeditor %>
|
9
|
+
|
10
|
+
<div class="radio-bl">
|
11
|
+
<%= f.input :is_visible %>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
|
16
|
+
<%= f.button :submit, :url => manage_structure_questions_path(@structure.id) %>
|
17
|
+
<% end %>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<div class="bot-bg">
|
2
|
+
<div class="filt-bl">
|
3
|
+
<%= link_to_function t('manage.model_filter.title'), "Manage.toggle_element('block_filter')", :class=>"dark-arr" %>
|
4
|
+
|
5
|
+
<%= cookie_content_tag(:div, :id=>"block_filter", :class=>"filt") do %>
|
6
|
+
<%= form_for @search, :as => :search, :url=>manage_structure_questions_path(@structure.id), :html=>{:method=>:get, :id=>"form_filter"} do |f| %>
|
7
|
+
<%= f.label :title, t('activerecord.attributes.question.title') %>
|
8
|
+
<%= f.text_field :title, :class=>"text" %>
|
9
|
+
|
10
|
+
<div class="buts">
|
11
|
+
<%= content_tag(:button, :value=>"search", :type=>"submit", :name=>"commit", :class=>"gr cupid-green") do %>
|
12
|
+
<%= t('manage.model_filter.search') %>
|
13
|
+
<% end %>
|
14
|
+
|
15
|
+
<%= link_to t('manage.model_filter.clear'), manage_structure_questions_path(@structure.id), :class=>"erase" %>
|
16
|
+
</div>
|
17
|
+
<% end %>
|
18
|
+
<% end %>
|
19
|
+
</div>
|
20
|
+
<div class="sort">
|
21
|
+
<label><%= t('manage.sort') %></label>
|
22
|
+
<div class="select-input"><%= link_to_function t("questions.#{@search.order_column}_#{@search.order_type}", :scope => [:manage, :sort_columns], :default => :"#{@search.order_column}_#{@search.order_type}"), "SelectList.toggle(event)", :class=>"corn", :id=>'sort_select' %></div>
|
23
|
+
<div id='sort_select_list' class="select-list" style='display:none;'>
|
24
|
+
<%= link_to_sort(t('questions.created_at_desc', :scope => [:manage, :sort_columns], :default => :created_at_desc), :name => "created_at", :order_type => 'desc') %>
|
25
|
+
<%= link_to_sort(t('questions.created_at_asc', :scope => [:manage, :sort_columns], :default => :created_at_asc), :name => "created_at", :order_type => 'asc') %>
|
26
|
+
|
27
|
+
<%= link_to_sort(t('questions.title_desc', :scope => [:manage, :sort_columns], :default => :title_desc), :name => "title", :order_type => 'desc') %>
|
28
|
+
<%= link_to_sort(t('questions.title_asc', :scope => [:manage, :sort_columns], :default => :title_asc), :name => "title", :order_type => 'asc') %>
|
29
|
+
|
30
|
+
<%= link_to_sort(t('questions.sort_order_desc', :scope => [:manage, :sort_columns], :default => :sort_order_desc), :name => "sort_order", :order_type => 'desc') %>
|
31
|
+
<%= link_to_sort(t('questions.sort_order_asc', :scope => [:manage, :sort_columns], :default => :sort_order_asc), :name => "sort_order", :order_type => 'asc') %>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
</div>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<%= content_tag(:div, :id=>dom_id(question), :class=>"dinamic-bl") do %>
|
2
|
+
<div class="act-bl" style="display:none;">
|
3
|
+
<%= link_to image_tag("manage/ico_edit.gif", :alt=>t('manage.edit'), :title=>t('manage.edit')), edit_manage_structure_question_path(@structure.id, question.id), :class=>"icons" %>
|
4
|
+
|
5
|
+
<%= link_to image_tag("manage/ico_del.gif", :alt=>t('manage.delete'), :title=>t('manage.delete')), manage_structure_question_path(@structure.id, question.id),
|
6
|
+
:method=>:delete, :confirm=>t("manage.confirm_delete"), :class=>"icons" %>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<div class="bot-bg">
|
10
|
+
<div class="dinamic-container">
|
11
|
+
<div class="right-data">
|
12
|
+
<div class="right-data-cont">
|
13
|
+
<div class="dinamic-inner">
|
14
|
+
<div class="r-block">
|
15
|
+
<div class="block-cont">
|
16
|
+
<%= link_to question.title, edit_manage_structure_question_path(@structure.id, question.id), :class=>"title" %>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<div class="left-data">
|
23
|
+
<span class="data"><%= raw I18n.l(question.created_at, :format=>"<span>%d/%m</span>%Y") %></span>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
</div>
|
27
|
+
<% end %>
|
@@ -0,0 +1,32 @@
|
|
1
|
+
<div class="duo-bl">
|
2
|
+
<div class="left-part">
|
3
|
+
<div class="content">
|
4
|
+
<div class="row-container">
|
5
|
+
<div class="white-row">
|
6
|
+
<div class="r-corn">
|
7
|
+
<%= link_to t('manage.menu.questions'), manage_structure_questions_path(@structure.id), :class=>"dark-text" %>
|
8
|
+
<div class="act-bl">
|
9
|
+
<%= link_to t('manage.add'), new_manage_structure_question_path(@structure.id), :class=>"create" %>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
<div id="questions" class="stage">
|
15
|
+
<%= render :partial=>"manage/questions/question", :collection=>@questions %>
|
16
|
+
<%= paginate @questions, :theme => 'manage' %>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<script type='text/javascript'>
|
20
|
+
$(document).ready(function(){
|
21
|
+
Manage.init_collection('questions', 'dinamic-bl');
|
22
|
+
});
|
23
|
+
</script>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="right-part">
|
28
|
+
<div class="filter-right">
|
29
|
+
<%= render :partial=>"manage/questions/model_filter" %>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</div>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<div class="buttons">
|
2
|
+
<div class="back-but-bl">
|
3
|
+
<%= link_to content_tag(:span, t('manage.menu.questions')), manage_structure_questions_path(@structure.id), :class=>"back" %>
|
4
|
+
</div>
|
5
|
+
|
6
|
+
<div class="act-bl">
|
7
|
+
<%= link_to image_tag("manage/ico_edit.gif", :title=>t('manage.edit')), edit_manage_structure_question_path(@structure.id, @question.id), :class=>"icons" %>
|
8
|
+
|
9
|
+
<%= link_to image_tag("manage/ico_del.gif", :title=>t('manage.delete')), manage_structure_question_path(@structure.id, @question.id), :method=>:delete, :confirm=>t("manage.confirm_delete"), :class=>"icons" %>
|
10
|
+
</div>
|
11
|
+
</div>
|
12
|
+
|
13
|
+
<div class="edit-bl">
|
14
|
+
<div class="bot-bg">
|
15
|
+
<div class="block-title"><%= @question.title %>:</div>
|
16
|
+
<div class="edit-cont">
|
17
|
+
<table border="0" cellspacing="0" cellpadding="0" class="page-info">
|
18
|
+
<tbody>
|
19
|
+
<% @question.attributes.each do |attribute, value| %>
|
20
|
+
<tr>
|
21
|
+
<td><strong><%= attribute %></strong></td>
|
22
|
+
<td><%= value %></td>
|
23
|
+
</tr>
|
24
|
+
<% end %>
|
25
|
+
</tbody>
|
26
|
+
</table>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</div>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
ru:
|
2
|
+
manage:
|
3
|
+
plugins:
|
4
|
+
questions: "Вопросы и ответы"
|
5
|
+
|
6
|
+
menu:
|
7
|
+
questions: "Вопросы и ответы"
|
8
|
+
|
9
|
+
activerecord:
|
10
|
+
attributes:
|
11
|
+
question:
|
12
|
+
title: "Название"
|
13
|
+
content: "Содержание"
|
14
|
+
sort_order: "Сортировка"
|
15
|
+
is_visible: "Отображать?"
|
16
|
+
structure_id: "Категория"
|
@@ -0,0 +1,16 @@
|
|
1
|
+
uk:
|
2
|
+
manage:
|
3
|
+
plugins:
|
4
|
+
questions: "Питання та відповіді"
|
5
|
+
|
6
|
+
menu:
|
7
|
+
questions: "Питання та відповіді"
|
8
|
+
|
9
|
+
activerecord:
|
10
|
+
attributes:
|
11
|
+
question:
|
12
|
+
title: "Назва"
|
13
|
+
content: "Зміст"
|
14
|
+
sort_order: "Сортування"
|
15
|
+
is_visible: "Відображати?"
|
16
|
+
structure_id: "Категорія"
|
data/config/routes.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
Usage:
|
2
|
+
rails generate sunrise:questions:install [options]
|
3
|
+
|
4
|
+
Options:
|
5
|
+
[--migrations] # Indicates when to generate migrations
|
6
|
+
# Default: true
|
7
|
+
|
8
|
+
Example:
|
9
|
+
|
10
|
+
rails g sunrise:questions:install
|
11
|
+
|
12
|
+
rails g sunrise:questions:install --skip-migrations
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'rails/generators'
|
2
|
+
require 'rails/generators/migration'
|
3
|
+
|
4
|
+
module Sunrise
|
5
|
+
module Questions
|
6
|
+
class InstallGenerator < Rails::Generators::Base
|
7
|
+
include Rails::Generators::Migration
|
8
|
+
|
9
|
+
source_root File.expand_path(File.join(File.dirname(__FILE__), 'templates'))
|
10
|
+
class_option :migrations, :type => :boolean, :default => true, :description => "Generate migrations files"
|
11
|
+
|
12
|
+
desc "Generates post migration and model"
|
13
|
+
|
14
|
+
def self.current_time
|
15
|
+
@current_time ||= Time.now
|
16
|
+
@current_time += 1.minute
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.next_migration_number(dirname)
|
20
|
+
current_time.strftime("%Y%m%d%H%M%S")
|
21
|
+
end
|
22
|
+
|
23
|
+
def create_model
|
24
|
+
copy_file('question.rb', 'app/models/question.rb')
|
25
|
+
end
|
26
|
+
|
27
|
+
def create_migration
|
28
|
+
if options.migrations
|
29
|
+
migration_template "create_questions.rb", File.join('db/migrate', "sunrise_create_questions.rb")
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
class SunriseCreateQuestions < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :questions do |t|
|
4
|
+
t.integer :structure_id
|
5
|
+
t.string :title, :null => false
|
6
|
+
t.text :content
|
7
|
+
|
8
|
+
t.boolean :is_visible, :default => true
|
9
|
+
t.integer :sort_order, :default => 0
|
10
|
+
|
11
|
+
t.timestamps
|
12
|
+
end
|
13
|
+
|
14
|
+
add_index :questions, :structure_id
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.down
|
18
|
+
drop_table :questions
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'sunrise/questions'
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
module Sunrise
|
3
|
+
module Models
|
4
|
+
module Question
|
5
|
+
def self.included(base)
|
6
|
+
base.send :include, InstanceMethods
|
7
|
+
base.send :extend, ClassMethods
|
8
|
+
end
|
9
|
+
|
10
|
+
module ClassMethods
|
11
|
+
def self.extended(base)
|
12
|
+
base.class_eval do
|
13
|
+
belongs_to :structure
|
14
|
+
|
15
|
+
validates_presence_of :title, :content
|
16
|
+
validates_numericality_of :sort_order, :only_integer => true, :allow_nil => true
|
17
|
+
|
18
|
+
scope :sortable, order("#{quoted_table_name}.sort_order DESC")
|
19
|
+
scope :recently, order("#{quoted_table_name}.created_at DESC")
|
20
|
+
scope :visible, where(:is_visible => true)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
module InstanceMethods
|
26
|
+
|
27
|
+
def content_without_html
|
28
|
+
return nil if self.content.blank?
|
29
|
+
self.content.no_html
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|