nokogiri 1.11.7 → 1.12.0.rc1

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

Potentially problematic release.


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

Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE-DEPENDENCIES.md +243 -22
  3. data/LICENSE.md +1 -1
  4. data/README.md +6 -5
  5. data/ext/nokogiri/depend +35 -34
  6. data/ext/nokogiri/extconf.rb +181 -103
  7. data/ext/nokogiri/gumbo.c +611 -0
  8. data/ext/nokogiri/{html_document.c → html4_document.c} +8 -8
  9. data/ext/nokogiri/{html_element_description.c → html4_element_description.c} +20 -18
  10. data/ext/nokogiri/{html_entity_lookup.c → html4_entity_lookup.c} +7 -7
  11. data/ext/nokogiri/{html_sax_parser_context.c → html4_sax_parser_context.c} +5 -5
  12. data/ext/nokogiri/{html_sax_push_parser.c → html4_sax_push_parser.c} +4 -4
  13. data/ext/nokogiri/libxml2_backwards_compat.c +30 -30
  14. data/ext/nokogiri/nokogiri.c +51 -38
  15. data/ext/nokogiri/nokogiri.h +16 -9
  16. data/ext/nokogiri/xml_document.c +13 -13
  17. data/ext/nokogiri/xml_element_content.c +2 -0
  18. data/ext/nokogiri/xml_encoding_handler.c +11 -6
  19. data/ext/nokogiri/xml_namespace.c +2 -0
  20. data/ext/nokogiri/xml_node.c +102 -102
  21. data/ext/nokogiri/xml_node_set.c +20 -20
  22. data/ext/nokogiri/xml_reader.c +2 -0
  23. data/ext/nokogiri/xml_sax_parser.c +6 -6
  24. data/ext/nokogiri/xml_sax_parser_context.c +2 -0
  25. data/ext/nokogiri/xml_schema.c +2 -0
  26. data/ext/nokogiri/xml_xpath_context.c +67 -65
  27. data/ext/nokogiri/xslt_stylesheet.c +2 -1
  28. data/gumbo-parser/CHANGES.md +63 -0
  29. data/gumbo-parser/Makefile +101 -0
  30. data/gumbo-parser/THANKS +27 -0
  31. data/gumbo-parser/src/Makefile +17 -0
  32. data/gumbo-parser/src/README.md +41 -0
  33. data/gumbo-parser/src/ascii.c +75 -0
  34. data/gumbo-parser/src/ascii.h +115 -0
  35. data/gumbo-parser/src/attribute.c +42 -0
  36. data/gumbo-parser/src/attribute.h +17 -0
  37. data/gumbo-parser/src/char_ref.c +22225 -0
  38. data/gumbo-parser/src/char_ref.h +29 -0
  39. data/gumbo-parser/src/char_ref.rl +2154 -0
  40. data/gumbo-parser/src/error.c +626 -0
  41. data/gumbo-parser/src/error.h +148 -0
  42. data/gumbo-parser/src/foreign_attrs.c +104 -0
  43. data/gumbo-parser/src/foreign_attrs.gperf +27 -0
  44. data/gumbo-parser/src/gumbo.h +943 -0
  45. data/gumbo-parser/src/insertion_mode.h +33 -0
  46. data/gumbo-parser/src/macros.h +91 -0
  47. data/gumbo-parser/src/parser.c +4886 -0
  48. data/gumbo-parser/src/parser.h +41 -0
  49. data/gumbo-parser/src/replacement.h +33 -0
  50. data/gumbo-parser/src/string_buffer.c +103 -0
  51. data/gumbo-parser/src/string_buffer.h +68 -0
  52. data/gumbo-parser/src/string_piece.c +48 -0
  53. data/gumbo-parser/src/svg_attrs.c +174 -0
  54. data/gumbo-parser/src/svg_attrs.gperf +77 -0
  55. data/gumbo-parser/src/svg_tags.c +137 -0
  56. data/gumbo-parser/src/svg_tags.gperf +55 -0
  57. data/gumbo-parser/src/tag.c +222 -0
  58. data/gumbo-parser/src/tag_lookup.c +382 -0
  59. data/gumbo-parser/src/tag_lookup.gperf +169 -0
  60. data/gumbo-parser/src/tag_lookup.h +13 -0
  61. data/gumbo-parser/src/token_buffer.c +79 -0
  62. data/gumbo-parser/src/token_buffer.h +71 -0
  63. data/gumbo-parser/src/token_type.h +17 -0
  64. data/gumbo-parser/src/tokenizer.c +3463 -0
  65. data/gumbo-parser/src/tokenizer.h +112 -0
  66. data/gumbo-parser/src/tokenizer_states.h +339 -0
  67. data/gumbo-parser/src/utf8.c +245 -0
  68. data/gumbo-parser/src/utf8.h +164 -0
  69. data/gumbo-parser/src/util.c +68 -0
  70. data/gumbo-parser/src/util.h +30 -0
  71. data/gumbo-parser/src/vector.c +111 -0
  72. data/gumbo-parser/src/vector.h +45 -0
  73. data/lib/nokogiri.rb +31 -29
  74. data/lib/nokogiri/css.rb +14 -14
  75. data/lib/nokogiri/css/parser.rb +1 -1
  76. data/lib/nokogiri/css/parser.y +1 -1
  77. data/lib/nokogiri/css/syntax_error.rb +1 -1
  78. data/lib/nokogiri/extension.rb +2 -2
  79. data/lib/nokogiri/gumbo.rb +14 -0
  80. data/lib/nokogiri/html.rb +31 -27
  81. data/lib/nokogiri/html4.rb +40 -0
  82. data/lib/nokogiri/{html → html4}/builder.rb +2 -2
  83. data/lib/nokogiri/{html → html4}/document.rb +4 -4
  84. data/lib/nokogiri/{html → html4}/document_fragment.rb +3 -3
  85. data/lib/nokogiri/{html → html4}/element_description.rb +1 -1
  86. data/lib/nokogiri/{html → html4}/element_description_defaults.rb +1 -1
  87. data/lib/nokogiri/{html → html4}/entity_lookup.rb +1 -1
  88. data/lib/nokogiri/{html → html4}/sax/parser.rb +11 -14
  89. data/lib/nokogiri/html4/sax/parser_context.rb +19 -0
  90. data/lib/nokogiri/{html → html4}/sax/push_parser.rb +5 -5
  91. data/lib/nokogiri/html5.rb +473 -0
  92. data/lib/nokogiri/html5/document.rb +74 -0
  93. data/lib/nokogiri/html5/document_fragment.rb +80 -0
  94. data/lib/nokogiri/html5/node.rb +93 -0
  95. data/lib/nokogiri/version/constant.rb +1 -1
  96. data/lib/nokogiri/version/info.rb +11 -2
  97. data/lib/nokogiri/xml.rb +35 -36
  98. data/lib/nokogiri/xml/node.rb +6 -5
  99. data/lib/nokogiri/xml/parse_options.rb +2 -0
  100. data/lib/nokogiri/xml/pp.rb +2 -2
  101. data/lib/nokogiri/xml/sax.rb +4 -4
  102. data/lib/nokogiri/xml/sax/document.rb +24 -30
  103. data/lib/nokogiri/xml/xpath.rb +2 -2
  104. data/lib/nokogiri/xslt.rb +16 -16
  105. data/lib/nokogiri/xslt/stylesheet.rb +1 -1
  106. metadata +102 -60
  107. data/lib/nokogiri/html/sax/parser_context.rb +0 -17
@@ -0,0 +1,41 @@
1
+ #ifndef GUMBO_PARSER_H_
2
+ #define GUMBO_PARSER_H_
3
+
4
+ #ifdef __cplusplus
5
+ extern "C" {
6
+ #endif
7
+
8
+ // Contains the definition of the top-level GumboParser structure that's
9
+ // threaded through basically every internal function in the library.
10
+
11
+ struct GumboInternalParserState;
12
+ struct GumboInternalOutput;
13
+ struct GumboInternalOptions;
14
+ struct GumboInternalTokenizerState;
15
+
16
+ // An overarching struct that's threaded through (nearly) all functions in the
17
+ // library, OOP-style. This gives each function access to the options and
18
+ // output, along with any internal state needed for the parse.
19
+ typedef struct GumboInternalParser {
20
+ // Settings for this parse run.
21
+ const struct GumboInternalOptions* _options;
22
+
23
+ // Output for the parse.
24
+ struct GumboInternalOutput* _output;
25
+
26
+ // The internal tokenizer state, defined as a pointer to avoid a cyclic
27
+ // dependency on html5tokenizer.h. The main parse routine is responsible for
28
+ // initializing this on parse start, and destroying it on parse end.
29
+ // End-users will never see a non-garbage value in this pointer.
30
+ struct GumboInternalTokenizerState* _tokenizer_state;
31
+
32
+ // The internal parser state. Initialized on parse start and destroyed on
33
+ // parse end; end-users will never see a non-garbage value in this pointer.
34
+ struct GumboInternalParserState* _parser_state;
35
+ } GumboParser;
36
+
37
+ #ifdef __cplusplus
38
+ }
39
+ #endif
40
+
41
+ #endif // GUMBO_PARSER_H_
@@ -0,0 +1,33 @@
1
+ #ifndef GUMBO_REPLACEMENT_H_
2
+ #define GUMBO_REPLACEMENT_H_
3
+
4
+ #include <stddef.h>
5
+ #include "gumbo.h"
6
+
7
+ typedef struct {
8
+ const char *const from;
9
+ const char *const to;
10
+ } StringReplacement;
11
+
12
+ const StringReplacement *gumbo_get_svg_tag_replacement (
13
+ const char* str,
14
+ size_t len
15
+ );
16
+
17
+ const StringReplacement *gumbo_get_svg_attr_replacement (
18
+ const char* str,
19
+ size_t len
20
+ );
21
+
22
+ typedef struct {
23
+ const char *const from;
24
+ const char *const local_name;
25
+ const GumboAttributeNamespaceEnum attr_namespace;
26
+ } ForeignAttrReplacement;
27
+
28
+ const ForeignAttrReplacement *gumbo_get_foreign_attr_replacement (
29
+ const char* str,
30
+ size_t len
31
+ );
32
+
33
+ #endif // GUMBO_REPLACEMENT_H_
@@ -0,0 +1,103 @@
1
+ /*
2
+ Copyright 2010 Google Inc.
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ https://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */
16
+
17
+ #include <string.h>
18
+ #include "string_buffer.h"
19
+ #include "util.h"
20
+
21
+ // Size chosen via statistical analysis of ~60K websites.
22
+ // 99% of text nodes and 98% of attribute names/values fit in this initial size.
23
+ static const size_t kDefaultStringBufferSize = 5;
24
+
25
+ static void maybe_resize_string_buffer (
26
+ size_t additional_chars,
27
+ GumboStringBuffer* buffer
28
+ ) {
29
+ size_t new_length = buffer->length + additional_chars;
30
+ size_t new_capacity = buffer->capacity;
31
+ while (new_capacity < new_length) {
32
+ new_capacity *= 2;
33
+ }
34
+ if (new_capacity != buffer->capacity) {
35
+ buffer->data = gumbo_realloc(buffer->data, new_capacity);
36
+ buffer->capacity = new_capacity;
37
+ }
38
+ }
39
+
40
+ void gumbo_string_buffer_init(GumboStringBuffer* output) {
41
+ output->data = gumbo_alloc(kDefaultStringBufferSize);
42
+ output->length = 0;
43
+ output->capacity = kDefaultStringBufferSize;
44
+ }
45
+
46
+ void gumbo_string_buffer_reserve (
47
+ size_t min_capacity,
48
+ GumboStringBuffer* output
49
+ ) {
50
+ maybe_resize_string_buffer(min_capacity - output->length, output);
51
+ }
52
+
53
+ void gumbo_string_buffer_append_codepoint (
54
+ int c,
55
+ GumboStringBuffer* output
56
+ ) {
57
+ // num_bytes is actually the number of continuation bytes, 1 less than the
58
+ // total number of bytes. This is done to keep the loop below simple and
59
+ // should probably change if we unroll it.
60
+ int num_bytes, prefix;
61
+ if (c <= 0x7f) {
62
+ num_bytes = 0;
63
+ prefix = 0;
64
+ } else if (c <= 0x7ff) {
65
+ num_bytes = 1;
66
+ prefix = 0xc0;
67
+ } else if (c <= 0xffff) {
68
+ num_bytes = 2;
69
+ prefix = 0xe0;
70
+ } else {
71
+ num_bytes = 3;
72
+ prefix = 0xf0;
73
+ }
74
+ maybe_resize_string_buffer(num_bytes + 1, output);
75
+ output->data[output->length++] = prefix | (c >> (num_bytes * 6));
76
+ for (int i = num_bytes - 1; i >= 0; --i) {
77
+ output->data[output->length++] = 0x80 | (0x3f & (c >> (i * 6)));
78
+ }
79
+ }
80
+
81
+ void gumbo_string_buffer_append_string (
82
+ const GumboStringPiece* str,
83
+ GumboStringBuffer* output
84
+ ) {
85
+ maybe_resize_string_buffer(str->length, output);
86
+ memcpy(output->data + output->length, str->data, str->length);
87
+ output->length += str->length;
88
+ }
89
+
90
+ char* gumbo_string_buffer_to_string(const GumboStringBuffer* input) {
91
+ char* buffer = gumbo_alloc(input->length + 1);
92
+ memcpy(buffer, input->data, input->length);
93
+ buffer[input->length] = '\0';
94
+ return buffer;
95
+ }
96
+
97
+ void gumbo_string_buffer_clear(GumboStringBuffer* input) {
98
+ input->length = 0;
99
+ }
100
+
101
+ void gumbo_string_buffer_destroy(GumboStringBuffer* buffer) {
102
+ gumbo_free(buffer->data);
103
+ }
@@ -0,0 +1,68 @@
1
+ #ifndef GUMBO_STRING_BUFFER_H_
2
+ #define GUMBO_STRING_BUFFER_H_
3
+
4
+ #include <stdbool.h>
5
+ #include <stddef.h>
6
+
7
+ #include "gumbo.h"
8
+
9
+ #ifdef __cplusplus
10
+ extern "C" {
11
+ #endif
12
+
13
+ // A struct representing a mutable, growable string. This consists of a
14
+ // heap-allocated buffer that may grow (by doubling) as necessary. When
15
+ // converting to a string, this allocates a new buffer that is only as long as
16
+ // it needs to be. Note that the internal buffer here is *not* nul-terminated,
17
+ // so be sure not to use ordinary string manipulation functions on it.
18
+ typedef struct {
19
+ // A pointer to the beginning of the string. NULL if length == 0.
20
+ char* data;
21
+
22
+ // The length of the string fragment, in bytes. May be zero.
23
+ size_t length;
24
+
25
+ // The capacity of the buffer, in bytes.
26
+ size_t capacity;
27
+ } GumboStringBuffer;
28
+
29
+ // Initializes a new GumboStringBuffer.
30
+ void gumbo_string_buffer_init(GumboStringBuffer* output);
31
+
32
+ // Ensures that the buffer contains at least a certain amount of space. Most
33
+ // useful with snprintf and the other length-delimited string functions, which
34
+ // may want to write directly into the buffer.
35
+ void gumbo_string_buffer_reserve (
36
+ size_t min_capacity,
37
+ GumboStringBuffer* output
38
+ );
39
+
40
+ // Appends a single Unicode codepoint onto the end of the GumboStringBuffer.
41
+ // This is essentially a UTF-8 encoder, and may add 1-4 bytes depending on the
42
+ // value of the codepoint.
43
+ void gumbo_string_buffer_append_codepoint (
44
+ int c,
45
+ GumboStringBuffer* output
46
+ );
47
+
48
+ // Appends a string onto the end of the GumboStringBuffer.
49
+ void gumbo_string_buffer_append_string (
50
+ const GumboStringPiece* str,
51
+ GumboStringBuffer* output
52
+ );
53
+
54
+ // Converts this string buffer to const char*, alloctaing a new buffer for it.
55
+ char* gumbo_string_buffer_to_string(const GumboStringBuffer* input);
56
+
57
+ // Reinitialize this string buffer. This clears it by setting length=0. It
58
+ // does not zero out the buffer itself.
59
+ void gumbo_string_buffer_clear(GumboStringBuffer* input);
60
+
61
+ // Deallocates this GumboStringBuffer.
62
+ void gumbo_string_buffer_destroy(GumboStringBuffer* buffer);
63
+
64
+ #ifdef __cplusplus
65
+ }
66
+ #endif
67
+
68
+ #endif // GUMBO_STRING_BUFFER_H_
@@ -0,0 +1,48 @@
1
+ /*
2
+ Copyright 2018 Craig Barnes.
3
+ Copyright 2010 Google Inc.
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ https://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ */
17
+
18
+ #include <stddef.h>
19
+ #include <string.h>
20
+ #include "gumbo.h"
21
+ #include "ascii.h"
22
+
23
+ bool gumbo_string_equals (
24
+ const GumboStringPiece* str1,
25
+ const GumboStringPiece* str2
26
+ ) {
27
+ return
28
+ str1->length == str2->length
29
+ && !memcmp(str1->data, str2->data, str1->length);
30
+ }
31
+
32
+ bool gumbo_string_equals_ignore_case (
33
+ const GumboStringPiece* str1,
34
+ const GumboStringPiece* str2
35
+ ) {
36
+ return
37
+ str1->length == str2->length
38
+ && !gumbo_ascii_strncasecmp(str1->data, str2->data, str1->length);
39
+ }
40
+
41
+ bool gumbo_string_prefix_ignore_case (
42
+ const GumboStringPiece* prefix,
43
+ const GumboStringPiece* str
44
+ ) {
45
+ return
46
+ prefix->length <= str->length
47
+ && !gumbo_ascii_strncasecmp(prefix->data, str->data, prefix->length);
48
+ }
@@ -0,0 +1,174 @@
1
+ /* ANSI-C code produced by gperf version 3.1 */
2
+ /* Command-line: gperf -m100 lib/svg_attrs.gperf */
3
+ /* Computed positions: -k'1,10,$' */
4
+ /* Filtered by: mk/gperf-filter.sed */
5
+
6
+ #include "replacement.h"
7
+ #include "macros.h"
8
+ #include "ascii.h"
9
+ #include <string.h>
10
+
11
+ #define TOTAL_KEYWORDS 58
12
+ #define MIN_WORD_LENGTH 4
13
+ #define MAX_WORD_LENGTH 19
14
+ #define MIN_HASH_VALUE 5
15
+ #define MAX_HASH_VALUE 77
16
+ /* maximum key range = 73, duplicates = 0 */
17
+
18
+
19
+
20
+ static inline unsigned int
21
+ hash (register const char *str, register size_t len)
22
+ {
23
+ static const unsigned char asso_values[] =
24
+ {
25
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
26
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
27
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
28
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
29
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
30
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
31
+ 78, 78, 78, 78, 78, 5, 78, 39, 14, 1,
32
+ 31, 31, 13, 13, 78, 78, 22, 25, 10, 2,
33
+ 7, 78, 22, 0, 1, 3, 1, 78, 0, 36,
34
+ 14, 17, 20, 78, 78, 78, 78, 5, 78, 39,
35
+ 14, 1, 31, 31, 13, 13, 78, 78, 22, 25,
36
+ 10, 2, 7, 78, 22, 0, 1, 3, 1, 78,
37
+ 0, 36, 14, 17, 20, 78, 78, 78, 78, 78,
38
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
39
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
40
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
41
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
42
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
43
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
44
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
45
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
46
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
47
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
48
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
49
+ 78, 78, 78, 78, 78, 78, 78, 78, 78, 78,
50
+ 78, 78, 78, 78, 78, 78, 78, 78
51
+ };
52
+ register unsigned int hval = len;
53
+
54
+ switch (hval)
55
+ {
56
+ default:
57
+ hval += asso_values[(unsigned char)str[9]];
58
+ /*FALLTHROUGH*/
59
+ case 9:
60
+ case 8:
61
+ case 7:
62
+ case 6:
63
+ case 5:
64
+ case 4:
65
+ case 3:
66
+ case 2:
67
+ case 1:
68
+ hval += asso_values[(unsigned char)str[0]+2];
69
+ break;
70
+ }
71
+ return hval + asso_values[(unsigned char)str[len - 1]];
72
+ }
73
+
74
+ const StringReplacement *
75
+ gumbo_get_svg_attr_replacement (register const char *str, register size_t len)
76
+ {
77
+ static const unsigned char lengthtable[] =
78
+ {
79
+ 0, 0, 0, 0, 0, 4, 0, 7, 7, 0, 8, 9, 10, 11,
80
+ 11, 11, 11, 10, 16, 18, 16, 12, 16, 11, 13, 11, 12, 11,
81
+ 16, 0, 17, 9, 9, 8, 9, 10, 13, 10, 12, 14, 8, 4,
82
+ 12, 19, 7, 9, 12, 12, 11, 14, 10, 19, 8, 16, 13, 16,
83
+ 16, 15, 10, 12, 0, 0, 13, 13, 13, 0, 0, 9, 16, 0,
84
+ 0, 0, 0, 0, 0, 0, 0, 17
85
+ };
86
+ static const StringReplacement wordlist[] =
87
+ {
88
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
89
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
90
+ {(char*)0,(char*)0},
91
+ {"refx", "refX"},
92
+ {(char*)0,(char*)0},
93
+ {"viewbox", "viewBox"},
94
+ {"targetx", "targetX"},
95
+ {(char*)0,(char*)0},
96
+ {"calcmode", "calcMode"},
97
+ {"maskunits", "maskUnits"},
98
+ {"viewtarget", "viewTarget"},
99
+ {"tablevalues", "tableValues"},
100
+ {"markerunits", "markerUnits"},
101
+ {"stitchtiles", "stitchTiles"},
102
+ {"startoffset", "startOffset"},
103
+ {"numoctaves", "numOctaves"},
104
+ {"requiredfeatures", "requiredFeatures"},
105
+ {"requiredextensions", "requiredExtensions"},
106
+ {"specularexponent", "specularExponent"},
107
+ {"surfacescale", "surfaceScale"},
108
+ {"specularconstant", "specularConstant"},
109
+ {"repeatcount", "repeatCount"},
110
+ {"clippathunits", "clipPathUnits"},
111
+ {"filterunits", "filterUnits"},
112
+ {"lengthadjust", "lengthAdjust"},
113
+ {"markerwidth", "markerWidth"},
114
+ {"maskcontentunits", "maskContentUnits"},
115
+ {(char*)0,(char*)0},
116
+ {"limitingconeangle", "limitingConeAngle"},
117
+ {"pointsatx", "pointsAtX"},
118
+ {"repeatdur", "repeatDur"},
119
+ {"keytimes", "keyTimes"},
120
+ {"keypoints", "keyPoints"},
121
+ {"keysplines", "keySplines"},
122
+ {"gradientunits", "gradientUnits"},
123
+ {"textlength", "textLength"},
124
+ {"stddeviation", "stdDeviation"},
125
+ {"primitiveunits", "primitiveUnits"},
126
+ {"edgemode", "edgeMode"},
127
+ {"refy", "refY"},
128
+ {"spreadmethod", "spreadMethod"},
129
+ {"preserveaspectratio", "preserveAspectRatio"},
130
+ {"targety", "targetY"},
131
+ {"pointsatz", "pointsAtZ"},
132
+ {"markerheight", "markerHeight"},
133
+ {"patternunits", "patternUnits"},
134
+ {"baseprofile", "baseProfile"},
135
+ {"systemlanguage", "systemLanguage"},
136
+ {"zoomandpan", "zoomAndPan"},
137
+ {"patterncontentunits", "patternContentUnits"},
138
+ {"glyphref", "glyphRef"},
139
+ {"xchannelselector", "xChannelSelector"},
140
+ {"attributetype", "attributeType"},
141
+ {"kernelunitlength", "kernelUnitLength"},
142
+ {"ychannelselector", "yChannelSelector"},
143
+ {"diffuseconstant", "diffuseConstant"},
144
+ {"pathlength", "pathLength"},
145
+ {"kernelmatrix", "kernelMatrix"},
146
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
147
+ {"preservealpha", "preserveAlpha"},
148
+ {"attributename", "attributeName"},
149
+ {"basefrequency", "baseFrequency"},
150
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
151
+ {"pointsaty", "pointsAtY"},
152
+ {"patterntransform", "patternTransform"},
153
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
154
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
155
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
156
+ {(char*)0,(char*)0}, {(char*)0,(char*)0},
157
+ {"gradienttransform", "gradientTransform"}
158
+ };
159
+
160
+ if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH)
161
+ {
162
+ register unsigned int key = hash (str, len);
163
+
164
+ if (key <= MAX_HASH_VALUE)
165
+ if (len == lengthtable[key])
166
+ {
167
+ register const char *s = wordlist[key].from;
168
+
169
+ if (s && (((unsigned char)*str ^ (unsigned char)*s) & ~32) == 0 && !gumbo_ascii_strncasecmp(str, s, len))
170
+ return &wordlist[key];
171
+ }
172
+ }
173
+ return 0;
174
+ }