gollum 1.4.2 → 1.4.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gollum might be problematic. Click here for more details.

Files changed (24) hide show
  1. data/README.md +6 -0
  2. data/gollum.gemspec +20 -20
  3. data/lib/gollum.rb +5 -1
  4. data/lib/gollum/frontend/app.rb +1 -1
  5. data/lib/gollum/frontend/public/{css → gollum/css}/dialog.css +5 -5
  6. data/lib/gollum/frontend/public/{css → gollum/css}/editor.css +31 -31
  7. data/lib/gollum/frontend/public/{css → gollum/css}/gollum.css +85 -85
  8. data/lib/gollum/frontend/public/{css → gollum/css}/ie7.css +0 -0
  9. data/lib/gollum/frontend/public/{css → gollum/css}/template.css +13 -13
  10. data/lib/gollum/frontend/public/{images → gollum/images}/icon-sprite.png +0 -0
  11. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/gollum.editor.js +0 -0
  12. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/asciidoc.js +0 -0
  13. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/creole.js +0 -0
  14. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/markdown.js +0 -0
  15. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/org.js +0 -0
  16. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/pod.js +0 -0
  17. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/rdoc.js +0 -0
  18. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/editor/langs/textile.js +0 -0
  19. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/gollum.dialog.js +0 -0
  20. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/gollum.js +0 -0
  21. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/gollum.placeholder.js +15 -15
  22. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/jquery.color.js +4 -4
  23. data/lib/gollum/frontend/public/{javascript → gollum/javascript}/jquery.js +124 -124
  24. metadata +23 -23
data/README.md CHANGED
@@ -475,3 +475,9 @@ your changes merged back into core is as follows:
475
475
  1. If necessary, rebase your commits into logical chunks, without errors
476
476
  1. Push the branch up to GitHub
477
477
  1. Send a pull request to the github/gollum project.
478
+
479
+ ## RELEASING
480
+
481
+ $ rake gemspec
482
+ $ gem build gollum.gemspec
483
+ $ gem push gollum-X.Y.Z.gem
data/gollum.gemspec CHANGED
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.5'
5
5
 
6
6
  s.name = 'gollum'
7
- s.version = '1.4.2'
7
+ s.version = '1.4.3'
8
8
  s.date = '2012-04-25'
9
9
  s.rubyforge_project = 'gollum'
10
10
 
@@ -56,25 +56,25 @@ Gem::Specification.new do |s|
56
56
  lib/gollum/committer.rb
57
57
  lib/gollum/file.rb
58
58
  lib/gollum/frontend/app.rb
59
- lib/gollum/frontend/public/css/dialog.css
60
- lib/gollum/frontend/public/css/editor.css
61
- lib/gollum/frontend/public/css/gollum.css
62
- lib/gollum/frontend/public/css/ie7.css
63
- lib/gollum/frontend/public/css/template.css
64
- lib/gollum/frontend/public/images/icon-sprite.png
65
- lib/gollum/frontend/public/javascript/editor/gollum.editor.js
66
- lib/gollum/frontend/public/javascript/editor/langs/asciidoc.js
67
- lib/gollum/frontend/public/javascript/editor/langs/creole.js
68
- lib/gollum/frontend/public/javascript/editor/langs/markdown.js
69
- lib/gollum/frontend/public/javascript/editor/langs/org.js
70
- lib/gollum/frontend/public/javascript/editor/langs/pod.js
71
- lib/gollum/frontend/public/javascript/editor/langs/rdoc.js
72
- lib/gollum/frontend/public/javascript/editor/langs/textile.js
73
- lib/gollum/frontend/public/javascript/gollum.dialog.js
74
- lib/gollum/frontend/public/javascript/gollum.js
75
- lib/gollum/frontend/public/javascript/gollum.placeholder.js
76
- lib/gollum/frontend/public/javascript/jquery.color.js
77
- lib/gollum/frontend/public/javascript/jquery.js
59
+ lib/gollum/frontend/public/gollum/css/dialog.css
60
+ lib/gollum/frontend/public/gollum/css/editor.css
61
+ lib/gollum/frontend/public/gollum/css/gollum.css
62
+ lib/gollum/frontend/public/gollum/css/ie7.css
63
+ lib/gollum/frontend/public/gollum/css/template.css
64
+ lib/gollum/frontend/public/gollum/images/icon-sprite.png
65
+ lib/gollum/frontend/public/gollum/javascript/editor/gollum.editor.js
66
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/asciidoc.js
67
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/creole.js
68
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/markdown.js
69
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/org.js
70
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/pod.js
71
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/rdoc.js
72
+ lib/gollum/frontend/public/gollum/javascript/editor/langs/textile.js
73
+ lib/gollum/frontend/public/gollum/javascript/gollum.dialog.js
74
+ lib/gollum/frontend/public/gollum/javascript/gollum.js
75
+ lib/gollum/frontend/public/gollum/javascript/gollum.placeholder.js
76
+ lib/gollum/frontend/public/gollum/javascript/jquery.color.js
77
+ lib/gollum/frontend/public/gollum/javascript/jquery.js
78
78
  lib/gollum/frontend/templates/compare.mustache
79
79
  lib/gollum/frontend/templates/create.mustache
80
80
  lib/gollum/frontend/templates/edit.mustache
data/lib/gollum.rb CHANGED
@@ -21,7 +21,11 @@ require File.expand_path('../gollum/tex', __FILE__)
21
21
  require File.expand_path('../gollum/web_sequence_diagram', __FILE__)
22
22
 
23
23
  module Gollum
24
- VERSION = '1.4.2'
24
+ VERSION = '1.4.3'
25
+
26
+ def self.assets_path
27
+ ::File.expand_path('gollum/frontend/public', ::File.dirname(__FILE__))
28
+ end
25
29
 
26
30
  class Error < StandardError; end
27
31
 
@@ -13,7 +13,7 @@ module Precious
13
13
  dir = File.dirname(File.expand_path(__FILE__))
14
14
 
15
15
  # We want to serve public assets for now
16
- set :public_folder, "#{dir}/public"
16
+ set :public_folder, "#{dir}/public/gollum"
17
17
  set :static, true
18
18
  set :default_markup, :markdown
19
19
 
@@ -18,7 +18,7 @@
18
18
  width: 450px;
19
19
 
20
20
  border: 7px solid #999;
21
- border: 7px solid rgba(0, 0, 0, 0.3);
21
+ border: 7px solid rgba(0, 0, 0, 0.3);
22
22
  border-radius: 5px;
23
23
  -moz-border-radius: 5px;
24
24
  -webkit-border-radius: 5px;
@@ -28,7 +28,7 @@
28
28
  background-color: #fff;
29
29
  overflow: hidden;
30
30
  padding: 1em;
31
-
31
+
32
32
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#ffffff));
33
33
  background: -moz-linear-gradient(top, #f7f7f7, #ffffff);
34
34
  }
@@ -71,7 +71,7 @@
71
71
  padding: 0;
72
72
  min-width: 80px;
73
73
  }
74
-
74
+
75
75
  #gollum-dialog-dialog-body fieldset .field input[type="text"] {
76
76
  border: 1px solid #ddd;
77
77
  display: block;
@@ -82,11 +82,11 @@
82
82
  padding: 0.3em 0.5em;
83
83
  width: 96.5%;
84
84
  }
85
-
85
+
86
86
  #gollum-dialog-dialog-body fieldset .field input.code {
87
87
  font-family: 'Monaco', 'Courier New', Courier, monospace;
88
88
  }
89
-
89
+
90
90
  #gollum-dialog-dialog-body fieldset .field:last-child {
91
91
  margin: 0 0 1em 0;
92
92
  }
@@ -31,7 +31,7 @@ a {
31
31
  }
32
32
 
33
33
  .ie #gollum-editor {
34
- padding-bottom: 1em;
34
+ padding-bottom: 1em;
35
35
  }
36
36
 
37
37
  #gollum-editor form fieldset {
@@ -119,11 +119,11 @@ a {
119
119
  /* text-indent: -5000px; */
120
120
  text-shadow: 0 1px 0 #fff;
121
121
  width: 25px;
122
-
122
+
123
123
  border-radius: 0.3em;
124
124
  -moz-border-radius: 0.3em;
125
125
  -webkit-border-radius: 0.3em;
126
-
126
+
127
127
  filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#f4f4f4', endColorstr='#ececec');
128
128
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#ececec));
129
129
  background: -moz-linear-gradient(top, #f4f4f4, #ececec);
@@ -133,7 +133,7 @@ a {
133
133
  color: #fff;
134
134
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
135
135
  text-decoration: none;
136
-
136
+
137
137
  filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#599bdc', endColorstr='#3072b3');
138
138
  background: -webkit-gradient(linear, left top, left bottom, from(#599bdc), to(#3072b3));
139
139
  background: -moz-linear-gradient(top, #599bdc, #3072b3);
@@ -162,7 +162,7 @@ a#function-h2 span { background-position: -244px 0; }
162
162
  a#function-h3 span { background-position: -271px 0; }
163
163
  a#function-link span { background-position: -298px 0; }
164
164
  a#function-image span { background-position: -324px 0; }
165
- a#function-help span { background-position: -405px 0; }
165
+ a#function-help span { background-position: -405px 0; }
166
166
 
167
167
  a#function-bold:hover span { background-position: 0 -28px; }
168
168
  a#function-italic:hover span { background-position: -27px -28px; }
@@ -177,7 +177,7 @@ a#function-h2:hover span { background-position: -244px -28px; }
177
177
  a#function-h3:hover span { background-position: -271px -28px; }
178
178
  a#function-link:hover span { background-position: -298px -28px; }
179
179
  a#function-image:hover span { background-position: -324px -28px; }
180
- a#function-help:hover span { background-position: -405px -28px; }
180
+ a#function-help:hover span { background-position: -405px -28px; }
181
181
 
182
182
 
183
183
  #gollum-editor #gollum-editor-function-bar a.disabled {
@@ -195,11 +195,11 @@ a#function-help:hover span { background-position: -405px -28px; }
195
195
  padding: 0 0 1.1em 0;
196
196
  }
197
197
 
198
- #gollum-editor #gollum-editor-function-bar
199
- #gollum-editor-format-selector select {
198
+ #gollum-editor #gollum-editor-function-bar
199
+ #gollum-editor-format-selector select {
200
200
  background-color: #f9f9f9;
201
201
  border: 1px solid transparent;
202
-
202
+
203
203
  float: right;
204
204
  font-size: 1.1em;
205
205
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
@@ -207,15 +207,15 @@ a#function-help:hover span { background-position: -405px -28px; }
207
207
  line-height: 1.6em;
208
208
  padding: 0.5em 0.7em;
209
209
  margin-bottom: 0;
210
-
211
-
210
+
211
+
212
212
  border-radius: 0.5em;
213
213
  -moz-border-radius: 0.5em;
214
- -webkit-border-radius: 0.5em;
214
+ -webkit-border-radius: 0.5em;
215
215
  -moz-outline: none;
216
216
  }
217
217
 
218
- #gollum-editor #gollum-editor-function-bar
218
+ #gollum-editor #gollum-editor-function-bar
219
219
  #gollum-editor-format-selector select:hover {
220
220
  background-color: #fff;
221
221
  border: 1px solid #ddd;
@@ -231,13 +231,13 @@ a#function-help:hover span { background-position: -405px -28px; }
231
231
  line-height: 1.6em;
232
232
  padding: 0.6em 0.5em 0 0;
233
233
  }
234
-
234
+
235
235
  #gollum-editor #gollum-editor-function-bar
236
236
  #gollum-editor-format-selector label:after {
237
237
  content: ':';
238
238
  }
239
-
240
-
239
+
240
+
241
241
  /* @section form-fields */
242
242
 
243
243
  #gollum-editor textarea#gollum-editor-body {
@@ -322,11 +322,11 @@ a#function-help:hover span { background-position: -405px -28px; }
322
322
  margin: 0.2em 0.5em 0.75em 0;
323
323
  text-shadow: 0 1px 0 #fff;
324
324
  width: 25px;
325
-
325
+
326
326
  border-radius: 0.3em;
327
327
  -moz-border-radius: 0.3em;
328
328
  -webkit-border-radius: 0.3em;
329
-
329
+
330
330
  filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#f4f4f4', endColorstr='#ececec');
331
331
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#ececec));
332
332
  background: -moz-linear-gradient(top, #f4f4f4, #ececec);
@@ -346,7 +346,7 @@ a#function-help:hover span { background-position: -405px -28px; }
346
346
  color: #fff;
347
347
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
348
348
  text-decoration: none;
349
-
349
+
350
350
  filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#599bdc', endColorstr='#3072b3');
351
351
  background: -webkit-gradient(linear, left top, left bottom, from(#599bdc), to(#3072b3));
352
352
  background: -moz-linear-gradient(top, #599bdc, #3072b3);
@@ -461,16 +461,16 @@ a#function-help:hover span { background-position: -405px -28px; }
461
461
  padding: 1em 0;
462
462
  width: 18%;
463
463
  }
464
-
464
+
465
465
  #gollum-editor-help-parent {
466
466
  border-right: 1px solid #eee;
467
467
  }
468
-
468
+
469
469
  #gollum-editor-help-list {
470
470
  background: #fafafa;
471
471
  border-right: 1px solid #eee;
472
472
  }
473
-
473
+
474
474
  #gollum-editor-help-parent li,
475
475
  #gollum-editor-help-list li {
476
476
  font-size: 1.2em;
@@ -478,7 +478,7 @@ a#function-help:hover span { background-position: -405px -28px; }
478
478
  margin: 0;
479
479
  padding: 0;
480
480
  }
481
-
481
+
482
482
  #gollum-editor-help-parent li a,
483
483
  #gollum-editor-help-list li a {
484
484
  border: 1px solid transparent;
@@ -490,16 +490,16 @@ a#function-help:hover span { background-position: -405px -28px; }
490
490
  padding: 0.2em 1em;
491
491
  text-shadow: 0 -1px 0 #fff;
492
492
  }
493
-
493
+
494
494
  #gollum-editor-help-parent li a:hover,
495
495
  #gollum-editor-help-list li a:hover {
496
496
  background: #fff;
497
497
  border-color: #f0f0f0;
498
498
  text-decoration: none;
499
-
499
+
500
500
  box-shadow: none;
501
501
  }
502
-
502
+
503
503
  #gollum-editor-help-parent li a.selected,
504
504
  #gollum-editor-help-list li a.selected {
505
505
  border: 1px solid #eee;
@@ -507,29 +507,29 @@ a#function-help:hover span { background-position: -405px -28px; }
507
507
  border-width: 1px 0;
508
508
  background: #fff;
509
509
  color: #000;
510
-
510
+
511
511
  box-shadow: 0 1px 2px #f0f0f0;
512
512
  }
513
-
513
+
514
514
  #gollum-editor-help-wrapper {
515
515
  background: #fff;
516
516
  overflow: auto;
517
517
  height: 17em;
518
518
  padding: 1em;
519
519
  }
520
-
520
+
521
521
  #gollum-editor-help-content {
522
522
  font-size: 1.2em;
523
523
  margin: 0 1em 0 0.5em;
524
524
  padding: 0;
525
525
  line-height: 1.8em;
526
526
  }
527
-
527
+
528
528
  #gollum-editor-help-content p {
529
529
  margin: 0 0 1em 0;
530
530
  padding: 0;
531
531
  }
532
-
532
+
533
533
  /* IE */
534
534
  .ie #gollum-editor .singleline input {
535
535
  padding-top: 0.25em;
@@ -45,11 +45,11 @@ a:hover, a:visited {
45
45
  #head h1 {
46
46
  display: none;
47
47
  }
48
-
48
+
49
49
  #head ul.actions {
50
50
  float: right;
51
51
  }
52
-
52
+
53
53
  /* @section content */
54
54
  #wiki-content {
55
55
  height: 1%;
@@ -77,7 +77,7 @@ a:hover, a:visited {
77
77
  .has-rightbar #wiki-body {
78
78
  width: 68%;
79
79
  }
80
-
80
+
81
81
  /* @section rightbar */
82
82
  #wiki-rightbar {
83
83
  background-color: #f7f7f7;
@@ -86,12 +86,12 @@ a:hover, a:visited {
86
86
  float: right;
87
87
  padding: 7px;
88
88
  width: 25%;
89
-
89
+
90
90
  border-radius: 0.5em;
91
91
  -moz-border-radius: 0.5em;
92
92
  -webkit-border-radius: 0.5em;
93
93
  }
94
-
94
+
95
95
  #wiki-rightbar p {
96
96
  margin: 13px 0 0;
97
97
  }
@@ -107,13 +107,13 @@ a:hover, a:visited {
107
107
  padding: 0 0 0.5em 0;
108
108
  text-shadow: 0 1px 0 #fff;
109
109
  }
110
-
110
+
111
111
  /* Back arrow */
112
112
  #wiki-rightbar p.parent:before {
113
113
  color: #666;
114
114
  content: "← ";
115
115
  }
116
-
116
+
117
117
  #wiki-rightbar h3 {
118
118
  font-size: 1.2em;
119
119
  color: #333;
@@ -121,12 +121,12 @@ a:hover, a:visited {
121
121
  padding: 0;
122
122
  text-shadow: 0 1px 0 #fff;
123
123
  }
124
-
124
+
125
125
  #wiki-rightbar ul {
126
126
  margin: 0.5em 0 1em;
127
127
  padding: 0;
128
128
  }
129
-
129
+
130
130
  #wiki-rightbar ul li {
131
131
  color: #bbb;
132
132
  margin: 0 0 0 1em;
@@ -134,23 +134,23 @@ a:hover, a:visited {
134
134
  line-height: 1.75em;
135
135
  list-style-position: inside;
136
136
  list-style-type: round;
137
- }
138
-
137
+ }
138
+
139
139
  #wiki-rightbar #nav ul li a {
140
140
  font-weight: bold;
141
141
  text-shadow: 0 1px 0 #fff;
142
142
  }
143
-
143
+
144
144
  /* @section footer */
145
145
  #wiki-footer {
146
146
  clear: both;
147
147
  margin: 2em 0 5em;
148
148
  }
149
-
149
+
150
150
  .has-rightbar #wiki-footer {
151
151
  width: 70%;
152
152
  }
153
-
153
+
154
154
  #wiki-footer #footer-content {
155
155
  background-color: #f7f7f7;
156
156
  border: 1px solid #ddd;
@@ -158,12 +158,12 @@ a:hover, a:visited {
158
158
  line-height: 1.5em;
159
159
  margin-top: 1.5em;
160
160
  padding: 1em;
161
-
161
+
162
162
  border-radius: 0.5em;
163
163
  -moz-border-radius: 0.5em;
164
164
  -webkit-border-radius: 0.5em;
165
165
  }
166
-
166
+
167
167
  #wiki-footer #footer-content h3 {
168
168
  font-size: 1.2em;
169
169
  color: #333;
@@ -171,18 +171,18 @@ a:hover, a:visited {
171
171
  padding: 0 0 0.2em;
172
172
  text-shadow: 0 1px 0 #fff;
173
173
  }
174
-
174
+
175
175
  #wiki-footer #footer-content p {
176
176
  margin: 0.5em 0 0;
177
177
  padding: 0;
178
178
  }
179
-
179
+
180
180
  #wiki-footer #footer-content ul.links {
181
181
  margin: 0.5em 0 0;
182
182
  overflow: hidden;
183
183
  padding: 0;
184
184
  }
185
-
185
+
186
186
  #wiki-footer #footer-content ul.links li {
187
187
  color: #999;
188
188
  float: left;
@@ -191,33 +191,33 @@ a:hover, a:visited {
191
191
  padding: 0;
192
192
  margin-left: 0.75em;
193
193
  }
194
-
194
+
195
195
  #wiki-footer #footer-content ul.links li a {
196
196
  font-weight: bold;
197
197
  text-shadow: 0 1px 0 #fff;
198
198
  }
199
-
199
+
200
200
  #wiki-footer #footer-content ul.links li:first-child {
201
201
  list-style-type: none;
202
202
  margin: 0;
203
- }
204
-
203
+ }
204
+
205
205
  .ff #wiki-footer #footer-content ul.links li:first-child {
206
206
  margin: 0 -0.75em 0 0;
207
207
  }
208
-
208
+
209
209
  /* @section page-footer */
210
210
  .page #footer {
211
211
  margin: 1em 0 7em;
212
212
  }
213
-
213
+
214
214
  #footer p#last-edit {
215
215
  font-size: .9em;
216
216
  line-height: 1.6em;
217
217
  color: #999;
218
218
  margin: 0.9em 0;
219
219
  }
220
-
220
+
221
221
  #footer p#last-edit span.username {
222
222
  font-weight: bold;
223
223
  }
@@ -243,23 +243,23 @@ a:hover, a:visited {
243
243
  margin: 2em 0;
244
244
  padding: 0;
245
245
  }
246
-
246
+
247
247
  #wiki-history table, #wiki-history tbody {
248
248
  border-collapse: collapse;
249
249
  padding: 0;
250
250
  margin: 0;
251
251
  width: 100%;
252
252
  }
253
-
253
+
254
254
  #wiki-history table tr {
255
255
  padding: 0;
256
256
  margin: 0;
257
257
  }
258
-
258
+
259
259
  #wiki-history table tr {
260
260
  background-color: #ebf2f6;
261
261
  }
262
-
262
+
263
263
  #wiki-history table tr td {
264
264
  border: 1px solid #c0dce9;
265
265
  font-size: 1.2em;
@@ -267,12 +267,12 @@ a:hover, a:visited {
267
267
  margin: 0;
268
268
  padding: 0.3em 0.7em;
269
269
  }
270
-
270
+
271
271
  #wiki-history table tr td.checkbox {
272
272
  min-width: 2em;
273
273
  padding: 0.3em;
274
274
  }
275
-
275
+
276
276
  #wiki-history table tr td.checkbox input {
277
277
  cursor: pointer;
278
278
  display: block;
@@ -280,39 +280,39 @@ a:hover, a:visited {
280
280
  padding-top: 0.4em;
281
281
  margin-right: -0.2em;
282
282
  }
283
-
283
+
284
284
  #wiki-history table tr:nth-child(2n),
285
285
  #wiki-history table tr.alt-row {
286
286
  background-color: #f3f7fa;
287
287
  }
288
-
288
+
289
289
  #wiki-history table tr.selected {
290
290
  background-color: #ffffea !important;
291
291
  z-index: 100;
292
292
  }
293
-
293
+
294
294
  #wiki-history table tr td.commit-name {
295
295
  border-left: 0;
296
296
  }
297
-
297
+
298
298
  #wiki-history table tr td.commit-name span.time-elapsed {
299
299
  color: #999;
300
300
  }
301
-
301
+
302
302
  #wiki-history table tr td.author {
303
303
  width: 20%;
304
304
  }
305
-
305
+
306
306
  #wiki-history table tr td.author a {
307
307
  color: #000;
308
308
  font-weight: bold;
309
309
  }
310
-
310
+
311
311
  #wiki-history table tr td.author a span.username {
312
312
  display: block;
313
313
  padding-top: 3px;
314
314
  }
315
-
315
+
316
316
  #wiki-history table tr td img {
317
317
  background-color: #fff;
318
318
  border: 1px solid #999;
@@ -324,7 +324,7 @@ a:hover, a:visited {
324
324
  width: 18px;
325
325
  padding: 2px;
326
326
  }
327
-
327
+
328
328
  #wiki-history table tr td.commit-name a {
329
329
  font-size: 0.9em;
330
330
  font-family: 'Monaco', 'Andale Mono', Consolas, 'Courier New', monospace;
@@ -359,25 +359,25 @@ a:hover, a:visited {
359
359
  color: #000;
360
360
  font-weight: bold;
361
361
  }
362
-
362
+
363
363
  .results #results {
364
364
  border-bottom: 1px solid #ccc;
365
365
  margin-bottom: 2em;
366
366
  padding-bottom: 2em;
367
367
  }
368
-
368
+
369
369
  .results #results ul {
370
370
  margin: 2em 0 0 0;
371
371
  padding: 0;
372
372
  }
373
-
373
+
374
374
  .results #results ul li {
375
375
  font-size: 1.2em;
376
376
  line-height: 1.6em;
377
377
  list-style-position: outside;
378
378
  padding: 0.2em 0;
379
379
  }
380
-
380
+
381
381
  .results #results ul li span.count {
382
382
  color: #999;
383
383
  }
@@ -387,11 +387,11 @@ a:hover, a:visited {
387
387
  line-height: 1.6em;
388
388
  margin-top: 2em;
389
389
  }
390
-
390
+
391
391
  .results #footer ul.actions li {
392
392
  margin: 0 1em 0 0;
393
393
  }
394
-
394
+
395
395
 
396
396
  /* @section compare */
397
397
  .compare h1 {
@@ -403,26 +403,26 @@ a:hover, a:visited {
403
403
  color: #000;
404
404
  font-weight: bold;
405
405
  }
406
-
406
+
407
407
  .compare #compare-content {
408
408
  margin-top: 3em;
409
409
  }
410
-
410
+
411
411
  .compare .data {
412
412
  border: 1px solid #ddd;
413
413
  margin-top: 1em;
414
414
  overflow: auto;
415
415
  }
416
-
416
+
417
417
  .compare .data pre {
418
418
  margin: 0;
419
419
  padding: 0;
420
420
  }
421
-
421
+
422
422
  .compare .data pre div {
423
423
  padding: 0 0 0 1em;
424
424
  }
425
-
425
+
426
426
  .compare .data tr td {
427
427
  font-family: "Consolas", "Monaco", "Andale Mono", "Courier New", monospace;
428
428
  font-size: 1.2em;
@@ -430,11 +430,11 @@ a:hover, a:visited {
430
430
  margin: 0;
431
431
  padding: 0;
432
432
  }
433
-
433
+
434
434
  .compare .data td.line_numbers {
435
435
  background: #f7f7f7;
436
436
  border-right: 1px solid #999;
437
- color: #999;
437
+ color: #999;
438
438
  padding: 0 0 0 0.5em;
439
439
  }
440
440
 
@@ -443,32 +443,32 @@ a:hover, a:visited {
443
443
  margin-left: 0;
444
444
  margin-right: 0.6em;
445
445
  }
446
-
447
-
448
-
446
+
447
+
448
+
449
449
  /* @control syntax */
450
450
  .highlight { background: #ffffff; }
451
- .highlight .c { color: #999988; font-style: italic }
452
- .highlight .err { color: #a61717; background-color: #e3d2d2 }
453
- .highlight .k { font-weight: bold }
454
- .highlight .o { font-weight: bold }
455
- .highlight .cm { color: #999988; font-style: italic }
456
- .highlight .cp { color: #999999; font-weight: bold }
457
- .highlight .c1 { color: #999988; font-style: italic }
458
- .highlight .cs { color: #999999; font-weight: bold; font-style: italic }
459
- .highlight .gd { color: #000000; background-color: #ffdddd }
460
- .highlight .gd .x { color: #000000; background-color: #ffaaaa }
461
- .highlight .ge { font-style: italic }
462
- .highlight .gr { color: #aa0000 }
463
- .highlight .gh { color: #999999 }
464
- .highlight .gi { color: #000000; background-color: #ddffdd }
465
- .highlight .gi .x { color: #000000; background-color: #aaffaa }
451
+ .highlight .c { color: #999988; font-style: italic }
452
+ .highlight .err { color: #a61717; background-color: #e3d2d2 }
453
+ .highlight .k { font-weight: bold }
454
+ .highlight .o { font-weight: bold }
455
+ .highlight .cm { color: #999988; font-style: italic }
456
+ .highlight .cp { color: #999999; font-weight: bold }
457
+ .highlight .c1 { color: #999988; font-style: italic }
458
+ .highlight .cs { color: #999999; font-weight: bold; font-style: italic }
459
+ .highlight .gd { color: #000000; background-color: #ffdddd }
460
+ .highlight .gd .x { color: #000000; background-color: #ffaaaa }
461
+ .highlight .ge { font-style: italic }
462
+ .highlight .gr { color: #aa0000 }
463
+ .highlight .gh { color: #999999 }
464
+ .highlight .gi { color: #000000; background-color: #ddffdd }
465
+ .highlight .gi .x { color: #000000; background-color: #aaffaa }
466
466
  .highlight .gc { color: #999; background-color: #EAF2F5 }
467
- .highlight .go { color: #888888 }
468
- .highlight .gp { color: #555555 }
469
- .highlight .gs { font-weight: bold }
470
- .highlight .gu { color: #aaaaaa }
471
- .highlight .gt { color: #aa0000 }
467
+ .highlight .go { color: #888888 }
468
+ .highlight .gp { color: #555555 }
469
+ .highlight .gs { font-weight: bold }
470
+ .highlight .gu { color: #aaaaaa }
471
+ .highlight .gt { color: #aa0000 }
472
472
 
473
473
 
474
474
  /* @control minibutton */
@@ -562,7 +562,7 @@ ul.actions {
562
562
  margin: -10% 0 0 -35%;
563
563
  position: absolute;
564
564
  width: 70%;
565
-
565
+
566
566
  border-radius: 0.5em;
567
567
  -moz-border-radius: 0.5em;
568
568
  -webkit-border-radius: 0.5em;
@@ -595,7 +595,7 @@ ul.actions {
595
595
  background: #fff;
596
596
  border: 1px solid #d4d4d4;
597
597
  overflow: hidden;
598
-
598
+
599
599
  border-radius: 0.3em;
600
600
  -moz-border-radius: 0.3em;
601
601
  -webkit-border-radius: 0.3em;
@@ -608,22 +608,22 @@ ul.actions {
608
608
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
609
609
  font-size: 1.2em;
610
610
  height: 1.8em;
611
-
611
+
612
612
  -webkit-focus-ring: none;
613
613
  }
614
614
 
615
615
  .ff #head #searchbar #searchbar-fauxtext input#search-query {
616
616
  padding: 0.2em 0 0.2em 0.5em;
617
617
  }
618
-
618
+
619
619
  .ie #head #searchbar #searchbar-fauxtext input#search-query {
620
620
  padding: 0.4em 0 0 0.5em;
621
621
  }
622
-
622
+
623
623
  #head #searchbar #searchbar-fauxtext input#search-query.ph {
624
624
  color: #999;
625
625
  }
626
-
626
+
627
627
  #head #searchbar #searchbar-fauxtext #search-submit {
628
628
  border: 0;
629
629
  border-left: 1px solid #d4d4d4;
@@ -632,12 +632,12 @@ ul.actions {
632
632
  padding: 0;
633
633
  float: right;
634
634
  font-size: 1.2em;
635
-
635
+
636
636
  border-radius: 0 3px 3px 0;
637
637
  -moz-border-radius: 0 3px 3px 0;
638
638
  -webkit-border-radius: 0 3px 3px 0;
639
639
  }
640
-
640
+
641
641
  #head #searchbar #searchbar-fauxtext #search-submit span {
642
642
  background-image: url(/images/icon-sprite.png);
643
643
  background-position: -431px -1px;