Compare commits
50 Commits
ntu_mb_dat
...
master
Author | SHA1 | Date |
---|---|---|
chris | f8bb0bba56 | |
Spen | 47b8b3e277 | |
chris | ecc3581106 | |
Matthew K. Fu JuYuan | 6d4d3ccfd4 | |
Harry Bomrah | 141b708392 | |
chris | d5dc3ef793 | |
Spen | b3366b48a1 | |
saurabhbhatia | 36e7e3d3e8 | |
saurabhbhatia | 06c2240d34 | |
Harry Bomrah | c4e8ed96a9 | |
chris | 8ad015af7f | |
chris | 1857ad428c | |
Matt K. Fu | 134b639465 | |
Matt K. Fu | 45136f915d | |
Matt K. Fu | 2c3924d92c | |
Matt K. Fu | 41b562d3f7 | |
Matt K. Fu | 4074ac677d | |
Matthew K. Fu JuYuan | e1c57c6843 | |
Matthew K. Fu JuYuan | 915ea066d6 | |
Matt K. Fu | e7aa7ea1fa | |
Matt K. Fu | 1ccfd6e48c | |
Matt K. Fu | 23516277f3 | |
Matt K. Fu | 87bc2852b3 | |
Matt K. Fu | 27b86b078a | |
Matt K. Fu | 8f393e1079 | |
Matt K. Fu | 353039dcd0 | |
Matt K. Fu | d8dd68b4df | |
Matt K. Fu | aa8523c8cf | |
Matt K. Fu | 69ef8fa747 | |
Matt K. Fu | 473baa9b95 | |
Matt K. Fu | 1592aaff89 | |
Matt K. Fu | 030d994180 | |
Matt K. Fu | a88ad35641 | |
Matthew K. Fu JuYuan | a63193dc65 | |
Matt K. Fu | 452bddb587 | |
Matt K. Fu | 371485e420 | |
Matt K. Fu | 69b3625861 | |
Matt K. Fu | 72d1427854 | |
Matthew K. Fu JuYuan | 079b9145c3 | |
Matt K. Fu | 3102a46219 | |
Matt K. Fu | 653a098ab6 | |
Matt K. Fu | 426edea485 | |
Matt K. Fu | 2e5b2555c6 | |
Matt K. Fu | 2593707d8c | |
saurabhbhatia | b20955579e | |
saurabhbhatia | 1ebda22f0e | |
saurabhbhatia | c511aeb8de | |
saurabhbhatia | 26d3a89d30 | |
saurabhbhatia | 91f80a0952 | |
saurabhbhatia | f333fe9e21 |
|
@ -14,7 +14,9 @@ public/uploads/**/*
|
||||||
solr/data
|
solr/data
|
||||||
tmp/**/*
|
tmp/**/*
|
||||||
uploads/**/*
|
uploads/**/*
|
||||||
|
config/*.god
|
||||||
|
log/*.gz
|
||||||
|
tmp/restart.txt
|
||||||
*.swp
|
*.swp
|
||||||
*.pid
|
*.pid
|
||||||
*.lck
|
*.lck
|
||||||
|
|
5
Gemfile
5
Gemfile
|
@ -14,11 +14,12 @@ gem 'execjs'
|
||||||
gem 'jquery-rails', '2.1.4'
|
gem 'jquery-rails', '2.1.4'
|
||||||
gem 'jquery-ui-rails'
|
gem 'jquery-ui-rails'
|
||||||
gem "select2-rails", '3.3.1'
|
gem "select2-rails", '3.3.1'
|
||||||
gem 'kaminari', :git => 'git://github.com/amatsuda/kaminari.git'
|
gem 'kaminari'
|
||||||
gem "acts_as_unvlogable"
|
gem "acts_as_unvlogable"
|
||||||
gem 'youtube_it'
|
gem 'youtube_it'
|
||||||
gem 'gotcha'
|
gem 'gotcha'
|
||||||
|
|
||||||
|
|
||||||
# gem "memcached", "~> 1.4.3"
|
# gem "memcached", "~> 1.4.3"
|
||||||
# gem "memcache-client"
|
# gem "memcache-client"
|
||||||
|
|
||||||
|
@ -38,7 +39,7 @@ gem 'resque-scheduler' # job scheduling
|
||||||
gem 'resque-restriction'
|
gem 'resque-restriction'
|
||||||
#gem 'rb-readline'
|
#gem 'rb-readline'
|
||||||
# gem 'ruby-debug19'
|
# gem 'ruby-debug19'
|
||||||
gem 'rubyzip'
|
gem 'rubyzip','0.9.9'
|
||||||
|
|
||||||
gem 'sunspot_mongo'
|
gem 'sunspot_mongo'
|
||||||
gem 'sunspot_solr'
|
gem 'sunspot_solr'
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
|
@ -15,6 +15,11 @@ function load_tinymce() {
|
||||||
theme_advanced_statusbar_location : "bottom",
|
theme_advanced_statusbar_location : "bottom",
|
||||||
theme_advanced_resizing : true,
|
theme_advanced_resizing : true,
|
||||||
|
|
||||||
|
// Domain Absolute URLs
|
||||||
|
relative_urls : false,
|
||||||
|
remove_script_host : false,
|
||||||
|
document_base_url: window.location.protocol + '//' + window.location.host,
|
||||||
|
|
||||||
// Skin options
|
// Skin options
|
||||||
skin : "o2k7",
|
skin : "o2k7",
|
||||||
skin_variant : "silver",
|
skin_variant : "silver",
|
||||||
|
|
|
@ -5,3 +5,4 @@
|
||||||
*= require_self
|
*= require_self
|
||||||
*= require social-share-button
|
*= require social-share-button
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -11,23 +11,21 @@ class DefaultWidgetController< OrbitWidgetController
|
||||||
end
|
end
|
||||||
|
|
||||||
def query_for_default_widget
|
def query_for_default_widget
|
||||||
|
|
||||||
@ori_class_name = @default_widget["query"].split('.')[0]
|
@ori_class_name = @default_widget["query"].split('.')[0]
|
||||||
result = nil
|
@result = eval(@default_widget["query"])
|
||||||
result_objects = nil
|
|
||||||
|
|
||||||
if !params["tag_id"].blank?
|
if !params["tag_id"].blank?
|
||||||
if params["category_id"].blank? #has tag no cate
|
if params["category_id"].blank? #has tag no cate
|
||||||
result = @ori_class_name.constantize.where(:tagged_ids.in => params["tag_id"])
|
@result.selector[:tagged_ids] = { "$in" => params['tag_id'] }
|
||||||
else #has tag and cate
|
else #has tag and cate
|
||||||
result = eval("#{@ori_class_name}.where(:#{get_category_field_name}.in=>params['category_id'], :tagged_ids.in => params['tag_id'])")
|
@result.selector[get_category_field_name] = { "$in" => params['category_id'].collect{|t| BSON::ObjectId(t)}}
|
||||||
|
@result.selector[:tagged_ids] = { "$in" => params['tag_id'] }
|
||||||
end
|
end
|
||||||
elsif params["category_id"].blank? #no tag no cate
|
elsif params["category_id"].blank? #no tag no cate
|
||||||
result = eval(@default_widget["query"])
|
|
||||||
else #no tag has cate
|
else #no tag has cate
|
||||||
result = eval("#{@ori_class_name}.where(:#{get_category_field_name}.in=>params['category_id'])")
|
|
||||||
|
@result.selector[get_category_field_name] = { "$in" => params['category_id'].collect{|t| BSON::ObjectId(t)}}
|
||||||
end
|
end
|
||||||
result.available_for_lang(I18n.locale).can_display.desc(:is_top, :postdate)
|
eval("@result.#{@default_widget[:sorting_query]}")
|
||||||
end
|
end
|
||||||
|
|
||||||
def search_result
|
def search_result
|
||||||
|
@ -95,9 +93,9 @@ class DefaultWidgetController< OrbitWidgetController
|
||||||
end
|
end
|
||||||
|
|
||||||
def get_category_field_name
|
def get_category_field_name
|
||||||
@ori_class_name = @ori_class_name.constantize
|
@ori_class_name = @ori_class_name.constantize unless @ori_class_name.is_a? Class
|
||||||
@ori_class_name.fields.each_key do |key|
|
@ori_class_name.fields.each_key do |key|
|
||||||
return key if key.include?('category_id')
|
return key.to_s if key.include?('category_id')
|
||||||
end
|
end
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
|
@ -43,7 +43,7 @@ class MobileController < ApplicationController
|
||||||
|
|
||||||
def page
|
def page
|
||||||
@page_title = t('mobile.page')
|
@page_title = t('mobile.page')
|
||||||
@page_contexts = PageContext.where(:archived => false).page(params[:page_main]).per(15)
|
@page_contexts = get_sorted_page_from_structure
|
||||||
end
|
end
|
||||||
|
|
||||||
def page_content
|
def page_content
|
||||||
|
@ -57,4 +57,12 @@ class MobileController < ApplicationController
|
||||||
@no_footer = true if request.path =~ /app/
|
@no_footer = true if request.path =~ /app/
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def get_sorted_page_from_structure
|
||||||
|
page_contexts = Item.structure_ordered_items.inject([]){ |pages, page|
|
||||||
|
pages << page.page_contexts.where(archived: false).limit(1)[0] if page.is_a?(Page) && !page.page_contexts.blank?
|
||||||
|
pages
|
||||||
|
}
|
||||||
|
Kaminari.paginate_array(page_contexts).page(params[:page]).per(15)
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -9,8 +9,7 @@ module ApplicationHelper
|
||||||
|
|
||||||
def delayed_impressionist(item)
|
def delayed_impressionist(item)
|
||||||
user_id = current_user.nil? ? nil : current_user.id
|
user_id = current_user.nil? ? nil : current_user.id
|
||||||
request = DelayImpressionistRequest.new(request)
|
Resque.enqueue(DelayedImpressionist,:request=>DelayImpressionistRequest.new(request),:obj=>item,:class=>item.class.to_s,:controller_name=>controller_name,:action_name=>action_name,:user=>user_id)
|
||||||
Resque.enqueue(DelayedImpressionist,:request=>request,:obj=>item,:class=>item.class.to_s,:controller_name=>controller_name,:action_name=>action_name,:user=>user_id)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_user_role_enable(attribute_fields)
|
def check_user_role_enable(attribute_fields)
|
||||||
|
|
|
@ -2,16 +2,24 @@ class BackupServer
|
||||||
@queue = :high
|
@queue = :high
|
||||||
|
|
||||||
def self.perform()
|
def self.perform()
|
||||||
#CronMail.time_check("Going to backup Orbit").deliver
|
|
||||||
dbhost = Mongoid.config.database.connection.primary.join ':'
|
dbhost = Mongoid.config.database.connection.primary.join ':'
|
||||||
dbname = Mongoid.config.database.name
|
dbname = Mongoid.config.database.name
|
||||||
archive_db_list_path = OrbitSystemPreference::ArchiveDbListPath
|
archive_db_list_path = OrbitSystemPreference::ArchiveDbListPath
|
||||||
dbdirectory = "#{Rails.root}/tmp/#{dbname}-"+Time.now.strftime("%Y-%m-%d-%H-%M")
|
dbdirectory = "#{Rails.root}/tmp/#{dbname}-"+Time.now.strftime("%Y-%m-%d-%H-%M")
|
||||||
%x[mongodump -h #{dbhost} -d #{dbname} -o #{dbdirectory} ]
|
%x[mongodump -h #{dbhost} -d #{dbname} -o #{dbdirectory} ]
|
||||||
|
|
||||||
%x[rm #{archive_db_list_path}]
|
Dir.foreach('tmp') do |item|
|
||||||
%x[ls #{Rails.root}/tmp/#{dbname}* | du -h --max-depth=1 --block-size=1M |sort -h >> #{archive_db_list_path}]
|
date_str = item.to_s.gsub("#{dbname}-",'')
|
||||||
OrbitLogger.info "DB backup done Path:#{dbdirectory}"
|
next if not date_str.match(/\d{4}-\d{2}-\d{2}-\d{2}-\d{2}/)
|
||||||
|
if Date.parse(date_str).to_time < Site.first.backup_keep_for_days.days.ago
|
||||||
|
OrbitLogger.info "Deleting #{date_str}"
|
||||||
|
%x[rm -rf tmp/#{item}]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
%x[rm -f #{archive_db_list_path}]
|
||||||
|
%x[cd tmp ; ls -l |grep #{dbname} | awk '{print $8}'|xargs du -h --block-size=1M --max-depth=0 |sort -h >> #{archive_db_list_path}]
|
||||||
|
OrbitLogger.info "DB backup done Path:#{dbdirectory}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,10 +17,16 @@ class DelayedImpressionist
|
||||||
arg = args[0]
|
arg = args[0]
|
||||||
@request= DelayImpressionistRequest.new
|
@request= DelayImpressionistRequest.new
|
||||||
@request.restore(arg["request"])
|
@request.restore(arg["request"])
|
||||||
request = @request
|
|
||||||
obj = eval("#{arg["class"]}.find '#{arg['obj']['_id']}'")
|
obj = eval("#{arg["class"]}.find '#{arg['obj']['_id']}'")
|
||||||
# imp = new(@request,arg["controller_name"],arg["action_name"],arg["user"],obj)
|
# imp = new(@request,arg["controller_name"],arg["action_name"],arg["user"],obj)
|
||||||
new_impression = obj.impressions.build(:user_id=>arg["user"],:controller_name=>arg["controller_name"],:action_name=>arg["action_name"],:ip_address=>@request.remote_ip,:referrer=>@request.referer)
|
new_impression = obj.impressions.build(:user_id=>arg["user"],:controller_name=>arg["controller_name"],:action_name=>arg["action_name"],:ip_address=>@request.remote_ip,:referrer=>@request.referer)
|
||||||
|
@try = 1
|
||||||
|
loop do
|
||||||
|
result = new_impression.save rescue false
|
||||||
|
break if (result || @try >= 10)
|
||||||
|
@try = @try + 1
|
||||||
|
puts "trying:#{@try}"
|
||||||
|
end
|
||||||
new_impression.save
|
new_impression.save
|
||||||
obj.update_attribute(:view_count,obj.impression_count)
|
obj.update_attribute(:view_count,obj.impression_count)
|
||||||
end
|
end
|
||||||
|
|
|
@ -29,10 +29,11 @@ class Site
|
||||||
mount_uploader :default_image, ImageUploader
|
mount_uploader :default_image, ImageUploader
|
||||||
|
|
||||||
field :search,:type => Hash
|
field :search,:type => Hash
|
||||||
|
field :resque_namespace,:type => String, :default=>APP_CONFIG['orbit']
|
||||||
field :title, localize: true
|
field :title, localize: true
|
||||||
field :footer, localize: true
|
field :footer, localize: true
|
||||||
field :sub_menu, localize: true
|
field :sub_menu, localize: true
|
||||||
|
field :backup_keep_for_days,:type=>Integer,:default=> APP_CONFIG['backup_keep_for_days']
|
||||||
|
|
||||||
field :mobile_on, :type => Boolean, :default => false
|
field :mobile_on, :type => Boolean, :default => false
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,6 @@ class User
|
||||||
|
|
||||||
before_create :initialize_desktop
|
before_create :initialize_desktop
|
||||||
before_save :rebuild_status_record
|
before_save :rebuild_status_record
|
||||||
before_save :save_roles
|
|
||||||
scope :remote_account, where(:nccu_id.ne => nil)
|
scope :remote_account, where(:nccu_id.ne => nil)
|
||||||
scope :not_guest_user, all_of(:name.ne => "guest")
|
scope :not_guest_user, all_of(:name.ne => "guest")
|
||||||
|
|
||||||
|
@ -89,9 +88,9 @@ class User
|
||||||
var[:id].each do |id,val|
|
var[:id].each do |id,val|
|
||||||
# binding.pry if id == '5052c5b22b5c49ab02000004'
|
# binding.pry if id == '5052c5b22b5c49ab02000004'
|
||||||
if (val=="true")
|
if (val=="true")
|
||||||
self.roles = self.roles.reject{|t| t.id.to_s==id}
|
self.role_ids.reject!{|t| t.to_s == id}
|
||||||
elsif(val=="false")
|
elsif(val=="false")
|
||||||
self.roles << Role.find(id)
|
self.role_ids += Array(id)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -106,9 +105,9 @@ class User
|
||||||
# binding.pry if id == '5052c5b22b5c49ab02000004'
|
# binding.pry if id == '5052c5b22b5c49ab02000004'
|
||||||
|
|
||||||
if ( self.roles.include?(@roid) == false or val=="true")
|
if ( self.roles.include?(@roid) == false or val=="true")
|
||||||
self.sub_roles = self.sub_roles.reject{|t| t.id.to_s==id}
|
self.sub_role_ids.reject!{|t| t.to_s == id}
|
||||||
elsif(val=="false")
|
elsif(val=="false")
|
||||||
self.sub_roles << SubRole.find(id)
|
self.sub_role_ids += Array(id)
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
@ -273,10 +272,6 @@ class User
|
||||||
end
|
end
|
||||||
|
|
||||||
protected
|
protected
|
||||||
def save_roles
|
|
||||||
# self.roles = self.sub_roles.collect{|t| t.role}.uniq
|
|
||||||
self.roles = self.roles.uniq
|
|
||||||
end
|
|
||||||
|
|
||||||
def rebuild_status_record
|
def rebuild_status_record
|
||||||
self.status_record = {}
|
self.status_record = {}
|
||||||
|
|
|
@ -3,6 +3,7 @@ defaults: &defaults
|
||||||
store_ip: 'redmine.rulingcom.com:3001'
|
store_ip: 'redmine.rulingcom.com:3001'
|
||||||
orbit: 'Orbit'
|
orbit: 'Orbit'
|
||||||
ruling_digital: 'RulingDigital'
|
ruling_digital: 'RulingDigital'
|
||||||
|
backup_keep_for_days: 30
|
||||||
|
|
||||||
development:
|
development:
|
||||||
<<: *defaults
|
<<: *defaults
|
||||||
|
|
|
@ -3,7 +3,7 @@ require 'resque_scheduler/server'
|
||||||
# require 'yaml'
|
# require 'yaml'
|
||||||
|
|
||||||
Resque.redis = 'localhost:6379'
|
Resque.redis = 'localhost:6379'
|
||||||
Resque.redis.namespace = "resque"
|
Resque.redis.namespace = Site.first.resque_namespace rescue APP_CONFIG['orbit']
|
||||||
|
|
||||||
# If you want to be able to dynamically change the schedule,
|
# If you want to be able to dynamically change the schedule,
|
||||||
# uncomment this line. A dynamic schedule can be updated via the
|
# uncomment this line. A dynamic schedule can be updated via the
|
||||||
|
|
|
@ -4,6 +4,12 @@ dashboard_counter_cache:
|
||||||
args:
|
args:
|
||||||
description: DashboardCounterCache
|
description: DashboardCounterCache
|
||||||
|
|
||||||
|
backup_server:
|
||||||
|
cron: 0 0 2 * * *
|
||||||
|
class: BackupServer
|
||||||
|
args:
|
||||||
|
description: BackupServer and remove old backups
|
||||||
|
|
||||||
update_tag_cloud:
|
update_tag_cloud:
|
||||||
cron: 0 0 [0,12] * * *
|
cron: 0 0 [0,12] * * *
|
||||||
class: UpdateTagCloud
|
class: UpdateTagCloud
|
||||||
|
|
|
@ -4,24 +4,33 @@ module OrbitApp
|
||||||
Version = "0.1"
|
Version = "0.1"
|
||||||
|
|
||||||
def display_visitors(options={})
|
def display_visitors(options={})
|
||||||
impressions = Impression.where(options).and(:referrer.ne => nil).distinct(:session_hash).count
|
map = "function(){ emit( this.referrer,{session_hash: this.session_hash,created_at: this.created_at}); };"
|
||||||
|
reduce = "function(key, values){ var sum = 0; values.forEach(function(doc){sum += doc.amount; }); return {amount: sum};};"
|
||||||
|
if options.blank?
|
||||||
|
impressions = Impression.collection.map_reduce(map, reduce,read: :primary, out: "vr")
|
||||||
|
else
|
||||||
|
query = Impression.where(options).selector
|
||||||
|
impressions = Impression.where(options).collection.map_reduce(map, reduce,read: :primary, out: "vr",:query=>query)
|
||||||
|
end
|
||||||
|
impressions.count
|
||||||
end
|
end
|
||||||
|
|
||||||
def display_visitors_today
|
def display_visitors_today
|
||||||
display_visitors(created_at: {'$gte' => Date.today.beginning_of_day, '$lte' => Date.today.end_of_day})
|
display_visitors(created_at: {'$gte' => Date.today.beginning_of_day , '$lte' => DateTime.now})
|
||||||
end
|
end
|
||||||
|
|
||||||
def display_visitors_this_week
|
def display_visitors_this_week
|
||||||
display_visitors(created_at: {'$gte' => Date.today.beginning_of_week, '$lte' => Date.today.end_of_week})
|
display_visitors(created_at: {'$gte' => Date.today.beginning_of_day - 7.days, '$lte' => DateTime.now})
|
||||||
end
|
end
|
||||||
|
|
||||||
def display_visitors_this_month
|
def display_visitors_this_month
|
||||||
display_visitors(created_at: {'$gte' => Date.today.beginning_of_month, '$lte' => Date.today.end_of_month})
|
display_visitors(created_at: {'$gte' => Date.today.beginning_of_day - 1.month, '$lte' => DateTime.now})
|
||||||
end
|
end
|
||||||
|
|
||||||
def display_visitors_this_year
|
def display_visitors_this_year
|
||||||
display_visitors(created_at: {'$gte' => Date.today.beginning_of_year, '$lte' => Date.today.end_of_year})
|
display_visitors(created_at: {'$gte' => Date.today.beginning_of_day - 1.year, '$lte' =>DateTime.now})
|
||||||
end
|
end
|
||||||
end # end of VisitorCounterEval
|
end # end of VisitorCounterEval
|
||||||
end # of Module
|
end # of Module
|
||||||
end # of OrbitApp
|
end # of OrbitApp
|
||||||
|
|
||||||
|
|
|
@ -102,12 +102,17 @@ module OrbitApp
|
||||||
def initialize(&block)
|
def initialize(&block)
|
||||||
@query = nil
|
@query = nil
|
||||||
@image = nil
|
@image = nil
|
||||||
|
@sorting_query = 'desc(:created_at)'
|
||||||
@more_link = {}
|
@more_link = {}
|
||||||
@fields = []
|
@fields = []
|
||||||
@enabled_styles = STYLE
|
@enabled_styles = STYLE
|
||||||
block.arity < 1 ? instance_eval(&block) : block.call(self) if block_given?
|
block.arity < 1 ? instance_eval(&block) : block.call(self) if block_given?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def sorting(query)
|
||||||
|
@sorting_query = query
|
||||||
|
end
|
||||||
|
|
||||||
def enable(args)
|
def enable(args)
|
||||||
@enabled_styles = args
|
@enabled_styles = args
|
||||||
end
|
end
|
||||||
|
@ -122,7 +127,7 @@ module OrbitApp
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_module_app_format
|
def to_module_app_format
|
||||||
{"query"=>@query,"image"=>@image,"more_link"=>@more_link,"enabled_styles"=>@enabled_styles} rescue nil
|
{"query"=>@query,"image"=>@image,"more_link"=>@more_link,"enabled_styles"=>@enabled_styles,:sorting_query=>@sorting_query} rescue nil
|
||||||
end
|
end
|
||||||
|
|
||||||
def link_field(field_name,setting)
|
def link_field(field_name,setting)
|
||||||
|
|
|
@ -326,4 +326,44 @@ namespace :migrate do
|
||||||
`mongo #{Mongoid.config.database.name} --eval "db.tags.remove({_type: {$ne: 'Tag'}})"`
|
`mongo #{Mongoid.config.database.name} --eval "db.tags.remove({_type: {$ne: 'Tag'}})"`
|
||||||
end
|
end
|
||||||
|
|
||||||
|
task :add_missing_user_link => :environment do
|
||||||
|
User.all.each do |user|
|
||||||
|
user.role_ids.uniq!
|
||||||
|
user.sub_role_ids.uniq!
|
||||||
|
user.save
|
||||||
|
user.roles.each do |role|
|
||||||
|
unless role.user_ids.include?(user.id)
|
||||||
|
role.user_ids << user.id
|
||||||
|
role.save
|
||||||
|
end
|
||||||
|
end
|
||||||
|
user.sub_roles.each do |sub_role|
|
||||||
|
unless sub_role.user_ids.include?(user.id)
|
||||||
|
sub_role.user_ids << user.id
|
||||||
|
sub_role.save
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
Role.all.each do |role|
|
||||||
|
role.user_ids.uniq!
|
||||||
|
role.save
|
||||||
|
role.users.each do |user|
|
||||||
|
unless user.role_ids.include?(role.id)
|
||||||
|
user.role_ids << role.id
|
||||||
|
user.save
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
SubRole.all.each do |sub_role|
|
||||||
|
sub_role.user_ids.uniq!
|
||||||
|
sub_role.save
|
||||||
|
sub_role.users.each do |user|
|
||||||
|
unless user.sub_role_ids.include?(sub_role.id)
|
||||||
|
user.sub_role_ids << sub_role.id
|
||||||
|
user.save
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
require 'erb'
|
||||||
|
|
||||||
namespace :site do
|
namespace :site do
|
||||||
|
|
||||||
|
@ -9,6 +10,7 @@ namespace :site do
|
||||||
Site.create( :school => 'RulingDigital University', :department => 'Computer Science', :valid_locales => [ 'en', 'zh_tw' ], :in_use_locales => [ 'zh_tw', 'en' ])
|
Site.create( :school => 'RulingDigital University', :department => 'Computer Science', :valid_locales => [ 'en', 'zh_tw' ], :in_use_locales => [ 'zh_tw', 'en' ])
|
||||||
User.create!(:email=>'chris@rulingcom.com',:admin=>true,:user_id=>'chris',:password=>'password')
|
User.create!(:email=>'chris@rulingcom.com',:admin=>true,:user_id=>'chris',:password=>'password')
|
||||||
`mongo #{Mongoid.config.database.name} --eval "db.fs.chunks.ensureIndex({files_id: 1, n: 1})"`
|
`mongo #{Mongoid.config.database.name} --eval "db.fs.chunks.ensureIndex({files_id: 1, n: 1})"`
|
||||||
|
|
||||||
puts "Congres you can now login within url"
|
puts "Congres you can now login within url"
|
||||||
puts 'Please upload design package (/admin/designs/upload_package ) and run rake site:necessary_data'
|
puts 'Please upload design package (/admin/designs/upload_package ) and run rake site:necessary_data'
|
||||||
I18nVariable.create!( :document_class => 'language', :key => 'en', :en => 'English', :zh_tw => '英文' )
|
I18nVariable.create!( :document_class => 'language', :key => 'en', :en => 'English', :zh_tw => '英文' )
|
||||||
|
@ -16,14 +18,18 @@ namespace :site do
|
||||||
Info.create!(key: "profile", built_in: true, disabled: false, title: {"zh_tw"=>"基本欄位", "en"=>"Basic Info"}, to_search: false)
|
Info.create!(key: "profile", built_in: true, disabled: false, title: {"zh_tw"=>"基本欄位", "en"=>"Basic Info"}, to_search: false)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
task :create_logrotate => :environment do #Can remove after all products update
|
||||||
|
create_rulingcom_logrotate
|
||||||
|
end
|
||||||
|
|
||||||
task :necessary_data => :environment do
|
task :necessary_data => :environment do
|
||||||
|
auto_setting
|
||||||
site = Site.first
|
site = Site.first
|
||||||
site.title = 'RulingOrbit Demo Site'
|
site.update_attribute(:title,'RulingOrbit Demo Site')
|
||||||
site.save
|
site.update_attribute(:resque_namespace,@resque_namespace)
|
||||||
|
|
||||||
# home_trans = I18nVariable.create!( :document_class => 'Home', :key => 'home', :en => 'Homepage', :zh_tw => '首頁')
|
# home_trans = I18nVariable.create!( :document_class => 'Home', :key => 'home', :en => 'Homepage', :zh_tw => '首頁')
|
||||||
design = Design.first
|
design = Design.first
|
||||||
site = Site.first
|
|
||||||
site.design = design
|
site.design = design
|
||||||
site.save
|
site.save
|
||||||
theme = design.themes.first
|
theme = design.themes.first
|
||||||
|
@ -31,6 +37,78 @@ namespace :site do
|
||||||
|
|
||||||
home.title_translations = {"zh_tw"=>"首頁", "en"=>"Home"}
|
home.title_translations = {"zh_tw"=>"首頁", "en"=>"Home"}
|
||||||
home.save
|
home.save
|
||||||
|
|
||||||
|
puts "Rember to restart server after you setup all sites for starting God"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
task :start_auto_setting => :environment do
|
||||||
|
auto_setting
|
||||||
|
end
|
||||||
|
|
||||||
|
def auto_setting
|
||||||
|
puts "Enter your resque namespace[Orbit]:......"
|
||||||
|
@resque_namespace = STDIN.gets.gsub("\n",'')
|
||||||
|
@resque_namespace = APP_CONFIG['orbit'] if @resque_namespace.empty?
|
||||||
|
|
||||||
|
|
||||||
|
puts "Is this the only site [ Entry site? ] on this mechine?[Default No]:......"
|
||||||
|
site_is_alone = false
|
||||||
|
site_is_alone = STDIN.gets.gsub("\n",'')
|
||||||
|
site_is_alone = true if site_is_alone.downcase == 'yes'
|
||||||
|
|
||||||
|
puts "Is this a primary site?[Default No]:......"
|
||||||
|
site_is_primary = false
|
||||||
|
site_is_primary = STDIN.gets.gsub("\n",'')
|
||||||
|
site_is_primary = true if site_is_primary.downcase == 'yes'
|
||||||
|
|
||||||
|
puts "Traffic heavy?[Default No]:......"
|
||||||
|
traffic_heavy = false
|
||||||
|
traffic_heavy = STDIN.gets.gsub("\n",'')
|
||||||
|
traffic_heavy = true if traffic_heavy.downcase == 'yes'
|
||||||
|
|
||||||
|
@traffic_rate = traffic_heavy ? 2 : 1
|
||||||
|
|
||||||
|
if site_is_alone
|
||||||
|
@resque_workers = 5 * @traffic_rate #Entry Site
|
||||||
|
else
|
||||||
|
if site_is_primary
|
||||||
|
@resque_workers = 2 * @traffic_rate #Primary Site
|
||||||
|
else
|
||||||
|
@resque_workers = 1 * @traffic_rate #Secondary Site
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
resque_setting = ERB.new(File.new("lib/template/setting/resque.god.erb").read)
|
||||||
|
File.open("config/resque.god", 'w') { |file| file.write(resque_setting.result) }
|
||||||
|
|
||||||
|
resque_schedule_setting = ERB.new(File.new("lib/template/setting/resque_schedule.god.erb").read)
|
||||||
|
File.open("config/resque_schedule.god", 'w') { |file| file.write(resque_schedule_setting.result) }
|
||||||
|
|
||||||
|
if site_is_primary
|
||||||
|
solr_setting = ERB.new(File.new("lib/template/setting/solr.god.erb").read)
|
||||||
|
File.open("config/solr.god", 'w') { |file| file.write(solr_setting.result) }
|
||||||
|
create_rulingcom_logrotate
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def create_rulingcom_logrotate
|
||||||
|
`sudo mkdir -p /var/log/rulingcom` unless File.directory? "/var/log/rulingcom"
|
||||||
|
@project_folder = ENV["PWD"]
|
||||||
|
puts "Is your Orbit folder: #{@project_folder} (If YES => Press enter,or enter your path)"
|
||||||
|
user_enter_project_folder = STDIN.gets.gsub("\n",'')
|
||||||
|
@project_folder = user_enter_project_folder unless user_enter_project_folder.empty?
|
||||||
|
|
||||||
|
@user_home_folder = ENV["HOME"]
|
||||||
|
puts "Is your Home folder: #{@user_home_folder} (If YES => Press enter,or enter your path)"
|
||||||
|
user_enter_home_folder = STDIN.gets.gsub("\n",'')
|
||||||
|
@user_home_folder = user_enter_home_folder unless user_enter_home_folder.empty?
|
||||||
|
|
||||||
|
logrotate_setting = ERB.new(File.new("lib/template/setting/rulingcom_log.erb").read)
|
||||||
|
File.open("#{@project_loc}/tmp/logrotate_setting", 'w') { |file| file.write(logrotate_setting.result) }
|
||||||
|
|
||||||
|
`sudo cp #{@project_loc}/tmp/logrotate_setting /etc/logrotate.d/rulingcom`
|
||||||
|
`logrotate -v -f /etc/logrotate.conf`
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
namespace :system_check do
|
||||||
|
task :god_can_start => :environment do
|
||||||
|
unless File.directory? "/var/log/rulingcom"
|
||||||
|
puts "Creating Rulingcom log folder"
|
||||||
|
`sudo mkdir -p /var/log/rulingcom`
|
||||||
|
end
|
||||||
|
end
|
||||||
|
task :set_resque_namespace,[:namespace] => :environment do |t,args|
|
||||||
|
site = Site.first
|
||||||
|
site.resque_namespace = args[:namespace]
|
||||||
|
site.save
|
||||||
|
end
|
||||||
|
end
|
|
@ -4,33 +4,32 @@ user_home = ENV['HOME'] || File.dirname(__FILE__) + '/../..'
|
||||||
development_uid = ''
|
development_uid = ''
|
||||||
development_gid = ''
|
development_gid = ''
|
||||||
|
|
||||||
num_workers = rails_env == 'production' ? 5 : 2
|
num_workers = rails_env == 'production' ? <%= @resque_workers %> : 1
|
||||||
|
|
||||||
num_workers.times do |num|
|
num_workers.times do |num|
|
||||||
God.watch do |w|
|
God.watch do |w|
|
||||||
|
|
||||||
w.dir = rails_root
|
w.dir = rails_root
|
||||||
w.name = "worker-#{num}"
|
w.name = "<%= @resque_namespace.nil? ? "" : "#{@resque_namespace}-" %>resque-worker-#{num}"
|
||||||
w.group = 'resque'
|
w.group = 'rulingcom'
|
||||||
|
|
||||||
w.interval = 30.seconds
|
w.interval = 30.seconds
|
||||||
|
|
||||||
queue = case num
|
queue = case num
|
||||||
when 0
|
when 0..2
|
||||||
'critical'
|
|
||||||
when 1..2
|
|
||||||
'high,low'
|
'high,low'
|
||||||
when 3..num_workers
|
when 3..num_workers
|
||||||
'low'
|
'low'
|
||||||
end
|
end
|
||||||
|
|
||||||
w.env = {"QUEUE"=>queue, "RAILS_ENV"=>rails_env}
|
w.pid_file = "#{rails_root}/tmp/#{w.name}.pid"
|
||||||
w.start = "HOME=#{user_home} QUEUE=* RAILS_ENV=#{rails_env} rake -f #{rails_root}/Rakefile resque:work"
|
w.env = {"RAILS_ENV"=>rails_env,"PIDFILE" => w.pid_file ,"HOME"=>user_home, "QUEUE"=>queue, "RAILS_ENV"=>rails_env }
|
||||||
|
w.start = "rake -f #{rails_root}/Rakefile resque:work"
|
||||||
|
w.stop = "sudo kill -KILL $(cat #{w.pid_file})"
|
||||||
w.uid = (rails_env == 'production' )? "root" : development_uid
|
w.uid = (rails_env == 'production' )? "root" : development_uid
|
||||||
w.gid = (rails_env == 'production' )? "root" : development_gid
|
w.gid = (rails_env == 'production' )? "root" : development_gid
|
||||||
|
|
||||||
w.log = (rails_env == 'production' )? "/var/log/#{w.group}/#{w.name}.log":"#{rails_root}/log/dev_resque-#{w.name}.log"
|
w.log = (rails_env == 'production' )? "/var/log/#{w.group}/#{w.name}.log":"#{rails_root}/log/dev-#{w.name}.log"
|
||||||
|
|
||||||
# restart if memory gets too high
|
# restart if memory gets too high
|
||||||
w.transition(:up, :restart) do |on|
|
w.transition(:up, :restart) do |on|
|
|
@ -0,0 +1,59 @@
|
||||||
|
rails_env = ENV['RAILS_ENV'] || "production"
|
||||||
|
rails_root = ENV['RAILS_ROOT'] || File.dirname(__FILE__) + '/..'
|
||||||
|
user_home = ENV['HOME'] || File.dirname(__FILE__) + '/../..'
|
||||||
|
development_uid = ''
|
||||||
|
development_gid = ''
|
||||||
|
|
||||||
|
God.watch do |w|
|
||||||
|
w.dir = rails_root
|
||||||
|
w.name = "<%= @resque_namespace.nil? ? "" : "#{@resque_namespace}-" %>resque-scheduler"
|
||||||
|
w.group = 'rulingcom'
|
||||||
|
w.interval = 10.seconds
|
||||||
|
w.pid_file = "#{rails_root}/tmp/#{w.name}.pid"
|
||||||
|
|
||||||
|
w.env = {"QUEUE"=>"*", "RAILS_ENV"=>rails_env,"HOME"=>user_home, "RAILS_ENV"=>rails_env}
|
||||||
|
w.start = "rake -f #{rails_root}/Rakefile resque:scheduler"
|
||||||
|
w.stop = "sudo kill -KILL $(cat #{w.pid_file})"
|
||||||
|
w.uid = (rails_env == 'production' )? "root" : development_uid
|
||||||
|
w.gid = (rails_env == 'production' )? "root" : development_gid
|
||||||
|
|
||||||
|
w.log = (rails_env == 'production' )? "/var/log/#{w.group}/#{w.name}.log":"#{rails_root}/log/dev-#{w.name}.log"
|
||||||
|
|
||||||
|
# restart if memory gets too high
|
||||||
|
w.transition(:up, :restart) do |on|
|
||||||
|
on.condition(:memory_usage) do |c|
|
||||||
|
c.above = 350.megabytes
|
||||||
|
c.times = 2
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# determine the state on startup
|
||||||
|
w.transition(:init, { true => :up, false => :start }) do |on|
|
||||||
|
on.condition(:process_running) do |c|
|
||||||
|
c.running = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# determine when process has finished starting
|
||||||
|
w.transition([:start, :restart], :up) do |on|
|
||||||
|
on.condition(:process_running) do |c|
|
||||||
|
c.running = true
|
||||||
|
c.interval = 5.seconds
|
||||||
|
end
|
||||||
|
|
||||||
|
# failsafe
|
||||||
|
on.condition(:tries) do |c|
|
||||||
|
c.times = 5
|
||||||
|
c.transition = :start
|
||||||
|
c.interval = 5.seconds
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# start if process is not running
|
||||||
|
w.transition(:up, :start) do |on|
|
||||||
|
on.condition(:process_running) do |c|
|
||||||
|
c.running = false
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
/var/log/rulingcom/*.log {
|
||||||
|
daily
|
||||||
|
dateext
|
||||||
|
compress
|
||||||
|
rotate 30
|
||||||
|
}
|
||||||
|
|
||||||
|
#Resque
|
||||||
|
<%= "#{@project_folder}/nginx/logs/access.log" %>{
|
||||||
|
daily
|
||||||
|
dateext
|
||||||
|
compress
|
||||||
|
rotate 30
|
||||||
|
}
|
||||||
|
|
||||||
|
#DB log
|
||||||
|
/var/log/mongodb{
|
||||||
|
daily
|
||||||
|
dateext
|
||||||
|
compress
|
||||||
|
rotate 30
|
||||||
|
}
|
||||||
|
|
||||||
|
#Orbit
|
||||||
|
<%= "#{@project_folder}/log/*production.log" %>{
|
||||||
|
daily
|
||||||
|
dateext
|
||||||
|
compress
|
||||||
|
rotate 30
|
||||||
|
}
|
||||||
|
# end of Orbit,EXTEND IF NEEDED
|
||||||
|
|
||||||
|
#Remember to save this file as /etc/logrotate.d/rulingcom
|
|
@ -6,16 +6,19 @@ development_gid = ''
|
||||||
|
|
||||||
God.watch do |w|
|
God.watch do |w|
|
||||||
w.dir = rails_root
|
w.dir = rails_root
|
||||||
w.name = "scheduler"
|
w.name = "<%= @resque_namespace.nil? ? "" : "#{@resque_namespace}-" %>sunspot-solr"
|
||||||
w.group = 'resque'
|
w.group = 'rulingcom'
|
||||||
|
w.pid_file = "#{rails_root}/solr/pids/production/sunspot-solr-production.pid"
|
||||||
w.interval = 30.seconds
|
w.interval = 30.seconds
|
||||||
w.env = {"QUEUE"=>"critical,high,low", "RAILS_ENV"=>rails_env}
|
w.env = {"RAILS_ENV"=>rails_env,"HOME"=>user_home ,"RAILS_ENV"=>rails_env}
|
||||||
w.start = "HOME= #{user_home} QUEUE=* RAILS_ENV=#{rails_env} rake -f #{rails_root}/Rakefile resque:scheduler"
|
w.start = "rake -f #{rails_root}/Rakefile sunspot:solr:start"
|
||||||
|
w.stop = "sudo kill -KILL $(cat #{w.pid_file})"
|
||||||
|
w.keepalive
|
||||||
|
|
||||||
w.uid = (rails_env == 'production' )? "root" : development_uid
|
w.uid = (rails_env == 'production' )? "root" : development_uid
|
||||||
w.gid = (rails_env == 'production' )? "root" : development_gid
|
w.gid = (rails_env == 'production' )? "root" : development_gid
|
||||||
|
|
||||||
w.log = (rails_env == 'production' )? "/var/log/#{w.group}/#{w.name}.log":"#{rails_root}/log/dev_resque-#{w.name}.log"
|
w.log = (rails_env == 'production' )? "/var/log/#{w.group}/#{w.name}.log":"#{rails_root}/log/dev-#{w.name}.log"
|
||||||
|
|
||||||
# restart if memory gets too high
|
# restart if memory gets too high
|
||||||
w.transition(:up, :restart) do |on|
|
w.transition(:up, :restart) do |on|
|
|
@ -0,0 +1,78 @@
|
||||||
|
|
||||||
|
.mega_tab_block {
|
||||||
|
clear: both;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mega_tab_block h3 {
|
||||||
|
font: 22px/100% 'arial',sans-serif;
|
||||||
|
margin: 0 0 10px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mega_tab_block .pagination {
|
||||||
|
float: left;
|
||||||
|
height: auto;
|
||||||
|
margin: 10px 0 0;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.mega_tab_block .pagination a {
|
||||||
|
background: none repeat scroll 0 0 #EEEEEE;
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
margin: 0 5px 0 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tag_block {
|
||||||
|
clear: both;
|
||||||
|
margin: 0 0 20px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.mega_tab_block .tag_list {
|
||||||
|
background: none repeat scroll 0 0 #EEEEEE;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 0 0 5px;
|
||||||
|
}
|
||||||
|
.mega_tab_block .tag_list li {
|
||||||
|
float: left;
|
||||||
|
list-style: none outside none;
|
||||||
|
}
|
||||||
|
.mega_tab_block .tag_list li a {
|
||||||
|
background: none repeat scroll 0 0 #DDDDDD;
|
||||||
|
float: left;
|
||||||
|
margin: 0 5px 0 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.news_block {
|
||||||
|
clear: both;
|
||||||
|
margin: 0 0 20px;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.mega_tab_block .news_list {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.mega_tab_block .news_list li {
|
||||||
|
list-style: none outside none;
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.links_block {
|
||||||
|
clear: both;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.mega_tab_block .links_list {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.mega_tab_block .links_list li {
|
||||||
|
list-style: none outside none;
|
||||||
|
padding: 5px 0;
|
||||||
|
}
|
|
@ -66,14 +66,75 @@ class Panel::Announcement::Widget::BulletinsController < OrbitWidgetController
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def bulletins_and_web_links
|
||||||
|
|
||||||
|
@part = PagePart.find(params[:part_id]) if !params[:part_id].blank?
|
||||||
|
|
||||||
|
@title = @part.title_translations[I18n.locale.to_s]
|
||||||
|
|
||||||
|
if !@part.blank? and @part.widget_data_count
|
||||||
|
@page_num = @part.widget_data_count
|
||||||
|
else
|
||||||
|
@page_num = 5
|
||||||
|
end
|
||||||
|
|
||||||
|
date_now = Time.now
|
||||||
|
|
||||||
|
if !params[:tag_id].blank?
|
||||||
|
@tags = Tag.any_in(:_id => params[:tag_id]).asc(:created_at)
|
||||||
|
elsif params[:tag_id].blank? and !@part.tag.blank?
|
||||||
|
@tags = Tag.any_in(:_id => @part.tag).asc(:created_at)
|
||||||
|
else
|
||||||
|
@ModuleApp_b = ModuleApp.first(:conditions => {:key=>'announcement'})
|
||||||
|
@tags = Tag.where(:module_tag_id => @ModuleApp_b.id).asc(:created_at)
|
||||||
|
end
|
||||||
|
|
||||||
|
@selected_tag = Tag.find(params[:id]).first rescue @tags[0]
|
||||||
|
|
||||||
|
@bulletins = Bulletin.available_for_lang(I18n.locale).can_display.where(:tagged_ids => @selected_tag.id.to_s, :is_hidden => false).any_of( {deadline: nil,:postdate.lte => date_now} , {:deadline.gte => date_now,:postdate.lte => date_now} ).desc(:is_top, :postdate).page(params[:page]).per(@page_num) rescue nil
|
||||||
|
|
||||||
|
if @part.widget_style == 'bulletins_and_web_links'
|
||||||
|
@ModuleApp_w = ModuleApp.first(:conditions => {:key=>'web_resource'})
|
||||||
|
@link_selected_tag = Tag.first(:conditions => {:name => @selected_tag.name, :module_tag_id => @ModuleApp_w.id})
|
||||||
|
@web_links = WebLink.where(:tagged_ids => @link_selected_tag.id.to_s, :is_hidden => false).desc(:is_top,:created_at).available_for_lang(I18n.locale).page(params[:page]).per(@page_num) rescue nil
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
def reload_bulletins
|
def reload_bulletins
|
||||||
@selected_tag = Tag.find(params[:tag_id])
|
|
||||||
@bulletins = Bulletin.available_for_lang(I18n.locale).can_display.where(:tagged_ids => params[:tag_id]).where(:is_hidden => false).any_of( {deadline: nil,:postdate.lte => date_now} , {:deadline.gte => date_now,:postdate.lte => date_now} ).desc(:is_top, sort).page(params[:page]).per(5) rescue nil
|
@part = PagePart.find(params[:part_id]) if !params[:part_id].blank?
|
||||||
|
|
||||||
|
@title = @part.title_translations[I18n.locale.to_s]
|
||||||
|
|
||||||
|
if !@part.blank? and @part.widget_data_count
|
||||||
|
@page_num = @part.widget_data_count
|
||||||
|
else
|
||||||
|
@page_num = 5
|
||||||
|
end
|
||||||
|
|
||||||
|
date_now = Time.now
|
||||||
|
|
||||||
|
@selected_tag = Tag.find(params[:tag_id]).first
|
||||||
|
@bulletins = Bulletin.available_for_lang(I18n.locale).can_display.where(:tagged_ids => @selected_tag.id.to_s, :is_hidden => false).any_of( {deadline: nil,:postdate.lte => date_now} , {:deadline.gte => date_now,:postdate.lte => date_now} ).desc(:is_top, :postdate).page(params[:page]).per(@page_num) rescue nil
|
||||||
end
|
end
|
||||||
|
|
||||||
def reload_web_links
|
def reload_web_links
|
||||||
@selected_tag = Tag.find(params[:tag_id])
|
|
||||||
@web_links = WebLink.where(:name => @selected_tag.name).where(:is_hidden => false).desc(:is_top, sort).available_for_lang(I18n.locale).page(params[:page]).per(5) rescue nil
|
@part = PagePart.find(params[:part_id]) if !params[:part_id].blank?
|
||||||
|
|
||||||
|
if !@part.blank? and @part.widget_data_count
|
||||||
|
@page_num = @part.widget_data_count
|
||||||
|
else
|
||||||
|
@page_num = 5
|
||||||
|
end
|
||||||
|
|
||||||
|
date_now = Time.now
|
||||||
|
|
||||||
|
@selected_tag = Tag.find(params[:tag_id]).first
|
||||||
|
@ModuleApp = ModuleApp.first(:conditions => {:key=>'web_resource'})
|
||||||
|
@link_selected_tag = Tag.first(:conditions => {:name => @selected_tag.name, :module_tag_id => @ModuleApp.id})
|
||||||
|
@web_links = WebLink.where(:tagged_ids => @link_selected_tag.id.to_s, :is_hidden => false).desc(:is_top,:created_at).available_for_lang(I18n.locale).page(params[:page]).per(@page_num) rescue nil
|
||||||
end
|
end
|
||||||
|
|
||||||
def bulletins_side_bar
|
def bulletins_side_bar
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<% @bulletins.each do |bulletin| %>
|
<% @bulletins.each do |bulletin| %>
|
||||||
<li>
|
<li>
|
||||||
<%= link_to bulletin.title, panel_announcement_front_end_bulletin_path(bulletin, :category_id => bulletin.bulletin_category_id , :tag_id => @selected_tag.id ) %>
|
<%= link_to bulletin.title, panel_announcement_front_end_bulletin_path(bulletin, :category_id => bulletin.bulletin_category_id , :part_id => params[:part_id], :tag_id => [@selected_tag.id] ) %>
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class='pagination'>
|
<div class='pagination'>
|
||||||
<%= link_to_previous_page @bulletins, 'Previous Page', :params => {:controller => 'widget/bulletins', :action => 'reload_bulletins', :tag_id => @selected_tag.id}, :remote => true, :class => 'previous' %>
|
<%= link_to_previous_page @bulletins, 'Previous Page', :params => {:controller => 'widget/bulletins', :action => 'reload_bulletins', :part_id => params[:part_id], :tag_id => [@selected_tag.id]}, :remote => true, :class => 'previous' %>
|
||||||
<%= link_to_next_page @bulletins, 'Next Page', :params => {:controller => 'widget/bulletins', :action => 'reload_bulletins', :tag_id => @selected_tag.id}, :remote => true, :class => 'next' %>
|
<%= link_to_next_page @bulletins, 'Next Page', :params => {:controller => 'widget/bulletins', :action => 'reload_bulletins', :part_id => params[:part_id], :tag_id => [@selected_tag.id]}, :remote => true, :class => 'next' %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<li>
|
<li>
|
||||||
<%= link_to tag.name, panel_announcement_widget_bulletins_and_web_links_path(:id => tag.id), :remote => true, :class => ('active' if tag.eql?(@selected_tag)) %>
|
<%= link_to tag.name, panel_announcement_widget_bulletins_and_web_links_path(:inner=>true, :id => [tag.id], :part_id=>params[:part_id]), :remote => true, :class => ('active' if tag.eql?(@selected_tag)) %>
|
||||||
</li>
|
</li>
|
|
@ -5,6 +5,6 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class='pagination'>
|
<div class='pagination'>
|
||||||
<%= link_to_previous_page @web_links, 'Previous Page', :params => {:controller => 'widget/bulletins', :action => 'reload_web_links', :tag_id => @selected_tag.id}, :remote => true, :class => 'previous' %>
|
<%= link_to_previous_page @web_links, 'Previous Page', :params => {:controller => 'widget/bulletins', :action => 'reload_web_links', :part_id => params[:part_id], :tag_id => @selected_tag.id}, :remote => true, :class => 'previous' %>
|
||||||
<%= link_to_next_page @web_links, 'Next Page', :params => {:controller => 'widget/bulletins', :action => 'reload_web_links', :tag_id => @selected_tag.id}, :remote => true, :class => 'next' %>
|
<%= link_to_next_page @web_links, 'Next Page', :params => {:controller => 'widget/bulletins', :action => 'reload_web_links', :part_id => params[:part_id], :tag_id => @selected_tag.id}, :remote => true, :class => 'next' %>
|
||||||
</div>
|
</div>
|
|
@ -0,0 +1,36 @@
|
||||||
|
<div class="mega_tab_block">
|
||||||
|
|
||||||
|
<div class="tag_block">
|
||||||
|
<ul id='bulletins_web_links_tags' class="tag_list">
|
||||||
|
<%= render :partial => 'tag', :collection => @tags %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="news_block">
|
||||||
|
<h3 class="news_title2">
|
||||||
|
<%#= link_to t("announcement.bulletins"), panel_announcement_front_end_bulletins_path, :class => 'more' %>
|
||||||
|
<%= link_to @title, panel_announcement_front_end_bulletins_path, :class => 'more' %>
|
||||||
|
</h3>
|
||||||
|
<ul id='bulletins_web_links_bulletins' class="news_list">
|
||||||
|
<%= render 'bulletins' if @bulletins %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% if @part.widget_style == 'bulletins_and_web_links' %>
|
||||||
|
|
||||||
|
<div class="links_block">
|
||||||
|
<h3 class="links_title"><%= t(:related_links) %></h3>
|
||||||
|
<ul id='bulletins_web_links_web_links' class="links_list">
|
||||||
|
<%= render 'web_links' if @web_links %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% content_for :page_specific_javascript do %>
|
||||||
|
<%= javascript_include_tag "news_link" %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%= stylesheet_link_tag "announcement/bulletins_and_web_links" %>
|
|
@ -0,0 +1,3 @@
|
||||||
|
$('#bulletins_web_links_tags').html("<%= j render :partial => 'tag', :collection => @tags %>")
|
||||||
|
$('#bulletins_web_links_bulletins').html("<%= j render 'bulletins' if @bulletins %>")
|
||||||
|
$('#bulletins_web_links_web_links').html("<%= j render 'web_links' if @web_links %>")
|
|
@ -35,6 +35,6 @@ en:
|
||||||
update_bulletin_category_success: Update Category Successfully
|
update_bulletin_category_success: Update Category Successfully
|
||||||
url: URL
|
url: URL
|
||||||
widget:
|
widget:
|
||||||
bulletins_and_web_links: Bulletins and Web Resources
|
bulletins_and_web_links: Differential Nav.
|
||||||
index: Index
|
index: Index
|
||||||
search: Search
|
search: Search
|
|
@ -35,6 +35,6 @@ zh_tw:
|
||||||
update_bulletin_category_success: 更新類別成功
|
update_bulletin_category_success: 更新類別成功
|
||||||
url: 連結位置
|
url: 連結位置
|
||||||
widget:
|
widget:
|
||||||
bulletins_and_web_links: 索引
|
bulletins_and_web_links: 分眾頁籤
|
||||||
index: 索引
|
index: 索引
|
||||||
search: 搜尋
|
search: 搜尋
|
|
@ -29,7 +29,8 @@ module Announcement
|
||||||
|
|
||||||
widgets do
|
widgets do
|
||||||
default_widget do
|
default_widget do
|
||||||
query 'Bulletin.any_of( {deadline: nil,:postdate.lte => Time.now} , {:deadline.gte => Time.now,:postdate.lte => Time.now} )'
|
sorting 'desc(:is_top, :postdate)'
|
||||||
|
query 'Bulletin.can_display.available_for_lang(I18n.locale).any_of( {deadline: nil,:postdate.lte => Time.now} , {:deadline.gte => Time.now,:postdate.lte => Time.now} )'
|
||||||
enable ["typeA","typeB_style3","typeC"]
|
enable ["typeA","typeB_style3","typeC"]
|
||||||
image :image
|
image :image
|
||||||
field :postdate
|
field :postdate
|
||||||
|
@ -51,6 +52,11 @@ module Announcement
|
||||||
widget_i18n "announcement.widget.search"
|
widget_i18n "announcement.widget.search"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
customize_widget "bulletins_and_web_links" do
|
||||||
|
widget_i18n "announcement.widget.bulletins_and_web_links"
|
||||||
|
style ["bulletins_and_links","bulletins_only"]
|
||||||
|
end
|
||||||
|
|
||||||
# item "index","announcement.widget.index",:default_template=>true,:fields=>["title","category","postdate"]
|
# item "index","announcement.widget.index",:default_template=>true,:fields=>["title","category","postdate"]
|
||||||
# item "bulletins_and_web_links","announcement.widget.bulletins_and_web_links"
|
# item "bulletins_and_web_links","announcement.widget.bulletins_and_web_links"
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,50 +0,0 @@
|
||||||
module Ask
|
|
||||||
OrbitApp.registration "Ask",:type=> 'ModuleApp' do
|
|
||||||
module_label 'ask.ask'
|
|
||||||
base_url File.expand_path File.dirname(__FILE__)
|
|
||||||
# personal_plugin :enable => true,:path=>"panel/faq/plugin/profile",:i18n=>'admin.faq'
|
|
||||||
|
|
||||||
version "0.1"
|
|
||||||
organization "Rulingcom"
|
|
||||||
author "RD dep"
|
|
||||||
intro "I am intro"
|
|
||||||
update_info 'some update_info'
|
|
||||||
|
|
||||||
front_end do
|
|
||||||
app_page 'ask_questions' do
|
|
||||||
frontend_i18n 'ask.ask'
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
||||||
|
|
||||||
widgets do
|
|
||||||
default_widget do
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
side_bar do
|
|
||||||
head_label_i18n 'ask.ask', icon_class: 'icons-light-bulb'
|
|
||||||
available_for [:admin,:manager,:sub_manager]
|
|
||||||
active_for_controllers({ private: ['ask_questions'] })
|
|
||||||
head_link_path "panel_ask_back_end_ask_questions_path"
|
|
||||||
|
|
||||||
context_link 'categories', link_path: 'panel_ask_back_end_ask_categories_path',
|
|
||||||
priority: 1,
|
|
||||||
active_for_action: {:ask_categories=>:index},
|
|
||||||
available_for: [:all]
|
|
||||||
|
|
||||||
context_link 'ask.acknowledgement', link_path: 'panel_ask_back_end_ask_acknowledgements_path',
|
|
||||||
priority: 1,
|
|
||||||
available_for: [:all]
|
|
||||||
|
|
||||||
context_link 'ask.admin', link_path: 'panel_ask_back_end_ask_admins_path',
|
|
||||||
priority: 1,
|
|
||||||
available_for: [:all]
|
|
||||||
|
|
||||||
context_link 'ask.export', link_path: 'export_panel_ask_back_end_ask_questions_path',
|
|
||||||
priority: 1,
|
|
||||||
available_for: [:all]
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -14,6 +14,7 @@ class Panel::Ask::FrontEnd::AskQuestionsController < OrbitWidgetController
|
||||||
def create
|
def create
|
||||||
@ask_question = AskQuestion.new(params[:ask_question])
|
@ask_question = AskQuestion.new(params[:ask_question])
|
||||||
if gotcha_valid? && @ask_question.save
|
if gotcha_valid? && @ask_question.save
|
||||||
|
@acknowledgement = AskAcknowledgement.last
|
||||||
@ask_acknowledgement = AskAcknowledgement.first || AskAcknowlegement.new
|
@ask_acknowledgement = AskAcknowledgement.first || AskAcknowlegement.new
|
||||||
#@ask_question.save
|
#@ask_question.save
|
||||||
redirect_to root_path
|
redirect_to root_path
|
||||||
|
@ -30,6 +31,7 @@ class Panel::Ask::FrontEnd::AskQuestionsController < OrbitWidgetController
|
||||||
end
|
end
|
||||||
|
|
||||||
def thank_you
|
def thank_you
|
||||||
|
@acknowledgement = AskAcknowledgement.last
|
||||||
@item = Page.find(params[:page_id]) rescue nil
|
@item = Page.find(params[:page_id]) rescue nil
|
||||||
if @item
|
if @item
|
||||||
if @item.frontend_data_count
|
if @item.frontend_data_count
|
||||||
|
@ -40,7 +42,5 @@ class Panel::Ask::FrontEnd::AskQuestionsController < OrbitWidgetController
|
||||||
@frontend_style = @item.frontend_style
|
@frontend_style = @item.frontend_style
|
||||||
end
|
end
|
||||||
@item = Page.find(params[:page_id]) rescue nil
|
@item = Page.find(params[:page_id]) rescue nil
|
||||||
>>>>>>> a4fa967... Fix mailing redirect
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,12 +1 @@
|
||||||
<% #if @ask_question.errors.empty? %>
|
|
||||||
//$('html,body').scrollTop(0);
|
|
||||||
//$('#acknowledgement')
|
|
||||||
// .html('<%= j simple_format(@ask_acknowledgement.content) %>')
|
|
||||||
// .fadeIn(600)
|
|
||||||
// .delay(3000)
|
|
||||||
// .fadeOut(600);
|
|
||||||
<% #else %>
|
|
||||||
//alert('<%= @ask_question.errors.full_messages.join('\n') %>');
|
|
||||||
//Recaptcha.reload()
|
|
||||||
<% #end %>
|
|
||||||
window.location.href= "<%= panel_ask_front_end_thank_you_path %>"
|
window.location.href= "<%= panel_ask_front_end_thank_you_path %>"
|
||||||
|
|
|
@ -1,4 +1,34 @@
|
||||||
<link href='/assets/ask.css' rel='stylesheet' type='text/css' />
|
<link href='/assets/ask.css' rel='stylesheet' type='text/css' />
|
||||||
|
<style type="text/css">
|
||||||
|
.spinner {
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -50px; /* half width of the spinner gif */
|
||||||
|
margin-top: -50px; /* half height of the spinner gif */
|
||||||
|
text-align:center;
|
||||||
|
z-index:1234;
|
||||||
|
overflow: auto;
|
||||||
|
width: 100px; /* width of the spinner gif */
|
||||||
|
height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("#spinner").bind("ajaxSend", function() {
|
||||||
|
$(this).show();
|
||||||
|
}).bind("ajaxStop", function() {
|
||||||
|
$(this).hide();
|
||||||
|
}).bind("ajaxError", function() {
|
||||||
|
$(this).hide();
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="spinner" class="spinner" style="display:none;">
|
||||||
|
Sending Mail <%= image_tag 'loading.gif', :id => "img-spinner"%>
|
||||||
|
</div>
|
||||||
<div id="new-ask-question" class="ask-question">
|
<div id="new-ask-question" class="ask-question">
|
||||||
<div id="acknowledgement"></div>
|
<div id="acknowledgement"></div>
|
||||||
<%= form_for @ask_question, url: panel_ask_front_end_ask_questions_path(standalone: true), html: {class: 'form-horizontal'} do |f| %>
|
<%= form_for @ask_question, url: panel_ask_front_end_ask_questions_path(standalone: true), html: {class: 'form-horizontal'} do |f| %>
|
||||||
|
@ -62,11 +92,18 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-actions">
|
<div class="form-actions">
|
||||||
<%= f.submit t('submit'), class: 'btn btn-primary' %>
|
<%= f.submit t('submit'), class: 'btn btn-primary', :id => 'button-mail' %>
|
||||||
<%= f.button t('cancel'), type: 'reset', class: 'btn' %>
|
<%= f.button t('cancel'), type: 'reset', class: 'btn' %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function(){
|
||||||
|
$('#button-mail').click(function() {
|
||||||
|
$('#spinner').show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function() {
|
$(function() {
|
||||||
$('#new-ask-question .required').each(function() {
|
$('#new-ask-question .required').each(function() {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
<h3>Thank you for your email, we will get back to you soon.</h3>
|
<h3><%= @acknowledgement.content.html_safe%></h3>
|
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -9,17 +9,40 @@ class Panel::Gallery::Widget::AlbumsController < OrbitWidgetController
|
||||||
@album = GalleryAlbum.find(@part.widget_options['album_id']) rescue nil
|
@album = GalleryAlbum.find(@part.widget_options['album_id']) rescue nil
|
||||||
@album_images = @album.gallery_images if @album
|
@album_images = @album.gallery_images if @album
|
||||||
|
|
||||||
|
|
||||||
@settings = {"vertical"=>vertical,"horizontal"=>horizontal} #[note] horizontal has it's limitation from 2 to 6
|
@settings = {"vertical"=>vertical,"horizontal"=>horizontal} #[note] horizontal has it's limitation from 2 to 6
|
||||||
@class = "c" + @settings["horizontal"].to_s
|
@class = "c" + @settings["horizontal"].to_s
|
||||||
@total = @settings["vertical"] * @settings["horizontal"]
|
@total = @settings["vertical"] * @settings["horizontal"]
|
||||||
@rnd = Random.new
|
@rnd = Random.new
|
||||||
@images = []
|
@images = []
|
||||||
for i in 0..@total-1
|
|
||||||
image = @album_images[@rnd.rand(0...@album_images.count)]
|
if @album_images.count > @total
|
||||||
|
@randoms = []
|
||||||
|
until @randoms.count == @total do
|
||||||
|
r = @rnd.rand(0...@album_images.count)
|
||||||
|
if !@randoms.include?r
|
||||||
|
@randoms << r
|
||||||
|
image = @album_images[r]
|
||||||
values = {"show_link"=>theater_panel_gallery_front_end_album_path(image),"thumb"=>image.file.thumb.url}
|
values = {"show_link"=>theater_panel_gallery_front_end_album_path(image),"thumb"=>image.file.thumb.url}
|
||||||
@images << values
|
@images << values
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
elsif @album_images.count == @total
|
||||||
|
@album_images.each do |image|
|
||||||
|
values = {"show_link"=>theater_panel_gallery_front_end_album_path(image),"thumb"=>image.file.thumb.url}
|
||||||
|
@images << values
|
||||||
|
end
|
||||||
|
else
|
||||||
|
@album_images.each do |image|
|
||||||
|
values = {"show_link"=>theater_panel_gallery_front_end_album_path(image),"thumb"=>image.file.thumb.url}
|
||||||
|
@images << values
|
||||||
|
end
|
||||||
|
until @images.count == @total do
|
||||||
|
values = {"show_link"=>"javascript:void(0);","thumb"=>"assets/gallery/nodata.jpg"}
|
||||||
|
@images << values
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def widget2
|
def widget2
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
class Panel::Location::BackEnd::LocationCategoriesController < OrbitBackendController
|
||||||
|
|
||||||
|
def index
|
||||||
|
@categorylist = LocationCategory.all
|
||||||
|
@new_category = LocationCategory.new
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
@category = LocationCategory.new(params[:location_category])
|
||||||
|
@category.save!
|
||||||
|
respond_to do |h|
|
||||||
|
h.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
@category = LocationCategory.find(params[:id])
|
||||||
|
render :layout => false
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
@category = LocationCategory.find(params[:id])
|
||||||
|
@category.update_attributes(params[:location_category])
|
||||||
|
respond_to do |h|
|
||||||
|
h.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
@category = LocationCategory.find(params['id'])
|
||||||
|
@category.delete
|
||||||
|
render :json=>{"success"=>"true"}.to_json
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
|
@ -14,7 +14,6 @@ class Panel::Location::BackEnd::LocationsController < OrbitBackendController
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@location_info = LocationInfo.new
|
@location_info = LocationInfo.new
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html # new.html.erb
|
format.html # new.html.erb
|
||||||
format.json { render json: @location }
|
format.json { render json: @location }
|
||||||
|
|
|
@ -8,4 +8,6 @@ class Location
|
||||||
field :description
|
field :description
|
||||||
field :longitude, type: Float
|
field :longitude, type: Float
|
||||||
field :latitude, type: Float
|
field :latitude, type: Float
|
||||||
|
|
||||||
|
belongs_to :location_category
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
class LocationCategory
|
||||||
|
include Mongoid::Document
|
||||||
|
include Mongoid::Timestamps
|
||||||
|
|
||||||
|
# include OrbitCoreLib::ObjectAuthable
|
||||||
|
|
||||||
|
# ObjectAuthTitlesOptions = %W{new_album}
|
||||||
|
# APP_NAME = "album"
|
||||||
|
|
||||||
|
field :name, localize: true
|
||||||
|
|
||||||
|
has_many :location_infos, :autosave => true, :dependent => :destroy
|
||||||
|
|
||||||
|
end
|
|
@ -9,6 +9,8 @@ class LocationInfo
|
||||||
field :longitude, type: Float
|
field :longitude, type: Float
|
||||||
field :latitude, type: Float
|
field :latitude, type: Float
|
||||||
|
|
||||||
|
belongs_to :location_category
|
||||||
|
|
||||||
validates :file, presence: true
|
validates :file, presence: true
|
||||||
validates :longitude,
|
validates :longitude,
|
||||||
numericality: { less_than_or_equal_to: 180.0, greater_than_or_equal_to: -180.0 },
|
numericality: { less_than_or_equal_to: 180.0, greater_than_or_equal_to: -180.0 },
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
<div class="tag clear">
|
||||||
|
<div class="tagitem">
|
||||||
|
<i class="icon-folder-close"></i>
|
||||||
|
<% @site_valid_locales.each do |locale| %>
|
||||||
|
<span class="value" for="<%= locale %>"><%= category.name_translations[locale] rescue nil %> </span>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="action">
|
||||||
|
<%= link_to(t(:delete_), panel_location_back_end_location_category_path(category), :method => :delete, :confirm => t("sure?"), :remote => true, :class => "delete") %>
|
||||||
|
<%= link_to(t(:edit), edit_panel_location_back_end_location_category_path(category), :remote => true, :class => "edit") %>
|
||||||
|
<%#= show_gallery_category_permission_link(category) %>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,2 @@
|
||||||
|
var dom = $("<%= j render :partial => 'category', :object => @category %>");
|
||||||
|
$("div#tags").append(dom);
|
|
@ -0,0 +1,10 @@
|
||||||
|
<%= form_for @category, :url => panel_location_back_end_location_category_path(@category), :remote => true do |f| %>
|
||||||
|
<%= f.fields_for :name_translations do |name| %>
|
||||||
|
<% @site_valid_locales.each do |locale| %>
|
||||||
|
<%= label_tag(locale,t("location.new_category")+"["+I18nVariable.from_locale(locale)+"]") %>
|
||||||
|
<%= name.text_field locale, :value =>(@category.name_translations[locale]) %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
<%= f.submit "Save", :class=> "btn btn-primary temp_save_btn" %>
|
||||||
|
<a href="#" class="btn btn-primary" id="temp_cancel_btn" onclick="return false;"><%= I18n.t(:cancel) %></a>
|
||||||
|
<% end %>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<div id="tags" class="clear">
|
||||||
|
<%= render :partial => 'category', :collection => @categorylist %>
|
||||||
|
</div>
|
||||||
|
<div class="form-actions form-fixed form-inline pagination-right">
|
||||||
|
<%= form_for @new_category, :url => {:action => "create"}, :remote => true do |f| %>
|
||||||
|
<%= f.fields_for :name_translations do |name| %>
|
||||||
|
<% @site_valid_locales.each do |locale| %>
|
||||||
|
<%= label_tag(locale,t("location.new_category")+"["+I18nVariable.from_locale(locale)+"]") %>
|
||||||
|
<%= name.text_field locale %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
<%= f.submit "Save", :class=> "btn btn-primary" %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var deleteCategory = function(a){
|
||||||
|
var parent = a.parent().parent();
|
||||||
|
parent.hide("slide",function(){parent.remove();})
|
||||||
|
}
|
||||||
|
var parent;
|
||||||
|
var editCategory = function(a,data){
|
||||||
|
parent = a.parent().parent();
|
||||||
|
var parenthtml = parent.html();
|
||||||
|
var tempdom = $("<div class='tagitem'></div>");
|
||||||
|
tempdom.append(data);
|
||||||
|
parent.html(tempdom);
|
||||||
|
tempdom.find("a#temp_cancel_btn").click(function(){
|
||||||
|
parent.html(parenthtml);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("#tags div.action a.delete").live('ajax:success', function(){
|
||||||
|
deleteCategory($(this));
|
||||||
|
})
|
||||||
|
$("#tags div.action a.edit").live('ajax:success',function(evt, data, status, xhr){
|
||||||
|
editCategory($(this),data);
|
||||||
|
})
|
||||||
|
})
|
||||||
|
</script>
|
|
@ -0,0 +1,2 @@
|
||||||
|
var dom = $("<%= j render :partial => 'category', :object => @category %>");
|
||||||
|
parent.html(dom.html());
|
|
@ -9,6 +9,12 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="control-group">
|
||||||
|
<label class="control-label" for=""><%= t "category" %></label>
|
||||||
|
<div class="controls">
|
||||||
|
<%= f.select(:location_category_id, LocationCategory.all.collect {|p| [ p.name, p.id ] },{:prompt => t("location.select_category")},:class => "validate input-xlarge") %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label" for=""><%= t 'picture' %></label>
|
<label class="control-label" for=""><%= t 'picture' %></label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
|
@ -20,7 +26,7 @@
|
||||||
<label class="control-label" for=""><%= t 'coordinates' %></label>
|
<label class="control-label" for=""><%= t 'coordinates' %></label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<%= f.text_field :longitude, :class=>"span2", :placeholder => "Longitude" %>
|
<%= f.text_field :longitude, :class=>"span2", :placeholder => "Longitude" %>
|
||||||
<%= f.text_field :latitude, :class=>"span2", :placeholder => "Langitude" %>
|
<%= f.text_field :latitude, :class=>"span2", :placeholder => "Lantitude" %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
<%= form_for @location_info, :url=> panel_location_back_end_locations_path, :html => { :class=>"form-horizontal"} do |f| %>
|
<%= form_for @location_info, :url=> panel_location_back_end_locations_path, :html => { :class=>"form-horizontal",:multipart => true} do |f| %>
|
||||||
<%= render :partial => 'form', :locals => {:f => f} %>
|
<%= render :partial => 'form', :locals => {:f => f} %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
en:
|
en:
|
||||||
location:
|
|
||||||
location: Location
|
location: Location
|
||||||
|
locations: Locations
|
||||||
|
new_category: "New Category"
|
||||||
|
save: Save
|
||||||
|
select_category: "Select Category"
|
|
@ -6,6 +6,7 @@ Rails.application.routes.draw do
|
||||||
match "locations/get_locations" => "locations#get_locations"
|
match "locations/get_locations" => "locations#get_locations"
|
||||||
|
|
||||||
resources :locations
|
resources :locations
|
||||||
|
resources :location_categories
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module Location
|
module Location
|
||||||
OrbitApp.registration "Location",:type=> 'ModuleApp' do
|
OrbitApp.registration "Location",:type=> 'ModuleApp' do
|
||||||
module_label 'location.location'
|
module_label 'locations'
|
||||||
base_url File.expand_path File.dirname(__FILE__)
|
base_url File.expand_path File.dirname(__FILE__)
|
||||||
# personal_plugin :enable => true,:path=>"panel/location/plugin/profile",:i18n=>'admin.location'
|
# personal_plugin :enable => true,:path=>"panel/location/plugin/profile",:i18n=>'admin.location'
|
||||||
|
|
||||||
|
@ -32,12 +32,19 @@ module Location
|
||||||
# end
|
# end
|
||||||
|
|
||||||
side_bar do
|
side_bar do
|
||||||
head_label_i18n 'location.location',:icon_class=>"icons-location"
|
head_label_i18n 'locations',:icon_class=>"icons-location"
|
||||||
available_for [:admin,:guest,:manager,:sub_manager]
|
available_for [:admin,:guest,:manager,:sub_manager]
|
||||||
active_for_controllers ({:private=>['locations']})
|
active_for_controllers ({:private=>['locations']})
|
||||||
|
|
||||||
head_link_path "panel_location_back_end_locations_path"
|
head_link_path "panel_location_back_end_locations_path"
|
||||||
|
|
||||||
|
context_link 'categories',
|
||||||
|
:link_path=>"panel_location_back_end_location_categories_path" ,
|
||||||
|
:priority=>1,
|
||||||
|
:active_for_action=>{:localtion_categories=>:index},
|
||||||
|
:available_for => [:manager]
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue