rdoc 2.5.11 → 3.0

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

Potentially problematic release.


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

Files changed (113) hide show
  1. data.tar.gz.sig +0 -0
  2. data/.document +1 -0
  3. data/History.txt +95 -0
  4. data/Manifest.txt +13 -4
  5. data/README.txt +9 -3
  6. data/Rakefile +1 -1
  7. data/lib/rdoc.rb +15 -298
  8. data/lib/rdoc/alias.rb +65 -16
  9. data/lib/rdoc/any_method.rb +27 -150
  10. data/lib/rdoc/attr.rb +36 -115
  11. data/lib/rdoc/class_module.rb +236 -22
  12. data/lib/rdoc/code_object.rb +76 -31
  13. data/lib/rdoc/constant.rb +32 -4
  14. data/lib/rdoc/context.rb +494 -222
  15. data/lib/rdoc/encoding.rb +79 -0
  16. data/lib/rdoc/erbio.rb +37 -0
  17. data/lib/rdoc/gauntlet.rb +9 -5
  18. data/lib/rdoc/generator.rb +33 -1
  19. data/lib/rdoc/generator/darkfish.rb +284 -375
  20. data/lib/rdoc/generator/markup.rb +72 -36
  21. data/lib/rdoc/generator/ri.rb +4 -4
  22. data/lib/rdoc/generator/template/darkfish/classpage.rhtml +267 -274
  23. data/lib/rdoc/generator/template/darkfish/filepage.rhtml +91 -91
  24. data/lib/rdoc/generator/template/darkfish/index.rhtml +45 -45
  25. data/lib/rdoc/generator/template/darkfish/rdoc.css +298 -298
  26. data/lib/rdoc/include.rb +40 -1
  27. data/lib/rdoc/known_classes.rb +1 -0
  28. data/lib/rdoc/markup.rb +467 -2
  29. data/lib/rdoc/markup/attribute_manager.rb +24 -6
  30. data/lib/rdoc/markup/blank_line.rb +11 -3
  31. data/lib/rdoc/markup/document.rb +6 -0
  32. data/lib/rdoc/markup/formatter.rb +10 -0
  33. data/lib/rdoc/markup/formatter_test_case.rb +339 -3
  34. data/lib/rdoc/markup/heading.rb +3 -0
  35. data/lib/rdoc/markup/inline.rb +11 -1
  36. data/lib/rdoc/markup/list.rb +3 -0
  37. data/lib/rdoc/markup/list_item.rb +3 -0
  38. data/lib/rdoc/markup/paragraph.rb +3 -0
  39. data/lib/rdoc/markup/parser.rb +191 -237
  40. data/lib/rdoc/markup/{preprocess.rb → pre_process.rb} +50 -29
  41. data/lib/rdoc/markup/raw.rb +4 -0
  42. data/lib/rdoc/markup/rule.rb +3 -0
  43. data/lib/rdoc/markup/text_formatter_test_case.rb +116 -0
  44. data/lib/rdoc/markup/to_ansi.rb +14 -2
  45. data/lib/rdoc/markup/to_bs.rb +8 -2
  46. data/lib/rdoc/markup/to_html.rb +84 -91
  47. data/lib/rdoc/markup/to_html_crossref.rb +77 -26
  48. data/lib/rdoc/markup/to_rdoc.rb +94 -49
  49. data/lib/rdoc/markup/to_test.rb +9 -1
  50. data/lib/rdoc/markup/verbatim.rb +6 -3
  51. data/lib/rdoc/method_attr.rb +353 -0
  52. data/lib/rdoc/normal_class.rb +11 -2
  53. data/lib/rdoc/normal_module.rb +0 -5
  54. data/lib/rdoc/options.rb +373 -82
  55. data/lib/rdoc/parser.rb +59 -23
  56. data/lib/rdoc/parser/c.rb +224 -86
  57. data/lib/rdoc/parser/ruby.rb +219 -111
  58. data/lib/rdoc/parser/ruby_tools.rb +4 -1
  59. data/lib/rdoc/parser/simple.rb +9 -4
  60. data/lib/rdoc/rdoc.rb +68 -28
  61. data/lib/rdoc/require.rb +21 -0
  62. data/lib/rdoc/ri/driver.rb +20 -10
  63. data/lib/rdoc/ri/paths.rb +2 -2
  64. data/lib/rdoc/ri/store.rb +22 -5
  65. data/lib/rdoc/ruby_lex.rb +11 -12
  66. data/lib/rdoc/ruby_token.rb +2 -2
  67. data/lib/rdoc/single_class.rb +2 -1
  68. data/lib/rdoc/stats.rb +202 -162
  69. data/lib/rdoc/stats/normal.rb +51 -0
  70. data/lib/rdoc/stats/quiet.rb +59 -0
  71. data/lib/rdoc/stats/verbose.rb +45 -0
  72. data/lib/rdoc/text.rb +133 -4
  73. data/lib/rdoc/{tokenstream.rb → token_stream.rb} +0 -2
  74. data/lib/rdoc/top_level.rb +230 -39
  75. data/test/test_attribute_manager.rb +58 -7
  76. data/test/test_rdoc_alias.rb +13 -0
  77. data/test/test_rdoc_any_method.rb +43 -2
  78. data/test/test_rdoc_attr.rb +15 -8
  79. data/test/test_rdoc_class_module.rb +133 -0
  80. data/test/test_rdoc_code_object.rb +62 -5
  81. data/test/test_rdoc_context.rb +72 -26
  82. data/test/test_rdoc_encoding.rb +145 -0
  83. data/test/test_rdoc_generator_darkfish.rb +119 -0
  84. data/test/test_rdoc_generator_ri.rb +22 -2
  85. data/test/test_rdoc_include.rb +79 -0
  86. data/test/test_rdoc_markup_attribute_manager.rb +4 -4
  87. data/test/test_rdoc_markup_parser.rb +134 -95
  88. data/test/test_rdoc_markup_pre_process.rb +7 -2
  89. data/test/test_rdoc_markup_to_ansi.rb +43 -153
  90. data/test/test_rdoc_markup_to_bs.rb +42 -156
  91. data/test/test_rdoc_markup_to_html.rb +130 -58
  92. data/test/test_rdoc_markup_to_html_crossref.rb +10 -10
  93. data/test/test_rdoc_markup_to_rdoc.rb +40 -151
  94. data/test/test_rdoc_method_attr.rb +122 -0
  95. data/test/test_rdoc_normal_class.rb +1 -1
  96. data/test/test_rdoc_normal_module.rb +6 -1
  97. data/test/test_rdoc_options.rb +237 -12
  98. data/test/test_rdoc_parser.rb +3 -22
  99. data/test/test_rdoc_parser_c.rb +203 -2
  100. data/test/test_rdoc_parser_ruby.rb +403 -89
  101. data/test/test_rdoc_parser_simple.rb +25 -1
  102. data/test/test_rdoc_rdoc.rb +44 -32
  103. data/test/test_rdoc_ri_driver.rb +29 -24
  104. data/test/test_rdoc_ri_store.rb +46 -3
  105. data/test/test_rdoc_task.rb +1 -1
  106. data/test/test_rdoc_text.rb +102 -8
  107. data/test/test_rdoc_top_level.rb +13 -4
  108. data/test/xref_data.rb +8 -0
  109. data/test/xref_test_case.rb +6 -0
  110. metadata +29 -19
  111. metadata.gz.sig +0 -0
  112. data/lib/rdoc/parser/perl.rb +0 -165
  113. data/test/test_rdoc_parser_perl.rb +0 -73
@@ -1,123 +1,123 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
4
 
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
6
  <head>
7
- <meta content="text/html; charset=<%= @options.charset %>" http-equiv="Content-Type" />
7
+ <meta content="text/html; charset=<%= @options.charset %>" http-equiv="Content-Type" />
8
8
 
9
- <title>File: <%= file.base_name %> [<%= @options.title %>]</title>
9
+ <title>File: <%= file.base_name %> [<%= @options.title %>]</title>
10
10
 
11
- <link type="text/css" media="screen" href="<%= rel_prefix %>/rdoc.css" rel="stylesheet" />
11
+ <link type="text/css" media="screen" href="<%= rel_prefix %>/rdoc.css" rel="stylesheet" />
12
12
 
13
- <script src="<%= rel_prefix %>/js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="<%= rel_prefix %>/js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="<%= rel_prefix %>/js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="<%= rel_prefix %>/js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
13
+ <script src="<%= rel_prefix %>/js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="<%= rel_prefix %>/js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="<%= rel_prefix %>/js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="<%= rel_prefix %>/js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
21
  </head>
22
22
 
23
23
  <% if file.parser == RDoc::Parser::Simple %>
24
24
  <body class="file">
25
- <div id="metadata">
26
- <div id="home-metadata">
27
- <div id="home-section" class="section">
25
+ <div id="metadata">
26
+ <div id="home-metadata">
27
+ <div id="home-section" class="section">
28
28
  <h3 class="section-header">
29
29
  <a href="<%= rel_prefix %>/index.html">Home</a>
30
30
  <a href="<%= rel_prefix %>/index.html#classes">Classes</a>
31
31
  <a href="<%= rel_prefix %>/index.html#methods">Methods</a>
32
32
  </h3>
33
- </div>
34
- </div>
33
+ </div>
34
+ </div>
35
35
 
36
- <div id="project-metadata">
37
- <% simple_files = @files.select { |f| f.parser == RDoc::Parser::Simple } %>
38
- <% unless simple_files.empty? then %>
39
- <div id="fileindex-section" class="section project-section">
40
- <h3 class="section-header">Files</h3>
41
- <ul>
42
- <% simple_files.each do |f| %>
43
- <li class="file"><a href="<%= rel_prefix %>/<%= f.path %>"><%= h f.base_name %></a></li>
44
- <% end %>
45
- </ul>
46
- </div>
47
- <% end %>
36
+ <div id="project-metadata">
37
+ <% simple_files = @files.select { |f| f.parser == RDoc::Parser::Simple } %>
38
+ <% unless simple_files.empty? then %>
39
+ <div id="fileindex-section" class="section project-section">
40
+ <h3 class="section-header">Files</h3>
41
+ <ul>
42
+ <% simple_files.each do |f| %>
43
+ <li class="file"><a href="<%= rel_prefix %>/<%= f.path %>"><%= h f.base_name %></a></li>
44
+ <% end %>
45
+ </ul>
46
+ </div>
47
+ <% end %>
48
48
 
49
- <div id="classindex-section" class="section project-section">
50
- <h3 class="section-header">Class Index
51
- <span class="search-toggle"><img src="<%= rel_prefix %>/images/find.png"
52
- height="16" width="16" alt="[+]"
53
- title="show/hide quicksearch" /></span></h3>
54
- <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
55
- <fieldset>
56
- <legend>Quicksearch</legend>
57
- <input type="text" name="quicksearch" value=""
58
- class="quicksearch-field" />
59
- </fieldset>
60
- </form>
49
+ <div id="classindex-section" class="section project-section">
50
+ <h3 class="section-header">Class Index
51
+ <span class="search-toggle"><img src="<%= rel_prefix %>/images/find.png"
52
+ height="16" width="16" alt="[+]"
53
+ title="show/hide quicksearch" /></span></h3>
54
+ <form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
55
+ <fieldset>
56
+ <legend>Quicksearch</legend>
57
+ <input type="text" name="quicksearch" value=""
58
+ class="quicksearch-field" />
59
+ </fieldset>
60
+ </form>
61
61
 
62
- <ul class="link-list">
63
- <% @modsort.each do |index_klass| %>
64
- <li><a href="<%= rel_prefix %>/<%= index_klass.path %>"><%= index_klass.full_name %></a></li>
65
- <% end %>
66
- </ul>
67
- <div id="no-class-search-results" style="display: none;">No matching classes.</div>
68
- </div>
62
+ <ul class="link-list">
63
+ <% @modsort.each do |index_klass| %>
64
+ <li><a href="<%= rel_prefix %>/<%= index_klass.path %>"><%= index_klass.full_name %></a></li>
65
+ <% end %>
66
+ </ul>
67
+ <div id="no-class-search-results" style="display: none;">No matching classes.</div>
68
+ </div>
69
69
 
70
- <% if $DEBUG_RDOC %>
71
- <div id="debugging-toggle"><img src="<%= rel_prefix %>/images/bug.png"
72
- alt="toggle debugging" height="16" width="16" /></div>
73
- <% end %>
74
- </div>
75
- </div>
70
+ <% if $DEBUG_RDOC %>
71
+ <div id="debugging-toggle"><img src="<%= rel_prefix %>/images/bug.png"
72
+ alt="toggle debugging" height="16" width="16" /></div>
73
+ <% end %>
74
+ </div>
75
+ </div>
76
76
 
77
- <div id="documentation">
78
- <%= file.description %>
79
- </div>
77
+ <div id="documentation">
78
+ <%= file.description %>
79
+ </div>
80
80
 
81
- <div id="validator-badges">
82
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
83
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
84
- Rdoc Generator</a> <%= RDoc::Generator::Darkfish::VERSION %></small>.</p>
85
- </div>
81
+ <div id="validator-badges">
82
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
83
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
84
+ Rdoc Generator</a> <%= RDoc::Generator::Darkfish::VERSION %></small>.</p>
85
+ </div>
86
86
  </body>
87
87
  <% else %>
88
88
  <body class="file file-popup">
89
- <div id="metadata">
90
- <dl>
91
- <dt class="modified-date">Last Modified</dt>
92
- <dd class="modified-date"><%= file.last_modified %></dd>
89
+ <div id="metadata">
90
+ <dl>
91
+ <dt class="modified-date">Last Modified</dt>
92
+ <dd class="modified-date"><%= file.last_modified %></dd>
93
93
 
94
- <% if file.requires %>
95
- <dt class="requires">Requires</dt>
96
- <dd class="requires">
97
- <ul>
98
- <% file.requires.each do |require| %>
99
- <li><%= require.name %></li>
100
- <% end %>
101
- </ul>
102
- </dd>
103
- <% end %>
94
+ <% if file.requires %>
95
+ <dt class="requires">Requires</dt>
96
+ <dd class="requires">
97
+ <ul>
98
+ <% file.requires.each do |require| %>
99
+ <li><%= require.name %></li>
100
+ <% end %>
101
+ </ul>
102
+ </dd>
103
+ <% end %>
104
104
 
105
- <% if @options.webcvs %>
106
- <dt class="scs-url">Trac URL</dt>
107
- <dd class="scs-url"><a target="_top"
108
- href="<%= file.cvs_url %>"><%= file.cvs_url %></a></dd>
109
- <% end %>
110
- </dl>
111
- </div>
105
+ <% if @options.webcvs %>
106
+ <dt class="scs-url">Trac URL</dt>
107
+ <dd class="scs-url"><a target="_top"
108
+ href="<%= file.cvs_url %>"><%= file.cvs_url %></a></dd>
109
+ <% end %>
110
+ </dl>
111
+ </div>
112
112
 
113
- <div id="documentation">
114
- <% if file.comment %>
115
- <div class="description">
116
- <h2>Description</h2>
117
- <%= file.description %>
118
- </div>
119
- <% end %>
120
- </div>
113
+ <div id="documentation">
114
+ <% if file.comment %>
115
+ <div class="description">
116
+ <h2>Description</h2>
117
+ <%= file.description %>
118
+ </div>
119
+ <% end %>
120
+ </div>
121
121
  </body>
122
122
  <% end %>
123
123
  </html>
@@ -1,64 +1,64 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
3
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
4
4
 
5
5
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
6
6
  <head>
7
- <meta content="text/html; charset=<%= @options.charset %>" http-equiv="Content-Type" />
7
+ <meta content="text/html; charset=<%= @options.charset %>" http-equiv="Content-Type" />
8
8
 
9
- <title><%= h @options.title %></title>
9
+ <title><%= h @options.title %></title>
10
10
 
11
- <link type="text/css" media="screen" href="rdoc.css" rel="stylesheet" />
11
+ <link type="text/css" media="screen" href="rdoc.css" rel="stylesheet" />
12
12
 
13
- <script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
14
- <script src="js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
15
- <script src="js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
16
- <script src="js/darkfish.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
15
+ <script src="js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
16
+ <script src="js/darkfish.js" type="text/javascript" charset="utf-8"></script>
17
17
 
18
18
  </head>
19
19
  <body class="indexpage">
20
20
 
21
- <% $stderr.sync = true %>
22
- <h1><%= h @options.title %></h1>
21
+ <% $stderr.sync = true %>
22
+ <h1><%= h @options.title %></h1>
23
23
 
24
- <% if @options.main_page && main_page = @files.find { |f| f.full_name == @options.main_page } %>
25
- <div id="main">
26
- <%= main_page.description.sub(%r{^\s*<h1.*?/h1>}i, '') %>
27
- </div>
28
- <% else %>
29
- <p>This is the API documentation for '<%= @options.title %>'.</p>
30
- <% end %>
24
+ <% if @options.main_page && main_page = @files.find { |f| f.full_name == @options.main_page } then %>
25
+ <div id="main">
26
+ <%= main_page.description.sub(%r{^\s*<h1.*?/h1>}i, '') %>
27
+ </div>
28
+ <% else %>
29
+ <p>This is the API documentation for '<%= @options.title %>'.</p>
30
+ <% end %>
31
31
 
32
- <% simple_files = @files.select {|tl| tl.parser == RDoc::Parser::Simple } %>
33
- <% unless simple_files.empty? then %>
34
- <h2>Files</h2>
35
- <ul>
36
- <% simple_files.sort.each do |file| %>
37
- <li class="file"><a href="<%= file.path %>"><%= h file.base_name %></a></li>
38
- <% end %>
39
- </ul>
40
- <% end %>
32
+ <% simple_files = @files.select {|tl| tl.parser == RDoc::Parser::Simple } %>
33
+ <% unless simple_files.empty? then %>
34
+ <h2>Files</h2>
35
+ <ul>
36
+ <% simple_files.sort.each do |file| %>
37
+ <li class="file"><a href="<%= file.path %>"><%= h file.base_name %></a></li>
38
+ <% end %>
39
+ </ul>
40
+ <% end %>
41
41
 
42
- <h2 id="classes">Classes/Modules</h2>
43
- <ul>
44
- <% @modsort.each do |klass| %>
45
- <li class="<%= klass.type %>"><a href="<%= klass.path %>"><%= klass.full_name %></a></li>
46
- <% end %>
47
- </ul>
42
+ <h2 id="classes">Classes/Modules</h2>
43
+ <ul>
44
+ <% @modsort.each do |klass| %>
45
+ <li class="<%= klass.type %>"><a href="<%= klass.path %>"><%= klass.full_name %></a></li>
46
+ <% end %>
47
+ </ul>
48
48
 
49
- <h2 id="methods">Methods</h2>
50
- <ul>
51
- <% RDoc::TopLevel.all_classes_and_modules.map do |mod|
52
- mod.method_list
53
- end.flatten.sort.each do |method| %>
54
- <li><a href="<%= method.path %>"><%= method.pretty_name %> &mdash; <%= method.parent.full_name %></a></li>
55
- <% end %>
56
- </ul>
49
+ <h2 id="methods">Methods</h2>
50
+ <ul>
51
+ <% RDoc::TopLevel.all_classes_and_modules.map do |mod|
52
+ mod.method_list
53
+ end.flatten.sort.each do |method| %>
54
+ <li><a href="<%= method.path %>"><%= method.pretty_name %> &mdash; <%= method.parent.full_name %></a></li>
55
+ <% end %>
56
+ </ul>
57
57
 
58
- <div id="validator-badges">
59
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
60
- <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
61
- Rdoc Generator</a> <%= RDoc::Generator::Darkfish::VERSION %></small>.</p>
62
- </div>
58
+ <div id="validator-badges">
59
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
60
+ <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
61
+ Rdoc Generator</a> <%= RDoc::Generator::Darkfish::VERSION %></small>.</p>
62
+ </div>
63
63
  </body>
64
64
  </html>
@@ -12,76 +12,76 @@
12
12
 
13
13
  body {
14
14
  background: #efefef;
15
- font: 14px "Helvetica Neue", Helvetica, Tahoma, sans-serif;
15
+ font: 14px "Helvetica Neue", Helvetica, Tahoma, sans-serif;
16
16
  }
17
17
  body.class, body.module, body.file {
18
- margin-left: 40px;
18
+ margin-left: 40px;
19
19
  }
20
20
  body.file-popup {
21
- font-size: 90%;
22
- margin-left: 0;
21
+ font-size: 90%;
22
+ margin-left: 0;
23
23
  }
24
24
 
25
25
  h1 {
26
- font-size: 300%;
27
- text-shadow: rgba(135,145,135,0.65) 2px 2px 3px;
28
- color: #6C8C22;
26
+ font-size: 300%;
27
+ text-shadow: rgba(135,145,135,0.65) 2px 2px 3px;
28
+ color: #6C8C22;
29
29
  }
30
30
  h2,h3,h4 { margin-top: 1.5em; }
31
31
 
32
32
  :link,
33
33
  :visited {
34
- color: #6C8C22;
35
- text-decoration: none;
34
+ color: #6C8C22;
35
+ text-decoration: none;
36
36
  }
37
37
  :link:hover,
38
38
  :visited:hover {
39
- border-bottom: 1px dotted #6C8C22;
39
+ border-bottom: 1px dotted #6C8C22;
40
40
  }
41
41
 
42
42
  pre {
43
- background: #ddd;
44
- padding: 0.5em 0;
43
+ background: #ddd;
44
+ padding: 0.5em 0;
45
45
  }
46
46
 
47
47
 
48
48
  /* @group Generic Classes */
49
49
 
50
50
  .initially-hidden {
51
- display: none;
51
+ display: none;
52
52
  }
53
53
 
54
54
  .quicksearch-field {
55
- width: 98%;
56
- background: #ddd;
57
- border: 1px solid #aaa;
58
- height: 1.5em;
59
- -webkit-border-radius: 4px;
55
+ width: 98%;
56
+ background: #ddd;
57
+ border: 1px solid #aaa;
58
+ height: 1.5em;
59
+ -webkit-border-radius: 4px;
60
60
  }
61
61
  .quicksearch-field:focus {
62
- background: #f1edba;
62
+ background: #f1edba;
63
63
  }
64
64
 
65
65
  .missing-docs {
66
- font-size: 120%;
67
- background: white url(images/wrench_orange.png) no-repeat 4px center;
68
- color: #ccc;
69
- line-height: 2em;
70
- border: 1px solid #d00;
71
- opacity: 1;
72
- padding-left: 20px;
73
- text-indent: 24px;
74
- letter-spacing: 3px;
75
- font-weight: bold;
76
- -webkit-border-radius: 5px;
77
- -moz-border-radius: 5px;
66
+ font-size: 120%;
67
+ background: white url(images/wrench_orange.png) no-repeat 4px center;
68
+ color: #ccc;
69
+ line-height: 2em;
70
+ border: 1px solid #d00;
71
+ opacity: 1;
72
+ padding-left: 20px;
73
+ text-indent: 24px;
74
+ letter-spacing: 3px;
75
+ font-weight: bold;
76
+ -webkit-border-radius: 5px;
77
+ -moz-border-radius: 5px;
78
78
  }
79
79
 
80
80
  .target-section {
81
- border: 2px solid #dcce90;
82
- border-left-width: 8px;
83
- padding: 0 1em;
84
- background: #fff3c2;
81
+ border: 2px solid #dcce90;
82
+ border-left-width: 8px;
83
+ padding: 0 1em;
84
+ background: #fff3c2;
85
85
  }
86
86
 
87
87
  /* @end */
@@ -89,37 +89,37 @@ pre {
89
89
 
90
90
  /* @group Index Page, Standalone file pages */
91
91
  body.indexpage {
92
- margin: 1em 3em;
92
+ margin: 1em 3em;
93
93
  }
94
94
  body.indexpage p,
95
95
  body.indexpage div,
96
96
  body.file p {
97
- margin: 1em 0;
97
+ margin: 1em 0;
98
98
  }
99
99
 
100
100
  .indexpage ul,
101
101
  .file #documentation ul {
102
- line-height: 160%;
103
- list-style: none;
102
+ line-height: 160%;
103
+ list-style: none;
104
104
  }
105
105
  .indexpage ul :link,
106
106
  .indexpage ul :visited {
107
- font-size: 16px;
107
+ font-size: 16px;
108
108
  }
109
109
 
110
110
  .indexpage li,
111
111
  .file #documentation li {
112
- padding-left: 20px;
113
- background: url(images/bullet_black.png) no-repeat left 4px;
112
+ padding-left: 20px;
113
+ background: url(images/bullet_black.png) no-repeat left 4px;
114
114
  }
115
115
  .indexpage li.module {
116
- background: url(images/package.png) no-repeat left 4px;
116
+ background: url(images/package.png) no-repeat left 4px;
117
117
  }
118
118
  .indexpage li.class {
119
- background: url(images/ruby.png) no-repeat left 4px;
119
+ background: url(images/ruby.png) no-repeat left 4px;
120
120
  }
121
121
  .indexpage li.file {
122
- background: url(images/page_white_text.png) no-repeat left 4px;
122
+ background: url(images/page_white_text.png) no-repeat left 4px;
123
123
  }
124
124
  .file li p,
125
125
  .indexpage li p {
@@ -133,48 +133,48 @@ body.file p {
133
133
  .class #metadata,
134
134
  .file #metadata,
135
135
  .module #metadata {
136
- float: left;
137
- width: 260px;
136
+ float: left;
137
+ width: 260px;
138
138
  }
139
139
 
140
140
  .class #documentation,
141
141
  .file #documentation,
142
142
  .module #documentation {
143
- margin: 2em 1em 5em 300px;
144
- min-width: 340px;
143
+ margin: 2em 1em 5em 300px;
144
+ min-width: 340px;
145
145
  }
146
146
 
147
147
  .file #metadata {
148
- margin: 0.8em;
148
+ margin: 0.8em;
149
149
  }
150
150
 
151
151
  #validator-badges {
152
- clear: both;
153
- margin: 1em 1em 2em;
152
+ clear: both;
153
+ margin: 1em 1em 2em;
154
154
  }
155
155
 
156
156
  /* @end */
157
157
 
158
158
  /* @group Metadata Section */
159
159
  #metadata .section {
160
- background-color: #dedede;
161
- -moz-border-radius: 5px;
162
- -webkit-border-radius: 5px;
163
- border: 1px solid #aaa;
164
- margin: 0 8px 16px;
165
- font-size: 90%;
166
- overflow: hidden;
160
+ background-color: #dedede;
161
+ -moz-border-radius: 5px;
162
+ -webkit-border-radius: 5px;
163
+ border: 1px solid #aaa;
164
+ margin: 0 8px 16px;
165
+ font-size: 90%;
166
+ overflow: hidden;
167
167
  }
168
168
  #metadata h3.section-header {
169
- margin: 0;
170
- padding: 2px 8px;
171
- background: #ccc;
172
- color: #666;
173
- -moz-border-radius-topleft: 4px;
174
- -moz-border-radius-topright: 4px;
175
- -webkit-border-top-left-radius: 4px;
176
- -webkit-border-top-right-radius: 4px;
177
- border-bottom: 1px solid #aaa;
169
+ margin: 0;
170
+ padding: 2px 8px;
171
+ background: #ccc;
172
+ color: #666;
173
+ -moz-border-radius-topleft: 4px;
174
+ -moz-border-radius-topright: 4px;
175
+ -webkit-border-top-left-radius: 4px;
176
+ -webkit-border-top-right-radius: 4px;
177
+ border-bottom: 1px solid #aaa;
178
178
  }
179
179
  #metadata #home-section h3.section-header {
180
180
  border-bottom: 0;
@@ -183,33 +183,33 @@ body.file p {
183
183
  #metadata ul,
184
184
  #metadata dl,
185
185
  #metadata p {
186
- padding: 8px;
187
- list-style: none;
186
+ padding: 8px;
187
+ list-style: none;
188
188
  }
189
189
 
190
190
  #file-metadata ul {
191
- padding-left: 28px;
192
- list-style-image: url(images/page_green.png);
191
+ padding-left: 28px;
192
+ list-style-image: url(images/page_green.png);
193
193
  }
194
194
 
195
195
  dl.svninfo {
196
- color: #666;
197
- margin: 0;
196
+ color: #666;
197
+ margin: 0;
198
198
  }
199
199
  dl.svninfo dt {
200
- font-weight: bold;
200
+ font-weight: bold;
201
201
  }
202
202
 
203
203
  ul.link-list li {
204
- white-space: nowrap;
204
+ white-space: nowrap;
205
205
  }
206
206
  ul.link-list .type {
207
- font-size: 8px;
208
- text-transform: uppercase;
209
- color: white;
210
- background: #969696;
211
- padding: 2px 4px;
212
- -webkit-border-radius: 5px;
207
+ font-size: 8px;
208
+ text-transform: uppercase;
209
+ color: white;
210
+ background: #969696;
211
+ padding: 2px 4px;
212
+ -webkit-border-radius: 5px;
213
213
  }
214
214
 
215
215
  /* @end */
@@ -217,7 +217,7 @@ ul.link-list .type {
217
217
 
218
218
  /* @group Project Metadata Section */
219
219
  #project-metadata {
220
- margin-top: 3em;
220
+ margin-top: 3em;
221
221
  }
222
222
 
223
223
  .file #project-metadata {
@@ -225,34 +225,34 @@ ul.link-list .type {
225
225
  }
226
226
 
227
227
  #project-metadata .section {
228
- border: 1px solid #aaa;
228
+ border: 1px solid #aaa;
229
229
  }
230
230
  #project-metadata h3.section-header {
231
- border-bottom: 1px solid #aaa;
232
- position: relative;
231
+ border-bottom: 1px solid #aaa;
232
+ position: relative;
233
233
  }
234
234
  #project-metadata h3.section-header .search-toggle {
235
- position: absolute;
236
- right: 5px;
235
+ position: absolute;
236
+ right: 5px;
237
237
  }
238
238
 
239
239
 
240
240
  #project-metadata form {
241
- color: #777;
242
- background: #ccc;
243
- padding: 8px 8px 16px;
244
- border-bottom: 1px solid #bbb;
241
+ color: #777;
242
+ background: #ccc;
243
+ padding: 8px 8px 16px;
244
+ border-bottom: 1px solid #bbb;
245
245
  }
246
246
  #project-metadata fieldset {
247
- border: 0;
247
+ border: 0;
248
248
  }
249
249
 
250
250
  #no-class-search-results {
251
- margin: 0 auto 1em;
252
- text-align: center;
253
- font-size: 14px;
254
- font-weight: bold;
255
- color: #aaa;
251
+ margin: 0 auto 1em;
252
+ text-align: center;
253
+ font-size: 14px;
254
+ font-weight: bold;
255
+ color: #aaa;
256
256
  }
257
257
 
258
258
  /* @end */
@@ -260,12 +260,12 @@ ul.link-list .type {
260
260
 
261
261
  /* @group Documentation Section */
262
262
  #description {
263
- font-size: 100%;
264
- color: #333;
263
+ font-size: 100%;
264
+ color: #333;
265
265
  }
266
266
 
267
267
  #description p {
268
- margin: 1em 0.4em;
268
+ margin: 1em 0.4em;
269
269
  }
270
270
 
271
271
  #description li p {
@@ -273,152 +273,152 @@ ul.link-list .type {
273
273
  }
274
274
 
275
275
  #description ul {
276
- margin-left: 1.5em;
276
+ margin-left: 1.5em;
277
277
  }
278
278
  #description ul li {
279
- line-height: 1.4em;
279
+ line-height: 1.4em;
280
280
  }
281
281
 
282
282
  #description dl,
283
283
  #documentation dl {
284
- margin: 8px 1.5em;
285
- border: 1px solid #ccc;
284
+ margin: 8px 1.5em;
285
+ border: 1px solid #ccc;
286
286
  }
287
287
  #description dl {
288
- font-size: 14px;
288
+ font-size: 14px;
289
289
  }
290
290
 
291
291
  #description dt,
292
292
  #documentation dt {
293
- padding: 2px 4px;
294
- font-weight: bold;
295
- background: #ddd;
293
+ padding: 2px 4px;
294
+ font-weight: bold;
295
+ background: #ddd;
296
296
  }
297
297
  #description dd,
298
298
  #documentation dd {
299
- padding: 2px 12px;
299
+ padding: 2px 12px;
300
300
  }
301
301
  #description dd + dt,
302
302
  #documentation dd + dt {
303
- margin-top: 0.7em;
303
+ margin-top: 0.7em;
304
304
  }
305
305
 
306
306
  #documentation .section {
307
- font-size: 90%;
307
+ font-size: 90%;
308
308
  }
309
309
  #documentation h3.section-header {
310
- margin-top: 2em;
311
- padding: 0.75em 0.5em;
312
- background-color: #dedede;
313
- color: #333;
314
- font-size: 150%;
315
- border: 1px solid #bbb;
316
- -moz-border-radius: 3px;
317
- -webkit-border-radius: 3px;
310
+ margin-top: 2em;
311
+ padding: 0.75em 0.5em;
312
+ background-color: #dedede;
313
+ color: #333;
314
+ font-size: 150%;
315
+ border: 1px solid #bbb;
316
+ -moz-border-radius: 3px;
317
+ -webkit-border-radius: 3px;
318
318
  }
319
319
 
320
320
  #constants-list > dl,
321
321
  #attributes-list > dl {
322
- margin: 1em 0 2em;
323
- border: 0;
322
+ margin: 1em 0 2em;
323
+ border: 0;
324
324
  }
325
325
  #constants-list > dl dt,
326
326
  #attributes-list > dl dt {
327
- padding-left: 0;
328
- font-weight: bold;
329
- font-family: Monaco, "Andale Mono";
330
- background: inherit;
327
+ padding-left: 0;
328
+ font-weight: bold;
329
+ font-family: Monaco, "Andale Mono";
330
+ background: inherit;
331
331
  }
332
332
  #constants-list > dl dt a,
333
333
  #attributes-list > dl dt a {
334
- color: inherit;
334
+ color: inherit;
335
335
  }
336
336
  #constants-list > dl dd,
337
337
  #attributes-list > dl dd {
338
- margin: 0 0 1em 0;
339
- padding: 0;
340
- color: #666;
338
+ margin: 0 0 1em 0;
339
+ padding: 0;
340
+ color: #666;
341
341
  }
342
342
 
343
343
  /* @group Method Details */
344
344
 
345
345
  #documentation .method-source-code {
346
- display: none;
346
+ display: none;
347
347
  }
348
348
 
349
349
  #documentation .method-detail {
350
- margin: 0.5em 0;
351
- padding: 0.5em 0;
352
- cursor: pointer;
350
+ margin: 0.5em 0;
351
+ padding: 0.5em 0;
352
+ cursor: pointer;
353
353
  }
354
354
  #documentation .method-detail:hover {
355
- background-color: #f1edba;
355
+ background-color: #f1edba;
356
356
  }
357
357
  #documentation .method-heading {
358
- position: relative;
359
- padding: 2px 4px 0 20px;
360
- font-size: 125%;
361
- font-weight: bold;
362
- color: #333;
363
- background: url(images/brick.png) no-repeat left bottom;
358
+ position: relative;
359
+ padding: 2px 4px 0 20px;
360
+ font-size: 125%;
361
+ font-weight: bold;
362
+ color: #333;
363
+ background: url(images/brick.png) no-repeat left bottom;
364
364
  }
365
365
  #documentation .method-heading :link,
366
366
  #documentation .method-heading :visited {
367
- color: inherit;
367
+ color: inherit;
368
368
  }
369
369
  #documentation .method-click-advice {
370
- position: absolute;
371
- top: 2px;
372
- right: 5px;
373
- font-size: 10px;
374
- color: #9b9877;
375
- visibility: hidden;
376
- padding-right: 20px;
377
- line-height: 20px;
378
- background: url(images/zoom.png) no-repeat right top;
370
+ position: absolute;
371
+ top: 2px;
372
+ right: 5px;
373
+ font-size: 10px;
374
+ color: #9b9877;
375
+ visibility: hidden;
376
+ padding-right: 20px;
377
+ line-height: 20px;
378
+ background: url(images/zoom.png) no-repeat right top;
379
379
  }
380
380
  #documentation .method-detail:hover .method-click-advice {
381
- visibility: visible;
381
+ visibility: visible;
382
382
  }
383
383
 
384
384
  #documentation .method-alias .method-heading {
385
- color: #666;
386
- background: url(images/brick_link.png) no-repeat left bottom;
385
+ color: #666;
386
+ background: url(images/brick_link.png) no-repeat left bottom;
387
387
  }
388
388
 
389
389
  #documentation .method-description,
390
390
  #documentation .aliases {
391
- margin: 0 20px;
392
- line-height: 1.2em;
393
- color: #666;
391
+ margin: 0 20px;
392
+ line-height: 1.2em;
393
+ color: #666;
394
394
  }
395
395
  #documentation .aliases {
396
- padding-top: 4px;
397
- font-style: italic;
398
- cursor: default;
396
+ padding-top: 4px;
397
+ font-style: italic;
398
+ cursor: default;
399
399
  }
400
400
  #documentation .method-description p {
401
- padding: 0;
401
+ padding: 0;
402
402
  }
403
403
  #documentation .method-description p + p {
404
- margin-bottom: 0.5em;
404
+ margin-bottom: 0.5em;
405
405
  }
406
406
  #documentation .method-description ul {
407
407
  margin-left: 1.5em;
408
408
  }
409
409
 
410
410
  #documentation .attribute-method-heading {
411
- background: url(images/tag_green.png) no-repeat left bottom;
411
+ background: url(images/tag_green.png) no-repeat left bottom;
412
412
  }
413
413
  #documentation #attribute-method-details .method-detail:hover {
414
- background-color: transparent;
415
- cursor: default;
414
+ background-color: transparent;
415
+ cursor: default;
416
416
  }
417
417
  #documentation .attribute-access-type {
418
- font-size: 60%;
419
- text-transform: uppercase;
420
- vertical-align: super;
421
- padding: 0 2px;
418
+ font-size: 60%;
419
+ text-transform: uppercase;
420
+ vertical-align: super;
421
+ padding: 0 2px;
422
422
  }
423
423
  /* @end */
424
424
 
@@ -429,19 +429,19 @@ ul.link-list .type {
429
429
  /* @group Source Code */
430
430
 
431
431
  div.method-source-code {
432
- background: #262626;
433
- color: #efefef;
434
- margin: 1em;
435
- padding: 0.5em;
436
- border: 1px dashed #999;
437
- overflow: hidden;
432
+ background: #262626;
433
+ color: #efefef;
434
+ margin: 1em;
435
+ padding: 0.5em;
436
+ border: 1px dashed #999;
437
+ overflow: hidden;
438
438
  }
439
439
 
440
440
  div.method-source-code pre {
441
- background: inherit;
442
- padding: 0;
443
- color: white;
444
- overflow: auto;
441
+ background: inherit;
442
+ padding: 0;
443
+ color: white;
444
+ overflow: auto;
445
445
  }
446
446
 
447
447
  /* @group Ruby keyword styles */
@@ -467,51 +467,51 @@ div.method-source-code pre {
467
467
  }
468
468
 
469
469
  .file-popup dl {
470
- font-size: 80%;
471
- padding: 0.75em;
472
- background-color: #dedede;
473
- color: #333;
474
- border: 1px solid #bbb;
475
- -moz-border-radius: 3px;
476
- -webkit-border-radius: 3px;
470
+ font-size: 80%;
471
+ padding: 0.75em;
472
+ background-color: #dedede;
473
+ color: #333;
474
+ border: 1px solid #bbb;
475
+ -moz-border-radius: 3px;
476
+ -webkit-border-radius: 3px;
477
477
  }
478
478
  .file dt {
479
- font-weight: bold;
480
- padding-left: 22px;
481
- line-height: 20px;
482
- background: url(images/page_white_width.png) no-repeat left top;
479
+ font-weight: bold;
480
+ padding-left: 22px;
481
+ line-height: 20px;
482
+ background: url(images/page_white_width.png) no-repeat left top;
483
483
  }
484
484
  .file dt.modified-date {
485
- background: url(images/date.png) no-repeat left top;
485
+ background: url(images/date.png) no-repeat left top;
486
486
  }
487
487
  .file dt.requires {
488
- background: url(images/plugin.png) no-repeat left top;
488
+ background: url(images/plugin.png) no-repeat left top;
489
489
  }
490
490
  .file dt.scs-url {
491
- background: url(images/wrench.png) no-repeat left top;
491
+ background: url(images/wrench.png) no-repeat left top;
492
492
  }
493
493
 
494
494
  .file dl dd {
495
- margin: 0 0 1em 0;
495
+ margin: 0 0 1em 0;
496
496
  }
497
497
  .file #metadata dl dd ul {
498
- list-style: circle;
499
- margin-left: 20px;
500
- padding-top: 0;
498
+ list-style: circle;
499
+ margin-left: 20px;
500
+ padding-top: 0;
501
501
  }
502
502
  .file #metadata dl dd ul li {
503
503
  }
504
504
 
505
505
 
506
506
  .file h2 {
507
- margin-top: 2em;
508
- padding: 0.75em 0.5em;
509
- background-color: #dedede;
510
- color: #333;
511
- font-size: 120%;
512
- border: 1px solid #bbb;
513
- -moz-border-radius: 3px;
514
- -webkit-border-radius: 3px;
507
+ margin-top: 2em;
508
+ padding: 0.75em 0.5em;
509
+ background-color: #dedede;
510
+ color: #333;
511
+ font-size: 120%;
512
+ border: 1px solid #bbb;
513
+ -moz-border-radius: 3px;
514
+ -webkit-border-radius: 3px;
515
515
  }
516
516
 
517
517
  /* @end */
@@ -521,13 +521,13 @@ div.method-source-code pre {
521
521
 
522
522
  /* @group ThickBox Styles */
523
523
  #TB_window {
524
- font: 12px Arial, Helvetica, sans-serif;
525
- color: #333333;
524
+ font: 12px Arial, Helvetica, sans-serif;
525
+ color: #333333;
526
526
  }
527
527
 
528
528
  #TB_secondLine {
529
- font: 10px Arial, Helvetica, sans-serif;
530
- color:#666666;
529
+ font: 10px Arial, Helvetica, sans-serif;
530
+ color:#666666;
531
531
  }
532
532
 
533
533
  #TB_window :link,
@@ -540,147 +540,147 @@ div.method-source-code pre {
540
540
  #TB_window :visited:focus { color: #666666; }
541
541
 
542
542
  #TB_overlay {
543
- position: fixed;
544
- z-index:100;
545
- top: 0px;
546
- left: 0px;
547
- height:100%;
548
- width:100%;
543
+ position: fixed;
544
+ z-index:100;
545
+ top: 0px;
546
+ left: 0px;
547
+ height:100%;
548
+ width:100%;
549
549
  }
550
550
 
551
551
  .TB_overlayMacFFBGHack {background: url(images/macFFBgHack.png) repeat;}
552
552
  .TB_overlayBG {
553
- background-color:#000;
554
- filter:alpha(opacity=75);
555
- -moz-opacity: 0.75;
556
- opacity: 0.75;
553
+ background-color:#000;
554
+ filter:alpha(opacity=75);
555
+ -moz-opacity: 0.75;
556
+ opacity: 0.75;
557
557
  }
558
558
 
559
559
  * html #TB_overlay { /* ie6 hack */
560
- position: absolute;
561
- height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
560
+ position: absolute;
561
+ height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
562
562
  }
563
563
 
564
564
  #TB_window {
565
- position: fixed;
566
- background: #ffffff;
567
- z-index: 102;
568
- color:#000000;
569
- display:none;
570
- border: 4px solid #525252;
571
- text-align:left;
572
- top:50%;
573
- left:50%;
565
+ position: fixed;
566
+ background: #ffffff;
567
+ z-index: 102;
568
+ color:#000000;
569
+ display:none;
570
+ border: 4px solid #525252;
571
+ text-align:left;
572
+ top:50%;
573
+ left:50%;
574
574
  }
575
575
 
576
576
  * html #TB_window { /* ie6 hack */
577
- position: absolute;
578
- margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
577
+ position: absolute;
578
+ margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
579
579
  }
580
580
 
581
581
  #TB_window img#TB_Image {
582
- display:block;
583
- margin: 15px 0 0 15px;
584
- border-right: 1px solid #ccc;
585
- border-bottom: 1px solid #ccc;
586
- border-top: 1px solid #666;
587
- border-left: 1px solid #666;
582
+ display:block;
583
+ margin: 15px 0 0 15px;
584
+ border-right: 1px solid #ccc;
585
+ border-bottom: 1px solid #ccc;
586
+ border-top: 1px solid #666;
587
+ border-left: 1px solid #666;
588
588
  }
589
589
 
590
590
  #TB_caption{
591
- height:25px;
592
- padding:7px 30px 10px 25px;
593
- float:left;
591
+ height:25px;
592
+ padding:7px 30px 10px 25px;
593
+ float:left;
594
594
  }
595
595
 
596
596
  #TB_closeWindow{
597
- height:25px;
598
- padding:11px 25px 10px 0;
599
- float:right;
597
+ height:25px;
598
+ padding:11px 25px 10px 0;
599
+ float:right;
600
600
  }
601
601
 
602
602
  #TB_closeAjaxWindow{
603
- padding:7px 10px 5px 0;
604
- margin-bottom:1px;
605
- text-align:right;
606
- float:right;
603
+ padding:7px 10px 5px 0;
604
+ margin-bottom:1px;
605
+ text-align:right;
606
+ float:right;
607
607
  }
608
608
 
609
609
  #TB_ajaxWindowTitle{
610
- float:left;
611
- padding:7px 0 5px 10px;
612
- margin-bottom:1px;
613
- font-size: 22px;
610
+ float:left;
611
+ padding:7px 0 5px 10px;
612
+ margin-bottom:1px;
613
+ font-size: 22px;
614
614
  }
615
615
 
616
616
  #TB_title{
617
- background-color: #6C8C22;
618
- color: #dedede;
619
- height:40px;
617
+ background-color: #6C8C22;
618
+ color: #dedede;
619
+ height:40px;
620
620
  }
621
621
  #TB_title :link,
622
622
  #TB_title :visited {
623
- color: white !important;
624
- border-bottom: 1px dotted #dedede;
623
+ color: white !important;
624
+ border-bottom: 1px dotted #dedede;
625
625
  }
626
626
 
627
627
  #TB_ajaxContent{
628
- clear:both;
629
- padding:2px 15px 15px 15px;
630
- overflow:auto;
631
- text-align:left;
632
- line-height:1.4em;
628
+ clear:both;
629
+ padding:2px 15px 15px 15px;
630
+ overflow:auto;
631
+ text-align:left;
632
+ line-height:1.4em;
633
633
  }
634
634
 
635
635
  #TB_ajaxContent.TB_modal{
636
- padding:15px;
636
+ padding:15px;
637
637
  }
638
638
 
639
639
  #TB_ajaxContent p{
640
- padding:5px 0px 5px 0px;
640
+ padding:5px 0px 5px 0px;
641
641
  }
642
642
 
643
643
  #TB_load{
644
- position: fixed;
645
- display:none;
646
- height:13px;
647
- width:208px;
648
- z-index:103;
649
- top: 50%;
650
- left: 50%;
651
- margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
644
+ position: fixed;
645
+ display:none;
646
+ height:13px;
647
+ width:208px;
648
+ z-index:103;
649
+ top: 50%;
650
+ left: 50%;
651
+ margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
652
652
  }
653
653
 
654
654
  * html #TB_load { /* ie6 hack */
655
- position: absolute;
656
- margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
655
+ position: absolute;
656
+ margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
657
657
  }
658
658
 
659
659
  #TB_HideSelect{
660
- z-index:99;
661
- position:fixed;
662
- top: 0;
663
- left: 0;
664
- background-color:#fff;
665
- border:none;
666
- filter:alpha(opacity=0);
667
- -moz-opacity: 0;
668
- opacity: 0;
669
- height:100%;
670
- width:100%;
660
+ z-index:99;
661
+ position:fixed;
662
+ top: 0;
663
+ left: 0;
664
+ background-color:#fff;
665
+ border:none;
666
+ filter:alpha(opacity=0);
667
+ -moz-opacity: 0;
668
+ opacity: 0;
669
+ height:100%;
670
+ width:100%;
671
671
  }
672
672
 
673
673
  * html #TB_HideSelect { /* ie6 hack */
674
- position: absolute;
675
- height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
674
+ position: absolute;
675
+ height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
676
676
  }
677
677
 
678
678
  #TB_iframeContent{
679
- clear:both;
680
- border:none;
681
- margin-bottom:-1px;
682
- margin-top:1px;
683
- _margin-bottom:1px;
679
+ clear:both;
680
+ border:none;
681
+ margin-bottom:-1px;
682
+ margin-top:1px;
683
+ _margin-bottom:1px;
684
684
  }
685
685
 
686
686
  /* @end */
@@ -688,17 +688,17 @@ margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = d
688
688
  /* @group Debugging Section */
689
689
 
690
690
  #debugging-toggle {
691
- text-align: center;
691
+ text-align: center;
692
692
  }
693
693
  #debugging-toggle img {
694
- cursor: pointer;
694
+ cursor: pointer;
695
695
  }
696
696
 
697
697
  #rdoc-debugging-section-dump {
698
- display: none;
699
- margin: 0 2em 2em;
700
- background: #ccc;
701
- border: 1px solid #999;
698
+ display: none;
699
+ margin: 0 2em 2em;
700
+ background: #ccc;
701
+ border: 1px solid #999;
702
702
  }
703
703
 
704
704