Compare commits

...

37 Commits

Author SHA1 Message Date
chris 7a3c061ed3 Changes for mobile based on footer 2013-10-03 14:01:35 +08:00
Bernie Chiu 01a0384128 Remove redundent code 2013-09-13 15:51:35 +08:00
thomaschen 6dbfb239c3 sortable category 2013-09-13 15:51:35 +08:00
Bernie Chiu 276d085a2c Allow unauthorized category to be filtered out 2013-09-13 15:51:35 +08:00
Bernie Chiu ee416dec58 Add category disable function 2013-09-13 15:51:35 +08:00
Bernie Chiu 47301de00d Change some spec 2013-09-13 15:51:35 +08:00
Bernie Chiu 02bb6ad5ee Remove unnecessary files 2013-09-13 15:51:35 +08:00
thomaschen be47fd78a3 delete unuse data 2013-09-13 15:51:35 +08:00
thomaschen 078876788a rescue paginate error 2013-09-13 15:51:35 +08:00
Matthew K. Fu JuYuan bc38e24259 company review 2013-09-13 15:51:34 +08:00
Bernie Chiu ab29dd4335 Order the vocabs 2013-09-13 15:51:34 +08:00
thomaschen 28a8880862 fix partial search 2013-09-13 15:51:34 +08:00
Bernie Chiu 749bb8d184 Allow frontend item limitation 2013-09-13 15:51:34 +08:00
thomaschen 52e393a2df add solr search(still have some problem) 2013-09-13 15:51:34 +08:00
Bernie Chiu 481f04c07b Soler basic search 2013-09-13 15:51:34 +08:00
thomaschen 6ed89ea9af fix some layout 2013-09-13 15:51:34 +08:00
Bernie Chiu 9625aa0f8b Improve some models 2013-09-13 15:51:34 +08:00
thomaschen f94e675ca0 build dic front_end index and show 2013-09-13 15:51:34 +08:00
Bernie Chiu 000fcdd48f Add search block 2013-09-13 15:51:34 +08:00
Bernie Chiu ca6b70660d Modify init.rb for widget 2013-09-13 15:51:34 +08:00
Bernie Chiu 31ee2d2be2 Category authorization 2013-09-13 15:51:33 +08:00
thomaschen 1086037b2b frontend app page 2013-09-13 15:51:33 +08:00
thomaschen 6dcebe0d31 fix error and some i18n 2013-09-13 15:51:33 +08:00
thomaschen 667b7f2bd5 add back_end show vocab 2013-09-13 15:51:33 +08:00
Bernie Chiu 8a94eeeee8 Fix edit error 2013-09-13 15:51:33 +08:00
Bernie Chiu 0eb4bf5b37 Edit category 2013-09-13 15:51:33 +08:00
thomaschen 6e2725d279 add collection select to dic categories 2013-09-13 15:51:33 +08:00
Bernie Chiu 3f87914e46 Allow addding to Category 2013-09-13 15:51:33 +08:00
thomaschen b51e10eb9d build dictionary_vocabs back_end 2013-09-13 15:51:33 +08:00
thomaschen a7e1819e69 add back_end index 2013-09-13 15:51:33 +08:00
Bernie Chiu 14b19d814f Add category controller 2013-09-13 15:51:32 +08:00
thomaschen f1ec3406f8 view folder 2013-09-13 15:51:32 +08:00
Bernie Chiu dcca1db6bd Fix routing and naming 2013-09-13 15:51:32 +08:00
thomaschen 5a51063bed fix route 2013-09-13 15:51:32 +08:00
Bernie Chiu cab4614a8f Controller init 2013-09-13 15:51:32 +08:00
thomaschen 2fdfdeafa2 add dic models 2013-09-13 15:51:32 +08:00
Bernie Chiu 5d8b65d625 Initial commit 2013-09-13 15:51:32 +08:00
87 changed files with 1515 additions and 8 deletions

View File

@ -5,6 +5,6 @@
<% end -%>
<%end -%>
<div class="paginationFixed" id="user_pagination">
<%= paginate @users, :params => {:inner => false}%>
<%= paginate @users, :params => {:inner => false} rescue nil %>
</div>
</div>

View File

@ -3,9 +3,5 @@
<% end %>
<ul>
<li>總機電話:<a href="tel:+886229393091">02-29393091</a></li>
<li>傳真02-29379611</li>
<li>緊急重大事件通聯窗口:校內分機 66119、66110</li>
<li>總值日室:<a href="tel:+88229387132">02-29387132</a></li>
<li>駐警衛室:<a href="tel:+88229387129">02-29387129</a></li>
<li>電話:<a href="tel:+88652721001">05-2721001</a></li>
</ul>

View File

@ -5,6 +5,6 @@
<div id='map_canvas'></div>
<script type='text/javascript'>
var $map_center = "24.987449, 121.576117"
var $map_center = "23.568993,120.493893"
var $map_zoom = 17
</script>

View File

@ -59,12 +59,26 @@
<!-- *** This fieldType is used by Sunspot! *** -->
<fieldType name="rand" class="solr.RandomSortField" omitNorms="true"/>
<!-- *** This fieldType is used by Sunspot! *** -->
<fieldType name="text" class="solr.TextField" omitNorms="false">
<!-- <fieldType name="text" class="solr.TextField" omitNorms="false">
<analyzer>
<tokenizer class="solr.CJKTokenizerFactory"/>
<filter class="solr.StandardFilterFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
</fieldType> -->
<fieldType name="text" class="solr.TextField" omitNorms="false">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.StandardFilterFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
<filter class="solr.NGramFilterFactory" minGramSize="1" maxGramSize="15"/>
</analyzer>
<analyzer type="query">
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.StandardFilterFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
</fieldType>
<!-- *** This fieldType is used by Sunspot! *** -->
<fieldType name="boolean" class="solr.BoolField" omitNorms="true"/>

View File

@ -0,0 +1,6 @@
.bundle/
log/*.log
pkg/
test/dummy/db/*.sqlite3
test/dummy/log/*.log
test/dummy/tmp/

View File

@ -0,0 +1,17 @@
source "http://rubygems.org"
# Declare your gem's dependencies in archive.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
# jquery-rails is used by the dummy application
gem "jquery-rails"
# 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 'ruby-debug19', :require => 'ruby-debug'

View File

@ -0,0 +1,20 @@
Copyright 2012 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.

View File

@ -0,0 +1,3 @@
= Archive
This project rocks and uses MIT-LICENSE.

View File

@ -0,0 +1,39 @@
#!/usr/bin/env rake
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
require 'rdoc/task'
rescue LoadError
require 'rdoc/rdoc'
require 'rake/rdoctask'
RDoc::Task = Rake::RDocTask
end
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Archive'
rdoc.options << '--line-numbers'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'
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

View File

@ -0,0 +1,23 @@
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :set_locale
# Set I18n.locale
def set_locale
# update session if passed
session[:locale] = params[:locale] if params[:locale]
# set locale based on session or default
begin
# check if locale is valid for non site pages
if !VALID_LOCALES.include?(session[:locale])
I18n.locale = I18n.default_locale
else
I18n.locale = session[:locale]
end
rescue
I18n.locale = I18n.default_locale
end
end
end

View File

@ -0,0 +1,144 @@
class Panel::Dictionary::BackEnd::DictionaryVocabCategorysController < OrbitBackendController
include OrbitControllerLib::DivisionForDisable
before_filter :for_app_manager,:except => [:index,:get_categorys_json,:get_dictionary_vocabs_json]
before_filter :force_order_for_visitor,:only=>[:index,:get_categorys_json,:get_dictionary_vocabs_json]
before_filter :force_order_for_user,:except => [:index,:get_categorys_json,:get_dictionary_vocabs_json]
before_filter :for_app_sub_manager,:except => [:index,:get_categorys_json,:get_dictionary_vocabs_json]
def index
@dictionary_vocab_categorys = get_categories_for_index("DictionaryVocabCategory")
@dictionary_vocab_category = DictionaryVocabCategory.new(:display => 'List')
@url = panel_dictionary_back_end_dictionary_vocab_categorys_path
respond_to do |format|
format.html # index.html.erb
format.js
end
end
def show
@dictionary_vocab_category = DictionaryVocabCategory.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.js
end
end
# GET /dictionary_vocabs/new
# GET /dictionary_vocabs/new.xml
def new
@dictionary_vocab_category = DictionaryVocabCategory.new(:display => 'List')
respond_to do |format|
format.html # new.html.erb
format.js
end
end
# GET /dictionary_vocabs/1/edit
def edit
@dictionary_vocab_category = DictionaryVocabCategory.find(params[:id])
@url = panel_dictionary_back_end_dictionary_vocab_category_path(@dictionary_vocab_category)
respond_to do |format|
format.html
format.js
end
end
# POST /dictionary_vocabs
# POST /dictionary_vocabs.xml
def create
@dictionary_vocab_category = DictionaryVocabCategory.new(params[:dictionary_vocab_category])
respond_to do |format|
if @dictionary_vocab_category.save
format.html { redirect_to(panel_dictionary_back_end_dictionary_vocab_categorys_url, :notice => t('dictionary_vocab_category.create_dictionary_vocab_category_success')) }
format.js
else
format.html { render :action => "new" }
format.js { render action: "new" }
end
end
end
# PUT /dictionary_vocabs/1
# PUT /dictionary_vocabs/1.xml
def update
@dictionary_vocab_category = DictionaryVocabCategory.find(params[:id])
@url = panel_dictionary_back_end_dictionary_vocab_category_path(@dictionary_vocab_category)
respond_to do |format|
if @dictionary_vocab_category.update_attributes(params[:dictionary_vocab_category])
format.html { redirect_to(panel_dictionary_back_end_dictionary_vocab_categorys_url, :notice => t('dictionary_vocab_category.update_dictionary_vocab_category_success')) }
# format.xml { head :ok }
format.js
else
format.html { render :action => "edit" }
format.js { render :action => "edit" }
end
end
end
# DELETE /dictionary_vocabs/1
# DELETE /dictionary_vocabs/1.xml
def destroy
@dictionary_vocab_category = DictionaryVocabCategory.find(params[:id])
@dictionary_vocab_category.disable = @dictionary_vocab_category.disable ? false : true
if @dictionary_vocab_category.save!
respond_to do |format|
flash[:notice] = t("update.success_")
# flash[:error] += @dictionary_vocab_category.disable ? t(:enable) : t(disable)
format.html { redirect_to(panel_archive_back_end_dictionary_vocab_categorys_url) }
# format.xml { head :ok }
format.js
end
else
flash[:error] = t("update.fail")
format.html { render :action => "index" }
end
end
def get_categorys_json
categorys = DictionaryVocabCategory.all
data = Array.new
categorys.each do |c|
data << {
category: c.title,
link: "#{url_for( :action => "index",
:controller => "panel/dictionary/front_end/dictionary_vocabs",
:format => :rss,
:only_path => false,
:inner=>true,
:category_id => c )}"
}
end
render :json => JSON.pretty_generate(data)
end
def get_dictionary_vocabs_json
dictionary_vocab = DictionaryVocabCategory.find(params[:dictionary_vocab_category_id]).dictionary_vocabs
p dictionary_vocab
data = Array.new
dictionary_vocab.each do |b|
data << {
title: b.title,
link: "http://#{request.host_with_port}#{panel_dictionary_front_end_dictionary_vocab_path(b, :category_id => b.dictionary_vocab_category.id)}",
tag: b.sorted_tags.to_a,
}
end
render :json => JSON.pretty_generate(data)
end
end

View File

@ -0,0 +1,72 @@
class Panel::Dictionary::BackEnd::DictionaryVocabsController < OrbitBackendController
# before_filter :for_app_manager,:except => [:index,:show]
include OrbitControllerLib::DivisionForDisable
before_filter :force_order_for_visitor,:only=>[:index]
before_filter :force_order_for_user,:except => [:index]
before_filter :for_app_sub_manager,:except => [:index]
before_filter :only => [ :new,:edit,:update,:create] do |controller|
controller.get_categorys('DictionaryVocabCategory')
end
def index
@vocabs = DictionaryVocab.all
end
def show
@vocab = DictionaryVocab.find(params[:id])
# @comment = @market_item.comments.build
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @vocab }
end
end
def new
@vocab = DictionaryVocab.new
@categories = get_categories_for_index("DictionaryVocabCategory").where(disable: false)
respond_to do |format|
format.html # new.html.erb
format.xml { render xml: @vocab}
end
end
def create
@vocab = DictionaryVocab.new(params[:dictionary_vocab])
@vocab.create_user_id = current_user.id
@vocab.update_user_id = current_user.id
@categories = get_categories_for_index("DictionaryVocabCategory")
if @vocab.save
flash[:success] = "Success!"
redirect_to :action => :index
else
render 'new'
end
end
def edit
@vocab = DictionaryVocab.find(params[:id])
@categories = DictionaryVocabCategory.all
end
def update
@vocab = DictionaryVocab.find(params[:id])
@vocab.update_attributes(params[:dictionary_vocab])
redirect_to :action => :index
end
def destroy
@vocab = DictionaryVocab.find(params[:id])
@vocab.destroy
# @market_item.save
respond_to do |format|
format.html { redirect_to(panel_dictionary_back_end_dictionary_vocabs_url) }
format.js
end
end
end

View File

@ -0,0 +1,99 @@
class Panel::Dictionary::FrontEnd::DictionaryVocabsController < OrbitWidgetController
include AdminHelper
def initialize
super
@app_title = 'dictionary_vocabs'
end
def index
@item = Page.find(params[:page_id])
@title = @item.title
if !@item.frontend_data_count.blank?
@page_num = @item.frontend_data_count
else
@page_num = 10
end
if params[:search_query].empty?
@vocabs = DictionaryVocab.desc(:created_at).page(params[:page_main]).per(@page_num)
else
@vocabs = DictionaryVocab.solr_search do
fulltext params[:search_query]
end.results
end
if !params[:category_id].blank?
@vocabs = DictionaryVocab.default_sort(params[:sort]).can_display.where(:dictionary_vocab_category_id.in => params[:category_id]).desc( :is_top ).page( params[:page_main] ).per(@page_num)
@current_category = DictionaryVocabCategory.from_id(params[:category_id]) rescue nil
end
if params[:sort]
@vocabs = get_sorted_and_filtered('dictionary_vocab', nil, @vocabs)
end
# @item = Page.find(params[:page_id])
# @title = @item.title
# if !@item.frontend_data_count.blank?
# @page_num = @item.frontend_data_count
# else
# @page_num = 10
# end
# date_now = Time.now
# @archive_file_categorys = ArchiveFileCategory.all
# # @archive_files = ArchiveFile.where( :is_hidden => false ).desc(:is_top).page(params[:page]).per(@page_num)
# if !params[:category_id].blank? && !params[:tag_id].blank?
# @archive_files = @archive_files.default_sort(params[:sort]).can_display.where(:archive_file_category_id.in => params[:category_id], :tagged_ids.in => params[:tag_id]).desc( :is_top ).page( params[:page_main] ).per(@page_num)
# @current_category = ArchiveFileCategory.from_id(params[:category_id]) rescue nil
# elsif !params[:category_id].blank?
# @archive_files = ArchiveFile.default_sort(params[:sort]).can_display.where(:archive_file_category_id.in => params[:category_id]).desc( :is_top ).page( params[:page_main] ).per(@page_num)
# @current_category = ArchiveFileCategory.from_id(params[:category_id]) rescue nil
# elsif !params[:tag_id].blank?
# @archive_files = ArchiveFile.default_sort(params[:sort]).can_display.where(:tagged_ids.in => params[:tag_id]).desc( :is_top ).page( params[:page_main] ).per(@page_num)
# else
# @archive_files = ArchiveFile.default_sort(params[:sort]).can_display.desc( :is_top ).page( params[:page_main] ).per(@page_num)
# end
# get_categorys
# if params[:sort]
# @archive_files = get_sorted_and_filtered('archive_file', nil, @archive_files)
# end
end
def show
@vocab = DictionaryVocab.find(params[:id])
end
# protected
# def reload_archive_files
# @item = Page.find(params[:page_id])
# @title = @item.title
# if @item.frontend_data_count
# @page_num = @item.frontend_data_count
# else
# @page_num = 0
# end
# date_now = Time.now
# @archive_file_categorys = ArchiveFileCategory.all
# # @archive_files = ArchiveFile.where( :is_hidden => false ).desc(:is_top).page(params[:page]).per(@page_num)
# if !params[:category_id].blank?
# @archive_files = ArchiveFile.can_display.where(:archive_file_category_id => params[:category_id]).desc( :is_top ).page( params[:page_main] ).per(@page_num)
# @current_category = ArchiveFileCategory.from_id(params[:category_id]) rescue nil
# elsif !params[:tag_id].blank?
# @archive_files = ArchiveFile.can_display.where(:tagged_ids => params[:tag_id]).desc( :is_top ).page( params[:page_main] ).per(@page_num)
# else
# @archive_files = ArchiveFile.can_display.desc( :is_top ).page( params[:page_main] ).per(@page_num)
# end
# get_categorys
# end
# def get_categorys
# @archive_file_categorys = ArchiveFileCategory.excludes('disabled' => true)
# end
end

View File

@ -0,0 +1,15 @@
class Panel::Dictionary::Widget::DictionaryVocabsController < OrbitWidgetController
include AdminHelper
def initialize
super
@app_title = 'dictionary_vocabs'
end
def get_categorys
@dictionary_vocab_categorys = DictionaryVocabCategory.excludes('disable' => true)
end
def dictionary_search_block
end
end

View File

@ -0,0 +1,20 @@
module Panel::Dictionary::BackEnd::DictionaryVocabCategorysHelper
include ActionView::Helpers::UrlHelper
def show_anc_cate_permission_link(dictionary_vocab_category)
type = 'submit'
oa = dictionary_vocab_category.get_object_auth_by_title(type)
if oa.nil?
dictionary_vocab_category.object_auths.new(title: type ).save
oa = dictionary_vocab_category.get_object_auth_by_title(type)
end
link_to t(:category_auth),admin_object_auth_ob_auth_path(oa)
end
def show_toggle_dictionary_btn(dictionary_vocab_category)
trans_path = "dictionary.backend"
return dictionary_vocab_category.disable ? t("#{trans_path}.close") : t("#{trans_path}.open")
end
end

View File

View File

@ -0,0 +1,73 @@
# encoding: utf-8
class DictionaryVocab
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::MultiParameterAttributes
include Mongoid::Sortable
include Sunspot::Mongo
BelongsToCategory = :dictionary_vocab_category
include OrbitCoreLib::BelongsToCategoryMayDisable
# PAYMENT_TYPES = @site_valid_locales
# include OrbitTag::Taggable
# taggable
field :word, :type => String
field :definition, :type => String
field :create_user_id
field :update_user_id
# field :is_top, :type => Boolean, :default => false
# field :is_hot, :type => Boolean, :default => false
field :is_hidden, :type => Boolean, :default => false
scope :can_display, where(is_hidden: false)
searchable do
text :word
end
belongs_to :dictionary_vocab_category
# has_many :archive_file_multiples, :autosave => true, :dependent => :destroy
# accepts_nested_attributes_for :archive_file_multiples, :allow_destroy => true
# after_save :save_archive_file_multiples
searchable do
text :word, :definition
boolean :frontend_search do
!is_hidden
end
end
# def self.widget_datas
# where( :is_hidden => false ).desc(:is_top, :title)
# end
# def is_top?
# self.is_top
# end
# def get_file_icon( file_data )
# file_icon = "<span class=\"o-archives-file-type\">#{file_data.split('.')[-1]}</span>".html_safe
# end
# def save_archive_file_multiples
# self.archive_file_multiples.each do |t|
# if t.should_destroy
# t.destroy
# end
# end
# end
end

View File

@ -0,0 +1,42 @@
# encoding: utf-8
class DictionaryVocabCategory
include Mongoid::Document
include Mongoid::Timestamps
include OrbitCoreLib::ObjectAuthable
include OrbitCoreLib::ObjectDisable
include Sunspot::Mongo
include Mongoid::MultiParameterAttributes
APP_NAME = 'Dictionary'
ObjectAuthTitlesOptions = %W{submit_new fact_check}
AfterObjectAuthUrl = '/panel/dictionary/back_end/dictionary_vocab_categorys'
field :disable, type: Boolean, :default => false
field :display
field :key
field :title, localize: true
has_many :dictionary_vocabs
# searchable do
# text :titles do
# title_translations.to_a.collect{|t| t[1]}
# end
# boolean :frontend_search do
# !disable
# end
# text :files do
# archive_files.can_display.collect{|t| t.title_translations.to_a.collect{|t| t[1]}}
# end
# end
def pp_object
title
end
def self.from_id(id)
DictionaryVocabCategory.find(id) rescue nil
end
end

View File

View File

@ -0,0 +1,19 @@
<tr id="<%= dom_id dictionary_vocab_category %>" class="with_action">
<td>
<%= dictionary_vocab_category.key %>
<div class="quick-edit">
<ul class="nav nav-pills hide">
<% if is_admin?%>
<li><%= link_to t(:edit), edit_panel_dictionary_back_end_dictionary_vocab_category_path(dictionary_vocab_category), :remote => true %></li>
<li><%= link_to show_toggle_dictionary_btn(dictionary_vocab_category) , panel_dictionary_back_end_dictionary_vocab_category_path(dictionary_vocab_category), :confirm => t(:sure?), :method => :delete, :remote => true, :class=> "dictionary_toggle" %></li>
<% end %>
<%if is_manager? || is_admin? %>
<li><%= show_anc_cate_permission_link(dictionary_vocab_category) %></li>
<% end %>
</ul>
</div>
</td>
<% @site_valid_locales.each do |locale| %>
<td><%= dictionary_vocab_category.title_translations[locale] rescue nil %></td>
<% end %>
</tr>

View File

@ -0,0 +1,29 @@
<% # encoding: utf-8 %>
<%= form_for(@dictionary_vocab_category, :remote => true, :url => @url) do |f| %>
<h2><%= (@dictionary_vocab_category.new_record? ? t(:new, scope: :dictionary) : t(:edit, scope: :dictionary)) %></h2>
<div id="widget-title">
<%= f.label t(:key, scope: :dictionary) %>
<%= f.text_field :key %>
</div>
<div id="widget-title">
<%= f.fields_for :title_translations do |f| %>
<% @site_valid_locales.each do |locale| %>
<div class="control-group">
<%= label_tag "name-#{locale}", "#{t(:name)} - #{I18nVariable.from_locale(locale)}", :class => 'control-label' %>
<div class="controls">
<%= f.text_field locale, :class =>' input-xxlarge', :value => (@dictionary_vocab_category.title_translations[locale] rescue nil) %>
</div>
</div>
<% end %>
<% end %>
</div>
<div class="form-actions">
<%= f.submit 'Submit/送出', :class=>'btn btn-primary' %>
</div>
<% end %>

View File

@ -0,0 +1,2 @@
$('<%= j render :partial => 'dictionary_vocab_category', :collection => [@dictionary_vocab_category] %>').appendTo('#dictionary_vocab_categorys').hide().fadeIn();
$("#new_dictionary_file_category")[0].reset();

View File

@ -0,0 +1 @@
$("#<%= dom_id @dictionary_vocab_category %>").find(".dictionary_toggle").text("<%= show_toggle_archive_btn(@dictionary_vocab_category) %>");

View File

@ -0,0 +1 @@
$("#form > form").replaceWith("<%= j render "form" %>");

View File

@ -0,0 +1,19 @@
<%= flash_messages %>
<table id="dictionary_vocab_categorys" class="table main-list">
<thead>
<tr>
<th class="span1-2"><%= t(:key, scope: :dictionary) %></th>
<% @site_valid_locales.each do |locale| %>
<th class="span1-2"><%= I18nVariable.first(:conditions => { :key => locale })[I18n.locale] %></th>
<% end %>
</tr>
</thead>
<tbody>
<%= render :partial => 'dictionary_vocab_category', :collection => @dictionary_vocab_categorys %>
</tbody>
</table>
<div id="form"><%= render :partial => "form" %></div>

View File

@ -0,0 +1 @@
$("#form > form").replaceWith("<%= j render "form" %>");

View File

@ -0,0 +1,4 @@
$("#<%= dom_id @dictionary_vocab_category %>").replaceWith("<%= j render :partial => 'dictionary_vocab_category', :collection => [@dictionary_vocab_category] %>");
<% @dictionary_vocab_category = DictionaryVocabCategory.new(:display => 'List') # reset for new form %>
$(".edit_dictionary_vocab_category").replaceWith("<%= j render "form" %>")
$(".new_dictionary_vocab_category")[0].reset();

View File

@ -0,0 +1,17 @@
<br />
<div class="site-map">
<h4><%= t :category, :scope => :dictionary %></h4>
<%= f.collection_select :dictionary_vocab_category_id, @categories, :id, :title %>
</div>
<div class="site-map">
<h4><%= t :word, :scope => :dictionary %></h4>
<%= f.text_field :word %>
</div>
<div class="site-map">
<h4><%= t :definition, :scope => :dictionary %></h4>
<%= f.text_field :definition %>
</div>
<br />
<div class="site-map">
<%= f.submit t('submit'), class: 'btn btn-primary'%>
</div>

View File

@ -0,0 +1,3 @@
<%= form_for @vocab, url: panel_dictionary_back_end_dictionary_vocab_path(@vocab) do |f| %>
<%= render 'form', f: f %>
<% end %>

View File

@ -0,0 +1,32 @@
<% flash.each do |key, value| %>
<div class="alert alert-<%= key %>"><%= value %></div>
<% end %>
<table class="table table-striped">
<thead>
<tr>
<th class="span2"><%= t :category, :scope => :dictionary %></th>
<th class="span2"><%= t :word, :scope => :dictionary %></th>
<th class="span2"><%= t :time, :scope => :dictionary %></th>
<th class="span2"></th>
</tr>
</thead>
<tbody>
<% @vocabs.each do |vocab| %>
<tr>
<td><%= vocab.dictionary_vocab_category.title %></td>
<td><%= link_to truncate(vocab.word,length: 25), panel_dictionary_back_end_dictionary_vocab_path(vocab) %></td>
<td><% if vocab.created_at > Time.now.beginning_of_day %>
<%="#{time_ago_in_words(vocab.created_at)}"%>
<%=t :ago,:scope => :dictionary%>
<% else %>
<%= vocab.created_at.strftime("%Y/%m/%d") %>
<% end %></td>
<td><%= link_to t(:edit), edit_panel_dictionary_back_end_dictionary_vocab_path(vocab) %> |
<%= link_to t(:delete), panel_dictionary_back_end_dictionary_vocab_path(vocab), method: :delete , :data => { :confirm => 'Are you sure?'} %></td>
</tr>
<% end %>
</tbody>
</table>

View File

@ -0,0 +1,15 @@
<% if @vocab.errors.any? %>
<div id="error_explanation">
<div class="alert alert-error">
此表單包含了 <%= @vocab.errors.count.to_s + "個錯誤" %>.
</div>
<ul>
<% @vocab.errors.full_messages.each do |msg| %>
<li>* <%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<%= form_for @vocab, url: panel_dictionary_back_end_dictionary_vocabs_path do |f| %>
<%= render 'form', f: f %>
<% end %>

View File

@ -0,0 +1,29 @@
<table class="table" align ="center">
<tr>
<td ><%= t :category, :scope => :dictionary %></td>
<td><%= @vocab.dictionary_vocab_category.key %></td>
</tr>
<tr>
<td ><%= t :word, :scope => :dictionary %></td>
<td><%= @vocab.word %></td>
</tr>
<tr>
<td ><%= t :definition, :scope => :dictionary %></td>
<td><pre><%= @vocab.definition %></pre></td>
</tr>
<tr>
<td><%= t :time, :scope => :dictionary %></td>
<td><% if @vocab.created_at > Time.now.beginning_of_day %>
<%="#{time_ago_in_words(@vocab.created_at)}"%>
<%=t :ago,:scope => :dictionary%>
<% else %>
<%= @vocab.created_at.strftime("%Y/%m/%d") %>
<% end %></td>
</tr>
<tr>
<td ></td>
<td><%= link_to t(:edit),edit_panel_dictionary_back_end_dictionary_vocab_path(@vocab) %> |
<%= link_to t(:delete), panel_dictionary_back_end_dictionary_vocab_path(@vocab), method: :delete , :data => { :confirm => 'Are you sure?'} %> |
<%= link_to t(:back), panel_dictionary_back_end_dictionary_vocabs_path%></td>
</tr>
</table>

View File

@ -0,0 +1,26 @@
<div class="row">
<div class="span8">
<table class="table">
<thead>
<tr>
<th class="span2"><%= sortable(:category, t("dictionary.category"))%></th>
<th class="span2"><%= t :word, :scope => :dictionary %></th>
<th class="span2"><%= t :definition, :scope => :dictionary %></th>
</tr>
</thead>
<tbody>
<% @vocabs.each do |vocab| %>
<tr>
<td><%= vocab.dictionary_vocab_category.title %></td>
<td><%= link_to truncate(vocab.word,length: 25), panel_dictionary_front_end_dictionary_vocab_path(vocab) %></td>
<td><%= link_to truncate(vocab.definition,length: 25), panel_dictionary_front_end_dictionary_vocab_path(vocab) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
<%= paginate(@vocabs, :param_name => :page_main, :params => {:inner => 'false'} ) rescue nil %>

View File

@ -0,0 +1,31 @@
<div class="row">
<div class="span8">
<table class="table" align ="center">
<tr>
<td ><%= t :category, :scope => :dictionary %></td>
<td><%= @vocab.dictionary_vocab_category.title %></td>
</tr>
<tr>
<td ><%= t :word, :scope => :dictionary %></td>
<td><%= @vocab.word %></td>
</tr>
<tr>
<td ><%= t :definition, :scope => :dictionary %></td>
<td><pre><%= @vocab.definition %></pre></td>
</tr>
<tr>
<td><%= t :time, :scope => :dictionary %></td>
<td><% if @vocab.created_at > Time.now.beginning_of_day %>
<%="#{time_ago_in_words(@vocab.created_at)}"%>
<%=t :ago,:scope => :dictionary%>
<% else %>
<%= @vocab.created_at.strftime("%Y/%m/%d") %>
<% end %></td>
</tr>
<tr>
<td ></td>
<td><%= link_to t(:back), panel_dictionary_front_end_dictionary_vocabs_path%></td>
</tr>
</table>
</div>
</div>

View File

@ -0,0 +1,6 @@
<%= form_tag panel_dictionary_front_end_dictionary_vocabs_path, method: :get do %>
<p>
<%= text_field_tag :search_query, params[:search_query],{ value: (params[:search_query].blank? ? '' : params[:search_query]), placeholder: t("dictionary.widget.search") }%>
<%= submit_tag t("dictionary.widget.search"), name: nil %>
</p>
<% end %>

View File

@ -0,0 +1,15 @@
en:
dictionary:
backend:
close: Close
open: Open
frontend:
dictionary: Dictionary Frontend
dictionary: Dictionary
category: Category
word: Word
definition: Definition
time: Created time
ago: ago
widget:
search: Search

View File

@ -0,0 +1,18 @@
zh_tw:
dictionary:
backend:
close: 關閉
open: 開啟
frontend:
dictionary: 字典前台
dictionary: 字彙辭典
category: 類別
word: 字彙中文
definition: 英文定義
time: 建立時間
ago:
new: 新增
edit: 修改
key: 索引值
widget:
search: 搜尋

View File

@ -0,0 +1,27 @@
Rails.application.routes.draw do
namespace :panel do
namespace :dictionary do
namespace :back_end do
resources :dictionary_vocabs do
collection do
get 'delete'
end
end
resources :dictionary_vocab_categorys
resources :tags
end
namespace :front_end do
match "dictionary_vocabs", to: "dictionary_vocabs#index"
resources :dictionary_vocabs
end
namespace :widget do
match "dictionary_search_block", to: "dictionary_vocabs#dictionary_search_block"
match "dictionary_vocabs", to: "dictionary_vocabs#index"
resources :dictionary_vocabs
end
end
end
match "/appfront/*path" => redirect("/panel/*path")
end

View File

@ -0,0 +1,23 @@
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "dictionary/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "dictionary"
s.version = Archive::VERSION
s.authors = ["TODO: Your name"]
s.email = ["TODO: Your email"]
s.homepage = "TODO"
s.summary = "TODO: Summary of Dictionary."
s.description = "TODO: Description of Dictionary."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.1.4"
# s.add_dependency "jquery-rails"
s.add_development_dependency "sqlite3"
end

View File

@ -0,0 +1,12 @@
{
"title": "dictionary",
"version": "0.1",
"organization": "Rulingcom",
"author": "RD dep",
"intro": "Archive",
"update_info": "Some info",
"create_date": "11-11-2011",
"app_pages": ["dictionary_vocabs"],
"widgets": {"dictionary_vocabs":[]},
"enable_frontend": true
}

View File

@ -0,0 +1,88 @@
module Dictionary
OrbitApp.registration "Dictionary",:type=> 'ModuleApp' do
module_label 'dictionary.dictionary'
base_url File.expand_path File.dirname(__FILE__)
# personal_plugin :enable => true,:path=>"panel/archive/plugin/profile",:i18n=>'archive.archive'
version "0.1"
organization "Rulingcom"
author "RD dep"
intro "I am intro"
update_info 'some update_info'
front_end do
app_page 'dictionary_vocabs' do
frontend_i18n "dictionary.frontend.dictionary"
end
end
category ["DictionaryVocabCategory"]
taggable
widgets do
# default_widget do
# query 'ArchiveFile.all'
# field :category
# link_field :title,{:method => 'panel_archive_front_end_archive_file_path',:args=>:self}
# link_field :archive_file_category_with_title,{:method => 'panel_archive_front_end_archive_files_path',:args=>{:category_id => [:archive_file_category,:id]}}
# end
categories_query 'DictionaryVocabCategory.all'
# tags_query 'ArchiveTag.all'
# customize_widget "index" do
# widget_i18n "archive.widget.index"
# style ["1"]
# end
customize_widget "dictionary_search_block" do
widget_i18n "dictionary.widget.search"
end
# item "index","announcement.widget.index",:default_template=>true,:fields=>["title","category","postdate"]
# item "bulletins_and_web_links","announcement.widget.bulletins_and_web_links"
end
side_bar do
head_label_i18n 'dictionary.dictionary',:icon_class=>"icons-book"
available_for [:admin,:guest,:manager,:sub_manager]
active_for_controllers ({ :private => ['dictionary_vocab_categorys', 'dictionary_vocabs'] })
active_for_object_auth ['DictionaryVocabCategory']
head_link_path "panel_dictionary_back_end_dictionary_vocabs_path"
context_link 'all',
:link_path=>"panel_dictionary_back_end_dictionary_vocabs_path" ,
:priority=>1,
:active_for_action=>{:dictionary_vocabs=>:index},
:available_for => [:all]
context_link 'add',
:link_path => "new_panel_dictionary_back_end_dictionary_vocab_path",
:priority => 2,
:active_for_action => { :dictionary_vocabs => :new },
:available_for => [:sub_manager]
context_link 'categories',
:link_path => "panel_dictionary_back_end_dictionary_vocab_categorys_path" ,
:priority => 3,
:active_for_action => { :dictionary_vocab_categorys => :index },
:available_for => [:manager]
# context_link 'tags',
# :link_path=>"admin_tags_path(:module_app_id => ModuleApp.first(conditions: {title: 'Archive'}))" ,
# :priority=>4,
# # :active_for_action=>{:bulletin_categorys=>:index},
# :available_for => [:manager]
context_link 'module_authorization',
:link_path => "admin_module_app_manager_auth_proc_path(ModuleApp.first(conditions: {title: 'Dictionary'}))",
:priority => 6,
:active_for_app_auth => 'Dictionary'
end
end
end

View File

@ -0,0 +1,4 @@
require "dictionary/engine"
module Dictionary
end

View File

@ -0,0 +1,4 @@
module Dictionary
class Engine < Rails::Engine
end
end

View File

@ -0,0 +1,3 @@
module Dictionary
VERSION = "0.0.1"
end

View File

@ -0,0 +1,4 @@
# desc "Explaining what the task does"
# task :dictionary do
# # Task goes here
# end

View File

@ -0,0 +1,6 @@
#!/usr/bin/env ruby.exe
#!/usr/bin/env ruby
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
ENGINE_PATH = File.expand_path('../..', __FILE__)
load File.expand_path('../../test/dummy/script/rails', __FILE__)

View File

@ -0,0 +1,7 @@
require 'test_helper'
class ArchiveTest < ActiveSupport::TestCase
test "truth" do
assert_kind_of Module, Archive
end
end

View File

@ -0,0 +1,7 @@
#!/usr/bin/env rake
# 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__)
Dummy::Application.load_tasks

View File

@ -0,0 +1,9 @@
// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
//= require jquery
//= require jquery_ujs
//= require_tree .

View File

@ -0,0 +1,7 @@
/*
* This is a manifest file that'll automatically include all the stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new file per style scope.
*= require_self
*= require_tree .
*/

View File

@ -0,0 +1,3 @@
class ApplicationController < ActionController::Base
protect_from_forgery
end

View File

@ -0,0 +1,2 @@
module ApplicationHelper
end

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>Dummy</title>
<%= stylesheet_link_tag "application" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>

View File

@ -0,0 +1,4 @@
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
run Dummy::Application

View File

@ -0,0 +1,45 @@
require File.expand_path('../boot', __FILE__)
require 'rails/all'
Bundler.require
require "archive"
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.
# Custom directories with classes and modules you want to be autoloadable.
# config.autoload_paths += %W(#{config.root}/extras)
# Only load the plugins named here, in the order given (default is alphabetical).
# :all can be used as a placeholder for all plugins not explicitly named.
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
# Activate observers that should always be running.
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
# 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
# Configure the default encoding used in templates for Ruby 1.9.
config.encoding = "utf-8"
# Configure sensitive parameters which will be filtered from the log file.
config.filter_parameters += [:password]
# Enable the asset pipeline
config.assets.enabled = true
# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'
end
end

View File

@ -0,0 +1,10 @@
require 'rubygems'
gemfile = File.expand_path('../../../../Gemfile', __FILE__)
if File.exist?(gemfile)
ENV['BUNDLE_GEMFILE'] = gemfile
require 'bundler'
Bundler.setup
end
$:.unshift File.expand_path('../../../../lib', __FILE__)

View File

@ -0,0 +1,25 @@
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
# 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:
adapter: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
production:
adapter: sqlite3
database: db/production.sqlite3
pool: 5
timeout: 5000

View File

@ -0,0 +1,5 @@
# Load the rails application
require File.expand_path('../application', __FILE__)
# Initialize the rails application
Dummy::Application.initialize!

View File

@ -0,0 +1,30 @@
Dummy::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
# Log error messages when you accidentally call methods on nil.
config.whiny_nils = true
# 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
# Only use best-standards-support built into browsers
config.action_dispatch.best_standards_support = :builtin
# Do not compress assets
config.assets.compress = false
# Expands the lines which load the assets
config.assets.debug = true
end

View File

@ -0,0 +1,60 @@
Dummy::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
# Full error reports are disabled and caching is turned on
config.consider_all_requests_local = false
config.action_controller.perform_caching = 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.compress = true
# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = false
# Generate digests for assets URLs
config.assets.digest = true
# Defaults to Rails.root.join("public/assets")
# config.assets.manifest = YOUR_PATH
# 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
# See everything in the log (default is :info)
# config.log_level = :debug
# Use a different logger for distributed setups
# config.logger = 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"
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
# config.assets.precompile += %w( search.js )
# Disable delivery errors, bad email addresses will be ignored
# config.action_mailer.raise_delivery_errors = false
# Enable threaded mode
# config.threadsafe!
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation can not be found)
config.i18n.fallbacks = true
# Send deprecation notices to registered listeners
config.active_support.deprecation = :notify
end

View File

@ -0,0 +1,39 @@
Dummy::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
# Configure static asset server for tests with Cache-Control for performance
config.serve_static_assets = true
config.static_cache_control = "public, max-age=3600"
# Log error messages when you accidentally call methods on nil
config.whiny_nils = true
# 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
# Use SQL instead of Active Record's schema dumper when creating the test database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
# like if you have constraints or database-specific column types
# config.active_record.schema_format = :sql
# Print deprecation notices to the stderr
config.active_support.deprecation = :stderr
end

View File

@ -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!

View File

@ -0,0 +1,10 @@
# Be sure to restart your server when you modify this file.
# Add new inflection rules using the following format
# (all these examples are active by default):
# ActiveSupport::Inflector.inflections do |inflect|
# inflect.plural /^(ox)$/i, '\1en'
# inflect.singular /^(ox)en/i, '\1'
# inflect.irregular 'person', 'people'
# inflect.uncountable %w( fish sheep )
# end

View File

@ -0,0 +1,5 @@
# 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
# Mime::Type.register_alias "text/html", :iphone

View File

@ -0,0 +1,7 @@
# Be sure to restart your server when you modify this file.
# Your secret key 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.
Dummy::Application.config.secret_token = 'aec42790c63fdc0784df1572e74631a6f9c9d16729b813ecbd5f086eaab251cdf0bcba044a78b706d1f45d43c4ec5af5df5cc5ffd2ff7ca64953a5806ce49618'

View File

@ -0,0 +1,8 @@
# Be sure to restart your server when you modify this file.
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
# Use the database for sessions instead of the cookie-based default,
# which shouldn't be used to store highly confidential information
# (create the session table with "rails generate session_migration")
# Dummy::Application.config.session_store :active_record_store

View File

@ -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]
end
# Disable root element in JSON by default.
ActiveSupport.on_load(:active_record) do
self.include_root_in_json = false
end

View File

@ -0,0 +1,5 @@
# Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
hello: "Hello world"

View File

@ -0,0 +1,58 @@
Dummy::Application.routes.draw do
# The priority is based upon order of creation:
# first created -> highest priority.
# Sample of regular route:
# match 'products/:id' => 'catalog#view'
# Keep in mind you can assign values other than :controller and :action
# Sample of named route:
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
# This route can be invoked with purchase_url(:id => product.id)
# Sample resource route (maps HTTP verbs to controller actions automatically):
# resources :products
# Sample resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end
# Sample resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end
# Sample resource route with more complex sub-resources
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', :on => :collection
# end
# end
# Sample resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end
# You can have the root of your site routed with "root"
# just remember to delete public/index.html.
# root :to => 'welcome#index'
# See how all your routes lay out with "rake routes"
# This is a legacy wild controller route that's not recommended for RESTful applications.
# Note: This route will make all actions in every controller accessible via GET requests.
# match ':controller(/:action(/:id(.:format)))'
end

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<style type="text/css">
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
div.dialog {
width: 25em;
padding: 0 4em;
margin: 4em auto 0 auto;
border: 1px solid #ccc;
border-right-color: #999;
border-bottom-color: #999;
}
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="dialog">
<h1>The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p>
</div>
</body>
</html>

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>The change you wanted was rejected (422)</title>
<style type="text/css">
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
div.dialog {
width: 25em;
padding: 0 4em;
margin: 4em auto 0 auto;
border: 1px solid #ccc;
border-right-color: #999;
border-bottom-color: #999;
}
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
</style>
</head>
<body>
<!-- This file lives in public/422.html -->
<div class="dialog">
<h1>The change you wanted was rejected.</h1>
<p>Maybe you tried to change something you didn't have access to.</p>
</div>
</body>
</html>

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>We're sorry, but something went wrong (500)</title>
<style type="text/css">
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
div.dialog {
width: 25em;
padding: 0 4em;
margin: 4em auto 0 auto;
border: 1px solid #ccc;
border-right-color: #999;
border-bottom-color: #999;
}
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
</style>
</head>
<body>
<!-- This file lives in public/500.html -->
<div class="dialog">
<h1>We're sorry, but something went wrong.</h1>
<p>We've been notified about this issue and we'll take a look at it shortly.</p>
</div>
</body>
</html>

View File

@ -0,0 +1,6 @@
#!/usr/bin/env ruby.exe
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
APP_PATH = File.expand_path('../../config/application', __FILE__)
require File.expand_path('../../config/boot', __FILE__)
require 'rails/commands'

View File

@ -0,0 +1,10 @@
require 'test_helper'
class NavigationTest < ActionDispatch::IntegrationTest
fixtures :all
# test "the truth" do
# assert true
# end
end

View File

@ -0,0 +1,10 @@
# Configure Rails Environment
ENV["RAILS_ENV"] = "test"
require File.expand_path("../dummy/config/environment.rb", __FILE__)
require "rails/test_help"
Rails.backtrace_cleaner.remove_silencers!
# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }