Sha256: 439aa56a2539691796e396d2c6067c45a8a11fe6692223d1513f1a86a74d6987
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
# encoding: utf-8 require 'sinatra/base' require 'erb' module WebTranslateIt class Server < Sinatra::Base attr_reader :config dir = File.dirname(File.expand_path(__FILE__)) set :views, "#{dir}/views" set :public, "#{dir}/public" set :static, true set :lock, true helpers do def wti_root "" end def highlight(value, expected) return if value.nil? print_value = value == true ? "Yes" : "No" value == expected ? "<em>#{print_value}</em>" : "<em class=\"information\">#{print_value}</em>" end end get '/' do @config = WebTranslateIt::Configuration.new('.') erb :index, :locals => { :config => config, :locale => "" } end get '/:locale' do @config = WebTranslateIt::Configuration.new('.') erb :index, :locals => { :config => config, :locale => params[:locale] } end post '/pull/' do @config = WebTranslateIt::Configuration.new('.') `#{config.before_pull}` if config.before_pull `wti pull` `#{config.after_pull}` if config.after_pull redirect "/" end post '/pull/:locale' do @config = WebTranslateIt::Configuration.new('.') `#{config.before_pull}` if config.before_pull `wti pull -l #{params[:locale]}` `#{config.after_pull}` if config.after_pull redirect "/#{params[:locale]}" end def self.start(host, port) logger = ::File.open("log/webtranslateit.log", "a+") STDOUT.reopen(logger) STDERR.reopen(logger) WebTranslateIt::Server.run! :host => host, :port => port end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
web_translate_it-1.7.1.5 | lib/web_translate_it/server.rb |