From 2eeb0efce41b7bfd055387d6524bed567f25ba1c Mon Sep 17 00:00:00 2001 From: bohung Date: Sun, 27 Sep 2020 23:08:29 +0800 Subject: [PATCH] clone from vnccu.nccu.edu.tw site. --- Gemfile | 14 ++ Gemfile.lock | 87 ++++++++ MIT-LICENSE | 20 ++ README.rdoc | 3 + Rakefile | 32 +++ .../nccu_com_vnccu_program.js.coffee | 3 + .../nccu_com_vnccu_program.css.scss | 3 + ...com_vnccu_program_song_lists_controller.rb | 44 ++++ .../nccu_com_vnccu_programs_controller.rb | 118 ++++++++++ .../nccu_com_vnccu_programs_controller.rb | 63 ++++++ .../admin/nccu_com_vnccu_programs_helper.rb | 31 +++ app/models/com_vnccu_program.rb | 53 +++++ app/models/com_vnccu_program_link.rb | 25 +++ app/models/com_vnccu_program_song_list.rb | 19 ++ .../edit.html.erb | 66 ++++++ .../nccu_com_vnccu_programs/_form.html.erb | 203 ++++++++++++++++++ .../_form_link.html.erb | 20 ++ .../nccu_com_vnccu_programs/_index.html.erb | 47 ++++ .../nccu_com_vnccu_programs/edit.html.erb | 5 + .../nccu_com_vnccu_programs/export.xlsx.axlsx | 45 ++++ .../export_data.html.erb | 36 ++++ .../nccu_com_vnccu_programs/index.html.erb | 6 + .../nccu_com_vnccu_programs/new.html.erb | 5 + .../song_list.html.erb | 62 ++++++ .../nccu_com_vnccu_programs/index.html.erb | 42 ++++ .../nccu_com_vnccu_programs/send_ok.html.erb | 7 + .../nccu_com_vnccu_programs/show.html.erb | 4 + .../show_data.html.erb | 53 +++++ .../nccu_com_vnccu_programs/vod.html.erb | 96 +++++++++ app/views/simple_captcha/_simple_captcha.erb | 33 +++ bin/rails | 18 ++ config/locales/en.yml | 60 ++++++ config/locales/zh_tw.yml | 61 ++++++ config/routes.rb | 26 +++ lib/nccu_com_vnccu_program.rb | 4 + lib/nccu_com_vnccu_program/engine.rb | 45 ++++ lib/nccu_com_vnccu_program/version.rb | 3 + lib/tasks/nccu_com_vnccu_program_tasks.rake | 4 + modules/nccu_com_vnccu_program/index.html.erb | 0 nccu_com_vnccu_program.gemspec | 23 ++ .../nccu_com_vnccu_program_controller_test.rb | 7 + test/dummy/README.rdoc | 28 +++ test/dummy/Rakefile | 6 + test/dummy/app/assets/images/.keep | 0 .../app/assets/javascripts/application.js | 13 ++ .../app/assets/stylesheets/application.css | 15 ++ .../app/controllers/application_controller.rb | 5 + test/dummy/app/controllers/concerns/.keep | 0 test/dummy/app/helpers/application_helper.rb | 2 + test/dummy/app/mailers/.keep | 0 test/dummy/app/models/.keep | 0 test/dummy/app/models/concerns/.keep | 0 .../app/views/layouts/application.html.erb | 14 ++ test/dummy/bin/bundle | 3 + test/dummy/bin/rails | 4 + test/dummy/bin/rake | 4 + test/dummy/config.ru | 4 + test/dummy/config/application.rb | 23 ++ test/dummy/config/boot.rb | 5 + test/dummy/config/database.yml | 25 +++ test/dummy/config/environment.rb | 5 + test/dummy/config/environments/development.rb | 37 ++++ test/dummy/config/environments/production.rb | 78 +++++++ test/dummy/config/environments/test.rb | 39 ++++ test/dummy/config/initializers/assets.rb | 8 + .../initializers/backtrace_silencers.rb | 7 + .../config/initializers/cookies_serializer.rb | 3 + .../initializers/filter_parameter_logging.rb | 4 + test/dummy/config/initializers/inflections.rb | 16 ++ test/dummy/config/initializers/mime_types.rb | 4 + .../config/initializers/session_store.rb | 3 + .../config/initializers/wrap_parameters.rb | 14 ++ test/dummy/config/locales/en.yml | 23 ++ test/dummy/config/routes.rb | 56 +++++ test/dummy/config/secrets.yml | 22 ++ test/dummy/lib/assets/.keep | 0 test/dummy/log/.keep | 0 test/dummy/public/404.html | 67 ++++++ test/dummy/public/422.html | 67 ++++++ test/dummy/public/500.html | 66 ++++++ test/dummy/public/favicon.ico | 0 .../nccu_com_vnccu_program_helper_test.rb | 4 + test/nccu_com_vnccu_program_test.rb | 7 + test/test_helper.rb | 18 ++ 84 files changed, 2195 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 MIT-LICENSE create mode 100644 README.rdoc create mode 100644 Rakefile create mode 100644 app/assets/javascripts/nccu_com_vnccu_program.js.coffee create mode 100644 app/assets/stylesheets/nccu_com_vnccu_program.css.scss create mode 100644 app/controllers/admin/nccu_com_vnccu_program_song_lists_controller.rb create mode 100644 app/controllers/admin/nccu_com_vnccu_programs_controller.rb create mode 100644 app/controllers/nccu_com_vnccu_programs_controller.rb create mode 100644 app/helpers/admin/nccu_com_vnccu_programs_helper.rb create mode 100644 app/models/com_vnccu_program.rb create mode 100644 app/models/com_vnccu_program_link.rb create mode 100644 app/models/com_vnccu_program_song_list.rb create mode 100644 app/views/admin/nccu_com_vnccu_program_song_lists/edit.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/_form.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/_form_link.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/_index.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/edit.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/export.xlsx.axlsx create mode 100644 app/views/admin/nccu_com_vnccu_programs/export_data.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/index.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/new.html.erb create mode 100644 app/views/admin/nccu_com_vnccu_programs/song_list.html.erb create mode 100644 app/views/nccu_com_vnccu_programs/index.html.erb create mode 100644 app/views/nccu_com_vnccu_programs/send_ok.html.erb create mode 100644 app/views/nccu_com_vnccu_programs/show.html.erb create mode 100644 app/views/nccu_com_vnccu_programs/show_data.html.erb create mode 100644 app/views/nccu_com_vnccu_programs/vod.html.erb create mode 100644 app/views/simple_captcha/_simple_captcha.erb create mode 100644 bin/rails create mode 100644 config/locales/en.yml create mode 100644 config/locales/zh_tw.yml create mode 100644 config/routes.rb create mode 100644 lib/nccu_com_vnccu_program.rb create mode 100644 lib/nccu_com_vnccu_program/engine.rb create mode 100644 lib/nccu_com_vnccu_program/version.rb create mode 100644 lib/tasks/nccu_com_vnccu_program_tasks.rake create mode 100644 modules/nccu_com_vnccu_program/index.html.erb create mode 100644 nccu_com_vnccu_program.gemspec create mode 100644 test/controllers/nccu_com_vnccu_program_controller_test.rb create mode 100644 test/dummy/README.rdoc create mode 100644 test/dummy/Rakefile create mode 100644 test/dummy/app/assets/images/.keep create mode 100644 test/dummy/app/assets/javascripts/application.js create mode 100644 test/dummy/app/assets/stylesheets/application.css create mode 100644 test/dummy/app/controllers/application_controller.rb create mode 100644 test/dummy/app/controllers/concerns/.keep create mode 100644 test/dummy/app/helpers/application_helper.rb create mode 100644 test/dummy/app/mailers/.keep create mode 100644 test/dummy/app/models/.keep create mode 100644 test/dummy/app/models/concerns/.keep create mode 100644 test/dummy/app/views/layouts/application.html.erb create mode 100644 test/dummy/bin/bundle create mode 100644 test/dummy/bin/rails create mode 100644 test/dummy/bin/rake create mode 100644 test/dummy/config.ru create mode 100644 test/dummy/config/application.rb create mode 100644 test/dummy/config/boot.rb create mode 100644 test/dummy/config/database.yml create mode 100644 test/dummy/config/environment.rb create mode 100644 test/dummy/config/environments/development.rb create mode 100644 test/dummy/config/environments/production.rb create mode 100644 test/dummy/config/environments/test.rb create mode 100644 test/dummy/config/initializers/assets.rb create mode 100644 test/dummy/config/initializers/backtrace_silencers.rb create mode 100644 test/dummy/config/initializers/cookies_serializer.rb create mode 100644 test/dummy/config/initializers/filter_parameter_logging.rb create mode 100644 test/dummy/config/initializers/inflections.rb create mode 100644 test/dummy/config/initializers/mime_types.rb create mode 100644 test/dummy/config/initializers/session_store.rb create mode 100644 test/dummy/config/initializers/wrap_parameters.rb create mode 100644 test/dummy/config/locales/en.yml create mode 100644 test/dummy/config/routes.rb create mode 100644 test/dummy/config/secrets.yml create mode 100644 test/dummy/lib/assets/.keep create mode 100644 test/dummy/log/.keep create mode 100644 test/dummy/public/404.html create mode 100644 test/dummy/public/422.html create mode 100644 test/dummy/public/500.html create mode 100644 test/dummy/public/favicon.ico create mode 100644 test/helpers/nccu_com_vnccu_program_helper_test.rb create mode 100644 test/nccu_com_vnccu_program_test.rb create mode 100644 test/test_helper.rb diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..5ec14a9 --- /dev/null +++ b/Gemfile @@ -0,0 +1,14 @@ +source "https://rubygems.org" + +# Declare your gem's dependencies in nccu_com_vnccu_program.gemspec. +# Bundler will treat runtime dependencies like base dependencies, and +# development dependencies will be added by default to the :development group. +gemspec + +# Declare any dependencies that are still in development here instead of in +# your gemspec. These might include edge Rails or gems from your path or +# Git. Remember to move these dependencies to your gemspec before releasing +# your gem to rubygems.org. + +# To use debugger +# gem 'debugger' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..64d02e4 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,87 @@ +PATH + remote: . + specs: + nccu_com_vnccu_program (0.0.1) + rails (~> 4.1.9) + +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.1.9) + actionpack (= 4.1.9) + actionview (= 4.1.9) + mail (~> 2.5, >= 2.5.4) + actionpack (4.1.9) + actionview (= 4.1.9) + activesupport (= 4.1.9) + rack (~> 1.5.2) + rack-test (~> 0.6.2) + actionview (4.1.9) + activesupport (= 4.1.9) + builder (~> 3.1) + erubis (~> 2.7.0) + activemodel (4.1.9) + activesupport (= 4.1.9) + builder (~> 3.1) + activerecord (4.1.9) + activemodel (= 4.1.9) + activesupport (= 4.1.9) + arel (~> 5.0.0) + activesupport (4.1.9) + i18n (~> 0.6, >= 0.6.9) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.1) + tzinfo (~> 1.1) + arel (5.0.1.20140414130214) + builder (3.2.2) + erubis (2.7.0) + hike (1.2.3) + i18n (0.7.0) + json (1.8.2) + mail (2.6.3) + mime-types (>= 1.16, < 3) + mime-types (2.4.3) + minitest (5.5.1) + multi_json (1.10.1) + rack (1.5.2) + rack-test (0.6.3) + rack (>= 1.0) + rails (4.1.9) + actionmailer (= 4.1.9) + actionpack (= 4.1.9) + actionview (= 4.1.9) + activemodel (= 4.1.9) + activerecord (= 4.1.9) + activesupport (= 4.1.9) + bundler (>= 1.3.0, < 2.0) + railties (= 4.1.9) + sprockets-rails (~> 2.0) + railties (4.1.9) + actionpack (= 4.1.9) + activesupport (= 4.1.9) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (10.4.2) + sprockets (2.12.3) + hike (~> 1.2) + multi_json (~> 1.0) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + sprockets-rails (2.2.4) + actionpack (>= 3.0) + activesupport (>= 3.0) + sprockets (>= 2.8, < 4.0) + sqlite3 (1.3.10) + thor (0.19.1) + thread_safe (0.3.4) + tilt (1.4.1) + tzinfo (1.2.2) + thread_safe (~> 0.1) + +PLATFORMS + ruby + +DEPENDENCIES + nccu_com_vnccu_program! + sqlite3 diff --git a/MIT-LICENSE b/MIT-LICENSE new file mode 100644 index 0000000..1e4beb8 --- /dev/null +++ b/MIT-LICENSE @@ -0,0 +1,20 @@ +Copyright 2015 YOURNAME + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 0000000..bad1797 --- /dev/null +++ b/README.rdoc @@ -0,0 +1,3 @@ += NccuComVnccuProgram + +This project rocks and uses MIT-LICENSE. \ No newline at end of file diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..c68eca8 --- /dev/null +++ b/Rakefile @@ -0,0 +1,32 @@ +begin + require 'bundler/setup' +rescue LoadError + puts 'You must `gem install bundler` and `bundle install` to run rake tasks' +end + +require 'rdoc/task' + +RDoc::Task.new(:rdoc) do |rdoc| + rdoc.rdoc_dir = 'rdoc' + rdoc.title = 'NccuComVnccuProgram' + rdoc.options << '--line-numbers' + rdoc.rdoc_files.include('README.rdoc') + rdoc.rdoc_files.include('lib/**/*.rb') +end + + + + +Bundler::GemHelper.install_tasks + +require 'rake/testtask' + +Rake::TestTask.new(:test) do |t| + t.libs << 'lib' + t.libs << 'test' + t.pattern = 'test/**/*_test.rb' + t.verbose = false +end + + +task default: :test diff --git a/app/assets/javascripts/nccu_com_vnccu_program.js.coffee b/app/assets/javascripts/nccu_com_vnccu_program.js.coffee new file mode 100644 index 0000000..24f83d1 --- /dev/null +++ b/app/assets/javascripts/nccu_com_vnccu_program.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/nccu_com_vnccu_program.css.scss b/app/assets/stylesheets/nccu_com_vnccu_program.css.scss new file mode 100644 index 0000000..e1ec4a8 --- /dev/null +++ b/app/assets/stylesheets/nccu_com_vnccu_program.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the nccu_com_vnccu_program controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/admin/nccu_com_vnccu_program_song_lists_controller.rb b/app/controllers/admin/nccu_com_vnccu_program_song_lists_controller.rb new file mode 100644 index 0000000..8f01005 --- /dev/null +++ b/app/controllers/admin/nccu_com_vnccu_program_song_lists_controller.rb @@ -0,0 +1,44 @@ +# encoding: utf-8 +class Admin::NccuComVnccuProgramSongListsController < OrbitAdminController + include Admin::NccuComVnccuProgramsHelper + before_action ->(module_app = @app_title) { set_variables module_app } + + def initialize + super + @app_title = "nccu_com_vnccu_program" + end + + def edit + + params[:controller] = "admin/nccu_com_vnccu_programs" + + @song_list = ComVnccuProgramSongList.find(params[:id]) + @nccu_com_vnccu_program = ComVnccuProgram.find(@song_list.com_vnccu_program_id) + + end + + def update + + @song_list = ComVnccuProgramSongList.find(params[:id]) + @song_list.update_attributes(song_list_params) + + redirect_to "/admin/nccu_com_vnccu_programs/#{@song_list.com_vnccu_program_id}/song_list" + + end + + def destroy + @song_list = ComVnccuProgramSongList.find(params[:id]) + + @program_id = @song_list.com_vnccu_program_id + + @song_list.destroy + + redirect_to "/admin/nccu_com_vnccu_programs/#{@program_id}/song_list" + end + + private + + def song_list_params + params.require(:com_vnccu_program_song_list).permit! + end +end diff --git a/app/controllers/admin/nccu_com_vnccu_programs_controller.rb b/app/controllers/admin/nccu_com_vnccu_programs_controller.rb new file mode 100644 index 0000000..a32f97d --- /dev/null +++ b/app/controllers/admin/nccu_com_vnccu_programs_controller.rb @@ -0,0 +1,118 @@ +# encoding: utf-8 +class Admin::NccuComVnccuProgramsController < OrbitAdminController + include Admin::NccuComVnccuProgramsHelper + before_action ->(module_app = @app_title) { set_variables module_app } + before_action :set_nccu_com_vnccu_program, only: [:edit, :destroy, :song_list] + + def initialize + super + @app_title = "nccu_com_vnccu_program" + end + + def filter_fields(categories) + { + :category=>categories.map{|c| {:title=>(c.title.blank? ? " " : c.title), :id=>c.id}} + } + end + + def index + @categories = @module_app.categories.enabled + @filter_fields = filter_fields(@categories) + @table_fields = [:category, 'nccu_com_vnccu_program.year', 'nccu_com_vnccu_program.semester', 'nccu_com_vnccu_program.program_name', 'nccu_com_vnccu_program.week', 'nccu_com_vnccu_program.hour', 'nccu_com_vnccu_program.host'] + + !params[:sort].blank? ? sort = {params[:sort].to_sym=>params[:order]} : sort = {:postdate=>"desc"} + + @nccu_com_vnccu_programs = ComVnccuProgram.order_by(sort).with_categories(filters("category")) + + @nccu_com_vnccu_programs = search_data(@nccu_com_vnccu_programs,[:title]).page(params[:page]).per(10) + + if request.xhr? + render :partial => "index" + end + end + + def new + @nccu_com_vnccu_program = ComVnccuProgram.new + @hosts = @nccu_com_vnccu_program.get_hosts + end + + def create + nccu_com_vnccu_program = ComVnccuProgram.new(com_vnccu_program) + nccu_com_vnccu_program.create_user_id = current_user.id + nccu_com_vnccu_program.update_user_id = current_user.id + nccu_com_vnccu_program.save + redirect_to params['referer_url'] + end + + def edit + if can_edit_or_delete?(@nccu_com_vnccu_program) + @categories = @module_app.categories.enabled + @hosts = @nccu_com_vnccu_program.get_hosts + else + render_401 + end + end + + def update + + nccu_com_vnccu_program = ComVnccuProgram.find(params[:id]) + + nccu_com_vnccu_program.update_attributes(com_vnccu_program) + redirect_to params['referer_url'] + end + + def destroy + @nccu_com_vnccu_program.destroy + redirect_to "/admin/nccu_com_vnccu_programs" + end + + def export + + @nccu_com_vnccu_programs = ComVnccuProgram.where(:year=>params[:year], :semester=>params[:semester]) + @year = params[:year] + @semester = params[:semester] + + respond_to do |format| + format.xlsx { + response.headers['Content-Disposition'] = 'attachment; filename="export.xlsx"' + } + end + + end + + def export_data + + end + + def song_list + + @song_lists = ComVnccuProgramSongList.where(:com_vnccu_program_id => @nccu_com_vnccu_program.id).desc(:created_at).page(params[:page]).per(10) + + end + + def edit_com_vnccu_program_song_list + @com_vnccu_program_song_list = ComVnccuProgramSongList.find(params[:id]) + @com_vnccu_program = ComVnccuProgram.find(@com_vnccu_program_song_list.com_vnccu_program_id) + end + + def delete_com_vnccu_program_song_list + + @com_vnccu_program_song_list = ComVnccuProgramSongList.find(params[:id]) + + @com_vnccu_program_id = @com_vnccu_program_song_list.com_vnccu_program_id + + @com_vnccu_program_song_list.destroy + + redirect_to "/admin/nccu_com_vnccu_programs/@nccu_com_vnccu_program_id.to_s/com_vnccu_program_song_list" + end + + private + + def set_nccu_com_vnccu_program + @nccu_com_vnccu_program = ComVnccuProgram.find(params[:id]) + end + + def com_vnccu_program + params.require(:com_vnccu_program).permit! + end +end diff --git a/app/controllers/nccu_com_vnccu_programs_controller.rb b/app/controllers/nccu_com_vnccu_programs_controller.rb new file mode 100644 index 0000000..a9e03cd --- /dev/null +++ b/app/controllers/nccu_com_vnccu_programs_controller.rb @@ -0,0 +1,63 @@ +class NccuComVnccuProgramsController < ApplicationController + + include ApplicationHelper + + helper MemberHelper + + include SimpleCaptcha::ControllerHelpers + + def index + programs = ComVnccuProgram.where(:is_hidden=>false) + moduleapp = ModuleApp.find_by(:key => "nccu_com_vnccu_program") + program_categorys = Category.where(:module_app_id=>moduleapp.id).asc(:created_at) + + { + "programs" => programs, + "program_categorys" => program_categorys + } + end + + def show_data + + params = OrbitHelper.params + + program = ComVnccuProgram.find(params[:no]) + + { + "program" => program + } + end + + def vod + + programs = ComVnccuProgram.where(:open_song=>true,:is_hidden=>false).asc(:week) + song_list = ComVnccuProgramSongList.new + + { + "programs" => programs, + "song_list" => song_list + } + + end + + def create + + @song_list = ComVnccuProgramSongList.new(song_list_params) + + if simple_captcha_valid? && @song_list.save + redirect_to "#{ OrbitHelper.url_to_show("")}?method=send_ok" + else + redirect_to "#{ OrbitHelper.url_to_show("")}", :notice => t('recaptcha.errors.verification_failed') + end + + end + + def send_ok + end + + def song_list_params + params.require(:com_vnccu_program_song_list).permit! + end + + +end \ No newline at end of file diff --git a/app/helpers/admin/nccu_com_vnccu_programs_helper.rb b/app/helpers/admin/nccu_com_vnccu_programs_helper.rb new file mode 100644 index 0000000..f850bf4 --- /dev/null +++ b/app/helpers/admin/nccu_com_vnccu_programs_helper.rb @@ -0,0 +1,31 @@ +module Admin::NccuComVnccuProgramsHelper + def page_for_program(program=nil) + ann_page = nil + pages = Page.where(:module=>'nccu_com_vnccu_program') + + pages.each do |page| + if page.categories.count ==1 + if page.categories.include?(program.category.id.to_s) + ann_page = page + end + end + break if !ann_page.nil? + end + + if ann_page.nil? + pages.each do |page| + if page.categories.include?(program.category.id.to_s) + ann_page = page + end + break if !ann_page.nil? + end + end + + ann_page = pages.first if ann_page.nil? + if !program.blank? + request.protocol+(request.host_with_port+'/'+I18n.locale.to_s+ann_page.url).gsub('//','/') rescue "/" + else + request.protocol+(request.host_with_port+'/'+I18n.locale.to_s+ann_page.url).gsub('//','/') rescue "/" + end + end +end \ No newline at end of file diff --git a/app/models/com_vnccu_program.rb b/app/models/com_vnccu_program.rb new file mode 100644 index 0000000..784ca41 --- /dev/null +++ b/app/models/com_vnccu_program.rb @@ -0,0 +1,53 @@ +# encoding: utf-8 +class ComVnccuProgram + + include Mongoid::Document + include Mongoid::Timestamps + + include OrbitModel::Status + include OrbitModel::Impression + include OrbitCategory::Categorizable + + + field :year + field :semester + field :program_name + field :open_song, :type => Boolean, :default => false + field :week + field :hour + field :description + field :host, :type => Array + + field :create_user_id + field :update_user_id + + has_many :com_vnccu_program_links, :autosave => true, :dependent => :destroy + has_many :com_vnccu_program_song_lists, :autosave => true, :dependent => :destroy + + accepts_nested_attributes_for :com_vnccu_program_links, :allow_destroy => true + accepts_nested_attributes_for :com_vnccu_program_song_lists, :allow_destroy => true + + # scope :can_display, ->{any_of({:sign_start_date.lt=>Time.now, :sign_end_date.gt=>Time.now},{:sign_start_date.lt=>Time.now, :sign_end_date=>nil}).order_by([:is_top, :desc])} + + def get_hosts + @values = Array.new() + + @role = Role.where(:key=>"host").first + for i in 1..5 + @nickname_field = AttributeField.where(:key => 'nickname'+i.to_s, :role_id => @role).first + @values_data = AttributeValue.where(:attribute_field_id => @nickname_field, :val.ne => "").collect{|t|t[:val]}.join('-').split('-') + + @values.concat(@values_data) + end + + return @values.reject(&:empty?) + + end + + def get_hosts_name(hosts=nil) + + return hosts.join(",") if !hosts.blank? + + end + +end diff --git a/app/models/com_vnccu_program_link.rb b/app/models/com_vnccu_program_link.rb new file mode 100644 index 0000000..d394cc9 --- /dev/null +++ b/app/models/com_vnccu_program_link.rb @@ -0,0 +1,25 @@ +# encoding: utf-8 +require 'uri' + +class ComVnccuProgramLink + include Mongoid::Document + include Mongoid::Timestamps + + field :url + field :title + + belongs_to :com_vnccu_program + + before_validation :add_http + + # validates :url, :presence => true, :format => /\A(http|https):\/\/(([a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5})|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))(:[0-9]{1,5})?(\/.*)?\Z/i + + protected + + def add_http + unless self.url[/^http:\/\//] || self.url[/^https:\/\//] + self.url = 'http://' + self.url + end + end + +end \ No newline at end of file diff --git a/app/models/com_vnccu_program_song_list.rb b/app/models/com_vnccu_program_song_list.rb new file mode 100644 index 0000000..3ebe35d --- /dev/null +++ b/app/models/com_vnccu_program_song_list.rb @@ -0,0 +1,19 @@ +# encoding: utf-8 +class ComVnccuProgramSongList + + include Mongoid::Document + include Mongoid::Timestamps + + field :name + field :song + field :singer + field :vod_partner + field :email + field :description + field :play_status , :type => Boolean , :default => false + field :play_time + + + belongs_to :com_vnccu_program + +end diff --git a/app/views/admin/nccu_com_vnccu_program_song_lists/edit.html.erb b/app/views/admin/nccu_com_vnccu_program_song_lists/edit.html.erb new file mode 100644 index 0000000..19f6f78 --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_program_song_lists/edit.html.erb @@ -0,0 +1,66 @@ +<%= form_for @song_list, url: admin_nccu_com_vnccu_program_song_list_path(@song_list), html: {class: "form-horizontal main-forms"} do |f| %> +
+ +<% content_for :page_specific_css do %> + <%= stylesheet_link_tag "lib/main-forms" %> + <%= stylesheet_link_tag "lib/fileupload" %> + <%= stylesheet_link_tag "lib/main-list" %> +<% end %> +<% content_for :page_specific_javascript do %> + <%= javascript_include_tag "lib/bootstrap-fileupload" %> + <%= javascript_include_tag "lib/bootstrap-datetimepicker" %> + <%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %> + <%= javascript_include_tag "lib/file-type" %> + <%= javascript_include_tag "lib/module-area" %> +<% end %> + + +
+ + +
+ + + +
+ +
+ <%= @nccu_com_vnccu_program.program_name %> +
+
+ + +
+ +
+ + +
+
+ + +
+ +
+ <%= f.text_field :play_time %> +
+
+ +
+ +
+ + +
+ <%#= get_referer_url[:action] rescue "" %> + <%= f.submit t('submit'), class: 'btn btn-primary' %> + <%= link_to t('cancel'), "/admin/nccu_com_vnccu_programs/#{@nccu_com_vnccu_program.id}/song_list", :class=>"btn" %> +
+ + +
+<% end %> \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/_form.html.erb b/app/views/admin/nccu_com_vnccu_programs/_form.html.erb new file mode 100644 index 0000000..423672b --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/_form.html.erb @@ -0,0 +1,203 @@ +<% content_for :page_specific_css do %> + <%= stylesheet_link_tag "lib/main-forms" %> + <%= stylesheet_link_tag "lib/fileupload" %> + <%= stylesheet_link_tag "lib/main-list" %> +<% end %> +<% content_for :page_specific_javascript do %> + <%= javascript_include_tag "lib/bootstrap-fileupload" %> + <%= javascript_include_tag "lib/bootstrap-datetimepicker" %> + <%= javascript_include_tag "lib/datetimepicker/datetimepicker.js" %> + <%= javascript_include_tag "lib/file-type" %> + <%= javascript_include_tag "lib/module-area" %> +<% end %> + + +
+ + + + + + +
+ + +
+ + +
+ +
+ +
+
+ +
+ + +
+ + +
+ +
+ <%= select_year((@nccu_com_vnccu_program.year ? @nccu_com_vnccu_program.year.to_i : DateTime.now.year), {:start_year => (DateTime.now.year - 1911), :end_year => (2014 - 1911)}, {:name => 'com_vnccu_program[year]', :class => "span1"} ) %> +
+
+ + +
+ +
+ <%= f.select :semester, (1..2).each{|a|[a,a]} %> +
+
+ + +
+ +
+ <%= select_category(f, @module_app) %> +
+
+ + +
+ +
+ <%= f.text_field :program_name %> (半形空白二格前台顯示為換行) +
+
+ + +
+ +
+ + +
+
+ + +
+ +
+ <%= f.select :week, (1..5).collect{|a|[t("program_weeks.week#{a}"),a]} %> +
+
+ + +
+ +
+ <%= f.text_field :hour %> ( 請輸入四碼數字 ) +
+
+ + +
+ +
+ <%= f.text_area :description %> +
+
+ + +
+ +
+ <% @hosts.each do |t| %> + + <% end %> +
+
+ +
+ +
+ + +
+ +
+ + + <% if @nccu_com_vnccu_program && !@nccu_com_vnccu_program.com_vnccu_program_links.blank? %> +
+ <% @nccu_com_vnccu_program.com_vnccu_program_links.each_with_index do |program_link, i| %> + <%= f.fields_for :com_vnccu_program_links, program_link do |f| %> + <%= render :partial => 'form_link', :object => program_link, :locals => {:f => f, :i => i} %> + <% end %> + <% end %> +
+
+ <% end %> + + +
+
+

+ <%= hidden_field_tag 'com_vnccu_program_link_field_count', @nccu_com_vnccu_program.com_vnccu_program_links.count %> + <%= t(:add) %> +

+ +
+
+ +
+ + +
+ <%= get_referer_url[:action] rescue "" %> + <%= f.submit t('submit'), class: 'btn btn-primary' %> + + <%= link_to t('cancel'), admin_nccu_com_vnccu_programs_path, :class=>"btn" %> +
+ +<% content_for :page_specific_javascript do %> + +<% end %> \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/_form_link.html.erb b/app/views/admin/nccu_com_vnccu_programs/_form_link.html.erb new file mode 100644 index 0000000..943ce9d --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/_form_link.html.erb @@ -0,0 +1,20 @@ +
+ + <%= f.text_field :url, class: "input-large", placeholder: t(:url) %> + + + <%= f.text_field :title %> + + + <% if form_link.new_record? %> + + + + <% else %> + + <%= f.hidden_field :id %> + + <%= f.hidden_field :_destroy, :value => nil, :class => 'should_destroy' %> + + <% end %> +
\ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/_index.html.erb b/app/views/admin/nccu_com_vnccu_programs/_index.html.erb new file mode 100644 index 0000000..fed354d --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/_index.html.erb @@ -0,0 +1,47 @@ + + + + + + <% @table_fields.each do |f| %> + <% if f == 'nccu_com_vnccu_program.program_name' %> + + <% else %> + <%= thead(f) %> + <% end %> + <% end %> + + + + <% @nccu_com_vnccu_programs.each do |program| %> + + + + + + + + + + <% end %> + +
<%= t(f)%>
<%= program.category.title %><%= program.year %><%= program.semester %> + <%= program.program_name %> +
+ +
+
<%= program.week %><%= program.hour %><%= program.get_hosts_name(program.host) %>
+ +<%= + content_tag :div, class: "bottomnav clearfix" do + content_tag :div, paginate(@nccu_com_vnccu_programs), class: "pagination pagination-centered" + end +%> \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/edit.html.erb b/app/views/admin/nccu_com_vnccu_programs/edit.html.erb new file mode 100644 index 0000000..21b3316 --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/edit.html.erb @@ -0,0 +1,5 @@ +<%= form_for @nccu_com_vnccu_program, url: admin_nccu_com_vnccu_program_path(@nccu_com_vnccu_program), html: {class: "form-horizontal main-forms"} do |f| %> +
+ <%= render :partial => 'form', locals: {f: f} %> +
+<% end %> \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/export.xlsx.axlsx b/app/views/admin/nccu_com_vnccu_programs/export.xlsx.axlsx new file mode 100644 index 0000000..2a01bbb --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/export.xlsx.axlsx @@ -0,0 +1,45 @@ +# encoding: utf-8 + +wb = xlsx_package.workbook + +wb.add_worksheet(name: "#{@year}年度 第#{@semester}學期 點歌單") do |sheet| + + sheet.add_row ["#{@year}年度 第#{@semester}學期 點歌單"] + + row = [t('nccu_com_vnccu_program.program_name')] + row << t('vod.time') + row << t('vod.name') + row << t('vod.singer') + row << t('vod.vod_partner') + row << t('vod.email') + row << t('vod.description') + row << t('vod.play_status') + row << t('vod.play_time') + + sheet.add_row row + + @nccu_com_vnccu_programs.each do |nccu_com_vnccu_program| + + + ComVnccuProgramSongList.where(:com_vnccu_program_id => nccu_com_vnccu_program.id).each do |song_list| + + row2 = [] + + row2 << "#{nccu_com_vnccu_program[:program_name]} " + row2 << "#{format_value song_list.created_at} " + row2 << "#{song_list[:name]} " + row2 << "#{song_list[:singer]} " + row2 << "#{song_list[:vod_partner]} " + row2 << "#{song_list[:email]} " + row2 << "#{song_list[:description]} " + row2 << "#{song_list[:play_status]} " + row2 << "#{song_list[:play_time]} " + + sheet.add_row row2 + + end + + end + + +end \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/export_data.html.erb b/app/views/admin/nccu_com_vnccu_programs/export_data.html.erb new file mode 100644 index 0000000..ddd5c28 --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/export_data.html.erb @@ -0,0 +1,36 @@ +<% content_for :page_specific_css do -%> + <%= stylesheet_link_tag "lib/main-forms.css" %> +<% end -%> + +<%= form_tag export_admin_nccu_com_vnccu_programs_path(format: "xlsx"), :multipart => true , :class=>"form-horizontal main-forms", :id=>"vod-forms" do %> + +
+
+
+
+

<%= t("nccu_com_vnccu_program.export") %>

+
+ + +
+ +
+ <%= select_year(DateTime.now.year, {:start_year => (DateTime.now.year - 1911), :end_year => (2014 - 1911)}, {:name => 'year', :class => "span1"} ) %> +
+
+ + +
+ +
+ <%= select_tag "semester", options_for_select(['1','2']) %> +
+
+
+
+
+ <%= submit_tag t('nccu_com_vnccu_program.export') , :class=>"btn btn-default" %> +
+
+ +<% end -%> \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/index.html.erb b/app/views/admin/nccu_com_vnccu_programs/index.html.erb new file mode 100644 index 0000000..4513c37 --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/index.html.erb @@ -0,0 +1,6 @@ +<%= render_filter @filter_fields, "index_table" %> + + <%= render 'index'%> + + +<%= render 'layouts/delete_modal', delete_options: @delete_options %> diff --git a/app/views/admin/nccu_com_vnccu_programs/new.html.erb b/app/views/admin/nccu_com_vnccu_programs/new.html.erb new file mode 100644 index 0000000..c352792 --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/new.html.erb @@ -0,0 +1,5 @@ +<%= form_for @nccu_com_vnccu_program, url: admin_nccu_com_vnccu_programs_path, html: {class: "form-horizontal main-forms"} do |f| %> +
+ <%= render :partial => 'form', locals: {f: f} %> +
+<% end %> \ No newline at end of file diff --git a/app/views/admin/nccu_com_vnccu_programs/song_list.html.erb b/app/views/admin/nccu_com_vnccu_programs/song_list.html.erb new file mode 100644 index 0000000..6d1ef03 --- /dev/null +++ b/app/views/admin/nccu_com_vnccu_programs/song_list.html.erb @@ -0,0 +1,62 @@ + + + + +

<%= @nccu_com_vnccu_program.program_name %>

+ + + + + + + + + + + + + + + <% @song_lists.each do |song_list| %> + + + + + + + + + + + + + <% end %> + +
<%= t('vod.time')%><%= t('vod.name')%><%= t('vod.song')%><%= t('vod.singer')%><%= t('vod.vod_partner')%><%= t('vod.email')%><%= t('vod.play_status')%>
<%= format_value song_list.created_at %> + <%= song_list.name %> +
+ +
+
<%= song_list.song %><%= song_list.singer %><%= song_list.vod_partner %><%= song_list.email %><%= t(:edit) %>
+
" class="footable-row-detail-inner" style="display: none;"> +
+ <%= t("nccu_com_vnccu_program.description") %> : <%= song_list.description %> +
+
+
+ +<%= + content_tag :div, class: "bottomnav clearfix" do + content_tag :div, paginate(@song_lists), class: "pagination pagination-centered" + end +%> +
+ +<%= render 'layouts/delete_modal', delete_options: @delete_options %> diff --git a/app/views/nccu_com_vnccu_programs/index.html.erb b/app/views/nccu_com_vnccu_programs/index.html.erb new file mode 100644 index 0000000..e371f7b --- /dev/null +++ b/app/views/nccu_com_vnccu_programs/index.html.erb @@ -0,0 +1,42 @@ +<% # encoding: utf-8 %> +<% + data = action_data + @program_categorys = data["program_categorys"] +%> + +
節目表
+ + + + + + <% (1..5).each do |a| %> + + <% @program_categorys.each do |program_category| %> + + + <% (1..5).each do |a| %> + + <% end %> + + <% end %> + +
<%= t("program_weeks.week#{a}") %>
<%= t("program_weeks_en.week#{a}") %> + <% end %> +
<%= program_category.title.gsub(' ', '
').html_safe %>
+ <% + ComVnccuProgram.where(:is_hidden=>false, :week=>"#{a}", :category_id=>program_category.id).collect do |t| + %> + <%= t.program_name.gsub(' ', '
').html_safe %>
+ <% end %> +
+ + + diff --git a/app/views/nccu_com_vnccu_programs/send_ok.html.erb b/app/views/nccu_com_vnccu_programs/send_ok.html.erb new file mode 100644 index 0000000..06409a1 --- /dev/null +++ b/app/views/nccu_com_vnccu_programs/send_ok.html.erb @@ -0,0 +1,7 @@ +<% # encoding: utf-8 %> + +<% + data = action_data +%> + +感謝您的點歌,我們將盡快為您安排,謝謝 \ No newline at end of file diff --git a/app/views/nccu_com_vnccu_programs/show.html.erb b/app/views/nccu_com_vnccu_programs/show.html.erb new file mode 100644 index 0000000..8d243db --- /dev/null +++ b/app/views/nccu_com_vnccu_programs/show.html.erb @@ -0,0 +1,4 @@ +<% # encoding: utf-8 %> +<% + data = action_data +%> \ No newline at end of file diff --git a/app/views/nccu_com_vnccu_programs/show_data.html.erb b/app/views/nccu_com_vnccu_programs/show_data.html.erb new file mode 100644 index 0000000..0e5c5a5 --- /dev/null +++ b/app/views/nccu_com_vnccu_programs/show_data.html.erb @@ -0,0 +1,53 @@ +<% # encoding: utf-8 %> + +<% + data = action_data + @program = data["program"] +%> + + + + + + + + + + + + + + + + + + + + <% if !@program.host.blank? %> + + + + + <% end %> + <% if !@program.description.blank? %> + + + + + <% end %> + <% if !@program.com_vnccu_program_links.blank? %> + + + + + <% end %> + +
<%= t(:category) %><%= @program.category.title %>
<%= t('nccu_com_vnccu_program.program_name') %><%= @program.program_name %>
<%= t('nccu_com_vnccu_program.week') %><%= t("program_weeks.week#{@program.week}") %>
<%= t('nccu_com_vnccu_program.hour') %><%= @program.hour %>
<%= t('nccu_com_vnccu_program.host') %><%= @program.get_hosts_name(@program.host) %>
<%= t('nccu_com_vnccu_program.description') %><%= nl2br(@program.description) %>
<%= t('nccu_com_vnccu_program.link') %> + <% @program.com_vnccu_program_links.map do |link| %> + <%= link_to (link.title.blank? ? link.url : link.title), link.url, :target => '_blank' %>
+ <% end %> +
+ +
+ +<%= link_to t(:close), 'javascript:window.close();', :class => 'btn btn-primary' %> diff --git a/app/views/nccu_com_vnccu_programs/vod.html.erb b/app/views/nccu_com_vnccu_programs/vod.html.erb new file mode 100644 index 0000000..3e62e6e --- /dev/null +++ b/app/views/nccu_com_vnccu_programs/vod.html.erb @@ -0,0 +1,96 @@ +<% # encoding: utf-8 %> +<% + data = action_data + @programs = data["programs"] + @song_list = data["song_list"] + weekdays = ["","Mon", "Tue", "Wed", "Thu", "Fri"] +%> + +<% flash.collect do |key, msg| %> + <% msg.each do |m|%> + <%= + content_tag :p do + content_tag :span, m, :class => [key, "alert alert-error in fade"] + end + %> + <% end %> +<% end %> + +<%= form_for @song_list, url: nccu_com_vnccu_programs_path, html: {class: "content form-horizontal" , :id=>"new-vod"} do |f| %> + +
+ + +
+ +
+ <%= f.text_field :name, :id=>'nccu_com_vnccu_program_name', :class=>"form-control", :placeholder=> t('vod.name'), :required => true %> +
+
+ + +
+ +
+ <%= f.text_field :song, :id=>'nccu_com_vnccu_program_song', :class=>"form-control", :placeholder=> t('vod.song'), :required => true %> +
+
+ + +
+ +
+ <%= f.text_field :singer, :id=>'nccu_com_vnccu_program_singer', :class=>"form-control", :placeholder=> t('vod.singer'), :required => true %> +
+
+ + +
+ +
+ <%= f.text_field :vod_partner, :id=>'nccu_com_vnccu_program_vod_partner', :class=>"form-control", :placeholder=> t('vod.vod_partner'), :required => true %> +
+
+ +
+ +
+ <%= f.select :com_vnccu_program_id, @programs.collect{|t| [ ((weekdays[t.week.to_i] + "-" rescue "") + t.hour+'-'+t.program_name+'-'+t.get_hosts_name(t.host)), t.id ]} %> +
+ +
+ + +
+ +
+ <%= f.text_field :email, :class=>"input-medium form-control", :id=>'email', :placeholder=> t('vod.email') %> +
+
+ + +
+ +
+ <%= f.text_area :description, rows: 5, :class=>"input-medium form-control", :placeholder=> t('vod.description') %> +
+
+ +
+ +
+ <%= show_simple_captcha %> +
+
+ +
+
+ "> + <%= f.submit t('submit'), class: 'btn btn-primary', :id => 'button-mail' %> + <%= f.button t('cancel'), type: 'reset', class: 'btn' %> +
+
+ +
+ +<% end %> \ No newline at end of file diff --git a/app/views/simple_captcha/_simple_captcha.erb b/app/views/simple_captcha/_simple_captcha.erb new file mode 100644 index 0000000..748746f --- /dev/null +++ b/app/views/simple_captcha/_simple_captcha.erb @@ -0,0 +1,33 @@ + + +
+
+ <%= simple_captcha_options[:image] %> +
+ +
+ <%= simple_captcha_options[:field] %> +
+
diff --git a/bin/rails b/bin/rails new file mode 100644 index 0000000..656cf54 --- /dev/null +++ b/bin/rails @@ -0,0 +1,18 @@ +#!/usr/bin/env ruby +# This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application. + +ENGINE_ROOT = File.expand_path('../..', __FILE__) +ENGINE_PATH = File.expand_path('../../lib/active/engine', __FILE__) + +# Set up gems listed in the Gemfile. +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) + +# require 'rails/all' +# require 'rails/engine/commands' +require "action_controller/railtie" +require "action_mailer/railtie" +require "sprockets/railtie" +require "rails/test_unit/railtie" +require 'rails/engine/commands' +require "mongoid/railtie" diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 0000000..4171c36 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,60 @@ +en: + + simple_captcha: + placeholder: "" + label: "" + + module_name: + nccu_com_vnccu_program: 節目表 + + recaptcha: + errors: + verification_failed: 驗證碼錯誤 + + nccu_com_vnccu_program: + nccu_com_vnccu_program: 節目表 + export: 匯出 + year: 年度 + semester: 學期 + program_name: 節目名稱 + week: 星期 + hour: 時段 + open_song: 是否開放點歌 + description: 節目描述說明 + no_: 否 + host: 主持人 + link: 集數 + song_list: 點歌列表 + + frontend: + program: 節目表 + + program_weeks: + week1: 星期一 + week2: 星期二 + week3: 星期三 + week4: 星期四 + week5: 星期五 + week6: 星期六 + week7: 星期日 + + program_weeks_en: + week1: MONDAY + week2: TUESDAY + week3: WEDNESDAY + week4: THURSDAY + week5: FRIDAY + week6: Saturday + week7: Sunday + + vod: + name: 點歌者姓名 + song: 歌名 + singer: 歌手名稱 + program: 播放節目 + vod_partner: 送歌對象 + email: 點歌者email + description: 文字敘述 + play_status: 播放狀態 + play_time: 播放時間 + recaptcha: 驗證碼 diff --git a/config/locales/zh_tw.yml b/config/locales/zh_tw.yml new file mode 100644 index 0000000..ba0cee2 --- /dev/null +++ b/config/locales/zh_tw.yml @@ -0,0 +1,61 @@ +zh_tw: + + simple_captcha: + placeholder: "" + label: "" + + module_name: + nccu_com_vnccu_program: 節目表 + + recaptcha: + errors: + verification_failed: 驗證碼錯誤 + + nccu_com_vnccu_program: + nccu_com_vnccu_program: 節目表 + export: 匯出 + year: 年度 + semester: 學期 + program_name: 節目名稱 + week: 星期 + hour: 時段 + open_song: 是否開放點歌 + description: 節目描述說明 + no_: 否 + host: 主持人 + link: 集數 + song_list: 點歌列表 + + frontend: + program: 節目表 + + program_weeks: + week1: 星期一 + week2: 星期二 + week3: 星期三 + week4: 星期四 + week5: 星期五 + week6: 星期六 + week7: 星期日 + + program_weeks_en: + week1: MONDAY + week2: TUESDAY + week3: WEDNESDAY + week4: THURSDAY + week5: FRIDAY + week6: Saturday + week7: Sunday + + vod: + time: 時間 + name: 點歌者姓名 + song: 歌名 + singer: 歌手名稱 + program: 播放節目 + vod_partner: 送歌對象 + email: 點歌者email + description: 文字敘述 + play_status: 播放狀態 + play_time: 播放時間 + recaptcha: 驗證碼 diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 0000000..aa25f7b --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,26 @@ +Rails.application.routes.draw do + + locales = Site.first.in_use_locales rescue I18n.available_locales + + scope "(:locale)", locale: Regexp.new(locales.join("|")) do + namespace :admin do + resources :nccu_com_vnccu_programs do + + collection do + get 'export_data' + post 'export' + end + + member do + get 'song_list' + end + end + + resources :nccu_com_vnccu_program_song_lists + end + + resources :nccu_com_vnccu_programs + + end + +end diff --git a/lib/nccu_com_vnccu_program.rb b/lib/nccu_com_vnccu_program.rb new file mode 100644 index 0000000..c4feb4e --- /dev/null +++ b/lib/nccu_com_vnccu_program.rb @@ -0,0 +1,4 @@ +require "nccu_com_vnccu_program/engine" + +module NccuComVnccuProgram +end diff --git a/lib/nccu_com_vnccu_program/engine.rb b/lib/nccu_com_vnccu_program/engine.rb new file mode 100644 index 0000000..c6f7856 --- /dev/null +++ b/lib/nccu_com_vnccu_program/engine.rb @@ -0,0 +1,45 @@ +module NccuComVnccuProgram + class Engine < ::Rails::Engine + initializer "nccu_com_vnccu_program" do + OrbitApp.registration "NccuComVnccuProgram", :type => "ModuleApp" do + module_label "nccu_com_vnccu_program.nccu_com_vnccu_program" + base_url File.expand_path File.dirname(__FILE__) + authorizable + categorizable + frontend_enabled + data_count 1..20 + + side_bar do + head_label_i18n 'nccu_com_vnccu_program.nccu_com_vnccu_program', icon_class: "icon-music" + available_for "users" + active_for_controllers (['admin/nccu_com_vnccu_programs']) + head_link_path "admin_nccu_com_vnccu_programs_path" + + context_link 'list_', + :link_path=>"admin_nccu_com_vnccu_programs_path" , + :priority=>1, + :active_for_action=>{'admin/nccu_com_vnccu_programs'=>'index'}, + :available_for => 'users' + context_link 'new_', + :link_path=>"new_admin_nccu_com_vnccu_program_path" , + :priority=>2, + :active_for_action=>{'admin/nccu_com_vnccu_programs'=>'new'}, + :available_for => 'sub_managers' + context_link 'categories', + :link_path=>"admin_module_app_categories_path" , + :link_arg=>"{:module_app_id=>ModuleApp.find_by(:key=>'nccu_com_vnccu_program').id}", + :priority=>3, + :active_for_action=>{'admin/nccu_com_vnccu_programs'=>'categories'}, + :active_for_category => 'NccuComVnccuProgram', + :available_for => 'managers' + context_link 'nccu_com_vnccu_program.export', + :link_path=>"export_data_admin_nccu_com_vnccu_programs_path" , + :priority=>3, + :active_for_action=>{'admin/nccu_com_vnccu_programs'=>'nccu_com_vnccu_export'}, + :available_for => 'managers' + end + + end + end + end +end \ No newline at end of file diff --git a/lib/nccu_com_vnccu_program/version.rb b/lib/nccu_com_vnccu_program/version.rb new file mode 100644 index 0000000..183b3ca --- /dev/null +++ b/lib/nccu_com_vnccu_program/version.rb @@ -0,0 +1,3 @@ +module NccuComVnccuProgram + VERSION = "0.0.1" +end diff --git a/lib/tasks/nccu_com_vnccu_program_tasks.rake b/lib/tasks/nccu_com_vnccu_program_tasks.rake new file mode 100644 index 0000000..e4b471c --- /dev/null +++ b/lib/tasks/nccu_com_vnccu_program_tasks.rake @@ -0,0 +1,4 @@ +# desc "Explaining what the task does" +# task :nccu_com_vnccu_program do +# # Task goes here +# end diff --git a/modules/nccu_com_vnccu_program/index.html.erb b/modules/nccu_com_vnccu_program/index.html.erb new file mode 100644 index 0000000..e69de29 diff --git a/nccu_com_vnccu_program.gemspec b/nccu_com_vnccu_program.gemspec new file mode 100644 index 0000000..b5cceb1 --- /dev/null +++ b/nccu_com_vnccu_program.gemspec @@ -0,0 +1,23 @@ +$:.push File.expand_path("../lib", __FILE__) + +# Maintain your gem's version: +require "nccu_com_vnccu_program/version" + +# Describe your gem and declare its dependencies: +Gem::Specification.new do |s| + s.name = "nccu_com_vnccu_program" + s.version = NccuComVnccuProgram::VERSION + s.authors = ["TODO: Your name"] + s.email = ["TODO: Your email"] + s.homepage = "TODO" + s.summary = "TODO: Summary of NccuComVnccuProgram." + s.description = "TODO: Description of NccuComVnccuProgram." + s.license = "MIT" + + s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"] + s.test_files = Dir["test/**/*"] + + s.add_dependency "rails", "~> 4.1.9" + + s.add_development_dependency "sqlite3" +end diff --git a/test/controllers/nccu_com_vnccu_program_controller_test.rb b/test/controllers/nccu_com_vnccu_program_controller_test.rb new file mode 100644 index 0000000..0ed0953 --- /dev/null +++ b/test/controllers/nccu_com_vnccu_program_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class NccuComVnccuProgramControllerTest < ActionController::TestCase + # test "the truth" do + # assert true + # end +end diff --git a/test/dummy/README.rdoc b/test/dummy/README.rdoc new file mode 100644 index 0000000..dd4e97e --- /dev/null +++ b/test/dummy/README.rdoc @@ -0,0 +1,28 @@ +== README + +This README would normally document whatever steps are necessary to get the +application up and running. + +Things you may want to cover: + +* Ruby version + +* System dependencies + +* Configuration + +* Database creation + +* Database initialization + +* How to run the test suite + +* Services (job queues, cache servers, search engines, etc.) + +* Deployment instructions + +* ... + + +Please feel free to use a different markup language if you do not plan to run +rake doc:app. diff --git a/test/dummy/Rakefile b/test/dummy/Rakefile new file mode 100644 index 0000000..ba6b733 --- /dev/null +++ b/test/dummy/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +Rails.application.load_tasks diff --git a/test/dummy/app/assets/images/.keep b/test/dummy/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/assets/javascripts/application.js b/test/dummy/app/assets/javascripts/application.js new file mode 100644 index 0000000..5bc2e1c --- /dev/null +++ b/test/dummy/app/assets/javascripts/application.js @@ -0,0 +1,13 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. +// +// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require_tree . diff --git a/test/dummy/app/assets/stylesheets/application.css b/test/dummy/app/assets/stylesheets/application.css new file mode 100644 index 0000000..a443db3 --- /dev/null +++ b/test/dummy/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any styles + * defined in the other CSS/SCSS files in this directory. It is generally better to create a new + * file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/test/dummy/app/controllers/application_controller.rb b/test/dummy/app/controllers/application_controller.rb new file mode 100644 index 0000000..d83690e --- /dev/null +++ b/test/dummy/app/controllers/application_controller.rb @@ -0,0 +1,5 @@ +class ApplicationController < ActionController::Base + # Prevent CSRF attacks by raising an exception. + # For APIs, you may want to use :null_session instead. + protect_from_forgery with: :exception +end diff --git a/test/dummy/app/controllers/concerns/.keep b/test/dummy/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/helpers/application_helper.rb b/test/dummy/app/helpers/application_helper.rb new file mode 100644 index 0000000..de6be79 --- /dev/null +++ b/test/dummy/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/test/dummy/app/mailers/.keep b/test/dummy/app/mailers/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/models/.keep b/test/dummy/app/models/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/models/concerns/.keep b/test/dummy/app/models/concerns/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/app/views/layouts/application.html.erb b/test/dummy/app/views/layouts/application.html.erb new file mode 100644 index 0000000..593a778 --- /dev/null +++ b/test/dummy/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + Dummy + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> + <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= csrf_meta_tags %> + + + +<%= yield %> + + + diff --git a/test/dummy/bin/bundle b/test/dummy/bin/bundle new file mode 100644 index 0000000..66e9889 --- /dev/null +++ b/test/dummy/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/test/dummy/bin/rails b/test/dummy/bin/rails new file mode 100644 index 0000000..728cd85 --- /dev/null +++ b/test/dummy/bin/rails @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +APP_PATH = File.expand_path('../../config/application', __FILE__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/test/dummy/bin/rake b/test/dummy/bin/rake new file mode 100644 index 0000000..1724048 --- /dev/null +++ b/test/dummy/bin/rake @@ -0,0 +1,4 @@ +#!/usr/bin/env ruby +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/test/dummy/config.ru b/test/dummy/config.ru new file mode 100644 index 0000000..5bc2a61 --- /dev/null +++ b/test/dummy/config.ru @@ -0,0 +1,4 @@ +# This file is used by Rack-based servers to start the application. + +require ::File.expand_path('../config/environment', __FILE__) +run Rails.application diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb new file mode 100644 index 0000000..cdf767a --- /dev/null +++ b/test/dummy/config/application.rb @@ -0,0 +1,23 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +Bundler.require(*Rails.groups) +require "nccu_com_vnccu_program" + +module Dummy + class Application < Rails::Application + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + end +end + diff --git a/test/dummy/config/boot.rb b/test/dummy/config/boot.rb new file mode 100644 index 0000000..6266cfc --- /dev/null +++ b/test/dummy/config/boot.rb @@ -0,0 +1,5 @@ +# Set up gems listed in the Gemfile. +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__) + +require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) +$LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__) diff --git a/test/dummy/config/database.yml b/test/dummy/config/database.yml new file mode 100644 index 0000000..1c1a37c --- /dev/null +++ b/test/dummy/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: 5 + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 diff --git a/test/dummy/config/environment.rb b/test/dummy/config/environment.rb new file mode 100644 index 0000000..ee8d90d --- /dev/null +++ b/test/dummy/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require File.expand_path('../application', __FILE__) + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/test/dummy/config/environments/development.rb b/test/dummy/config/environments/development.rb new file mode 100644 index 0000000..ddf0e90 --- /dev/null +++ b/test/dummy/config/environments/development.rb @@ -0,0 +1,37 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Adds additional error checking when serving assets at runtime. + # Checks for improperly declared sprockets dependencies. + # Raises helpful error messages. + config.assets.raise_runtime_errors = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/test/dummy/config/environments/production.rb b/test/dummy/config/environments/production.rb new file mode 100644 index 0000000..b93a877 --- /dev/null +++ b/test/dummy/config/environments/production.rb @@ -0,0 +1,78 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Enable Rack::Cache to put a simple HTTP cache in front of your application + # Add `rack-cache` to your Gemfile before enabling this. + # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid. + # config.action_dispatch.rack_cache = true + + # Disable Rails's static asset server (Apache or nginx will already do this). + config.serve_static_assets = false + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # Generate digests for assets URLs. + config.assets.digest = true + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Set to :debug to see everything in the log. + config.log_level = :info + + # Prepend all log lines with the following tags. + # config.log_tags = [ :subdomain, :uuid ] + + # Use a different logger for distributed setups. + # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = "http://assets.example.com" + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Disable automatic flushing of the log to improve performance. + # config.autoflush_log = false + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/test/dummy/config/environments/test.rb b/test/dummy/config/environments/test.rb new file mode 100644 index 0000000..053f5b6 --- /dev/null +++ b/test/dummy/config/environments/test.rb @@ -0,0 +1,39 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure static asset server for tests with Cache-Control for performance. + config.serve_static_assets = true + config.static_cache_control = 'public, max-age=3600' + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/test/dummy/config/initializers/assets.rb b/test/dummy/config/initializers/assets.rb new file mode 100644 index 0000000..d2f4ec3 --- /dev/null +++ b/test/dummy/config/initializers/assets.rb @@ -0,0 +1,8 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in app/assets folder are already added. +# Rails.application.config.assets.precompile += %w( search.js ) diff --git a/test/dummy/config/initializers/backtrace_silencers.rb b/test/dummy/config/initializers/backtrace_silencers.rb new file mode 100644 index 0000000..59385cd --- /dev/null +++ b/test/dummy/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/test/dummy/config/initializers/cookies_serializer.rb b/test/dummy/config/initializers/cookies_serializer.rb new file mode 100644 index 0000000..7a06a89 --- /dev/null +++ b/test/dummy/config/initializers/cookies_serializer.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.action_dispatch.cookies_serializer = :json \ No newline at end of file diff --git a/test/dummy/config/initializers/filter_parameter_logging.rb b/test/dummy/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..4a994e1 --- /dev/null +++ b/test/dummy/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/test/dummy/config/initializers/inflections.rb b/test/dummy/config/initializers/inflections.rb new file mode 100644 index 0000000..ac033bf --- /dev/null +++ b/test/dummy/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/test/dummy/config/initializers/mime_types.rb b/test/dummy/config/initializers/mime_types.rb new file mode 100644 index 0000000..dc18996 --- /dev/null +++ b/test/dummy/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/test/dummy/config/initializers/session_store.rb b/test/dummy/config/initializers/session_store.rb new file mode 100644 index 0000000..e766b67 --- /dev/null +++ b/test/dummy/config/initializers/session_store.rb @@ -0,0 +1,3 @@ +# Be sure to restart your server when you modify this file. + +Rails.application.config.session_store :cookie_store, key: '_dummy_session' diff --git a/test/dummy/config/initializers/wrap_parameters.rb b/test/dummy/config/initializers/wrap_parameters.rb new file mode 100644 index 0000000..33725e9 --- /dev/null +++ b/test/dummy/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] if respond_to?(:wrap_parameters) +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/test/dummy/config/locales/en.yml b/test/dummy/config/locales/en.yml new file mode 100644 index 0000000..0653957 --- /dev/null +++ b/test/dummy/config/locales/en.yml @@ -0,0 +1,23 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/test/dummy/config/routes.rb b/test/dummy/config/routes.rb new file mode 100644 index 0000000..3f66539 --- /dev/null +++ b/test/dummy/config/routes.rb @@ -0,0 +1,56 @@ +Rails.application.routes.draw do + # The priority is based upon order of creation: first created -> highest priority. + # See how all your routes lay out with "rake routes". + + # You can have the root of your site routed with "root" + # root 'welcome#index' + + # Example of regular route: + # get 'products/:id' => 'catalog#view' + + # Example of named route that can be invoked with purchase_url(id: product.id) + # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase + + # Example resource route (maps HTTP verbs to controller actions automatically): + # resources :products + + # Example resource route with options: + # resources :products do + # member do + # get 'short' + # post 'toggle' + # end + # + # collection do + # get 'sold' + # end + # end + + # Example resource route with sub-resources: + # resources :products do + # resources :comments, :sales + # resource :seller + # end + + # Example resource route with more complex sub-resources: + # resources :products do + # resources :comments + # resources :sales do + # get 'recent', on: :collection + # end + # end + + # Example resource route with concerns: + # concern :toggleable do + # post 'toggle' + # end + # resources :posts, concerns: :toggleable + # resources :photos, concerns: :toggleable + + # Example resource route within a namespace: + # namespace :admin do + # # Directs /admin/products/* to Admin::ProductsController + # # (app/controllers/admin/products_controller.rb) + # resources :products + # end +end diff --git a/test/dummy/config/secrets.yml b/test/dummy/config/secrets.yml new file mode 100644 index 0000000..7a0948d --- /dev/null +++ b/test/dummy/config/secrets.yml @@ -0,0 +1,22 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rake secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +development: + secret_key_base: fd9dfca01dfbe0afc1a1e88d557c8555c86f86a28fe050e76132f72d5d7ccf89b729bb833ad8575374efb027d8f0ffaf4bc50191b7f724b7befa81164d6404e7 + +test: + secret_key_base: 70b1ecfd504b4f4fda85a1c3371bd0b5e0cc8dc5ba35003a82ffd01b4f595bbc6d51b1015b8bff02bd9e0f394afb86c6c8aebdbfc750e79c732141e5ebe3ef28 + +# Do not keep production secrets in the repository, +# instead read values from the environment. +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/test/dummy/lib/assets/.keep b/test/dummy/lib/assets/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/log/.keep b/test/dummy/log/.keep new file mode 100644 index 0000000..e69de29 diff --git a/test/dummy/public/404.html b/test/dummy/public/404.html new file mode 100644 index 0000000..b612547 --- /dev/null +++ b/test/dummy/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/test/dummy/public/422.html b/test/dummy/public/422.html new file mode 100644 index 0000000..a21f82b --- /dev/null +++ b/test/dummy/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/test/dummy/public/500.html b/test/dummy/public/500.html new file mode 100644 index 0000000..061abc5 --- /dev/null +++ b/test/dummy/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/test/dummy/public/favicon.ico b/test/dummy/public/favicon.ico new file mode 100644 index 0000000..e69de29 diff --git a/test/helpers/nccu_com_vnccu_program_helper_test.rb b/test/helpers/nccu_com_vnccu_program_helper_test.rb new file mode 100644 index 0000000..35757d4 --- /dev/null +++ b/test/helpers/nccu_com_vnccu_program_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class NccuComVnccuProgramHelperTest < ActionView::TestCase +end diff --git a/test/nccu_com_vnccu_program_test.rb b/test/nccu_com_vnccu_program_test.rb new file mode 100644 index 0000000..944735b --- /dev/null +++ b/test/nccu_com_vnccu_program_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class NccuComVnccuProgramTest < ActiveSupport::TestCase + test "truth" do + assert_kind_of Module, NccuComVnccuProgram + end +end diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..ec238d9 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,18 @@ +# Configure Rails Environment +ENV["RAILS_ENV"] = "test" + +require File.expand_path("../../test/dummy/config/environment.rb", __FILE__) +ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../test/dummy/db/migrate", __FILE__)] +require "rails/test_help" + +# Filter out Minitest backtrace while allowing backtrace from other libraries +# to be shown. +Minitest.backtrace_filter = Minitest::BacktraceFilter.new + +# Load support files +Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } + +# Load fixtures from the engine +if ActiveSupport::TestCase.method_defined?(:fixture_path=) + ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__) +end