@@ -11,177 +11,177 @@ |
||
11 | 11 | class HTMLPurifier_Strategy_RemoveForeignElements extends HTMLPurifier_Strategy |
12 | 12 | { |
13 | 13 | |
14 | - public function execute($tokens, $config, $context) { |
|
15 | - $definition = $config->getHTMLDefinition(); |
|
16 | - $generator = new HTMLPurifier_Generator($config, $context); |
|
17 | - $result = array(); |
|
18 | - |
|
19 | - $escape_invalid_tags = $config->get('Core.EscapeInvalidTags'); |
|
20 | - $remove_invalid_img = $config->get('Core.RemoveInvalidImg'); |
|
21 | - |
|
22 | - // currently only used to determine if comments should be kept |
|
23 | - $trusted = $config->get('HTML.Trusted'); |
|
24 | - $comment_lookup = $config->get('HTML.AllowedComments'); |
|
25 | - $comment_regexp = $config->get('HTML.AllowedCommentsRegexp'); |
|
26 | - $check_comments = $comment_lookup !== array() || $comment_regexp !== null; |
|
27 | - |
|
28 | - $remove_script_contents = $config->get('Core.RemoveScriptContents'); |
|
29 | - $hidden_elements = $config->get('Core.HiddenElements'); |
|
30 | - |
|
31 | - // remove script contents compatibility |
|
32 | - if ($remove_script_contents === true) { |
|
33 | - $hidden_elements['script'] = true; |
|
34 | - } elseif ($remove_script_contents === false && isset($hidden_elements['script'])) { |
|
35 | - unset($hidden_elements['script']); |
|
36 | - } |
|
37 | - |
|
38 | - $attr_validator = new HTMLPurifier_AttrValidator(); |
|
39 | - |
|
40 | - // removes tokens until it reaches a closing tag with its value |
|
41 | - $remove_until = false; |
|
42 | - |
|
43 | - // converts comments into text tokens when this is equal to a tag name |
|
44 | - $textify_comments = false; |
|
45 | - |
|
46 | - $token = false; |
|
47 | - $context->register('CurrentToken', $token); |
|
48 | - |
|
49 | - $e = false; |
|
50 | - if ($config->get('Core.CollectErrors')) { |
|
51 | - $e =& $context->get('ErrorCollector'); |
|
52 | - } |
|
53 | - |
|
54 | - foreach($tokens as $token) { |
|
55 | - if ($remove_until) { |
|
56 | - if (empty($token->is_tag) || $token->name !== $remove_until) { |
|
57 | - continue; |
|
58 | - } |
|
59 | - } |
|
60 | - if (!empty( $token->is_tag )) { |
|
61 | - // DEFINITION CALL |
|
62 | - |
|
63 | - // before any processing, try to transform the element |
|
64 | - if ( |
|
65 | - isset($definition->info_tag_transform[$token->name]) |
|
66 | - ) { |
|
67 | - $original_name = $token->name; |
|
68 | - // there is a transformation for this tag |
|
69 | - // DEFINITION CALL |
|
70 | - $token = $definition-> |
|
71 | - info_tag_transform[$token->name]-> |
|
72 | - transform($token, $config, $context); |
|
73 | - if ($e) $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Tag transform', $original_name); |
|
74 | - } |
|
75 | - |
|
76 | - if (isset($definition->info[$token->name])) { |
|
77 | - |
|
78 | - // mostly everything's good, but |
|
79 | - // we need to make sure required attributes are in order |
|
80 | - if ( |
|
81 | - ($token instanceof HTMLPurifier_Token_Start || $token instanceof HTMLPurifier_Token_Empty) && |
|
82 | - $definition->info[$token->name]->required_attr && |
|
83 | - ($token->name != 'img' || $remove_invalid_img) // ensure config option still works |
|
84 | - ) { |
|
85 | - $attr_validator->validateToken($token, $config, $context); |
|
86 | - $ok = true; |
|
87 | - foreach ($definition->info[$token->name]->required_attr as $name) { |
|
88 | - if (!isset($token->attr[$name])) { |
|
89 | - $ok = false; |
|
90 | - break; |
|
91 | - } |
|
92 | - } |
|
93 | - if (!$ok) { |
|
94 | - if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Missing required attribute', $name); |
|
95 | - continue; |
|
96 | - } |
|
97 | - $token->armor['ValidateAttributes'] = true; |
|
98 | - } |
|
99 | - |
|
100 | - if (isset($hidden_elements[$token->name]) && $token instanceof HTMLPurifier_Token_Start) { |
|
101 | - $textify_comments = $token->name; |
|
102 | - } elseif ($token->name === $textify_comments && $token instanceof HTMLPurifier_Token_End) { |
|
103 | - $textify_comments = false; |
|
104 | - } |
|
105 | - |
|
106 | - } elseif ($escape_invalid_tags) { |
|
107 | - // invalid tag, generate HTML representation and insert in |
|
108 | - if ($e) $e->send(E_WARNING, 'Strategy_RemoveForeignElements: Foreign element to text'); |
|
109 | - $token = new HTMLPurifier_Token_Text( |
|
110 | - $generator->generateFromToken($token) |
|
111 | - ); |
|
112 | - } else { |
|
113 | - // check if we need to destroy all of the tag's children |
|
114 | - // CAN BE GENERICIZED |
|
115 | - if (isset($hidden_elements[$token->name])) { |
|
116 | - if ($token instanceof HTMLPurifier_Token_Start) { |
|
117 | - $remove_until = $token->name; |
|
118 | - } elseif ($token instanceof HTMLPurifier_Token_Empty) { |
|
119 | - // do nothing: we're still looking |
|
120 | - } else { |
|
121 | - $remove_until = false; |
|
122 | - } |
|
123 | - if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign meta element removed'); |
|
124 | - } else { |
|
125 | - if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign element removed'); |
|
126 | - } |
|
127 | - continue; |
|
128 | - } |
|
129 | - } elseif ($token instanceof HTMLPurifier_Token_Comment) { |
|
130 | - // textify comments in script tags when they are allowed |
|
131 | - if ($textify_comments !== false) { |
|
132 | - $data = $token->data; |
|
133 | - $token = new HTMLPurifier_Token_Text($data); |
|
134 | - } elseif ($trusted || $check_comments) { |
|
135 | - // always cleanup comments |
|
136 | - $trailing_hyphen = false; |
|
137 | - if ($e) { |
|
138 | - // perform check whether or not there's a trailing hyphen |
|
139 | - if (substr($token->data, -1) == '-') { |
|
140 | - $trailing_hyphen = true; |
|
141 | - } |
|
142 | - } |
|
143 | - $token->data = rtrim($token->data, '-'); |
|
144 | - $found_double_hyphen = false; |
|
145 | - while (strpos($token->data, '--') !== false) { |
|
146 | - $found_double_hyphen = true; |
|
147 | - $token->data = str_replace('--', '-', $token->data); |
|
148 | - } |
|
149 | - if ($trusted || !empty($comment_lookup[trim($token->data)]) || ($comment_regexp !== NULL && preg_match($comment_regexp, trim($token->data)))) { |
|
150 | - // OK good |
|
151 | - if ($e) { |
|
152 | - if ($trailing_hyphen) { |
|
153 | - $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Trailing hyphen in comment removed'); |
|
154 | - } |
|
155 | - if ($found_double_hyphen) { |
|
156 | - $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Hyphens in comment collapsed'); |
|
157 | - } |
|
158 | - } |
|
159 | - } else { |
|
160 | - if ($e) { |
|
161 | - $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed'); |
|
162 | - } |
|
163 | - continue; |
|
164 | - } |
|
165 | - } else { |
|
166 | - // strip comments |
|
167 | - if ($e) $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed'); |
|
168 | - continue; |
|
169 | - } |
|
170 | - } elseif ($token instanceof HTMLPurifier_Token_Text) { |
|
171 | - } else { |
|
172 | - continue; |
|
173 | - } |
|
174 | - $result[] = $token; |
|
175 | - } |
|
176 | - if ($remove_until && $e) { |
|
177 | - // we removed tokens until the end, throw error |
|
178 | - $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Token removed to end', $remove_until); |
|
179 | - } |
|
180 | - |
|
181 | - $context->destroy('CurrentToken'); |
|
182 | - |
|
183 | - return $result; |
|
184 | - } |
|
14 | + public function execute($tokens, $config, $context) { |
|
15 | + $definition = $config->getHTMLDefinition(); |
|
16 | + $generator = new HTMLPurifier_Generator($config, $context); |
|
17 | + $result = array(); |
|
18 | + |
|
19 | + $escape_invalid_tags = $config->get('Core.EscapeInvalidTags'); |
|
20 | + $remove_invalid_img = $config->get('Core.RemoveInvalidImg'); |
|
21 | + |
|
22 | + // currently only used to determine if comments should be kept |
|
23 | + $trusted = $config->get('HTML.Trusted'); |
|
24 | + $comment_lookup = $config->get('HTML.AllowedComments'); |
|
25 | + $comment_regexp = $config->get('HTML.AllowedCommentsRegexp'); |
|
26 | + $check_comments = $comment_lookup !== array() || $comment_regexp !== null; |
|
27 | + |
|
28 | + $remove_script_contents = $config->get('Core.RemoveScriptContents'); |
|
29 | + $hidden_elements = $config->get('Core.HiddenElements'); |
|
30 | + |
|
31 | + // remove script contents compatibility |
|
32 | + if ($remove_script_contents === true) { |
|
33 | + $hidden_elements['script'] = true; |
|
34 | + } elseif ($remove_script_contents === false && isset($hidden_elements['script'])) { |
|
35 | + unset($hidden_elements['script']); |
|
36 | + } |
|
37 | + |
|
38 | + $attr_validator = new HTMLPurifier_AttrValidator(); |
|
39 | + |
|
40 | + // removes tokens until it reaches a closing tag with its value |
|
41 | + $remove_until = false; |
|
42 | + |
|
43 | + // converts comments into text tokens when this is equal to a tag name |
|
44 | + $textify_comments = false; |
|
45 | + |
|
46 | + $token = false; |
|
47 | + $context->register('CurrentToken', $token); |
|
48 | + |
|
49 | + $e = false; |
|
50 | + if ($config->get('Core.CollectErrors')) { |
|
51 | + $e =& $context->get('ErrorCollector'); |
|
52 | + } |
|
53 | + |
|
54 | + foreach($tokens as $token) { |
|
55 | + if ($remove_until) { |
|
56 | + if (empty($token->is_tag) || $token->name !== $remove_until) { |
|
57 | + continue; |
|
58 | + } |
|
59 | + } |
|
60 | + if (!empty( $token->is_tag )) { |
|
61 | + // DEFINITION CALL |
|
62 | + |
|
63 | + // before any processing, try to transform the element |
|
64 | + if ( |
|
65 | + isset($definition->info_tag_transform[$token->name]) |
|
66 | + ) { |
|
67 | + $original_name = $token->name; |
|
68 | + // there is a transformation for this tag |
|
69 | + // DEFINITION CALL |
|
70 | + $token = $definition-> |
|
71 | + info_tag_transform[$token->name]-> |
|
72 | + transform($token, $config, $context); |
|
73 | + if ($e) $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Tag transform', $original_name); |
|
74 | + } |
|
75 | + |
|
76 | + if (isset($definition->info[$token->name])) { |
|
77 | + |
|
78 | + // mostly everything's good, but |
|
79 | + // we need to make sure required attributes are in order |
|
80 | + if ( |
|
81 | + ($token instanceof HTMLPurifier_Token_Start || $token instanceof HTMLPurifier_Token_Empty) && |
|
82 | + $definition->info[$token->name]->required_attr && |
|
83 | + ($token->name != 'img' || $remove_invalid_img) // ensure config option still works |
|
84 | + ) { |
|
85 | + $attr_validator->validateToken($token, $config, $context); |
|
86 | + $ok = true; |
|
87 | + foreach ($definition->info[$token->name]->required_attr as $name) { |
|
88 | + if (!isset($token->attr[$name])) { |
|
89 | + $ok = false; |
|
90 | + break; |
|
91 | + } |
|
92 | + } |
|
93 | + if (!$ok) { |
|
94 | + if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Missing required attribute', $name); |
|
95 | + continue; |
|
96 | + } |
|
97 | + $token->armor['ValidateAttributes'] = true; |
|
98 | + } |
|
99 | + |
|
100 | + if (isset($hidden_elements[$token->name]) && $token instanceof HTMLPurifier_Token_Start) { |
|
101 | + $textify_comments = $token->name; |
|
102 | + } elseif ($token->name === $textify_comments && $token instanceof HTMLPurifier_Token_End) { |
|
103 | + $textify_comments = false; |
|
104 | + } |
|
105 | + |
|
106 | + } elseif ($escape_invalid_tags) { |
|
107 | + // invalid tag, generate HTML representation and insert in |
|
108 | + if ($e) $e->send(E_WARNING, 'Strategy_RemoveForeignElements: Foreign element to text'); |
|
109 | + $token = new HTMLPurifier_Token_Text( |
|
110 | + $generator->generateFromToken($token) |
|
111 | + ); |
|
112 | + } else { |
|
113 | + // check if we need to destroy all of the tag's children |
|
114 | + // CAN BE GENERICIZED |
|
115 | + if (isset($hidden_elements[$token->name])) { |
|
116 | + if ($token instanceof HTMLPurifier_Token_Start) { |
|
117 | + $remove_until = $token->name; |
|
118 | + } elseif ($token instanceof HTMLPurifier_Token_Empty) { |
|
119 | + // do nothing: we're still looking |
|
120 | + } else { |
|
121 | + $remove_until = false; |
|
122 | + } |
|
123 | + if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign meta element removed'); |
|
124 | + } else { |
|
125 | + if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign element removed'); |
|
126 | + } |
|
127 | + continue; |
|
128 | + } |
|
129 | + } elseif ($token instanceof HTMLPurifier_Token_Comment) { |
|
130 | + // textify comments in script tags when they are allowed |
|
131 | + if ($textify_comments !== false) { |
|
132 | + $data = $token->data; |
|
133 | + $token = new HTMLPurifier_Token_Text($data); |
|
134 | + } elseif ($trusted || $check_comments) { |
|
135 | + // always cleanup comments |
|
136 | + $trailing_hyphen = false; |
|
137 | + if ($e) { |
|
138 | + // perform check whether or not there's a trailing hyphen |
|
139 | + if (substr($token->data, -1) == '-') { |
|
140 | + $trailing_hyphen = true; |
|
141 | + } |
|
142 | + } |
|
143 | + $token->data = rtrim($token->data, '-'); |
|
144 | + $found_double_hyphen = false; |
|
145 | + while (strpos($token->data, '--') !== false) { |
|
146 | + $found_double_hyphen = true; |
|
147 | + $token->data = str_replace('--', '-', $token->data); |
|
148 | + } |
|
149 | + if ($trusted || !empty($comment_lookup[trim($token->data)]) || ($comment_regexp !== NULL && preg_match($comment_regexp, trim($token->data)))) { |
|
150 | + // OK good |
|
151 | + if ($e) { |
|
152 | + if ($trailing_hyphen) { |
|
153 | + $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Trailing hyphen in comment removed'); |
|
154 | + } |
|
155 | + if ($found_double_hyphen) { |
|
156 | + $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Hyphens in comment collapsed'); |
|
157 | + } |
|
158 | + } |
|
159 | + } else { |
|
160 | + if ($e) { |
|
161 | + $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed'); |
|
162 | + } |
|
163 | + continue; |
|
164 | + } |
|
165 | + } else { |
|
166 | + // strip comments |
|
167 | + if ($e) $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed'); |
|
168 | + continue; |
|
169 | + } |
|
170 | + } elseif ($token instanceof HTMLPurifier_Token_Text) { |
|
171 | + } else { |
|
172 | + continue; |
|
173 | + } |
|
174 | + $result[] = $token; |
|
175 | + } |
|
176 | + if ($remove_until && $e) { |
|
177 | + // we removed tokens until the end, throw error |
|
178 | + $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Token removed to end', $remove_until); |
|
179 | + } |
|
180 | + |
|
181 | + $context->destroy('CurrentToken'); |
|
182 | + |
|
183 | + return $result; |
|
184 | + } |
|
185 | 185 | |
186 | 186 | } |
187 | 187 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $check_comments = $comment_lookup !== array() || $comment_regexp !== null; |
27 | 27 | |
28 | 28 | $remove_script_contents = $config->get('Core.RemoveScriptContents'); |
29 | - $hidden_elements = $config->get('Core.HiddenElements'); |
|
29 | + $hidden_elements = $config->get('Core.HiddenElements'); |
|
30 | 30 | |
31 | 31 | // remove script contents compatibility |
32 | 32 | if ($remove_script_contents === true) { |
@@ -48,16 +48,16 @@ discard block |
||
48 | 48 | |
49 | 49 | $e = false; |
50 | 50 | if ($config->get('Core.CollectErrors')) { |
51 | - $e =& $context->get('ErrorCollector'); |
|
51 | + $e = & $context->get('ErrorCollector'); |
|
52 | 52 | } |
53 | 53 | |
54 | - foreach($tokens as $token) { |
|
54 | + foreach ($tokens as $token) { |
|
55 | 55 | if ($remove_until) { |
56 | 56 | if (empty($token->is_tag) || $token->name !== $remove_until) { |
57 | 57 | continue; |
58 | 58 | } |
59 | 59 | } |
60 | - if (!empty( $token->is_tag )) { |
|
60 | + if (!empty($token->is_tag)) { |
|
61 | 61 | // DEFINITION CALL |
62 | 62 | |
63 | 63 | // before any processing, try to transform the element |
@@ -70,7 +70,9 @@ discard block |
||
70 | 70 | $token = $definition-> |
71 | 71 | info_tag_transform[$token->name]-> |
72 | 72 | transform($token, $config, $context); |
73 | - if ($e) $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Tag transform', $original_name); |
|
73 | + if ($e) { |
|
74 | + $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Tag transform', $original_name); |
|
75 | + } |
|
74 | 76 | } |
75 | 77 | |
76 | 78 | if (isset($definition->info[$token->name])) { |
@@ -91,7 +93,9 @@ discard block |
||
91 | 93 | } |
92 | 94 | } |
93 | 95 | if (!$ok) { |
94 | - if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Missing required attribute', $name); |
|
96 | + if ($e) { |
|
97 | + $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Missing required attribute', $name); |
|
98 | + } |
|
95 | 99 | continue; |
96 | 100 | } |
97 | 101 | $token->armor['ValidateAttributes'] = true; |
@@ -105,7 +109,9 @@ discard block |
||
105 | 109 | |
106 | 110 | } elseif ($escape_invalid_tags) { |
107 | 111 | // invalid tag, generate HTML representation and insert in |
108 | - if ($e) $e->send(E_WARNING, 'Strategy_RemoveForeignElements: Foreign element to text'); |
|
112 | + if ($e) { |
|
113 | + $e->send(E_WARNING, 'Strategy_RemoveForeignElements: Foreign element to text'); |
|
114 | + } |
|
109 | 115 | $token = new HTMLPurifier_Token_Text( |
110 | 116 | $generator->generateFromToken($token) |
111 | 117 | ); |
@@ -120,9 +126,13 @@ discard block |
||
120 | 126 | } else { |
121 | 127 | $remove_until = false; |
122 | 128 | } |
123 | - if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign meta element removed'); |
|
129 | + if ($e) { |
|
130 | + $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign meta element removed'); |
|
131 | + } |
|
124 | 132 | } else { |
125 | - if ($e) $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign element removed'); |
|
133 | + if ($e) { |
|
134 | + $e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign element removed'); |
|
135 | + } |
|
126 | 136 | } |
127 | 137 | continue; |
128 | 138 | } |
@@ -164,7 +174,9 @@ discard block |
||
164 | 174 | } |
165 | 175 | } else { |
166 | 176 | // strip comments |
167 | - if ($e) $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed'); |
|
177 | + if ($e) { |
|
178 | + $e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed'); |
|
179 | + } |
|
168 | 180 | continue; |
169 | 181 | } |
170 | 182 | } elseif ($token instanceof HTMLPurifier_Token_Text) { |
@@ -7,32 +7,32 @@ |
||
7 | 7 | class HTMLPurifier_Strategy_ValidateAttributes extends HTMLPurifier_Strategy |
8 | 8 | { |
9 | 9 | |
10 | - public function execute($tokens, $config, $context) { |
|
10 | + public function execute($tokens, $config, $context) { |
|
11 | 11 | |
12 | - // setup validator |
|
13 | - $validator = new HTMLPurifier_AttrValidator(); |
|
12 | + // setup validator |
|
13 | + $validator = new HTMLPurifier_AttrValidator(); |
|
14 | 14 | |
15 | - $token = false; |
|
16 | - $context->register('CurrentToken', $token); |
|
15 | + $token = false; |
|
16 | + $context->register('CurrentToken', $token); |
|
17 | 17 | |
18 | - foreach ($tokens as $key => $token) { |
|
18 | + foreach ($tokens as $key => $token) { |
|
19 | 19 | |
20 | - // only process tokens that have attributes, |
|
21 | - // namely start and empty tags |
|
22 | - if (!$token instanceof HTMLPurifier_Token_Start && !$token instanceof HTMLPurifier_Token_Empty) continue; |
|
20 | + // only process tokens that have attributes, |
|
21 | + // namely start and empty tags |
|
22 | + if (!$token instanceof HTMLPurifier_Token_Start && !$token instanceof HTMLPurifier_Token_Empty) continue; |
|
23 | 23 | |
24 | - // skip tokens that are armored |
|
25 | - if (!empty($token->armor['ValidateAttributes'])) continue; |
|
24 | + // skip tokens that are armored |
|
25 | + if (!empty($token->armor['ValidateAttributes'])) continue; |
|
26 | 26 | |
27 | - // note that we have no facilities here for removing tokens |
|
28 | - $validator->validateToken($token, $config, $context); |
|
27 | + // note that we have no facilities here for removing tokens |
|
28 | + $validator->validateToken($token, $config, $context); |
|
29 | 29 | |
30 | - $tokens[$key] = $token; // for PHP 4 |
|
31 | - } |
|
32 | - $context->destroy('CurrentToken'); |
|
30 | + $tokens[$key] = $token; // for PHP 4 |
|
31 | + } |
|
32 | + $context->destroy('CurrentToken'); |
|
33 | 33 | |
34 | - return $tokens; |
|
35 | - } |
|
34 | + return $tokens; |
|
35 | + } |
|
36 | 36 | |
37 | 37 | } |
38 | 38 |
@@ -19,10 +19,14 @@ |
||
19 | 19 | |
20 | 20 | // only process tokens that have attributes, |
21 | 21 | // namely start and empty tags |
22 | - if (!$token instanceof HTMLPurifier_Token_Start && !$token instanceof HTMLPurifier_Token_Empty) continue; |
|
22 | + if (!$token instanceof HTMLPurifier_Token_Start && !$token instanceof HTMLPurifier_Token_Empty) { |
|
23 | + continue; |
|
24 | + } |
|
23 | 25 | |
24 | 26 | // skip tokens that are armored |
25 | - if (!empty($token->armor['ValidateAttributes'])) continue; |
|
27 | + if (!empty($token->armor['ValidateAttributes'])) { |
|
28 | + continue; |
|
29 | + } |
|
26 | 30 | |
27 | 31 | // note that we have no facilities here for removing tokens |
28 | 32 | $validator->validateToken($token, $config, $context); |
@@ -10,30 +10,30 @@ |
||
10 | 10 | */ |
11 | 11 | class HTMLPurifier_StringHash extends ArrayObject |
12 | 12 | { |
13 | - protected $accessed = array(); |
|
13 | + protected $accessed = array(); |
|
14 | 14 | |
15 | - /** |
|
16 | - * Retrieves a value, and logs the access. |
|
17 | - */ |
|
18 | - public function offsetGet($index) { |
|
19 | - $this->accessed[$index] = true; |
|
20 | - return parent::offsetGet($index); |
|
21 | - } |
|
15 | + /** |
|
16 | + * Retrieves a value, and logs the access. |
|
17 | + */ |
|
18 | + public function offsetGet($index) { |
|
19 | + $this->accessed[$index] = true; |
|
20 | + return parent::offsetGet($index); |
|
21 | + } |
|
22 | 22 | |
23 | - /** |
|
24 | - * Returns a lookup array of all array indexes that have been accessed. |
|
25 | - * @return Array in form array($index => true). |
|
26 | - */ |
|
27 | - public function getAccessed() { |
|
28 | - return $this->accessed; |
|
29 | - } |
|
23 | + /** |
|
24 | + * Returns a lookup array of all array indexes that have been accessed. |
|
25 | + * @return Array in form array($index => true). |
|
26 | + */ |
|
27 | + public function getAccessed() { |
|
28 | + return $this->accessed; |
|
29 | + } |
|
30 | 30 | |
31 | - /** |
|
32 | - * Resets the access array. |
|
33 | - */ |
|
34 | - public function resetAccessed() { |
|
35 | - $this->accessed = array(); |
|
36 | - } |
|
31 | + /** |
|
32 | + * Resets the access array. |
|
33 | + */ |
|
34 | + public function resetAccessed() { |
|
35 | + $this->accessed = array(); |
|
36 | + } |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | // vim: et sw=4 sts=4 |
@@ -28,82 +28,82 @@ |
||
28 | 28 | class HTMLPurifier_StringHashParser |
29 | 29 | { |
30 | 30 | |
31 | - public $default = 'ID'; |
|
31 | + public $default = 'ID'; |
|
32 | 32 | |
33 | - /** |
|
34 | - * Parses a file that contains a single string-hash. |
|
35 | - */ |
|
36 | - public function parseFile($file) { |
|
37 | - if (!file_exists($file)) return false; |
|
38 | - $fh = fopen($file, 'r'); |
|
39 | - if (!$fh) return false; |
|
40 | - $ret = $this->parseHandle($fh); |
|
41 | - fclose($fh); |
|
42 | - return $ret; |
|
43 | - } |
|
33 | + /** |
|
34 | + * Parses a file that contains a single string-hash. |
|
35 | + */ |
|
36 | + public function parseFile($file) { |
|
37 | + if (!file_exists($file)) return false; |
|
38 | + $fh = fopen($file, 'r'); |
|
39 | + if (!$fh) return false; |
|
40 | + $ret = $this->parseHandle($fh); |
|
41 | + fclose($fh); |
|
42 | + return $ret; |
|
43 | + } |
|
44 | 44 | |
45 | - /** |
|
46 | - * Parses a file that contains multiple string-hashes delimited by '----' |
|
47 | - */ |
|
48 | - public function parseMultiFile($file) { |
|
49 | - if (!file_exists($file)) return false; |
|
50 | - $ret = array(); |
|
51 | - $fh = fopen($file, 'r'); |
|
52 | - if (!$fh) return false; |
|
53 | - while (!feof($fh)) { |
|
54 | - $ret[] = $this->parseHandle($fh); |
|
55 | - } |
|
56 | - fclose($fh); |
|
57 | - return $ret; |
|
58 | - } |
|
45 | + /** |
|
46 | + * Parses a file that contains multiple string-hashes delimited by '----' |
|
47 | + */ |
|
48 | + public function parseMultiFile($file) { |
|
49 | + if (!file_exists($file)) return false; |
|
50 | + $ret = array(); |
|
51 | + $fh = fopen($file, 'r'); |
|
52 | + if (!$fh) return false; |
|
53 | + while (!feof($fh)) { |
|
54 | + $ret[] = $this->parseHandle($fh); |
|
55 | + } |
|
56 | + fclose($fh); |
|
57 | + return $ret; |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * Internal parser that acepts a file handle. |
|
62 | - * @note While it's possible to simulate in-memory parsing by using |
|
63 | - * custom stream wrappers, if such a use-case arises we should |
|
64 | - * factor out the file handle into its own class. |
|
65 | - * @param $fh File handle with pointer at start of valid string-hash |
|
66 | - * block. |
|
67 | - */ |
|
68 | - protected function parseHandle($fh) { |
|
69 | - $state = false; |
|
70 | - $single = false; |
|
71 | - $ret = array(); |
|
72 | - do { |
|
73 | - $line = fgets($fh); |
|
74 | - if ($line === false) break; |
|
75 | - $line = rtrim($line, "\n\r"); |
|
76 | - if (!$state && $line === '') continue; |
|
77 | - if ($line === '----') break; |
|
78 | - if (strncmp('--#', $line, 3) === 0) { |
|
79 | - // Comment |
|
80 | - continue; |
|
81 | - } elseif (strncmp('--', $line, 2) === 0) { |
|
82 | - // Multiline declaration |
|
83 | - $state = trim($line, '- '); |
|
84 | - if (!isset($ret[$state])) $ret[$state] = ''; |
|
85 | - continue; |
|
86 | - } elseif (!$state) { |
|
87 | - $single = true; |
|
88 | - if (strpos($line, ':') !== false) { |
|
89 | - // Single-line declaration |
|
90 | - list($state, $line) = explode(':', $line, 2); |
|
91 | - $line = trim($line); |
|
92 | - } else { |
|
93 | - // Use default declaration |
|
94 | - $state = $this->default; |
|
95 | - } |
|
96 | - } |
|
97 | - if ($single) { |
|
98 | - $ret[$state] = $line; |
|
99 | - $single = false; |
|
100 | - $state = false; |
|
101 | - } else { |
|
102 | - $ret[$state] .= "$line\n"; |
|
103 | - } |
|
104 | - } while (!feof($fh)); |
|
105 | - return $ret; |
|
106 | - } |
|
60 | + /** |
|
61 | + * Internal parser that acepts a file handle. |
|
62 | + * @note While it's possible to simulate in-memory parsing by using |
|
63 | + * custom stream wrappers, if such a use-case arises we should |
|
64 | + * factor out the file handle into its own class. |
|
65 | + * @param $fh File handle with pointer at start of valid string-hash |
|
66 | + * block. |
|
67 | + */ |
|
68 | + protected function parseHandle($fh) { |
|
69 | + $state = false; |
|
70 | + $single = false; |
|
71 | + $ret = array(); |
|
72 | + do { |
|
73 | + $line = fgets($fh); |
|
74 | + if ($line === false) break; |
|
75 | + $line = rtrim($line, "\n\r"); |
|
76 | + if (!$state && $line === '') continue; |
|
77 | + if ($line === '----') break; |
|
78 | + if (strncmp('--#', $line, 3) === 0) { |
|
79 | + // Comment |
|
80 | + continue; |
|
81 | + } elseif (strncmp('--', $line, 2) === 0) { |
|
82 | + // Multiline declaration |
|
83 | + $state = trim($line, '- '); |
|
84 | + if (!isset($ret[$state])) $ret[$state] = ''; |
|
85 | + continue; |
|
86 | + } elseif (!$state) { |
|
87 | + $single = true; |
|
88 | + if (strpos($line, ':') !== false) { |
|
89 | + // Single-line declaration |
|
90 | + list($state, $line) = explode(':', $line, 2); |
|
91 | + $line = trim($line); |
|
92 | + } else { |
|
93 | + // Use default declaration |
|
94 | + $state = $this->default; |
|
95 | + } |
|
96 | + } |
|
97 | + if ($single) { |
|
98 | + $ret[$state] = $line; |
|
99 | + $single = false; |
|
100 | + $state = false; |
|
101 | + } else { |
|
102 | + $ret[$state] .= "$line\n"; |
|
103 | + } |
|
104 | + } while (!feof($fh)); |
|
105 | + return $ret; |
|
106 | + } |
|
107 | 107 | |
108 | 108 | } |
109 | 109 |
@@ -91,7 +91,7 @@ |
||
91 | 91 | $line = trim($line); |
92 | 92 | } else { |
93 | 93 | // Use default declaration |
94 | - $state = $this->default; |
|
94 | + $state = $this->default; |
|
95 | 95 | } |
96 | 96 | } |
97 | 97 | if ($single) { |
@@ -34,9 +34,13 @@ discard block |
||
34 | 34 | * Parses a file that contains a single string-hash. |
35 | 35 | */ |
36 | 36 | public function parseFile($file) { |
37 | - if (!file_exists($file)) return false; |
|
37 | + if (!file_exists($file)) { |
|
38 | + return false; |
|
39 | + } |
|
38 | 40 | $fh = fopen($file, 'r'); |
39 | - if (!$fh) return false; |
|
41 | + if (!$fh) { |
|
42 | + return false; |
|
43 | + } |
|
40 | 44 | $ret = $this->parseHandle($fh); |
41 | 45 | fclose($fh); |
42 | 46 | return $ret; |
@@ -46,10 +50,14 @@ discard block |
||
46 | 50 | * Parses a file that contains multiple string-hashes delimited by '----' |
47 | 51 | */ |
48 | 52 | public function parseMultiFile($file) { |
49 | - if (!file_exists($file)) return false; |
|
53 | + if (!file_exists($file)) { |
|
54 | + return false; |
|
55 | + } |
|
50 | 56 | $ret = array(); |
51 | 57 | $fh = fopen($file, 'r'); |
52 | - if (!$fh) return false; |
|
58 | + if (!$fh) { |
|
59 | + return false; |
|
60 | + } |
|
53 | 61 | while (!feof($fh)) { |
54 | 62 | $ret[] = $this->parseHandle($fh); |
55 | 63 | } |
@@ -71,17 +79,25 @@ discard block |
||
71 | 79 | $ret = array(); |
72 | 80 | do { |
73 | 81 | $line = fgets($fh); |
74 | - if ($line === false) break; |
|
82 | + if ($line === false) { |
|
83 | + break; |
|
84 | + } |
|
75 | 85 | $line = rtrim($line, "\n\r"); |
76 | - if (!$state && $line === '') continue; |
|
77 | - if ($line === '----') break; |
|
86 | + if (!$state && $line === '') { |
|
87 | + continue; |
|
88 | + } |
|
89 | + if ($line === '----') { |
|
90 | + break; |
|
91 | + } |
|
78 | 92 | if (strncmp('--#', $line, 3) === 0) { |
79 | 93 | // Comment |
80 | 94 | continue; |
81 | 95 | } elseif (strncmp('--', $line, 2) === 0) { |
82 | 96 | // Multiline declaration |
83 | 97 | $state = trim($line, '- '); |
84 | - if (!isset($ret[$state])) $ret[$state] = ''; |
|
98 | + if (!isset($ret[$state])) { |
|
99 | + $ret[$state] = ''; |
|
100 | + } |
|
85 | 101 | continue; |
86 | 102 | } elseif (!$state) { |
87 | 103 | $single = true; |
@@ -6,30 +6,30 @@ |
||
6 | 6 | abstract class HTMLPurifier_TagTransform |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * Tag name to transform the tag to. |
|
11 | - */ |
|
12 | - public $transform_to; |
|
9 | + /** |
|
10 | + * Tag name to transform the tag to. |
|
11 | + */ |
|
12 | + public $transform_to; |
|
13 | 13 | |
14 | - /** |
|
15 | - * Transforms the obsolete tag into the valid tag. |
|
16 | - * @param $tag Tag to be transformed. |
|
17 | - * @param $config Mandatory HTMLPurifier_Config object |
|
18 | - * @param $context Mandatory HTMLPurifier_Context object |
|
19 | - */ |
|
20 | - abstract public function transform($tag, $config, $context); |
|
14 | + /** |
|
15 | + * Transforms the obsolete tag into the valid tag. |
|
16 | + * @param $tag Tag to be transformed. |
|
17 | + * @param $config Mandatory HTMLPurifier_Config object |
|
18 | + * @param $context Mandatory HTMLPurifier_Context object |
|
19 | + */ |
|
20 | + abstract public function transform($tag, $config, $context); |
|
21 | 21 | |
22 | - /** |
|
23 | - * Prepends CSS properties to the style attribute, creating the |
|
24 | - * attribute if it doesn't exist. |
|
25 | - * @warning Copied over from AttrTransform, be sure to keep in sync |
|
26 | - * @param $attr Attribute array to process (passed by reference) |
|
27 | - * @param $css CSS to prepend |
|
28 | - */ |
|
29 | - protected function prependCSS(&$attr, $css) { |
|
30 | - $attr['style'] = isset($attr['style']) ? $attr['style'] : ''; |
|
31 | - $attr['style'] = $css . $attr['style']; |
|
32 | - } |
|
22 | + /** |
|
23 | + * Prepends CSS properties to the style attribute, creating the |
|
24 | + * attribute if it doesn't exist. |
|
25 | + * @warning Copied over from AttrTransform, be sure to keep in sync |
|
26 | + * @param $attr Attribute array to process (passed by reference) |
|
27 | + * @param $css CSS to prepend |
|
28 | + */ |
|
29 | + protected function prependCSS(&$attr, $css) { |
|
30 | + $attr['style'] = isset($attr['style']) ? $attr['style'] : ''; |
|
31 | + $attr['style'] = $css . $attr['style']; |
|
32 | + } |
|
33 | 33 | |
34 | 34 | } |
35 | 35 |
@@ -36,7 +36,7 @@ |
||
36 | 36 | */ |
37 | 37 | public function prependCSS(&$attr, $css) { |
38 | 38 | $attr['style'] = isset($attr['style']) ? $attr['style'] : ''; |
39 | - $attr['style'] = $css . $attr['style']; |
|
39 | + $attr['style'] = $css.$attr['style']; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -18,81 +18,81 @@ |
||
18 | 18 | class HTMLPurifier_TagTransform_Font extends HTMLPurifier_TagTransform |
19 | 19 | { |
20 | 20 | |
21 | - public $transform_to = 'span'; |
|
21 | + public $transform_to = 'span'; |
|
22 | 22 | |
23 | - protected $_size_lookup = array( |
|
24 | - '0' => 'xx-small', |
|
25 | - '1' => 'xx-small', |
|
26 | - '2' => 'small', |
|
27 | - '3' => 'medium', |
|
28 | - '4' => 'large', |
|
29 | - '5' => 'x-large', |
|
30 | - '6' => 'xx-large', |
|
31 | - '7' => '300%', |
|
32 | - '-1' => 'smaller', |
|
33 | - '-2' => '60%', |
|
34 | - '+1' => 'larger', |
|
35 | - '+2' => '150%', |
|
36 | - '+3' => '200%', |
|
37 | - '+4' => '300%' |
|
38 | - ); |
|
23 | + protected $_size_lookup = array( |
|
24 | + '0' => 'xx-small', |
|
25 | + '1' => 'xx-small', |
|
26 | + '2' => 'small', |
|
27 | + '3' => 'medium', |
|
28 | + '4' => 'large', |
|
29 | + '5' => 'x-large', |
|
30 | + '6' => 'xx-large', |
|
31 | + '7' => '300%', |
|
32 | + '-1' => 'smaller', |
|
33 | + '-2' => '60%', |
|
34 | + '+1' => 'larger', |
|
35 | + '+2' => '150%', |
|
36 | + '+3' => '200%', |
|
37 | + '+4' => '300%' |
|
38 | + ); |
|
39 | 39 | |
40 | - public function transform($tag, $config, $context) { |
|
40 | + public function transform($tag, $config, $context) { |
|
41 | 41 | |
42 | - if ($tag instanceof HTMLPurifier_Token_End) { |
|
43 | - $new_tag = clone $tag; |
|
44 | - $new_tag->name = $this->transform_to; |
|
45 | - return $new_tag; |
|
46 | - } |
|
42 | + if ($tag instanceof HTMLPurifier_Token_End) { |
|
43 | + $new_tag = clone $tag; |
|
44 | + $new_tag->name = $this->transform_to; |
|
45 | + return $new_tag; |
|
46 | + } |
|
47 | 47 | |
48 | - $attr = $tag->attr; |
|
49 | - $prepend_style = ''; |
|
48 | + $attr = $tag->attr; |
|
49 | + $prepend_style = ''; |
|
50 | 50 | |
51 | - // handle color transform |
|
52 | - if (isset($attr['color'])) { |
|
53 | - $prepend_style .= 'color:' . $attr['color'] . ';'; |
|
54 | - unset($attr['color']); |
|
55 | - } |
|
51 | + // handle color transform |
|
52 | + if (isset($attr['color'])) { |
|
53 | + $prepend_style .= 'color:' . $attr['color'] . ';'; |
|
54 | + unset($attr['color']); |
|
55 | + } |
|
56 | 56 | |
57 | - // handle face transform |
|
58 | - if (isset($attr['face'])) { |
|
59 | - $prepend_style .= 'font-family:' . $attr['face'] . ';'; |
|
60 | - unset($attr['face']); |
|
61 | - } |
|
57 | + // handle face transform |
|
58 | + if (isset($attr['face'])) { |
|
59 | + $prepend_style .= 'font-family:' . $attr['face'] . ';'; |
|
60 | + unset($attr['face']); |
|
61 | + } |
|
62 | 62 | |
63 | - // handle size transform |
|
64 | - if (isset($attr['size'])) { |
|
65 | - // normalize large numbers |
|
66 | - if ($attr['size'] !== '') { |
|
67 | - if ($attr['size']{0} == '+' || $attr['size']{0} == '-') { |
|
68 | - $size = (int) $attr['size']; |
|
69 | - if ($size < -2) $attr['size'] = '-2'; |
|
70 | - if ($size > 4) $attr['size'] = '+4'; |
|
71 | - } else { |
|
72 | - $size = (int) $attr['size']; |
|
73 | - if ($size > 7) $attr['size'] = '7'; |
|
74 | - } |
|
75 | - } |
|
76 | - if (isset($this->_size_lookup[$attr['size']])) { |
|
77 | - $prepend_style .= 'font-size:' . |
|
78 | - $this->_size_lookup[$attr['size']] . ';'; |
|
79 | - } |
|
80 | - unset($attr['size']); |
|
81 | - } |
|
63 | + // handle size transform |
|
64 | + if (isset($attr['size'])) { |
|
65 | + // normalize large numbers |
|
66 | + if ($attr['size'] !== '') { |
|
67 | + if ($attr['size']{0} == '+' || $attr['size']{0} == '-') { |
|
68 | + $size = (int) $attr['size']; |
|
69 | + if ($size < -2) $attr['size'] = '-2'; |
|
70 | + if ($size > 4) $attr['size'] = '+4'; |
|
71 | + } else { |
|
72 | + $size = (int) $attr['size']; |
|
73 | + if ($size > 7) $attr['size'] = '7'; |
|
74 | + } |
|
75 | + } |
|
76 | + if (isset($this->_size_lookup[$attr['size']])) { |
|
77 | + $prepend_style .= 'font-size:' . |
|
78 | + $this->_size_lookup[$attr['size']] . ';'; |
|
79 | + } |
|
80 | + unset($attr['size']); |
|
81 | + } |
|
82 | 82 | |
83 | - if ($prepend_style) { |
|
84 | - $attr['style'] = isset($attr['style']) ? |
|
85 | - $prepend_style . $attr['style'] : |
|
86 | - $prepend_style; |
|
87 | - } |
|
83 | + if ($prepend_style) { |
|
84 | + $attr['style'] = isset($attr['style']) ? |
|
85 | + $prepend_style . $attr['style'] : |
|
86 | + $prepend_style; |
|
87 | + } |
|
88 | 88 | |
89 | - $new_tag = clone $tag; |
|
90 | - $new_tag->name = $this->transform_to; |
|
91 | - $new_tag->attr = $attr; |
|
89 | + $new_tag = clone $tag; |
|
90 | + $new_tag->name = $this->transform_to; |
|
91 | + $new_tag->attr = $attr; |
|
92 | 92 | |
93 | - return $new_tag; |
|
93 | + return $new_tag; |
|
94 | 94 | |
95 | - } |
|
95 | + } |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | // vim: et sw=4 sts=4 |
@@ -66,11 +66,17 @@ |
||
66 | 66 | if ($attr['size'] !== '') { |
67 | 67 | if ($attr['size']{0} == '+' || $attr['size']{0} == '-') { |
68 | 68 | $size = (int) $attr['size']; |
69 | - if ($size < -2) $attr['size'] = '-2'; |
|
70 | - if ($size > 4) $attr['size'] = '+4'; |
|
69 | + if ($size < -2) { |
|
70 | + $attr['size'] = '-2'; |
|
71 | + } |
|
72 | + if ($size > 4) { |
|
73 | + $attr['size'] = '+4'; |
|
74 | + } |
|
71 | 75 | } else { |
72 | 76 | $size = (int) $attr['size']; |
73 | - if ($size > 7) $attr['size'] = '7'; |
|
77 | + if ($size > 7) { |
|
78 | + $attr['size'] = '7'; |
|
79 | + } |
|
74 | 80 | } |
75 | 81 | } |
76 | 82 | if (isset($this->_size_lookup[$attr['size']])) { |
@@ -50,13 +50,13 @@ discard block |
||
50 | 50 | |
51 | 51 | // handle color transform |
52 | 52 | if (isset($attr['color'])) { |
53 | - $prepend_style .= 'color:' . $attr['color'] . ';'; |
|
53 | + $prepend_style .= 'color:'.$attr['color'].';'; |
|
54 | 54 | unset($attr['color']); |
55 | 55 | } |
56 | 56 | |
57 | 57 | // handle face transform |
58 | 58 | if (isset($attr['face'])) { |
59 | - $prepend_style .= 'font-family:' . $attr['face'] . ';'; |
|
59 | + $prepend_style .= 'font-family:'.$attr['face'].';'; |
|
60 | 60 | unset($attr['face']); |
61 | 61 | } |
62 | 62 | |
@@ -74,16 +74,15 @@ discard block |
||
74 | 74 | } |
75 | 75 | } |
76 | 76 | if (isset($this->_size_lookup[$attr['size']])) { |
77 | - $prepend_style .= 'font-size:' . |
|
78 | - $this->_size_lookup[$attr['size']] . ';'; |
|
77 | + $prepend_style .= 'font-size:'. |
|
78 | + $this->_size_lookup[$attr['size']].';'; |
|
79 | 79 | } |
80 | 80 | unset($attr['size']); |
81 | 81 | } |
82 | 82 | |
83 | 83 | if ($prepend_style) { |
84 | 84 | $attr['style'] = isset($attr['style']) ? |
85 | - $prepend_style . $attr['style'] : |
|
86 | - $prepend_style; |
|
85 | + $prepend_style.$attr['style'] : $prepend_style; |
|
87 | 86 | } |
88 | 87 | |
89 | 88 | $new_tag = clone $tag; |
@@ -8,27 +8,27 @@ |
||
8 | 8 | class HTMLPurifier_TagTransform_Simple extends HTMLPurifier_TagTransform |
9 | 9 | { |
10 | 10 | |
11 | - protected $style; |
|
11 | + protected $style; |
|
12 | 12 | |
13 | - /** |
|
14 | - * @param $transform_to Tag name to transform to. |
|
15 | - * @param $style CSS style to add to the tag |
|
16 | - */ |
|
17 | - public function __construct($transform_to, $style = null) { |
|
18 | - $this->transform_to = $transform_to; |
|
19 | - $this->style = $style; |
|
20 | - } |
|
13 | + /** |
|
14 | + * @param $transform_to Tag name to transform to. |
|
15 | + * @param $style CSS style to add to the tag |
|
16 | + */ |
|
17 | + public function __construct($transform_to, $style = null) { |
|
18 | + $this->transform_to = $transform_to; |
|
19 | + $this->style = $style; |
|
20 | + } |
|
21 | 21 | |
22 | - public function transform($tag, $config, $context) { |
|
23 | - $new_tag = clone $tag; |
|
24 | - $new_tag->name = $this->transform_to; |
|
25 | - if (!is_null($this->style) && |
|
26 | - ($new_tag instanceof HTMLPurifier_Token_Start || $new_tag instanceof HTMLPurifier_Token_Empty) |
|
27 | - ) { |
|
28 | - $this->prependCSS($new_tag->attr, $this->style); |
|
29 | - } |
|
30 | - return $new_tag; |
|
31 | - } |
|
22 | + public function transform($tag, $config, $context) { |
|
23 | + $new_tag = clone $tag; |
|
24 | + $new_tag->name = $this->transform_to; |
|
25 | + if (!is_null($this->style) && |
|
26 | + ($new_tag instanceof HTMLPurifier_Token_Start || $new_tag instanceof HTMLPurifier_Token_Empty) |
|
27 | + ) { |
|
28 | + $this->prependCSS($new_tag->attr, $this->style); |
|
29 | + } |
|
30 | + return $new_tag; |
|
31 | + } |
|
32 | 32 | |
33 | 33 | } |
34 | 34 |
@@ -4,53 +4,53 @@ |
||
4 | 4 | * Abstract base token class that all others inherit from. |
5 | 5 | */ |
6 | 6 | class HTMLPurifier_Token { |
7 | - public $line; /**< Line number node was on in source document. Null if unknown. */ |
|
8 | - public $col; /**< Column of line node was on in source document. Null if unknown. */ |
|
9 | - |
|
10 | - /** |
|
11 | - * Lookup array of processing that this token is exempt from. |
|
12 | - * Currently, valid values are "ValidateAttributes" and |
|
13 | - * "MakeWellFormed_TagClosedError" |
|
14 | - */ |
|
15 | - public $armor = array(); |
|
16 | - |
|
17 | - /** |
|
18 | - * Used during MakeWellFormed. |
|
19 | - */ |
|
20 | - public $skip; |
|
21 | - public $rewind; |
|
22 | - public $carryover; |
|
23 | - |
|
24 | - public function __get($n) { |
|
25 | - if ($n === 'type') { |
|
26 | - trigger_error('Deprecated type property called; use instanceof', E_USER_NOTICE); |
|
27 | - switch (get_class($this)) { |
|
28 | - case 'HTMLPurifier_Token_Start': return 'start'; |
|
29 | - case 'HTMLPurifier_Token_Empty': return 'empty'; |
|
30 | - case 'HTMLPurifier_Token_End': return 'end'; |
|
31 | - case 'HTMLPurifier_Token_Text': return 'text'; |
|
32 | - case 'HTMLPurifier_Token_Comment': return 'comment'; |
|
33 | - default: return null; |
|
34 | - } |
|
35 | - } |
|
36 | - } |
|
37 | - |
|
38 | - /** |
|
39 | - * Sets the position of the token in the source document. |
|
40 | - */ |
|
41 | - public function position($l = null, $c = null) { |
|
42 | - $this->line = $l; |
|
43 | - $this->col = $c; |
|
44 | - } |
|
45 | - |
|
46 | - /** |
|
47 | - * Convenience function for DirectLex settings line/col position. |
|
48 | - */ |
|
49 | - public function rawPosition($l, $c) { |
|
50 | - if ($c === -1) $l++; |
|
51 | - $this->line = $l; |
|
52 | - $this->col = $c; |
|
53 | - } |
|
7 | + public $line; /**< Line number node was on in source document. Null if unknown. */ |
|
8 | + public $col; /**< Column of line node was on in source document. Null if unknown. */ |
|
9 | + |
|
10 | + /** |
|
11 | + * Lookup array of processing that this token is exempt from. |
|
12 | + * Currently, valid values are "ValidateAttributes" and |
|
13 | + * "MakeWellFormed_TagClosedError" |
|
14 | + */ |
|
15 | + public $armor = array(); |
|
16 | + |
|
17 | + /** |
|
18 | + * Used during MakeWellFormed. |
|
19 | + */ |
|
20 | + public $skip; |
|
21 | + public $rewind; |
|
22 | + public $carryover; |
|
23 | + |
|
24 | + public function __get($n) { |
|
25 | + if ($n === 'type') { |
|
26 | + trigger_error('Deprecated type property called; use instanceof', E_USER_NOTICE); |
|
27 | + switch (get_class($this)) { |
|
28 | + case 'HTMLPurifier_Token_Start': return 'start'; |
|
29 | + case 'HTMLPurifier_Token_Empty': return 'empty'; |
|
30 | + case 'HTMLPurifier_Token_End': return 'end'; |
|
31 | + case 'HTMLPurifier_Token_Text': return 'text'; |
|
32 | + case 'HTMLPurifier_Token_Comment': return 'comment'; |
|
33 | + default: return null; |
|
34 | + } |
|
35 | + } |
|
36 | + } |
|
37 | + |
|
38 | + /** |
|
39 | + * Sets the position of the token in the source document. |
|
40 | + */ |
|
41 | + public function position($l = null, $c = null) { |
|
42 | + $this->line = $l; |
|
43 | + $this->col = $c; |
|
44 | + } |
|
45 | + |
|
46 | + /** |
|
47 | + * Convenience function for DirectLex settings line/col position. |
|
48 | + */ |
|
49 | + public function rawPosition($l, $c) { |
|
50 | + if ($c === -1) $l++; |
|
51 | + $this->line = $l; |
|
52 | + $this->col = $c; |
|
53 | + } |
|
54 | 54 | |
55 | 55 | } |
56 | 56 |
@@ -5,7 +5,7 @@ |
||
5 | 5 | */ |
6 | 6 | class HTMLPurifier_Token { |
7 | 7 | public $line; /**< Line number node was on in source document. Null if unknown. */ |
8 | - public $col; /**< Column of line node was on in source document. Null if unknown. */ |
|
8 | + public $col; /**< Column of line node was on in source document. Null if unknown. */ |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Lookup array of processing that this token is exempt from. |
@@ -47,7 +47,9 @@ |
||
47 | 47 | * Convenience function for DirectLex settings line/col position. |
48 | 48 | */ |
49 | 49 | public function rawPosition($l, $c) { |
50 | - if ($c === -1) $l++; |
|
50 | + if ($c === -1) { |
|
51 | + $l++; |
|
52 | + } |
|
51 | 53 | $this->line = $l; |
52 | 54 | $this->col = $c; |
53 | 55 | } |
@@ -5,18 +5,18 @@ |
||
5 | 5 | */ |
6 | 6 | class HTMLPurifier_Token_Comment extends HTMLPurifier_Token |
7 | 7 | { |
8 | - public $data; /**< Character data within comment. */ |
|
9 | - public $is_whitespace = true; |
|
10 | - /** |
|
11 | - * Transparent constructor. |
|
12 | - * |
|
13 | - * @param $data String comment data. |
|
14 | - */ |
|
15 | - public function __construct($data, $line = null, $col = null) { |
|
16 | - $this->data = $data; |
|
17 | - $this->line = $line; |
|
18 | - $this->col = $col; |
|
19 | - } |
|
8 | + public $data; /**< Character data within comment. */ |
|
9 | + public $is_whitespace = true; |
|
10 | + /** |
|
11 | + * Transparent constructor. |
|
12 | + * |
|
13 | + * @param $data String comment data. |
|
14 | + */ |
|
15 | + public function __construct($data, $line = null, $col = null) { |
|
16 | + $this->data = $data; |
|
17 | + $this->line = $line; |
|
18 | + $this->col = $col; |
|
19 | + } |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | // vim: et sw=4 sts=4 |