
49 |
├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── config ├── capatross.yml ├── deploy.rb └── deploy │ └── prod.rb └── public ├── images ├── I-Three │ ├── ex_logo_i3_1000x500.png │ ├── ex_logo_i3_240x120.png │ ├── ex_logo_i3_500x250.png │ ├── ex_logo_i3_trans_1000x500.png │ ├── ex_logo_i3_trans_240x120.png │ └── ex_logo_i3_trans_500x250.png ├── eX_ARLN_logo_200x110.png ├── eX_ARLN_logo_600x331.png ├── eXtension-logo-transparent.png ├── eXtension_logo_600x240.png ├── eXtension_logo_600x331.png ├── extension_icon_256.png ├── extension_logo_hires.png ├── hex_pattern.png ├── logos │ ├── ex_i-three_w_tagline240x132.png │ ├── ex_i-three_w_tagline_1000x550.png │ └── ex_i-three_w_tagline_500x275.png ├── micro_logo_190x60.jpg ├── micro_logo_190x60.png └── watermark │ └── extension_watermark.png ├── index.html ├── javascripts ├── global_shortcuts_bar_internal.js └── global_shortcuts_bar_public.js └── media ├── eXtension_logo_kit.zip └── eXtension_open_HD_1080.mov /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore capatross logs 2 | /capatross_logs 3 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | assets 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.2.4 2 | -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'railsless-deploy' 3 | Dir['vendor/gems/*/recipes/*.rb','vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } 4 | load 'config/deploy' # remove this line to skip loading any of the default tasks 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gem 'railsless-deploy' 4 | gem 'capatross', source: 'https://engineering.extension.org/rubygems' 5 | gem 'capistrano', "2.15.5" 6 | gem 'mysql2' 7 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: http://rubygems.org/ 3 | remote: https://engineering.extension.org/rubygems/ 4 | specs: 5 | capatross (1.6.1) 6 | capistrano (~> 2.11) 7 | grit (>= 2.4) 8 | rest-client (>= 1.6.7) 9 | thor (>= 0.16.0) 10 | capistrano (2.15.5) 11 | highline 12 | net-scp (>= 1.0.0) 13 | net-sftp (>= 2.0.0) 14 | net-ssh (>= 2.0.14) 15 | net-ssh-gateway (>= 1.1.0) 16 | diff-lcs (1.2.5) 17 | domain_name (0.5.20190701) 18 | unf (>= 0.0.5, < 1.0.0) 19 | grit (2.5.0) 20 | diff-lcs (~> 1.1) 21 | mime-types (~> 1.15) 22 | posix-spawn (~> 0.3.6) 23 | highline (1.6.21) 24 | http-accept (1.7.0) 25 | http-cookie (1.0.3) 26 | domain_name (~> 0.5) 27 | mime-types (1.25.1) 28 | mysql2 (0.3.16) 29 | net-scp (1.2.1) 30 | net-ssh (>= 2.6.5) 31 | net-sftp (2.1.2) 32 | net-ssh (>= 2.6.5) 33 | net-ssh (2.9.1) 34 | net-ssh-gateway (1.2.0) 35 | net-ssh (>= 2.6.5) 36 | netrc (0.11.0) 37 | posix-spawn (0.3.8) 38 | railsless-deploy (1.1.3) 39 | rest-client (2.1.0) 40 | http-accept (>= 1.7.0, < 2.0) 41 | http-cookie (>= 1.0.2, < 2.0) 42 | mime-types (>= 1.16, < 4.0) 43 | netrc (~> 0.8) 44 | thor (0.19.1) 45 | unf (0.1.4) 46 | unf_ext 47 | unf_ext (0.0.7.6) 48 | 49 | PLATFORMS 50 | ruby 51 | 52 | DEPENDENCIES 53 | capatross! 54 | capistrano (= 2.15.5) 55 | mysql2 56 | railsless-deploy 57 | 58 | BUNDLED WITH 59 | 1.16.2 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | eXtension Assets 2 | ================ 3 | 4 | This repository includes a set of global assets used by all other applications. 5 | 6 | The maintenance message is used as a reverse proxy by sites in maintenance mode. 7 | -------------------------------------------------------------------------------- /config/capatross.yml: -------------------------------------------------------------------------------- 1 | #### config/capatross.yml 2 | ## User this file for shared campout settings for the project. It's 3 | ## recommended that you add this file to your SCM. 4 | ## 5 | ## personal overrides or other settings can be placed 6 | ## within a config/capatross.local.yml file. 7 | ## 8 | ### global action settings 9 | ## 10 | ## copy_log_to_server: 11 | ## If set to true - the cap deployment log will be copied to a "capatross_logs" 12 | ## subdirectory of your #{shared_path}. The filename will be in the format: 13 | ## #{capatross_id}.json 14 | ## default: 15 | # copy_log_to_server: true 16 | ## 17 | ## appkey: 18 | ## The application identifier - obtained from the albatross data 19 | ## default: 20 | appkey: '26454c2f78763e94b1b590f6be01a4adec44cfc7' 21 | ## 22 | ## albatross_uri: 23 | ## The uri for the albatross server. Override in capatross.local.yml for 24 | ## local development 25 | ## default: 26 | # albatross_uri: 'http://deploys.extension.org' 27 | -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- 1 | set :stages, %w(prod) 2 | set :default_stage, "prod" 3 | require 'capistrano/ext/multistage' 4 | 5 | require 'capatross' 6 | 7 | set :application, "assets" 8 | set :repository, "git@github.com:extension/assets.git" 9 | set :scm, "git" 10 | set :user, "pacecar" 11 | set :gateway, 'deploy.extension.org' 12 | set :use_sudo, false 13 | set :keep_releases, 3 14 | ssh_options[:forward_agent] = true 15 | 16 | after "deploy:update_code", "deploy:cleanup" 17 | 18 | 19 | namespace :deploy do 20 | 21 | [:start, :stop].each do |t| 22 | desc "#{t} : no-op " 23 | task t, :roles => :app do ; end 24 | end 25 | 26 | 27 | end 28 | -------------------------------------------------------------------------------- /config/deploy/prod.rb: -------------------------------------------------------------------------------- 1 | set :deploy_to, '/services/assets/' 2 | server 'assets.awsi.extension.org', :app, :web, :db, :primary => true 3 | set :branch, 'master' 4 | -------------------------------------------------------------------------------- /public/images/I-Three/ex_logo_i3_1000x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/I-Three/ex_logo_i3_1000x500.png -------------------------------------------------------------------------------- /public/images/I-Three/ex_logo_i3_240x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/I-Three/ex_logo_i3_240x120.png -------------------------------------------------------------------------------- /public/images/I-Three/ex_logo_i3_500x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/I-Three/ex_logo_i3_500x250.png -------------------------------------------------------------------------------- /public/images/I-Three/ex_logo_i3_trans_1000x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/I-Three/ex_logo_i3_trans_1000x500.png -------------------------------------------------------------------------------- /public/images/I-Three/ex_logo_i3_trans_240x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/I-Three/ex_logo_i3_trans_240x120.png -------------------------------------------------------------------------------- /public/images/I-Three/ex_logo_i3_trans_500x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/I-Three/ex_logo_i3_trans_500x250.png -------------------------------------------------------------------------------- /public/images/eX_ARLN_logo_200x110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/eX_ARLN_logo_200x110.png -------------------------------------------------------------------------------- /public/images/eX_ARLN_logo_600x331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/eX_ARLN_logo_600x331.png -------------------------------------------------------------------------------- /public/images/eXtension-logo-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/eXtension-logo-transparent.png -------------------------------------------------------------------------------- /public/images/eXtension_logo_600x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/eXtension_logo_600x240.png -------------------------------------------------------------------------------- /public/images/eXtension_logo_600x331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/eXtension_logo_600x331.png -------------------------------------------------------------------------------- /public/images/extension_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/extension_icon_256.png -------------------------------------------------------------------------------- /public/images/extension_logo_hires.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/extension_logo_hires.png -------------------------------------------------------------------------------- /public/images/hex_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/hex_pattern.png -------------------------------------------------------------------------------- /public/images/logos/ex_i-three_w_tagline240x132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/logos/ex_i-three_w_tagline240x132.png -------------------------------------------------------------------------------- /public/images/logos/ex_i-three_w_tagline_1000x550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/logos/ex_i-three_w_tagline_1000x550.png -------------------------------------------------------------------------------- /public/images/logos/ex_i-three_w_tagline_500x275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/logos/ex_i-three_w_tagline_500x275.png -------------------------------------------------------------------------------- /public/images/micro_logo_190x60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/micro_logo_190x60.jpg -------------------------------------------------------------------------------- /public/images/micro_logo_190x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/micro_logo_190x60.png -------------------------------------------------------------------------------- /public/images/watermark/extension_watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/extension/assets/f4f67ca4d096f4cf8e39ec90d46947b86f024f9c/public/images/watermark/extension_watermark.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |