brotli 0.2.3 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/main.yml +37 -0
  3. data/.github/workflows/publish.yml +24 -0
  4. data/.gitmodules +1 -1
  5. data/Gemfile +6 -3
  6. data/README.md +2 -2
  7. data/Rakefile +16 -9
  8. data/brotli.gemspec +7 -13
  9. data/ext/brotli/brotli.c +210 -31
  10. data/ext/brotli/buffer.c +1 -7
  11. data/ext/brotli/buffer.h +1 -1
  12. data/ext/brotli/extconf.rb +25 -17
  13. data/lib/brotli/version.rb +1 -1
  14. data/test/brotli_test.rb +107 -0
  15. data/test/brotli_writer_test.rb +36 -0
  16. data/test/test_helper.rb +8 -0
  17. data/vendor/brotli/c/common/constants.c +15 -0
  18. data/vendor/brotli/c/common/constants.h +137 -0
  19. data/vendor/brotli/c/common/context.c +156 -0
  20. data/vendor/brotli/c/common/context.h +4 -152
  21. data/vendor/brotli/c/common/dictionary.bin.br +0 -0
  22. data/vendor/brotli/c/common/dictionary.c +14 -3
  23. data/vendor/brotli/c/common/platform.c +23 -0
  24. data/vendor/brotli/c/common/platform.h +95 -122
  25. data/vendor/brotli/c/common/shared_dictionary.c +521 -0
  26. data/vendor/brotli/c/common/shared_dictionary_internal.h +75 -0
  27. data/vendor/brotli/c/common/transform.c +60 -4
  28. data/vendor/brotli/c/common/transform.h +5 -0
  29. data/vendor/brotli/c/common/version.h +31 -6
  30. data/vendor/brotli/c/dec/bit_reader.c +34 -4
  31. data/vendor/brotli/c/dec/bit_reader.h +221 -107
  32. data/vendor/brotli/c/dec/decode.c +772 -403
  33. data/vendor/brotli/c/dec/huffman.c +7 -4
  34. data/vendor/brotli/c/dec/huffman.h +8 -13
  35. data/vendor/brotli/c/dec/prefix.h +1 -18
  36. data/vendor/brotli/c/dec/state.c +40 -21
  37. data/vendor/brotli/c/dec/state.h +201 -59
  38. data/vendor/brotli/c/enc/backward_references.c +88 -25
  39. data/vendor/brotli/c/enc/backward_references.h +10 -8
  40. data/vendor/brotli/c/enc/backward_references_hq.c +194 -80
  41. data/vendor/brotli/c/enc/backward_references_hq.h +17 -13
  42. data/vendor/brotli/c/enc/backward_references_inc.h +52 -16
  43. data/vendor/brotli/c/enc/bit_cost.c +8 -7
  44. data/vendor/brotli/c/enc/bit_cost.h +5 -4
  45. data/vendor/brotli/c/enc/block_splitter.c +40 -17
  46. data/vendor/brotli/c/enc/block_splitter.h +5 -4
  47. data/vendor/brotli/c/enc/block_splitter_inc.h +99 -49
  48. data/vendor/brotli/c/enc/brotli_bit_stream.c +142 -137
  49. data/vendor/brotli/c/enc/brotli_bit_stream.h +11 -6
  50. data/vendor/brotli/c/enc/cluster.c +10 -9
  51. data/vendor/brotli/c/enc/cluster.h +7 -6
  52. data/vendor/brotli/c/enc/cluster_inc.h +30 -22
  53. data/vendor/brotli/c/enc/command.c +28 -0
  54. data/vendor/brotli/c/enc/command.h +17 -16
  55. data/vendor/brotli/c/enc/compound_dictionary.c +207 -0
  56. data/vendor/brotli/c/enc/compound_dictionary.h +74 -0
  57. data/vendor/brotli/c/enc/compress_fragment.c +93 -83
  58. data/vendor/brotli/c/enc/compress_fragment.h +32 -7
  59. data/vendor/brotli/c/enc/compress_fragment_two_pass.c +100 -88
  60. data/vendor/brotli/c/enc/compress_fragment_two_pass.h +21 -3
  61. data/vendor/brotli/c/enc/dictionary_hash.c +1829 -1101
  62. data/vendor/brotli/c/enc/dictionary_hash.h +2 -1
  63. data/vendor/brotli/c/enc/encode.c +550 -416
  64. data/vendor/brotli/c/enc/encoder_dict.c +613 -5
  65. data/vendor/brotli/c/enc/encoder_dict.h +120 -4
  66. data/vendor/brotli/c/enc/entropy_encode.c +5 -2
  67. data/vendor/brotli/c/enc/entropy_encode.h +4 -3
  68. data/vendor/brotli/c/enc/entropy_encode_static.h +5 -2
  69. data/vendor/brotli/c/enc/fast_log.c +105 -0
  70. data/vendor/brotli/c/enc/fast_log.h +21 -101
  71. data/vendor/brotli/c/enc/find_match_length.h +17 -25
  72. data/vendor/brotli/c/enc/hash.h +350 -120
  73. data/vendor/brotli/c/enc/hash_composite_inc.h +71 -67
  74. data/vendor/brotli/c/enc/hash_forgetful_chain_inc.h +92 -51
  75. data/vendor/brotli/c/enc/hash_longest_match64_inc.h +79 -84
  76. data/vendor/brotli/c/enc/hash_longest_match_inc.h +53 -54
  77. data/vendor/brotli/c/enc/hash_longest_match_quickly_inc.h +93 -62
  78. data/vendor/brotli/c/enc/hash_rolling_inc.h +25 -29
  79. data/vendor/brotli/c/enc/hash_to_binary_tree_inc.h +42 -40
  80. data/vendor/brotli/c/enc/histogram.c +4 -4
  81. data/vendor/brotli/c/enc/histogram.h +7 -6
  82. data/vendor/brotli/c/enc/literal_cost.c +20 -15
  83. data/vendor/brotli/c/enc/literal_cost.h +4 -2
  84. data/vendor/brotli/c/enc/memory.c +29 -5
  85. data/vendor/brotli/c/enc/memory.h +43 -14
  86. data/vendor/brotli/c/enc/metablock.c +95 -85
  87. data/vendor/brotli/c/enc/metablock.h +9 -8
  88. data/vendor/brotli/c/enc/metablock_inc.h +9 -7
  89. data/vendor/brotli/c/enc/params.h +7 -4
  90. data/vendor/brotli/c/enc/prefix.h +3 -2
  91. data/vendor/brotli/c/enc/quality.h +40 -3
  92. data/vendor/brotli/c/enc/ringbuffer.h +8 -4
  93. data/vendor/brotli/c/enc/state.h +104 -0
  94. data/vendor/brotli/c/enc/static_dict.c +60 -4
  95. data/vendor/brotli/c/enc/static_dict.h +3 -2
  96. data/vendor/brotli/c/enc/static_dict_lut.h +2 -0
  97. data/vendor/brotli/c/enc/utf8_util.c +2 -2
  98. data/vendor/brotli/c/enc/utf8_util.h +2 -1
  99. data/vendor/brotli/c/enc/write_bits.h +29 -26
  100. data/vendor/brotli/c/include/brotli/decode.h +67 -2
  101. data/vendor/brotli/c/include/brotli/encode.h +77 -3
  102. data/vendor/brotli/c/include/brotli/port.h +34 -3
  103. data/vendor/brotli/c/include/brotli/shared_dictionary.h +100 -0
  104. metadata +23 -97
  105. data/.travis.yml +0 -31
  106. data/docs/Brotli/Error.html +0 -124
  107. data/docs/Brotli.html +0 -485
  108. data/docs/_index.html +0 -122
  109. data/docs/class_list.html +0 -51
  110. data/docs/css/common.css +0 -1
  111. data/docs/css/full_list.css +0 -58
  112. data/docs/css/style.css +0 -496
  113. data/docs/file.README.html +0 -127
  114. data/docs/file_list.html +0 -56
  115. data/docs/frames.html +0 -17
  116. data/docs/index.html +0 -127
  117. data/docs/js/app.js +0 -292
  118. data/docs/js/full_list.js +0 -216
  119. data/docs/js/jquery.js +0 -4
  120. data/docs/method_list.html +0 -67
  121. data/docs/top-level-namespace.html +0 -110
  122. data/spec/brotli_spec.rb +0 -88
  123. data/spec/inflate_spec.rb +0 -75
  124. data/spec/spec_helper.rb +0 -4
data/docs/Brotli.html DELETED
@@ -1,485 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>
7
- Module: Brotli
8
-
9
- &mdash; Documentation by YARD 0.9.16
10
-
11
- </title>
12
-
13
- <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
14
-
15
- <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
16
-
17
- <script type="text/javascript" charset="utf-8">
18
- pathId = "Brotli";
19
- relpath = '';
20
- </script>
21
-
22
-
23
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
24
-
25
- <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
26
-
27
-
28
- </head>
29
- <body>
30
- <div class="nav_wrap">
31
- <iframe id="nav" src="class_list.html?1"></iframe>
32
- <div id="resizer"></div>
33
- </div>
34
-
35
- <div id="main" tabindex="-1">
36
- <div id="header">
37
- <div id="menu">
38
-
39
- <a href="_index.html">Index (B)</a> &raquo;
40
-
41
-
42
- <span class="title">Brotli</span>
43
-
44
- </div>
45
-
46
- <div id="search">
47
-
48
- <a class="full_list_link" id="class_list_link"
49
- href="class_list.html">
50
-
51
- <svg width="24" height="24">
52
- <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
53
- <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
54
- <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
55
- </svg>
56
- </a>
57
-
58
- </div>
59
- <div class="clear"></div>
60
- </div>
61
-
62
- <div id="content"><h1>Module: Brotli
63
-
64
-
65
-
66
- </h1>
67
- <div class="box_info">
68
-
69
-
70
-
71
-
72
-
73
-
74
-
75
-
76
-
77
-
78
-
79
- <dl>
80
- <dt>Defined in:</dt>
81
- <dd>lib/brotli/version.rb<span class="defines">,<br />
82
- ext/brotli/brotli.c</span>
83
- </dd>
84
- </dl>
85
-
86
- </div>
87
-
88
- <h2>Defined Under Namespace</h2>
89
- <p class="children">
90
-
91
-
92
-
93
-
94
- <strong class="classes">Classes:</strong> <span class='object_link'><a href="Brotli/Error.html" title="Brotli::Error (class)">Error</a></span>
95
-
96
-
97
- </p>
98
-
99
-
100
- <h2>
101
- Constant Summary
102
- <small><a href="#" class="constants_summary_toggle">collapse</a></small>
103
- </h2>
104
-
105
- <dl class="constants">
106
-
107
- <dt id="VERSION-constant" class="">VERSION =
108
-
109
- </dt>
110
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.2.0</span><span class='tstring_end'>&#39;</span></span></pre></dd>
111
-
112
- </dl>
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
-
122
- <h2>
123
- Class Method Summary
124
- <small><a href="#" class="summary_toggle">collapse</a></small>
125
- </h2>
126
-
127
- <ul class="summary">
128
-
129
- <li class="public ">
130
- <span class="summary_signature">
131
-
132
- <a href="#deflate-class_method" title="deflate (class method)">.<strong>deflate</strong>(str, opts = nil) &#x21d2; String </a>
133
-
134
-
135
-
136
- </span>
137
-
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
-
146
- <span class="summary_desc"><div class='inline'>
147
- <p>Deflated string.</p>
148
- </div></span>
149
-
150
- </li>
151
-
152
-
153
- <li class="public ">
154
- <span class="summary_signature">
155
-
156
- <a href="#inflate-class_method" title="inflate (class method)">.<strong>inflate</strong>(str) &#x21d2; Object </a>
157
-
158
-
159
-
160
- </span>
161
-
162
-
163
-
164
-
165
-
166
-
167
-
168
-
169
-
170
- <span class="summary_desc"><div class='inline'></div></span>
171
-
172
- </li>
173
-
174
-
175
- </ul>
176
-
177
-
178
-
179
-
180
- <div id="class_method_details" class="method_details_list">
181
- <h2>Class Method Details</h2>
182
-
183
-
184
- <div class="method_details first">
185
- <h3 class="signature first" id="deflate-class_method">
186
-
187
- .<strong>deflate</strong>(str, opts = nil) &#x21d2; <tt>String</tt>
188
-
189
-
190
-
191
-
192
-
193
- </h3><div class="docstring">
194
- <div class="discussion">
195
-
196
- <p>Returns Deflated string</p>
197
-
198
-
199
- </div>
200
- </div>
201
- <div class="tags">
202
-
203
- <div class="docstring">
204
- <div class="discussion">
205
-
206
-
207
- </div>
208
- </div>
209
- <div class="tags">
210
-
211
- <p class="tag_title">Returns:</p>
212
- <ul class="return">
213
-
214
- <li>
215
-
216
-
217
- <span class='type'>(<tt>String</tt>)</span>
218
-
219
-
220
-
221
- </li>
222
-
223
- </ul>
224
-
225
- </div>
226
- <p class="tag_title">Parameters:</p>
227
- <ul class="param">
228
-
229
- <li>
230
-
231
- <span class='name'>str</span>
232
-
233
-
234
- <span class='type'>(<tt>String</tt>)</span>
235
-
236
-
237
-
238
- &mdash;
239
- <div class='inline'>
240
- <p>string</p>
241
- </div>
242
-
243
- </li>
244
-
245
- <li>
246
-
247
- <span class='name'>opts</span>
248
-
249
-
250
- <span class='type'>(<tt>Hash</tt>)</span>
251
-
252
-
253
-
254
- &mdash;
255
- <div class='inline'>
256
- <p>options</p>
257
- </div>
258
-
259
- </li>
260
-
261
- </ul>
262
-
263
-
264
-
265
-
266
-
267
- <p class="tag_title">Returns:</p>
268
- <ul class="return">
269
-
270
- <li>
271
-
272
-
273
- <span class='type'>(<tt>String</tt>)</span>
274
-
275
-
276
-
277
- &mdash;
278
- <div class='inline'>
279
- <p>Deflated string</p>
280
- </div>
281
-
282
- </li>
283
-
284
- </ul>
285
-
286
- </div><table class="source_code">
287
- <tr>
288
- <td>
289
- <pre class="lines">
290
-
291
-
292
- 264
293
- 265
294
- 266
295
- 267
296
- 268
297
- 269
298
- 270
299
- 271
300
- 272
301
- 273
302
- 274
303
- 275
304
- 276
305
- 277
306
- 278
307
- 279
308
- 280
309
- 281
310
- 282
311
- 283
312
- 284
313
- 285
314
- 286
315
- 287
316
- 288
317
- 289
318
- 290
319
- 291
320
- 292
321
- 293
322
- 294</pre>
323
- </td>
324
- <td>
325
- <pre class="code"><span class="info file"># File 'ext/brotli/brotli.c', line 264</span>
326
-
327
- static VALUE
328
- brotli_deflate(int argc, VALUE *argv, VALUE self)
329
- {
330
- VALUE str = Qnil, opts = Qnil, value = Qnil;
331
- brotli_deflate_args_t args;
332
-
333
- rb_scan_args(argc, argv, &quot;11&quot;, &amp;str, &amp;opts);
334
- StringValue(str);
335
-
336
- args.str = (uint8_t*)RSTRING_PTR(str);
337
- args.len = (size_t)RSTRING_LEN(str);
338
- args.s = brotli_deflate_parse_options(
339
- BrotliEncoderCreateInstance(brotli_alloc, brotli_free, NULL),
340
- opts);
341
- args.buffer = create_buffer(BUFSIZ);
342
- args.finished = BROTLI_FALSE;
343
-
344
- #ifdef HAVE_RUBY_THREAD_H
345
- rb_thread_call_without_gvl(brotli_deflate_no_gvl, (void *)&amp;args, NULL, NULL);
346
- #else
347
- brotli_deflate_no_gvl((void *)&amp;args);
348
- #endif
349
- if (args.finished == BROTLI_TRUE) {
350
- value = rb_str_new(args.buffer-&gt;ptr, args.buffer-&gt;used);
351
- }
352
-
353
- delete_buffer(args.buffer);
354
- BrotliEncoderDestroyInstance(args.s);
355
-
356
- return value;
357
- }</pre>
358
- </td>
359
- </tr>
360
- </table>
361
- </div>
362
-
363
- <div class="method_details ">
364
- <h3 class="signature " id="inflate-class_method">
365
-
366
- .<strong>inflate</strong>(str) &#x21d2; <tt>Object</tt>
367
-
368
-
369
-
370
-
371
-
372
- </h3><table class="source_code">
373
- <tr>
374
- <td>
375
- <pre class="lines">
376
-
377
-
378
- 72
379
- 73
380
- 74
381
- 75
382
- 76
383
- 77
384
- 78
385
- 79
386
- 80
387
- 81
388
- 82
389
- 83
390
- 84
391
- 85
392
- 86
393
- 87
394
- 88
395
- 89
396
- 90
397
- 91
398
- 92
399
- 93
400
- 94
401
- 95
402
- 96
403
- 97
404
- 98
405
- 99
406
- 100
407
- 101
408
- 102
409
- 103
410
- 104
411
- 105
412
- 106
413
- 107
414
- 108
415
- 109
416
- 110
417
- 111
418
- 112
419
- 113
420
- 114</pre>
421
- </td>
422
- <td>
423
- <pre class="code"><span class="info file"># File 'ext/brotli/brotli.c', line 72</span>
424
-
425
- static VALUE
426
- brotli_inflate(VALUE self, VALUE str)
427
- {
428
- VALUE value = Qnil;
429
- brotli_inflate_args_t args;
430
-
431
- StringValue(str);
432
-
433
- args.str = (uint8_t*)RSTRING_PTR(str);
434
- args.len = (size_t)RSTRING_LEN(str);
435
- args.buffer = create_buffer(BUFSIZ);
436
- args.s = BrotliDecoderCreateInstance(brotli_alloc,
437
- brotli_free,
438
- NULL);
439
- args.r = BROTLI_DECODER_RESULT_ERROR;
440
-
441
- #ifdef HAVE_RUBY_THREAD_H
442
- rb_thread_call_without_gvl(brotli_inflate_no_gvl, (void *)&amp;args, NULL, NULL);
443
- #else
444
- brotli_inflate_no_gvl((void *)&amp;args);
445
- #endif
446
- if (args.r == BROTLI_DECODER_RESULT_SUCCESS) {
447
- value = rb_str_new(args.buffer-&gt;ptr, args.buffer-&gt;used);
448
- delete_buffer(args.buffer);
449
- BrotliDecoderDestroyInstance(args.s);
450
- } else if (args.r == BROTLI_DECODER_RESULT_ERROR) {
451
- const char * error = BrotliDecoderErrorString(BrotliDecoderGetErrorCode(args.s));
452
- delete_buffer(args.buffer);
453
- BrotliDecoderDestroyInstance(args.s);
454
- rb_raise(rb_eBrotli, &quot;%s&quot;, error);
455
- } else if (args.r == BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT) {
456
- delete_buffer(args.buffer);
457
- BrotliDecoderDestroyInstance(args.s);
458
- rb_raise(rb_eBrotli, &quot;Needs more input&quot;);
459
- } else if (args.r == BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT) {
460
- /* never reach to this block */
461
- delete_buffer(args.buffer);
462
- BrotliDecoderDestroyInstance(args.s);
463
- rb_raise(rb_eBrotli, &quot;Needs more output&quot;);
464
- }
465
-
466
- return value;
467
- }</pre>
468
- </td>
469
- </tr>
470
- </table>
471
- </div>
472
-
473
- </div>
474
-
475
- </div>
476
-
477
- <div id="footer">
478
- Generated on Fri Aug 17 23:21:32 2018 by
479
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
480
- 0.9.16 (ruby-2.5.1).
481
- </div>
482
-
483
- </div>
484
- </body>
485
- </html>
data/docs/_index.html DELETED
@@ -1,122 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>
7
- Documentation by YARD 0.9.16
8
-
9
- </title>
10
-
11
- <link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
12
-
13
- <link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
14
-
15
- <script type="text/javascript" charset="utf-8">
16
- pathId = null;
17
- relpath = '';
18
- </script>
19
-
20
-
21
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
22
-
23
- <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
24
-
25
-
26
- </head>
27
- <body>
28
- <div class="nav_wrap">
29
- <iframe id="nav" src="class_list.html?1"></iframe>
30
- <div id="resizer"></div>
31
- </div>
32
-
33
- <div id="main" tabindex="-1">
34
- <div id="header">
35
- <div id="menu">
36
-
37
- </div>
38
-
39
- <div id="search">
40
-
41
- <a class="full_list_link" id="class_list_link"
42
- href="class_list.html">
43
-
44
- <svg width="24" height="24">
45
- <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
46
- <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
47
- <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
48
- </svg>
49
- </a>
50
-
51
- </div>
52
- <div class="clear"></div>
53
- </div>
54
-
55
- <div id="content"><h1 class="noborder title">Documentation by YARD 0.9.16</h1>
56
- <div id="listing">
57
- <h1 class="alphaindex">Alphabetic Index</h1>
58
-
59
- <h2>File Listing</h2>
60
- <ul id="files" class="index_inline_list">
61
-
62
-
63
- <li class="r1"><a href="index.html" title="README">README</a></li>
64
-
65
-
66
- </ul>
67
-
68
- <div class="clear"></div>
69
- <h2>Namespace Listing A-Z</h2>
70
-
71
-
72
-
73
-
74
- <table>
75
- <tr>
76
- <td valign='top' width="33%">
77
-
78
-
79
- <ul id="alpha_B" class="alpha">
80
- <li class="letter">B</li>
81
- <ul>
82
-
83
- <li>
84
- <span class='object_link'><a href="Brotli.html" title="Brotli (module)">Brotli</a></span>
85
-
86
- </li>
87
-
88
- </ul>
89
- </ul>
90
-
91
-
92
- <ul id="alpha_E" class="alpha">
93
- <li class="letter">E</li>
94
- <ul>
95
-
96
- <li>
97
- <span class='object_link'><a href="Brotli/Error.html" title="Brotli::Error (class)">Error</a></span>
98
-
99
- <small>(Brotli)</small>
100
-
101
- </li>
102
-
103
- </ul>
104
- </ul>
105
-
106
- </td>
107
- </tr>
108
- </table>
109
-
110
- </div>
111
-
112
- </div>
113
-
114
- <div id="footer">
115
- Generated on Fri Aug 17 23:21:32 2018 by
116
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
117
- 0.9.16 (ruby-2.5.1).
118
- </div>
119
-
120
- </div>
121
- </body>
122
- </html>
data/docs/class_list.html DELETED
@@ -1,51 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
- <meta charset="utf-8" />
6
-
7
- <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
8
-
9
- <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
10
-
11
-
12
-
13
- <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
14
-
15
- <script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
16
-
17
-
18
- <title>Class List</title>
19
- <base id="base_target" target="_parent" />
20
- </head>
21
- <body>
22
- <div id="content">
23
- <div class="fixed_header">
24
- <h1 id="full_list_header">Class List</h1>
25
- <div id="full_list_nav">
26
-
27
- <span><a target="_self" href="class_list.html">
28
- Classes
29
- </a></span>
30
-
31
- <span><a target="_self" href="method_list.html">
32
- Methods
33
- </a></span>
34
-
35
- <span><a target="_self" href="file_list.html">
36
- Files
37
- </a></span>
38
-
39
- </div>
40
-
41
- <div id="search">Search: <input type="text" /></div>
42
- </div>
43
-
44
- <ul id="full_list" class="class">
45
- <li id="object_" class="odd"><div class="item" style="padding-left:30px"><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></div></li>
46
- <li id='object_Brotli' class='even'><div class='item' style='padding-left:30px'><a class='toggle'></a> <span class='object_link'><a href="Brotli.html" title="Brotli (module)">Brotli</a></span><small class='search_info'>Top Level Namespace</small></div><ul><li id='object_Brotli::Error' class='collapsed odd'><div class='item' style='padding-left:45px'><span class='object_link'><a href="Brotli/Error.html" title="Brotli::Error (class)">Error</a></span> &lt; StandardError<small class='search_info'>Brotli</small></div></li></ul></li>
47
-
48
- </ul>
49
- </div>
50
- </body>
51
- </html>
data/docs/css/common.css DELETED
@@ -1 +0,0 @@
1
- /* Override this file with custom rules */