relevance-tarantula 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,324 @@
1
+ /* RESET */
2
+ html, body, div, span, applet, object, iframe,
3
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
4
+ a, abbr, acronym, address, big, cite, code,
5
+ del, dfn, em, font, img, ins, kbd, q, s, samp,
6
+ small, strike, strong, sub, sup, tt, var,
7
+ b, u, i, center,
8
+ dl, dt, dd, ol, ul, li,
9
+ fieldset, form, label, legend,
10
+ table, caption, tbody, tfoot, thead, tr, th, td {
11
+ margin: 0;
12
+ padding: 0;
13
+ border: 0;
14
+ outline: 0;
15
+ font-size: 100%;
16
+ vertical-align: baseline;
17
+ background: transparent;
18
+ }
19
+ body {
20
+ line-height: 1;
21
+ }
22
+ ol, ul {
23
+ list-style: none;
24
+ }
25
+ blockquote, q {
26
+ quotes: none;
27
+ }
28
+
29
+ /* remember to define focus styles! */
30
+ :focus {
31
+ outline: 0;
32
+ }
33
+
34
+ /* remember to highlight inserts somehow! */
35
+ ins {
36
+ text-decoration: none;
37
+ }
38
+ del {
39
+ text-decoration: line-through;
40
+ }
41
+
42
+ /* tables still need 'cellspacing="0"' in the markup */
43
+ table {
44
+ border-collapse: collapse;
45
+ border-spacing: 0;
46
+ }
47
+
48
+ body {
49
+ line-height: 1em;
50
+ font-family: Tahoma, Arial, Helvetica, sans-serif;
51
+ color: #050505;
52
+ }
53
+
54
+ /* header */
55
+ #header {
56
+ background: #37302e url(../images/header_bg.jpg) no-repeat top left;
57
+ height: 70px;
58
+ border-bottom: 2px solid #d0d0d0;
59
+ }
60
+
61
+ #header h1 {
62
+ width:206px;
63
+ height:56px;
64
+ text-indent: -9999em;
65
+ background: transparent url(../images/logo.png) no-repeat top center;
66
+ position: absolute;
67
+ top: 7px;
68
+ left: 42px;
69
+ }
70
+
71
+ #header h2 {
72
+ width:196px;
73
+ height:34px;
74
+ text-indent: -9999em;
75
+ background: transparent url(../images/tagline.png) no-repeat top center;
76
+ position: absolute;
77
+ top: 15px;
78
+ left: 257px;
79
+ }
80
+
81
+ #header p {
82
+ display: block;
83
+ position: absolute;
84
+ right: 42px;
85
+ width: 315px;
86
+ padding: 8px;
87
+ color: #fff;
88
+ font-size: 13px;
89
+ line-height: 15px;
90
+ }
91
+
92
+ #header a:link, #header a:visited, #header a {
93
+ color: #70b1ca;
94
+ }
95
+
96
+ #header a:hover {
97
+ text-decoration: none;
98
+ }
99
+
100
+ #header hr {
101
+ display: none;
102
+ }
103
+
104
+ .left { text-align: left !important; }
105
+ .right { text-align: right !important; }
106
+ .center { text-align: center !important; }
107
+
108
+ /* page */
109
+
110
+ #page {
111
+ padding: 55px 10px 0 10px;
112
+ width: 1000px;
113
+ margin: auto;
114
+ position: relative;
115
+ }
116
+
117
+ div#page ul.tabs {
118
+
119
+ clear: both;
120
+ }
121
+
122
+ div#page ul.tabs li{
123
+ display: block;
124
+ float: left;
125
+ }
126
+
127
+ div#page ul.tabs li a {
128
+ display: block;
129
+ float: left;
130
+ clear: right;
131
+ margin-right: 5px;
132
+ }
133
+
134
+ div#page ul.tabs li a.active {
135
+ background: transparent url(../images/button_active.png) no-repeat top left;
136
+ color: #050505;
137
+ }
138
+
139
+ div#page ul.tabs li a {
140
+ background: transparent url(../images/button_inactive.png) no-repeat top left;
141
+ height: 38px;
142
+ width: 110px;
143
+ color: #fff;
144
+ padding: 8px 0 0 12px;
145
+ font-size: 18px;
146
+ line-height: 18px;
147
+ text-decoration: none;
148
+ }
149
+
150
+ div#page ul.tabs li a:hover {
151
+ background: transparent url(../images/button_hover.png) no-repeat top left;
152
+ color: #613005;
153
+ }
154
+
155
+ div#page ul.tabs {
156
+ position: absolute;
157
+ top: 7px;
158
+ left: 7px;
159
+ }
160
+
161
+ #list {
162
+ width: 100%;
163
+ }
164
+
165
+ #list th, #list th a, #list tfoot td {
166
+ background: #b9b9a9;
167
+ color: #463c38;
168
+ text-decoration: none;
169
+
170
+ }
171
+
172
+ .sort {
173
+ font-size: 75%;
174
+ filter:alpha(opacity=50);
175
+ -moz-opacity:0.5;
176
+ -khtml-opacity: 0.5;
177
+ opacity: 0.5;
178
+ }
179
+
180
+ #list th, #list th a:hover span {
181
+ filter:alpha(opacity=100);
182
+ -moz-opacity:1;
183
+ -khtml-opacity: 1;
184
+ opacity: 1;
185
+ }
186
+
187
+ #list td, #list th {
188
+ text-align: center;
189
+ padding: 4px;
190
+ font-size: 14px;
191
+ }
192
+
193
+ div#page tbody a {
194
+ color: #6699cc;
195
+ }
196
+
197
+ div#page tbody a:hover {
198
+ text-decoration: none;
199
+ }
200
+
201
+ div#page table caption {
202
+ text-align: left;
203
+ padding: 7px;
204
+ background: #d0d0c4;
205
+ border-bottom: 2px solid #aba7a1;
206
+ -moz-border-radius-topleft: 2px;
207
+ -moz-border-radius-topright: 2px;
208
+ }
209
+
210
+ #list tbody td {
211
+ background: #f2f2eb;
212
+ }
213
+
214
+ #list tfoot td {
215
+ line-height: 18px;
216
+ }
217
+
218
+ tr.even td {
219
+ background: #e9e9e2 !important;
220
+ }
221
+
222
+ /* Response Codes */
223
+
224
+ span.r1, span.r2, span.r3, span.r4,
225
+ span.r5 {
226
+ display: block;
227
+ padding: .15em;
228
+ margin: .15em;
229
+ color: #dac7ad;
230
+ }
231
+
232
+ /* Informational 1xx */
233
+ span.r1 {
234
+ background-color: #3333cc;
235
+ border: 1px solid #376edc;
236
+ }
237
+
238
+ /* Successfull 2xx */
239
+ span.r2 {
240
+ background-color: #006600;
241
+ border: 1px solid #008900;
242
+ }
243
+
244
+ /* Redirection 3xx */
245
+ span.r3 {
246
+ background-color: #555652;
247
+ border: 1px solid #80817b;
248
+ }
249
+
250
+ /* Client 4xx */
251
+ span.r4 {
252
+ background-color: #857400;
253
+ border: 1px solid #baa200;
254
+ }
255
+ /* Server Error 5xx */
256
+ span.r5 {
257
+ background-color: #c40000;
258
+ border: 1px solid #dc0000;
259
+ }
260
+
261
+ /* Detail */
262
+ #report h3 {
263
+ background: #D0D0C4; font-weight: normal;
264
+ border-bottom: 2px solid #ABA7A1;
265
+ -moz-border-radius-topleft: 2px; -moz-border-radius-topright: 2px;
266
+ -webkit-border-top-left-radius: 2px; -webkit-border-top-right-radius: 2px;
267
+ }
268
+
269
+ #report h3,
270
+ #report p {
271
+ width: 50%;
272
+ padding:6px 8px;
273
+ margin: 1px 0;
274
+ }
275
+
276
+ #report a {
277
+ color: #70B1CA
278
+ }
279
+
280
+ #report a:hover {
281
+ text-decoration: none;
282
+ }
283
+
284
+ #report p b {
285
+ color: #050505;
286
+ font-weight: normal;
287
+ }
288
+
289
+ #report p {
290
+ color: #463C38;
291
+ background: #f2f2eb;
292
+ line-height: 22px;
293
+ }
294
+
295
+ #report p span {
296
+ display: inline-block;
297
+ display: -moz-inline-block;
298
+ margin: 0;
299
+ padding: 2px 6px;
300
+ line-height: 16px;
301
+ }
302
+
303
+ #report h3 em {
304
+ display: block;
305
+ font-family: Consolas, Lucida Console, Monaco, monospace;
306
+ font-size: 75%;
307
+ font-style: normal;
308
+ font-weight: normal;
309
+ color: #463C38;
310
+ line-height: 22px;
311
+ }
312
+
313
+ /* Output */
314
+ #output {margin: 10px 0; width: 100%; font-size: 82.5%;}
315
+ #output th { background: #b9b9a9; text-align: left; padding-left: 2.25em; font-weight: normal; line-height: 18px; color: #463C38; border-bottom: 1px solid #fff;
316
+ -moz-border-radius-topleft: 2px; -moz-border-radius-topright: 2px;
317
+ -webkit-border-top-left-radius: 2px; -webkit-border-top-right-radius: 2px;
318
+ }
319
+ #output td { background: #f2f2eb; padding: 1px; line-height: 18px; }
320
+ #output { font-family: Consolas, Lucida Console, Monaco, monospace; }
321
+ #output .numbers { width: 3em; text-align: right; border-right: 1px solid #fff;}
322
+ #output .lines { width: auto; text-align: left;}
323
+ #output .line { display: block; text-align: left; padding: 1px 4px;}
324
+ #output .line.number { text-align: right; color: #585850; }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relevance-tarantula
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Relevance, Inc.
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-02-06 00:00:00 -08:00
12
+ date: 2009-02-20 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -56,6 +56,39 @@ files:
56
56
  - examples/relevance/tarantula/tidy_handler_example.rb
57
57
  - examples/relevance/tarantula/transform_example.rb
58
58
  - examples/relevance/tarantula_example.rb
59
+ - laf/images
60
+ - laf/images/background.jpg
61
+ - laf/images/relevance-os-logo.gif
62
+ - laf/images/tab.png
63
+ - laf/images/table-sort.gif
64
+ - laf/images/tarantula-sprites.png
65
+ - laf/javascripts
66
+ - laf/javascripts/jquery-1.2.3.js
67
+ - laf/javascripts/jquery-ui-tabs.js
68
+ - laf/javascripts/jquery.tablesorter.js
69
+ - laf/javascripts/niftycube-details.js
70
+ - laf/javascripts/niftycube.js
71
+ - laf/javascripts/niftyLayout.js
72
+ - laf/javascripts/tarantula.js
73
+ - laf/stylesheets
74
+ - laf/stylesheets/niftyCorners.css
75
+ - laf/stylesheets/NiftyLayout.css
76
+ - laf/stylesheets/old.css
77
+ - laf/stylesheets/tarantula.css
78
+ - laf/stylesheets/tarantula.v2.css
79
+ - laf/stylesheets/ui.tabs.css
80
+ - laf/v2
81
+ - laf/v2/detail.html
82
+ - laf/v2/images
83
+ - laf/v2/images/button_active.png
84
+ - laf/v2/images/button_hover.png
85
+ - laf/v2/images/button_inactive.png
86
+ - laf/v2/images/header_bg.jpg
87
+ - laf/v2/images/logo.png
88
+ - laf/v2/images/tagline.png
89
+ - laf/v2/index.html
90
+ - laf/v2/stylesheets
91
+ - laf/v2/stylesheets/tarantula.v2.css
59
92
  - lib/relevance
60
93
  - lib/relevance/core_extensions
61
94
  - lib/relevance/core_extensions/ellipsize.rb
@@ -89,11 +122,12 @@ files:
89
122
  - lib/relevance/tarantula.rb
90
123
  - tasks/tarantula_tasks.rake
91
124
  - template/tarantula_test.rb
92
- has_rdoc: false
125
+ has_rdoc: true
93
126
  homepage: http://github.com/relevance/tarantula
94
127
  post_install_message:
95
- rdoc_options: []
96
-
128
+ rdoc_options:
129
+ - --inline-source
130
+ - --charset=UTF-8
97
131
  require_paths:
98
132
  - lib
99
133
  required_ruby_version: !ruby/object:Gem::Requirement