hanna-nouveau 1.0.2 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/LICENSE +1 -0
- data/README.rdoc +5 -9
- data/Rakefile +3 -2
- data/VERSION +1 -1
- data/lib/hanna-nouveau/template_files/class_index.erb +4 -0
- data/lib/hanna-nouveau/template_files/file_index.erb +9 -0
- data/lib/hanna-nouveau/template_files/index.erb +15 -0
- data/lib/hanna-nouveau/template_files/layout.erb +34 -0
- data/lib/hanna-nouveau/template_files/method_index.erb +11 -0
- data/lib/hanna-nouveau/template_files/method_list.erb +58 -0
- data/lib/hanna-nouveau/template_files/method_search.js +41 -59
- data/lib/hanna-nouveau/template_files/page.erb +48 -0
- data/lib/hanna-nouveau/template_files/sections.erb +92 -0
- data/lib/hanna-nouveau/template_files/styles.css +347 -0
- data/lib/hanna-nouveau.rb +50 -48
- metadata +22 -49
- data/Gemfile +0 -3
- data/lib/hanna-nouveau/template_files/class_index.haml +0 -3
- data/lib/hanna-nouveau/template_files/file_index.haml +0 -12
- data/lib/hanna-nouveau/template_files/index.haml +0 -11
- data/lib/hanna-nouveau/template_files/layout.haml +0 -34
- data/lib/hanna-nouveau/template_files/method_index.haml +0 -13
- data/lib/hanna-nouveau/template_files/method_list.haml +0 -56
- data/lib/hanna-nouveau/template_files/page.haml +0 -48
- data/lib/hanna-nouveau/template_files/prototype-1.6.0.3.js +0 -4320
- data/lib/hanna-nouveau/template_files/sections.haml +0 -88
- data/lib/hanna-nouveau/template_files/styles.sass +0 -370
@@ -1,88 +0,0 @@
|
|
1
|
-
- unless values[:entry].classes_and_modules.empty?
|
2
|
-
#class-list
|
3
|
-
%h2 Classes and Modules
|
4
|
-
%ol
|
5
|
-
- (values[:entry].modules.sort + values[:entry].classes.sort).each do |mod|
|
6
|
-
%li= link_to mod.full_name, values[:entry].aref_to(mod.path)
|
7
|
-
|
8
|
-
- values[:sections].sort_by{|s, h| s.title.to_s}.each do |section, h|
|
9
|
-
- constants, attributes, alias_types, method_types = h.values_at(:constants, :attributes, :alias_types, :method_types)
|
10
|
-
#section
|
11
|
-
- if section.title.to_s != ''
|
12
|
-
%h2
|
13
|
-
%a{ :name =>section.aref }= section.title
|
14
|
-
- if section.comment
|
15
|
-
.section-comment= section.description
|
16
|
-
|
17
|
-
- unless constants.empty?
|
18
|
-
#constants-list
|
19
|
-
%h2 Constants
|
20
|
-
.name-list
|
21
|
-
%table{ :summary => "Constants" }
|
22
|
-
- constants.each do |const|
|
23
|
-
%tr.top-aligned-row.context-row
|
24
|
-
%td.context-item-name= const.name
|
25
|
-
%td =
|
26
|
-
%td.context-item-value= const.value
|
27
|
-
- if const.description then
|
28
|
-
%td
|
29
|
-
%td.context-item-desc= const.description
|
30
|
-
|
31
|
-
- unless alias_types.empty?
|
32
|
-
- alias_types.each do |type, aliases|
|
33
|
-
#aliases-list
|
34
|
-
%h2 #{type} Aliases
|
35
|
-
.name-list
|
36
|
-
%table{ :summary => "#{type} Aliases" }
|
37
|
-
- aliases.each do |alia|
|
38
|
-
%tr.top-aligned-row.context-row
|
39
|
-
%td.context-item-name= alia.name
|
40
|
-
%td ->
|
41
|
-
%td.context-item-value= link_to alia.is_alias_for.name, "##{alia.is_alias_for.aref}"
|
42
|
-
- unless alia.description.empty?
|
43
|
-
%td.context-item-desc= alia.description
|
44
|
-
|
45
|
-
- unless attributes.empty?
|
46
|
-
#attribute-list
|
47
|
-
%h2.section-bar Attributes
|
48
|
-
.name-list
|
49
|
-
%table
|
50
|
-
- attributes.each do |attrib|
|
51
|
-
%tr.top-aligned-row.context-row
|
52
|
-
%td.context-item-name
|
53
|
-
%a{:name => attrib.aref}=attrib.name
|
54
|
-
%td.context-item-value= attrib.rw ? "[#{attrib.rw}]" : ' '
|
55
|
-
%td.context-item-desc~ sanitize_code_blocks(attrib.description)
|
56
|
-
|
57
|
-
- unless method_types.empty?
|
58
|
-
#methods
|
59
|
-
- method_types.each do |type, list|
|
60
|
-
- unless list.empty?
|
61
|
-
%h2== #{type} methods
|
62
|
-
|
63
|
-
- list.each do |method|
|
64
|
-
.method{ :id => "method-#{method.aref}", :class => "#{type.gsub(/\s+/, '-')}".downcase }
|
65
|
-
%a{ :name => method.aref }
|
66
|
-
.synopsis
|
67
|
-
- method_html = capture_haml do
|
68
|
-
- if method.call_seq
|
69
|
-
%span.name
|
70
|
-
- method.call_seq.split(/\r?\n/).each do |seq|
|
71
|
-
%div=seq
|
72
|
-
- else
|
73
|
-
%span.name= method.name
|
74
|
-
%span.arguments= method.params
|
75
|
-
-#- if method[:codeurl]
|
76
|
-
-#%a.method-signature{ :href => method[:codeurl], :onclick => "popupCode(this.href); return false", :target => "Code" }
|
77
|
-
-#= method_html
|
78
|
-
-#- else
|
79
|
-
= method_html
|
80
|
-
- if method.description
|
81
|
-
.description
|
82
|
-
~ sanitize_code_blocks method.description
|
83
|
-
- if method.markup_code
|
84
|
-
.source
|
85
|
-
- name = "#{method.aref}-source"
|
86
|
-
%a.source-toggle{ :href => "#", :onclick => "toggleCode('#{name}'); return false" }
|
87
|
-
[show source]
|
88
|
-
~ "<pre id='#{name}'>#{method.markup_code}</pre>"
|
@@ -1,370 +0,0 @@
|
|
1
|
-
$title_font: Georgia, serif
|
2
|
-
$body_font: unquote("Lucida Grande"), Verdana, Arial, Helvetica, sans-serif
|
3
|
-
$code_font_family: Monaco, unquote("DejaVu Sans Mono"), unquote("Bitstream Vera Sans Mono"), unquote("Courier New"), monospace
|
4
|
-
$code_font_size: 14px
|
5
|
-
$code_font: $code_font_size $code_font_family
|
6
|
-
|
7
|
-
$light_link: #336699
|
8
|
-
$link: $light_link - 40
|
9
|
-
$light_text: #666666
|
10
|
-
$dark_blue_text: #0e3062
|
11
|
-
|
12
|
-
html, body
|
13
|
-
height: 100%
|
14
|
-
|
15
|
-
body
|
16
|
-
font-family: $body_font
|
17
|
-
font-size: 90%
|
18
|
-
margin: 0
|
19
|
-
padding: 0
|
20
|
-
background: white
|
21
|
-
color: black
|
22
|
-
|
23
|
-
#wrapper
|
24
|
-
min-height: 100%
|
25
|
-
height: auto !important
|
26
|
-
height: 100%
|
27
|
-
margin: 0 auto -43px
|
28
|
-
|
29
|
-
#footer-push
|
30
|
-
height: 43px
|
31
|
-
|
32
|
-
div.header, #footer
|
33
|
-
background: #eeeeee
|
34
|
-
|
35
|
-
#footer
|
36
|
-
border-top: 1px solid silver
|
37
|
-
margin-top: 12px
|
38
|
-
padding: 0 2em
|
39
|
-
line-height: 30px
|
40
|
-
text-align: center
|
41
|
-
font-variant: small-caps
|
42
|
-
font-size: 95%
|
43
|
-
|
44
|
-
// self-clearing
|
45
|
-
.clearing
|
46
|
-
&:after
|
47
|
-
content: "."
|
48
|
-
visibility: hidden
|
49
|
-
height: 0
|
50
|
-
display: block
|
51
|
-
clear: both
|
52
|
-
* html &
|
53
|
-
height: 1px
|
54
|
-
*:first-child + html
|
55
|
-
overflow: hidden
|
56
|
-
|
57
|
-
h1, h2, h3, h4, h5, h6
|
58
|
-
margin: 0
|
59
|
-
font-weight: normal
|
60
|
-
|
61
|
-
a
|
62
|
-
color: $link
|
63
|
-
&:hover
|
64
|
-
background: $light_link
|
65
|
-
text-decoration: none
|
66
|
-
color: #eeeeff
|
67
|
-
|
68
|
-
#diagram
|
69
|
-
img
|
70
|
-
border: 0
|
71
|
-
|
72
|
-
#description, .method .description, .header
|
73
|
-
a
|
74
|
-
color: $light_link
|
75
|
-
&:hover
|
76
|
-
color: #eeeeee
|
77
|
-
h1, h2, h3, h4, h5, h6
|
78
|
-
a
|
79
|
-
color: $link
|
80
|
-
|
81
|
-
ol
|
82
|
-
margin: 0
|
83
|
-
padding: 0
|
84
|
-
list-style: none
|
85
|
-
li
|
86
|
-
margin-left: 0
|
87
|
-
white-space: nowrap
|
88
|
-
&.other
|
89
|
-
display: none
|
90
|
-
|
91
|
-
ol.expanded li.other
|
92
|
-
display: list-item
|
93
|
-
|
94
|
-
table
|
95
|
-
margin-bottom: 1em
|
96
|
-
font-size: 1em
|
97
|
-
border-collapse: collapse
|
98
|
-
td, th
|
99
|
-
padding: 0.4em 0.8em
|
100
|
-
thead
|
101
|
-
background-color: #e8e8e8
|
102
|
-
th
|
103
|
-
font-variant: small-caps
|
104
|
-
color: $light_text
|
105
|
-
tr
|
106
|
-
border-bottom: 1px solid silver
|
107
|
-
|
108
|
-
#index, div.header
|
109
|
-
a.show
|
110
|
-
text-decoration: underline
|
111
|
-
font-style: italic
|
112
|
-
color: $light_text
|
113
|
-
&:after
|
114
|
-
content: " ..."
|
115
|
-
&:hover
|
116
|
-
color: black
|
117
|
-
background: #ffffee
|
118
|
-
|
119
|
-
#index
|
120
|
-
font: 85% / 1.2 Arial, Helvetica, sans-serif
|
121
|
-
a
|
122
|
-
text-decoration: none
|
123
|
-
h1
|
124
|
-
padding: 0.2em 0.5em 0.1em
|
125
|
-
background: #cccccc
|
126
|
-
font: unquote("small-caps 1.2em") $title_font
|
127
|
-
color: #333333
|
128
|
-
border-bottom: 1px solid gray
|
129
|
-
form
|
130
|
-
margin: 0
|
131
|
-
padding: 0
|
132
|
-
input
|
133
|
-
margin: 0.4em 3px 0 0.4em
|
134
|
-
width: 80%
|
135
|
-
#search.untouched
|
136
|
-
color: #777777
|
137
|
-
.clear_button
|
138
|
-
-moz-border-radius: 7px
|
139
|
-
-webkit-border-radius: 7px
|
140
|
-
background: #aaaaaa
|
141
|
-
color: white
|
142
|
-
padding: 0 5px 1px 5px
|
143
|
-
cursor: pointer
|
144
|
-
ol
|
145
|
-
padding: 0.4em 0.5em
|
146
|
-
li
|
147
|
-
white-space: nowrap
|
148
|
-
#index-entries li a
|
149
|
-
padding: 1px 2px
|
150
|
-
#index-entries.classes
|
151
|
-
font-size: 1.1em
|
152
|
-
ol
|
153
|
-
padding: 0
|
154
|
-
span.nodoc
|
155
|
-
display: none
|
156
|
-
span.nodoc, a
|
157
|
-
font-weight: bold
|
158
|
-
.parent
|
159
|
-
font-weight: normal
|
160
|
-
#index-entries.methods, #search-results.methods
|
161
|
-
li
|
162
|
-
margin-bottom: 0.2em
|
163
|
-
a
|
164
|
-
.method_name
|
165
|
-
margin-right: 0.25em
|
166
|
-
.module_name
|
167
|
-
color: #666666
|
168
|
-
&:hover .module_name
|
169
|
-
color: #dddddd
|
170
|
-
|
171
|
-
#attribute-list
|
172
|
-
.context-item-name
|
173
|
-
font-weight: bold
|
174
|
-
|
175
|
-
div.header
|
176
|
-
font-size: 80%
|
177
|
-
padding: 0.5em 2%
|
178
|
-
font-family: Arial, Helvetica, sans-serif
|
179
|
-
border-bottom: 1px solid silver
|
180
|
-
.name
|
181
|
-
font-size: 1.6em
|
182
|
-
font-family: $title_font
|
183
|
-
.type
|
184
|
-
color: $light_text
|
185
|
-
font-size: 80%
|
186
|
-
font-variant: small-caps
|
187
|
-
h1.name
|
188
|
-
font-size: 2.2em
|
189
|
-
.paths, .last-update, .parent
|
190
|
-
color: $light_text
|
191
|
-
.last-update .datetime
|
192
|
-
color: $light_text - 30
|
193
|
-
.parent
|
194
|
-
margin-top: 0.3em
|
195
|
-
strong
|
196
|
-
font-weight: normal
|
197
|
-
color: $light_text - 30
|
198
|
-
|
199
|
-
#content
|
200
|
-
padding: 12px 2%
|
201
|
-
div.class &
|
202
|
-
position: relative
|
203
|
-
width: 72%
|
204
|
-
pre, .method .synopsis
|
205
|
-
font: $code_font
|
206
|
-
pre
|
207
|
-
color: black
|
208
|
-
background: #eeeeee
|
209
|
-
border: 1px solid silver
|
210
|
-
padding: 0.5em 0.8em
|
211
|
-
overflow: auto
|
212
|
-
p, li, dl
|
213
|
-
code, tt
|
214
|
-
font: $code_font
|
215
|
-
background: #ffffe3
|
216
|
-
padding: 2px 3px
|
217
|
-
line-height: 1.4
|
218
|
-
h1, h2, h3, h4, h5, h6
|
219
|
-
code, tt
|
220
|
-
font-size: 1.1em
|
221
|
-
#text
|
222
|
-
position: relative
|
223
|
-
#description
|
224
|
-
// :max-width 60em
|
225
|
-
p
|
226
|
-
margin-top: 0.5em
|
227
|
-
h1, h2, h3, h4, h5, h6
|
228
|
-
font-family: $title_font
|
229
|
-
h1
|
230
|
-
font-size: 2.2em
|
231
|
-
margin-bottom: 0.2em
|
232
|
-
border-bottom: 3px double #d8d8d8
|
233
|
-
padding-bottom: 0.1em
|
234
|
-
h2
|
235
|
-
font-size: 1.8em
|
236
|
-
color: $dark_blue_text
|
237
|
-
margin: 0.8em 0 0.3em 0
|
238
|
-
h3
|
239
|
-
font-size: 1.6em
|
240
|
-
margin: 0.8em 0 0.3em 0
|
241
|
-
color: $light_text
|
242
|
-
h4
|
243
|
-
font-size: 1.4em
|
244
|
-
margin: 0.8em 0 0.3em 0
|
245
|
-
h5
|
246
|
-
font-size: 1.2em
|
247
|
-
margin: 0.8em 0 0.3em 0
|
248
|
-
color: $dark_blue_text
|
249
|
-
h6
|
250
|
-
font-size: 1em
|
251
|
-
margin: 0.8em 0 0.3em 0
|
252
|
-
color: $light_text
|
253
|
-
#description, .method .description
|
254
|
-
ul, ol
|
255
|
-
margin: 0.8em 0
|
256
|
-
padding-left: 1.5em
|
257
|
-
ol
|
258
|
-
list-style: decimal
|
259
|
-
li
|
260
|
-
white-space: normal
|
261
|
-
table.rdoc-list
|
262
|
-
border-collapse: collapse
|
263
|
-
border-spacing: 0
|
264
|
-
tr
|
265
|
-
background-color: white
|
266
|
-
&:nth-child(2n)
|
267
|
-
background-color: #f8f8f8
|
268
|
-
td.label
|
269
|
-
font-weight: bold
|
270
|
-
td
|
271
|
-
border: 1px solid #ddd
|
272
|
-
padding: 6px 13px
|
273
|
-
|
274
|
-
#method-list
|
275
|
-
position: absolute
|
276
|
-
top: 0px
|
277
|
-
right: -33%
|
278
|
-
width: 28%
|
279
|
-
background: #eeeeee
|
280
|
-
border: 1px solid silver
|
281
|
-
padding: 0.4em 1%
|
282
|
-
overflow: hidden
|
283
|
-
h2
|
284
|
-
font-size: 1.3em
|
285
|
-
h3
|
286
|
-
font-variant: small-caps
|
287
|
-
text-transform: capitalize
|
288
|
-
font-family: $title_font
|
289
|
-
color: #666666
|
290
|
-
font-size: 1.1em
|
291
|
-
ol
|
292
|
-
padding: 0 0 0.5em 0.5em
|
293
|
-
|
294
|
-
#context
|
295
|
-
border-top: 1px dashed silver
|
296
|
-
margin-top: 1em
|
297
|
-
margin-bottom: 1em
|
298
|
-
|
299
|
-
#context, #section
|
300
|
-
h2
|
301
|
-
font: unquote("small-caps 1.2em") $title_font
|
302
|
-
color: #444444
|
303
|
-
margin: 1em 0 0.2em 0
|
304
|
-
|
305
|
-
#methods
|
306
|
-
.method
|
307
|
-
border: 1px solid silver
|
308
|
-
margin-top: 0.5em
|
309
|
-
background: #eeeeee
|
310
|
-
.synopsis
|
311
|
-
color: black
|
312
|
-
background: silver
|
313
|
-
padding: 0.2em 1em
|
314
|
-
.name
|
315
|
-
font-weight: bold
|
316
|
-
a
|
317
|
-
text-decoration: none
|
318
|
-
.description
|
319
|
-
padding: 0 1em
|
320
|
-
pre
|
321
|
-
background: #f8f8f8
|
322
|
-
.source
|
323
|
-
margin: 0.5em 0
|
324
|
-
.source-toggle
|
325
|
-
font-size: 85%
|
326
|
-
margin-left: 1em
|
327
|
-
.public-class
|
328
|
-
background: #ffffe4
|
329
|
-
.public-instance .synopsis
|
330
|
-
color: #eeeeee
|
331
|
-
background: $light_link
|
332
|
-
|
333
|
-
#content .method .source pre, #content pre.ruby, #methods .method .description pre.ruby
|
334
|
-
background: #262626
|
335
|
-
color: #ffdead
|
336
|
-
margin: 1em
|
337
|
-
padding: 0.5em
|
338
|
-
border: 1px dashed #999999
|
339
|
-
overflow: auto
|
340
|
-
.ruby-constant
|
341
|
-
color: #7fffd4
|
342
|
-
background: transparent
|
343
|
-
.ruby-keyword
|
344
|
-
color: aqua
|
345
|
-
background: transparent
|
346
|
-
.ruby-ivar
|
347
|
-
color: #eedd82
|
348
|
-
background: transparent
|
349
|
-
.ruby-operator
|
350
|
-
color: #00ffee
|
351
|
-
background: transparent
|
352
|
-
.ruby-identifier
|
353
|
-
color: #ffdead
|
354
|
-
background: transparent
|
355
|
-
.ruby-string
|
356
|
-
color: #faa
|
357
|
-
background: transparent
|
358
|
-
.ruby-node
|
359
|
-
color: #ffa07a
|
360
|
-
background: transparent
|
361
|
-
.ruby-comment
|
362
|
-
color: #fdf
|
363
|
-
font-weight: bold
|
364
|
-
background: transparent
|
365
|
-
.ruby-regexp
|
366
|
-
color: #ffa07a
|
367
|
-
background: transparent
|
368
|
-
.ruby-value
|
369
|
-
color: #7fffd4
|
370
|
-
background: transparent
|