brighter_planet_layout 0.2.44 → 0.2.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/app/views/layouts/brighter_planet.html.erb +1 -0
- data/brighter_planet_layout.gemspec +44 -43
- data/lib/brighter_planet_layout/railtie.rb +3 -0
- data/lib/brighter_planet_layout.rb +37 -7
- data/{cdn → public}/stylesheets/brighter_planet.css +0 -52
- data/public/stylesheets/fonts.css +47 -0
- metadata +46 -45
- /data/{cdn → public}/favicon.ico +0 -0
- /data/{cdn → public}/javascripts/controls.js +0 -0
- /data/{cdn → public}/javascripts/dragdrop.js +0 -0
- /data/{cdn → public}/javascripts/effects.js +0 -0
- /data/{cdn → public}/javascripts/prototype.rails-2.3.10.js +0 -0
- /data/{cdn → public}/javascripts/prototype.rails-3.0.1.js +0 -0
- /data/{cdn → public}/javascripts/prototype.rails-3.0.3.js +0 -0
- /data/{cdn → public}/javascripts/rails.rails-3.0.1.js +0 -0
- /data/{cdn → public}/javascripts/rails.rails-3.0.3.js +0 -0
- /data/{cdn → public}/stylesheets/fonts/DejaVuSansMono-Oblique.eot +0 -0
- /data/{cdn → public}/stylesheets/fonts/DejaVuSansMono-Oblique.ttf +0 -0
- /data/{cdn → public}/stylesheets/fonts/DejaVuSansMono.eot +0 -0
- /data/{cdn → public}/stylesheets/fonts/DejaVuSansMono.ttf +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitOT-Bold.otf +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitOT-BoldItalic.otf +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitOT-Italic.otf +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitOT-Regular.otf +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro-Bold.eot +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro-Bold.woff +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro-BoldIta.eot +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro-BoldIta.woff +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro-Ita.eot +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro-Ita.woff +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro.eot +0 -0
- /data/{cdn → public}/stylesheets/fonts/KievitWebPro.woff +0 -0
- /data/{cdn → public}/stylesheets/idle.css +0 -0
- /data/{cdn → public}/stylesheets/images/andy.jpg +0 -0
- /data/{cdn → public}/stylesheets/images/bg.png +0 -0
- /data/{cdn → public}/stylesheets/images/cards.png +0 -0
- /data/{cdn → public}/stylesheets/images/derek.jpg +0 -0
- /data/{cdn → public}/stylesheets/images/gears.png +0 -0
- /data/{cdn → public}/stylesheets/images/ian.jpg +0 -0
- /data/{cdn → public}/stylesheets/images/logo.png +0 -0
- /data/{cdn → public}/stylesheets/images/matt.jpg +0 -0
- /data/{cdn → public}/stylesheets/images/meter.png +0 -0
- /data/{cdn → public}/stylesheets/images/patti.jpg +0 -0
- /data/{cdn → public}/stylesheets/images/prism.png +0 -0
- /data/{cdn → public}/stylesheets/images/radiant_earth-small.png +0 -0
- /data/{cdn → public}/stylesheets/images/robbie.jpg +0 -0
- /data/{cdn → public}/stylesheets/images/seamus.jpg +0 -0
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.45
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
6
|
<meta http-equiv="Content-Language" content="en" />
|
|
7
7
|
<!-- START brighter_planet_layout stylesheets -->
|
|
8
|
+
<%= stylesheet_link_tag 'fonts' %>
|
|
8
9
|
<%= stylesheet_link_tag brighter_planet_layout_cdn_url("/stylesheets/brighter_planet.css") %>
|
|
9
10
|
<%= stylesheet_link_tag brighter_planet_layout_cdn_url("/stylesheets/idle.css") %>
|
|
10
11
|
<% if File.exist? File.join(::BrighterPlanetLayout.rails_root, 'public', 'stylesheets', 'application.css') %>
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{brighter_planet_layout}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.45"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Andy Rossmeissl", "Seamus Abshere"]
|
|
12
|
-
s.date = %q{2010-11-
|
|
12
|
+
s.date = %q{2010-11-18}
|
|
13
13
|
s.description = %q{Layouts, partials, stylesheets, and images}
|
|
14
14
|
s.email = %q{andy@rossmeissl.net}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -29,47 +29,6 @@ Gem::Specification.new do |s|
|
|
|
29
29
|
"app/views/layouts/_header.html.erb",
|
|
30
30
|
"app/views/layouts/brighter_planet.html.erb",
|
|
31
31
|
"brighter_planet_layout.gemspec",
|
|
32
|
-
"cdn/favicon.ico",
|
|
33
|
-
"cdn/javascripts/controls.js",
|
|
34
|
-
"cdn/javascripts/dragdrop.js",
|
|
35
|
-
"cdn/javascripts/effects.js",
|
|
36
|
-
"cdn/javascripts/prototype.rails-2.3.10.js",
|
|
37
|
-
"cdn/javascripts/prototype.rails-3.0.1.js",
|
|
38
|
-
"cdn/javascripts/prototype.rails-3.0.3.js",
|
|
39
|
-
"cdn/javascripts/rails.rails-3.0.1.js",
|
|
40
|
-
"cdn/javascripts/rails.rails-3.0.3.js",
|
|
41
|
-
"cdn/stylesheets/brighter_planet.css",
|
|
42
|
-
"cdn/stylesheets/fonts/DejaVuSansMono-Oblique.eot",
|
|
43
|
-
"cdn/stylesheets/fonts/DejaVuSansMono-Oblique.ttf",
|
|
44
|
-
"cdn/stylesheets/fonts/DejaVuSansMono.eot",
|
|
45
|
-
"cdn/stylesheets/fonts/DejaVuSansMono.ttf",
|
|
46
|
-
"cdn/stylesheets/fonts/KievitOT-Bold.otf",
|
|
47
|
-
"cdn/stylesheets/fonts/KievitOT-BoldItalic.otf",
|
|
48
|
-
"cdn/stylesheets/fonts/KievitOT-Italic.otf",
|
|
49
|
-
"cdn/stylesheets/fonts/KievitOT-Regular.otf",
|
|
50
|
-
"cdn/stylesheets/fonts/KievitWebPro-Bold.eot",
|
|
51
|
-
"cdn/stylesheets/fonts/KievitWebPro-Bold.woff",
|
|
52
|
-
"cdn/stylesheets/fonts/KievitWebPro-BoldIta.eot",
|
|
53
|
-
"cdn/stylesheets/fonts/KievitWebPro-BoldIta.woff",
|
|
54
|
-
"cdn/stylesheets/fonts/KievitWebPro-Ita.eot",
|
|
55
|
-
"cdn/stylesheets/fonts/KievitWebPro-Ita.woff",
|
|
56
|
-
"cdn/stylesheets/fonts/KievitWebPro.eot",
|
|
57
|
-
"cdn/stylesheets/fonts/KievitWebPro.woff",
|
|
58
|
-
"cdn/stylesheets/idle.css",
|
|
59
|
-
"cdn/stylesheets/images/andy.jpg",
|
|
60
|
-
"cdn/stylesheets/images/bg.png",
|
|
61
|
-
"cdn/stylesheets/images/cards.png",
|
|
62
|
-
"cdn/stylesheets/images/derek.jpg",
|
|
63
|
-
"cdn/stylesheets/images/gears.png",
|
|
64
|
-
"cdn/stylesheets/images/ian.jpg",
|
|
65
|
-
"cdn/stylesheets/images/logo.png",
|
|
66
|
-
"cdn/stylesheets/images/matt.jpg",
|
|
67
|
-
"cdn/stylesheets/images/meter.png",
|
|
68
|
-
"cdn/stylesheets/images/patti.jpg",
|
|
69
|
-
"cdn/stylesheets/images/prism.png",
|
|
70
|
-
"cdn/stylesheets/images/radiant_earth-small.png",
|
|
71
|
-
"cdn/stylesheets/images/robbie.jpg",
|
|
72
|
-
"cdn/stylesheets/images/seamus.jpg",
|
|
73
32
|
"lib/brighter_planet_layout.rb",
|
|
74
33
|
"lib/brighter_planet_layout/rails.rb",
|
|
75
34
|
"lib/brighter_planet_layout/railtie.rb",
|
|
@@ -83,7 +42,49 @@ Gem::Specification.new do |s|
|
|
|
83
42
|
"public/409.html",
|
|
84
43
|
"public/422.html",
|
|
85
44
|
"public/500.html",
|
|
45
|
+
"public/favicon.ico",
|
|
46
|
+
"public/javascripts/controls.js",
|
|
47
|
+
"public/javascripts/dragdrop.js",
|
|
48
|
+
"public/javascripts/effects.js",
|
|
49
|
+
"public/javascripts/prototype.rails-2.3.10.js",
|
|
50
|
+
"public/javascripts/prototype.rails-3.0.1.js",
|
|
51
|
+
"public/javascripts/prototype.rails-3.0.3.js",
|
|
52
|
+
"public/javascripts/rails.rails-3.0.1.js",
|
|
53
|
+
"public/javascripts/rails.rails-3.0.3.js",
|
|
86
54
|
"public/maintenance.html",
|
|
55
|
+
"public/stylesheets/brighter_planet.css",
|
|
56
|
+
"public/stylesheets/fonts.css",
|
|
57
|
+
"public/stylesheets/fonts/DejaVuSansMono-Oblique.eot",
|
|
58
|
+
"public/stylesheets/fonts/DejaVuSansMono-Oblique.ttf",
|
|
59
|
+
"public/stylesheets/fonts/DejaVuSansMono.eot",
|
|
60
|
+
"public/stylesheets/fonts/DejaVuSansMono.ttf",
|
|
61
|
+
"public/stylesheets/fonts/KievitOT-Bold.otf",
|
|
62
|
+
"public/stylesheets/fonts/KievitOT-BoldItalic.otf",
|
|
63
|
+
"public/stylesheets/fonts/KievitOT-Italic.otf",
|
|
64
|
+
"public/stylesheets/fonts/KievitOT-Regular.otf",
|
|
65
|
+
"public/stylesheets/fonts/KievitWebPro-Bold.eot",
|
|
66
|
+
"public/stylesheets/fonts/KievitWebPro-Bold.woff",
|
|
67
|
+
"public/stylesheets/fonts/KievitWebPro-BoldIta.eot",
|
|
68
|
+
"public/stylesheets/fonts/KievitWebPro-BoldIta.woff",
|
|
69
|
+
"public/stylesheets/fonts/KievitWebPro-Ita.eot",
|
|
70
|
+
"public/stylesheets/fonts/KievitWebPro-Ita.woff",
|
|
71
|
+
"public/stylesheets/fonts/KievitWebPro.eot",
|
|
72
|
+
"public/stylesheets/fonts/KievitWebPro.woff",
|
|
73
|
+
"public/stylesheets/idle.css",
|
|
74
|
+
"public/stylesheets/images/andy.jpg",
|
|
75
|
+
"public/stylesheets/images/bg.png",
|
|
76
|
+
"public/stylesheets/images/cards.png",
|
|
77
|
+
"public/stylesheets/images/derek.jpg",
|
|
78
|
+
"public/stylesheets/images/gears.png",
|
|
79
|
+
"public/stylesheets/images/ian.jpg",
|
|
80
|
+
"public/stylesheets/images/logo.png",
|
|
81
|
+
"public/stylesheets/images/matt.jpg",
|
|
82
|
+
"public/stylesheets/images/meter.png",
|
|
83
|
+
"public/stylesheets/images/patti.jpg",
|
|
84
|
+
"public/stylesheets/images/prism.png",
|
|
85
|
+
"public/stylesheets/images/radiant_earth-small.png",
|
|
86
|
+
"public/stylesheets/images/robbie.jpg",
|
|
87
|
+
"public/stylesheets/images/seamus.jpg",
|
|
87
88
|
"rails/init.rb",
|
|
88
89
|
"test/helper.rb",
|
|
89
90
|
"test/test_brighter_planet_layout.rb"
|
|
@@ -5,6 +5,9 @@ module BrighterPlanetLayout
|
|
|
5
5
|
end
|
|
6
6
|
initializer 'brighter_planet_layout' do |app|
|
|
7
7
|
app.paths.app.views.push ::BrighterPlanetLayout.view_path
|
|
8
|
+
if ::BrighterPlanetLayout.serve_static_files_using_rack?
|
|
9
|
+
app.middleware.use '::ActionDispatch::Static', ::BrighterPlanetLayout.public_path
|
|
10
|
+
end
|
|
8
11
|
if ::BrighterPlanetLayout.copy_static_files?
|
|
9
12
|
::BrighterPlanetLayout.copy_static_files_to_web_server_document_root
|
|
10
13
|
end
|
|
@@ -13,10 +13,6 @@ module BrighterPlanetLayout
|
|
|
13
13
|
CDN = 'do1ircpq72156.cloudfront.net'
|
|
14
14
|
S3_BUCKET = 'brighterplanetlayout'
|
|
15
15
|
|
|
16
|
-
def self.cdn_path
|
|
17
|
-
::File.join GEM_ROOT, 'cdn'
|
|
18
|
-
end
|
|
19
|
-
|
|
20
16
|
def self.view_path
|
|
21
17
|
::File.join GEM_ROOT, 'app', 'views'
|
|
22
18
|
end
|
|
@@ -55,13 +51,17 @@ module BrighterPlanetLayout
|
|
|
55
51
|
end
|
|
56
52
|
|
|
57
53
|
def self.copy_static_files?
|
|
58
|
-
not heroku? and not layout_warning_installed?
|
|
54
|
+
not heroku? and not serve_static_files_using_rack? and not layout_warning_installed?
|
|
59
55
|
end
|
|
60
56
|
|
|
61
57
|
def self.heroku?
|
|
62
58
|
::File.readable? '/home/heroku_rack/heroku.ru'
|
|
63
59
|
end
|
|
64
60
|
|
|
61
|
+
def self.serve_static_files_using_rack?
|
|
62
|
+
not ::Rails.env.production? and not heroku?
|
|
63
|
+
end
|
|
64
|
+
|
|
65
65
|
def self.application_name
|
|
66
66
|
(::Rails::VERSION::MAJOR == 3) ? ::Rails.application.name : ::APPLICATION_NAME
|
|
67
67
|
end
|
|
@@ -104,16 +104,46 @@ module BrighterPlanetLayout
|
|
|
104
104
|
end
|
|
105
105
|
|
|
106
106
|
# sabshere 11/17/10 not worth it --cache-control=\"public, max-age=7776000\"
|
|
107
|
-
# sabshere 11/17/10 don't --delete
|
|
108
107
|
def self.update_s3
|
|
109
108
|
# ENV['AWS_ACCESS_KEY_ID'] =
|
|
110
109
|
# ENV['AWS_SECRET_ACCESS_KEY'] =
|
|
111
110
|
# ENV['AWS_ACCESS_KEY_ID'] =
|
|
112
111
|
# ENV['AWS_SECRET_ACCESS_KEY'] =
|
|
113
112
|
ENV['S3SYNC_NATIVE_CHARSET'] = 'UTF-8'
|
|
114
|
-
cmd = "ruby #{ENV['S3SYNC_DIR']}/s3sync.rb -v -r --ssl --public-read #{
|
|
113
|
+
cmd = "ruby #{ENV['S3SYNC_DIR']}/s3sync.rb --exclude=\"ai\" -v -r --ssl --public-read #{public_path}/ #{S3_BUCKET}:#{VERSION}/"
|
|
115
114
|
`#{cmd}`
|
|
116
115
|
end
|
|
116
|
+
|
|
117
|
+
# sabshere 11/18/10 access control header doesn't work
|
|
118
|
+
# vidalia:~/github/brighter_planet_layout (master) $ ruby ~/bp/propsgod/s3sync/s3cmd.rb -v -s put brighterplanetlayout:0.2.43/stylesheets/fonts/KievitWebPro.woff public/stylesheets/fonts/KievitWebPro.woff x-amz-acl:public-read "Access-Control-Allow-Origin:*"
|
|
119
|
+
# put to key brighterplanetlayout:0.2.43/stylesheets/fonts/KievitWebPro.woff from public/stylesheets/fonts/KievitWebPro.woff {"Access-Control-Allow-Origin"=>"*", "x-amz-acl"=>"public-read", "Content-Length"=>"61924"}
|
|
120
|
+
#
|
|
121
|
+
# vidalia:~ $ curl -O -v http://brighterplanetlayout.s3.amazonaws.com/0.2.43/stylesheets/fonts/KievitWebPro.woff* About to connect() to brighterplanetlayout.s3.amazonaws.com port 80 (#0)
|
|
122
|
+
# * Trying 72.21.207.165... % Total % Received % Xferd Average Speed Time Time Time Current
|
|
123
|
+
# Dload Upload Total Spent Left Speed
|
|
124
|
+
# 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0connected
|
|
125
|
+
# * Connected to brighterplanetlayout.s3.amazonaws.com (72.21.207.165) port 80 (#0)
|
|
126
|
+
# > GET /0.2.43/stylesheets/fonts/KievitWebPro.woff HTTP/1.1
|
|
127
|
+
# > User-Agent: curl/7.20.0 (i386-apple-darwin9.8.0) libcurl/7.20.0 OpenSSL/0.9.8m zlib/1.2.3 libidn/1.16
|
|
128
|
+
# > Host: brighterplanetlayout.s3.amazonaws.com
|
|
129
|
+
# > Accept: */*
|
|
130
|
+
# >
|
|
131
|
+
# < HTTP/1.1 200 OK
|
|
132
|
+
# < x-amz-id-2: lVNwntUjGX/0UxlygqXa+8yR2hFpAV+EZAzITK/ZMJQTnTOuJXvHEULNgPr1r9vt
|
|
133
|
+
# < x-amz-request-id: 2B46C5DEBD6083E3
|
|
134
|
+
# < Date: Thu, 18 Nov 2010 15:36:14 GMT
|
|
135
|
+
# < Last-Modified: Thu, 18 Nov 2010 15:33:11 GMT
|
|
136
|
+
# < ETag: "83c664104e2127f1b8519b653adc98dd"
|
|
137
|
+
# < Accept-Ranges: bytes
|
|
138
|
+
# < Content-Type:
|
|
139
|
+
# < Content-Length: 61924
|
|
140
|
+
# < Server: AmazonS3
|
|
141
|
+
# <
|
|
142
|
+
# { [data not shown]
|
|
143
|
+
# 100 61924 100 61924 0 0 138k 0 --:--:-- --:--:-- --:--:-- 216k* Connection #0 to host brighterplanetlayout.s3.amazonaws.com left intact
|
|
144
|
+
#
|
|
145
|
+
# * Closing connection #0
|
|
146
|
+
# vidalia:~ $
|
|
117
147
|
end
|
|
118
148
|
|
|
119
149
|
if defined? ::Rails::Railtie and ::Rails::VERSION::MAJOR == 3
|
|
@@ -1,55 +1,3 @@
|
|
|
1
|
-
/*------------*/
|
|
2
|
-
|
|
3
|
-
@font-face {
|
|
4
|
-
font-family: 'Brighter Planet';
|
|
5
|
-
src: url('fonts/KievitWebPro.eot');
|
|
6
|
-
src: local('☺'), url("fonts/KievitWebPro.woff") format("woff"), url("fonts/KievitOT-Regular.otf") format("opentype");
|
|
7
|
-
font-weight: normal;
|
|
8
|
-
font-style: normal;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
@font-face {
|
|
12
|
-
font-family: 'Brighter Planet';
|
|
13
|
-
src: url('fonts/KievitWebPro-Bold.eot');
|
|
14
|
-
src: local('☺'), url("fonts/KievitWebPro-Bold.woff") format("woff"), url("fonts/KievitOT-Bold.otf") format("opentype");
|
|
15
|
-
font-weight: bold;
|
|
16
|
-
font-style: normal;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@font-face {
|
|
20
|
-
font-family: 'Brighter Planet';
|
|
21
|
-
src: url('fonts/KievitWebPro-BoldIta.eot');
|
|
22
|
-
src: local('☺'), url("fonts/KievitWebPro-BoldIta.woff") format("woff"), url("fonts/KievitOT-BoldItalic.otf") format("opentype");
|
|
23
|
-
font-weight: bold;
|
|
24
|
-
font-style: italic;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@font-face {
|
|
28
|
-
font-family: 'Brighter Planet';
|
|
29
|
-
src: url('fonts/KievitWebPro-Ita.eot');
|
|
30
|
-
src: local('☺'), url("fonts/KievitWebPro-Ita.woff") format("woff"), url("fonts/KievitOT-Italic.otf") format("opentype");
|
|
31
|
-
font-weight: normal;
|
|
32
|
-
font-style: italic;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
@font-face {
|
|
36
|
-
font-family: 'DejaVu Mono';
|
|
37
|
-
src: url('fonts/DejaVuSansMono.eot');
|
|
38
|
-
src: local('☺'), url("fonts/DejaVuSansMono.ttf") format("opentype");
|
|
39
|
-
font-weight: normal;
|
|
40
|
-
font-style: normal;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@font-face {
|
|
44
|
-
font-family: 'DejaVu Mono';
|
|
45
|
-
src: url('fonts/DejaVuSansMono-Oblique.eot');
|
|
46
|
-
src: local('☺'), url("fonts/DejaVuSansMono-Oblique.ttf") format("opentype");
|
|
47
|
-
font-weight: normal;
|
|
48
|
-
font-style: italic;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/* ---------- */
|
|
52
|
-
|
|
53
1
|
body {
|
|
54
2
|
margin: 0;
|
|
55
3
|
font-size: 13px;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: 'Brighter Planet';
|
|
3
|
+
src: url('fonts/KievitWebPro.eot');
|
|
4
|
+
src: local('☺'), url("fonts/KievitWebPro.woff") format("woff"), url("fonts/KievitOT-Regular.otf") format("opentype");
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
font-style: normal;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: 'Brighter Planet';
|
|
11
|
+
src: url('fonts/KievitWebPro-Bold.eot');
|
|
12
|
+
src: local('☺'), url("fonts/KievitWebPro-Bold.woff") format("woff"), url("fonts/KievitOT-Bold.otf") format("opentype");
|
|
13
|
+
font-weight: bold;
|
|
14
|
+
font-style: normal;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@font-face {
|
|
18
|
+
font-family: 'Brighter Planet';
|
|
19
|
+
src: url('fonts/KievitWebPro-BoldIta.eot');
|
|
20
|
+
src: local('☺'), url("fonts/KievitWebPro-BoldIta.woff") format("woff"), url("fonts/KievitOT-BoldItalic.otf") format("opentype");
|
|
21
|
+
font-weight: bold;
|
|
22
|
+
font-style: italic;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@font-face {
|
|
26
|
+
font-family: 'Brighter Planet';
|
|
27
|
+
src: url('fonts/KievitWebPro-Ita.eot');
|
|
28
|
+
src: local('☺'), url("fonts/KievitWebPro-Ita.woff") format("woff"), url("fonts/KievitOT-Italic.otf") format("opentype");
|
|
29
|
+
font-weight: normal;
|
|
30
|
+
font-style: italic;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: 'DejaVu Mono';
|
|
35
|
+
src: url('fonts/DejaVuSansMono.eot');
|
|
36
|
+
src: local('☺'), url("fonts/DejaVuSansMono.ttf") format("opentype");
|
|
37
|
+
font-weight: normal;
|
|
38
|
+
font-style: normal;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: 'DejaVu Mono';
|
|
43
|
+
src: url('fonts/DejaVuSansMono-Oblique.eot');
|
|
44
|
+
src: local('☺'), url("fonts/DejaVuSansMono-Oblique.ttf") format("opentype");
|
|
45
|
+
font-weight: normal;
|
|
46
|
+
font-style: italic;
|
|
47
|
+
}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: brighter_planet_layout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 77
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 45
|
|
10
|
+
version: 0.2.45
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Andy Rossmeissl
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2010-11-
|
|
19
|
+
date: 2010-11-18 00:00:00 -06:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -73,47 +73,6 @@ files:
|
|
|
73
73
|
- app/views/layouts/_header.html.erb
|
|
74
74
|
- app/views/layouts/brighter_planet.html.erb
|
|
75
75
|
- brighter_planet_layout.gemspec
|
|
76
|
-
- cdn/favicon.ico
|
|
77
|
-
- cdn/javascripts/controls.js
|
|
78
|
-
- cdn/javascripts/dragdrop.js
|
|
79
|
-
- cdn/javascripts/effects.js
|
|
80
|
-
- cdn/javascripts/prototype.rails-2.3.10.js
|
|
81
|
-
- cdn/javascripts/prototype.rails-3.0.1.js
|
|
82
|
-
- cdn/javascripts/prototype.rails-3.0.3.js
|
|
83
|
-
- cdn/javascripts/rails.rails-3.0.1.js
|
|
84
|
-
- cdn/javascripts/rails.rails-3.0.3.js
|
|
85
|
-
- cdn/stylesheets/brighter_planet.css
|
|
86
|
-
- cdn/stylesheets/fonts/DejaVuSansMono-Oblique.eot
|
|
87
|
-
- cdn/stylesheets/fonts/DejaVuSansMono-Oblique.ttf
|
|
88
|
-
- cdn/stylesheets/fonts/DejaVuSansMono.eot
|
|
89
|
-
- cdn/stylesheets/fonts/DejaVuSansMono.ttf
|
|
90
|
-
- cdn/stylesheets/fonts/KievitOT-Bold.otf
|
|
91
|
-
- cdn/stylesheets/fonts/KievitOT-BoldItalic.otf
|
|
92
|
-
- cdn/stylesheets/fonts/KievitOT-Italic.otf
|
|
93
|
-
- cdn/stylesheets/fonts/KievitOT-Regular.otf
|
|
94
|
-
- cdn/stylesheets/fonts/KievitWebPro-Bold.eot
|
|
95
|
-
- cdn/stylesheets/fonts/KievitWebPro-Bold.woff
|
|
96
|
-
- cdn/stylesheets/fonts/KievitWebPro-BoldIta.eot
|
|
97
|
-
- cdn/stylesheets/fonts/KievitWebPro-BoldIta.woff
|
|
98
|
-
- cdn/stylesheets/fonts/KievitWebPro-Ita.eot
|
|
99
|
-
- cdn/stylesheets/fonts/KievitWebPro-Ita.woff
|
|
100
|
-
- cdn/stylesheets/fonts/KievitWebPro.eot
|
|
101
|
-
- cdn/stylesheets/fonts/KievitWebPro.woff
|
|
102
|
-
- cdn/stylesheets/idle.css
|
|
103
|
-
- cdn/stylesheets/images/andy.jpg
|
|
104
|
-
- cdn/stylesheets/images/bg.png
|
|
105
|
-
- cdn/stylesheets/images/cards.png
|
|
106
|
-
- cdn/stylesheets/images/derek.jpg
|
|
107
|
-
- cdn/stylesheets/images/gears.png
|
|
108
|
-
- cdn/stylesheets/images/ian.jpg
|
|
109
|
-
- cdn/stylesheets/images/logo.png
|
|
110
|
-
- cdn/stylesheets/images/matt.jpg
|
|
111
|
-
- cdn/stylesheets/images/meter.png
|
|
112
|
-
- cdn/stylesheets/images/patti.jpg
|
|
113
|
-
- cdn/stylesheets/images/prism.png
|
|
114
|
-
- cdn/stylesheets/images/radiant_earth-small.png
|
|
115
|
-
- cdn/stylesheets/images/robbie.jpg
|
|
116
|
-
- cdn/stylesheets/images/seamus.jpg
|
|
117
76
|
- lib/brighter_planet_layout.rb
|
|
118
77
|
- lib/brighter_planet_layout/rails.rb
|
|
119
78
|
- lib/brighter_planet_layout/railtie.rb
|
|
@@ -127,7 +86,49 @@ files:
|
|
|
127
86
|
- public/409.html
|
|
128
87
|
- public/422.html
|
|
129
88
|
- public/500.html
|
|
89
|
+
- public/favicon.ico
|
|
90
|
+
- public/javascripts/controls.js
|
|
91
|
+
- public/javascripts/dragdrop.js
|
|
92
|
+
- public/javascripts/effects.js
|
|
93
|
+
- public/javascripts/prototype.rails-2.3.10.js
|
|
94
|
+
- public/javascripts/prototype.rails-3.0.1.js
|
|
95
|
+
- public/javascripts/prototype.rails-3.0.3.js
|
|
96
|
+
- public/javascripts/rails.rails-3.0.1.js
|
|
97
|
+
- public/javascripts/rails.rails-3.0.3.js
|
|
130
98
|
- public/maintenance.html
|
|
99
|
+
- public/stylesheets/brighter_planet.css
|
|
100
|
+
- public/stylesheets/fonts.css
|
|
101
|
+
- public/stylesheets/fonts/DejaVuSansMono-Oblique.eot
|
|
102
|
+
- public/stylesheets/fonts/DejaVuSansMono-Oblique.ttf
|
|
103
|
+
- public/stylesheets/fonts/DejaVuSansMono.eot
|
|
104
|
+
- public/stylesheets/fonts/DejaVuSansMono.ttf
|
|
105
|
+
- public/stylesheets/fonts/KievitOT-Bold.otf
|
|
106
|
+
- public/stylesheets/fonts/KievitOT-BoldItalic.otf
|
|
107
|
+
- public/stylesheets/fonts/KievitOT-Italic.otf
|
|
108
|
+
- public/stylesheets/fonts/KievitOT-Regular.otf
|
|
109
|
+
- public/stylesheets/fonts/KievitWebPro-Bold.eot
|
|
110
|
+
- public/stylesheets/fonts/KievitWebPro-Bold.woff
|
|
111
|
+
- public/stylesheets/fonts/KievitWebPro-BoldIta.eot
|
|
112
|
+
- public/stylesheets/fonts/KievitWebPro-BoldIta.woff
|
|
113
|
+
- public/stylesheets/fonts/KievitWebPro-Ita.eot
|
|
114
|
+
- public/stylesheets/fonts/KievitWebPro-Ita.woff
|
|
115
|
+
- public/stylesheets/fonts/KievitWebPro.eot
|
|
116
|
+
- public/stylesheets/fonts/KievitWebPro.woff
|
|
117
|
+
- public/stylesheets/idle.css
|
|
118
|
+
- public/stylesheets/images/andy.jpg
|
|
119
|
+
- public/stylesheets/images/bg.png
|
|
120
|
+
- public/stylesheets/images/cards.png
|
|
121
|
+
- public/stylesheets/images/derek.jpg
|
|
122
|
+
- public/stylesheets/images/gears.png
|
|
123
|
+
- public/stylesheets/images/ian.jpg
|
|
124
|
+
- public/stylesheets/images/logo.png
|
|
125
|
+
- public/stylesheets/images/matt.jpg
|
|
126
|
+
- public/stylesheets/images/meter.png
|
|
127
|
+
- public/stylesheets/images/patti.jpg
|
|
128
|
+
- public/stylesheets/images/prism.png
|
|
129
|
+
- public/stylesheets/images/radiant_earth-small.png
|
|
130
|
+
- public/stylesheets/images/robbie.jpg
|
|
131
|
+
- public/stylesheets/images/seamus.jpg
|
|
131
132
|
- rails/init.rb
|
|
132
133
|
- test/helper.rb
|
|
133
134
|
- test/test_brighter_planet_layout.rb
|
/data/{cdn → public}/favicon.ico
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|