root/tags/2.1.3/wp-includes/formatting.php

Revision 5096, 36.2 kB (checked in by ryan, 2 years ago)

Fix relative link mangling in clean_url. fixes #4017 for 2.1

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2
3 function wptexturize($text) {
4     global $wp_cockneyreplace;
5     $next = true;
6     $output = '';
7     $curl = '';
8     $textarr = preg_split('/(<.*>)/Us', $text, -1, PREG_SPLIT_DELIM_CAPTURE);
9     $stop = count($textarr);
10
11     // if a plugin has provided an autocorrect array, use it
12     if ( isset($wp_cockneyreplace) ) {
13         $cockney = array_keys($wp_cockneyreplace);
14         $cockney_replace = array_values($wp_cockneyreplace);
15     } else {
16         $cockney = array("'tain't","'twere","'twas","'tis","'twill","'til","'bout","'nuff","'round","'cause");
17         $cockneyreplace = array("&#8217;tain&#8217;t","&#8217;twere","&#8217;twas","&#8217;tis","&#8217;twill","&#8217;til","&#8217;bout","&#8217;nuff","&#8217;round","&#8217;cause");
18     }
19
20     $static_characters = array_merge(array('---', ' -- ', '--', 'xn&#8211;', '...', '``', '\'s', '\'\'', ' (tm)'), $cockney);
21     $static_replacements = array_merge(array('&#8212;', ' &#8212; ', '&#8211;', 'xn--', '&#8230;', '&#8220;', '&#8217;s', '&#8221;', ' &#8482;'), $cockneyreplace);
22
23     $dynamic_characters = array('/\'(\d\d(?:&#8217;|\')?s)/', '/(\s|\A|")\'/', '/(\d+)"/', '/(\d+)\'/', '/(\S)\'([^\'\s])/', '/(\s|\A)"(?!\s)/', '/"(\s|\S|\Z)/', '/\'([\s.]|\Z)/', '/(\d+)x(\d+)/');
24     $dynamic_replacements = array('&#8217;$1','$1&#8216;', '$1&#8243;', '$1&#8242;', '$1&#8217;$2', '$1&#8220;$2', '&#8221;$1', '&#8217;$1', '$1&#215;$2');   
25
26     for ( $i = 0; $i < $stop; $i++ ) {
27          $curl = $textarr[$i];
28
29         if (isset($curl{0}) && '<' != $curl{0} && $next) { // If it's not a tag
30             // static strings
31             $curl = str_replace($static_characters, $static_replacements, $curl);
32
33             // regular expressions
34             $curl = preg_replace($dynamic_characters, $dynamic_replacements, $curl);
35         } elseif ( strstr($curl, '<code') || strstr($curl, '<pre') || strstr($curl, '<kbd') || strstr($curl, '<style') || strstr($curl, '<script') ) {
36             $next = false;
37         } else {
38             $next = true;
39         }
40
41         $curl = preg_replace('/&([^#])(?![a-zA-Z1-4]{1,8};)/', '&#038;$1', $curl);
42         $output .= $curl;
43     }
44
45       return $output;
46 }
47
48 function clean_pre($text) {
49     $text = str_replace('<br />', '', $text);
50     $text = str_replace('<p>', "\n", $text);
51     $text = str_replace('</p>', '', $text);
52     return $text;
53 }
54
55 function wpautop($pee, $br = 1) {
56     $pee = $pee . "\n"; // just to make things a little easier, pad the end
57     $pee = preg_replace('|<br />\s*<br />|', "\n\n", $pee);
58     // Space things out a little
59     $allblocks = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|math|style|script|object|input|param|p|h[1-6])';
60     $pee = preg_replace('!(<' . $allblocks . '[^>]*>)!', "\n$1", $pee);
61     $pee = preg_replace('!(</' . $allblocks . '>)!', "$1\n\n", $pee);
62     $pee = str_replace(array("\r\n", "\r"), "\n", $pee); // cross-platform newlines
63     $pee = preg_replace("/\n\n+/", "\n\n", $pee); // take care of duplicates
64     $pee = preg_replace('/\n?(.+?)(?:\n\s*\n|\z)/s', "<p>$1</p>\n", $pee); // make paragraphs, including one at the end
65     $pee = preg_replace('|<p>\s*?</p>|', '', $pee); // under certain strange conditions it could create a P of entirely whitespace
66     $pee = preg_replace('!<p>([^<]+)\s*?(</(?:div|address|form)[^>]*>)!', "<p>$1</p>$2", $pee);
67     $pee = preg_replace( '|<p>|', "$1<p>", $pee );
68     $pee = preg_replace('!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee); // don't pee all over a tag
69     $pee = preg_replace("|<p>(<li.+?)</p>|", "$1", $pee); // problem with nested lists
70     $pee = preg_replace('|<p><blockquote([^>]*)>|i', "<blockquote$1><p>", $pee);
71     $pee = str_replace('</blockquote></p>', '</p></blockquote>', $pee);
72     $pee = preg_replace('!<p>\s*(</?' . $allblocks . '[^>]*>)!', "$1", $pee);
73     $pee = preg_replace('!(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee);
74     if ($br) {
75         $pee = preg_replace('/<(script|style).*?<\/\\1>/se', 'str_replace("\n", "<WPPreserveNewline />", "\\0")', $pee);
76         $pee = preg_replace('|(?<!<br />)\s*\n|', "<br />\n", $pee); // optionally make line breaks
77         $pee = str_replace('<WPPreserveNewline />', "\n", $pee);
78     }
79     $pee = preg_replace('!(</?' . $allblocks . '[^>]*>)\s*<br />!', "$1", $pee);
80     $pee = preg_replace('!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $pee);
81     if ( strstr( $pee, '<pre' ) )
82         $pee = preg_replace('!(<pre.*?>)(.*?)</pre>!ise', " stripslashes('$1') .  stripslashes(clean_pre('$2'))  . '</pre>' ", $pee);
83     $pee = preg_replace( "|\n</p>$|", '</p>', $pee );
84
85     return $pee;
86 }
87
88
89 function seems_utf8($Str) { # by bmorel at ssi dot fr
90     for ($i=0; $i<strlen($Str); $i++) {
91         if (ord($Str[$i]) < 0x80) continue; # 0bbbbbbb
92         elseif ((ord($Str[$i]) & 0xE0) == 0xC0) $n=1; # 110bbbbb
93         elseif ((ord($Str[$i]) & 0xF0) == 0xE0) $n=2; # 1110bbbb
94         elseif ((ord($Str[$i]) & 0xF8) == 0xF0) $n=3; # 11110bbb
95         elseif ((ord($Str[$i]) & 0xFC) == 0xF8) $n=4; # 111110bb
96         elseif ((ord($Str[$i]) & 0xFE) == 0xFC) $n=5; # 1111110b
97         else return false; # Does not match any model
98         for ($j=0; $j<$n; $j++) { # n bytes matching 10bbbbbb follow ?
99             if ((++$i == strlen($Str)) || ((ord($Str[$i]) & 0xC0) != 0x80))
100             return false;
101         }
102     }
103     return true;
104 }
105
106 function wp_specialchars( $text, $quotes = 0 ) {
107     // Like htmlspecialchars except don't double-encode HTML entities
108     $text = str_replace('&&', '&#038;&', $text);
109     $text = str_replace('&&', '&#038;&', $text);
110     $text = preg_replace('/&(?:$|([^#])(?![a-z1-4]{1,8};))/', '&#038;$1', $text);
111     $text = str_replace('<', '&lt;', $text);
112     $text = str_replace('>', '&gt;', $text);
113     if ( 'double' === $quotes ) {
114         $text = str_replace('"', '&quot;', $text);
115     } elseif ( 'single' === $quotes ) {
116         $text = str_replace("'", '&#039;', $text);
117     } elseif ( $quotes ) {
118         $text = str_replace('"', '&quot;', $text);
119         $text = str_replace("'", '&#039;', $text);
120     }
121     return $text;
122 }
123
124 function utf8_uri_encode( $utf8_string, $length = 0 ) {
125     $unicode = '';
126     $values = array();
127     $num_octets = 1;
128
129     for ($i = 0; $i < strlen( $utf8_string ); $i++ ) {
130
131         $value = ord( $utf8_string[ $i ] );
132
133         if ( $value < 128 ) {
134             if ( $length && ( strlen($unicode) + 1 > $length ) )
135                 break;
136             $unicode .= chr($value);
137         } else {
138             if ( count( $values ) == 0 ) $num_octets = ( $value < 224 ) ? 2 : 3;
139
140             $values[] = $value;
141
142             if ( $length && ( (strlen($unicode) + ($num_octets * 3)) > $length ) )
143                 break;
144             if ( count( $values ) == $num_octets ) {
145                 if ($num_octets == 3) {
146                     $unicode .= '%' . dechex($values[0]) . '%' . dechex($values[1]) . '%' . dechex($values[2]);
147                 } else {
148                     $unicode .= '%' . dechex($values[0]) . '%' . dechex($values[1]);
149                 }
150
151                 $values = array();
152                 $num_octets = 1;
153             }
154         }
155     }
156
157     return $unicode;
158 }
159
160 function remove_accents($string) {
161     if ( !preg_match('/[\x80-\xff]/', $string) )
162         return $string;
163
164     if (seems_utf8($string)) {
165         $chars = array(
166         // Decompositions for Latin-1 Supplement
167         chr(195).chr(128) => 'A', chr(195).chr(129) => 'A',
168         chr(195).chr(130) => 'A', chr(195).chr(131) => 'A',
169         chr(195).chr(132) => 'A', chr(195).chr(133) => 'A',
170         chr(195).chr(135) => 'C', chr(195).chr(136) => 'E',
171         chr(195).chr(137) => 'E', chr(195).chr(138) => 'E',
172         chr(195).chr(139) => 'E', chr(195).chr(140) => 'I',
173         chr(195).chr(141) => 'I', chr(195).chr(142) => 'I',
174         chr(195).chr(143) => 'I', chr(195).chr(145) => 'N',
175         chr(195).chr(146) => 'O', chr(195).chr(147) => 'O',
176         chr(195).chr(148) => 'O', chr(195).chr(149) => 'O',
177         chr(195).chr(150) => 'O', chr(195).chr(153) => 'U',
178         chr(195).chr(154) => 'U', chr(195).chr(155) => 'U',
179         chr(195).chr(156) => 'U', chr(195).chr(157) => 'Y',
180         chr(195).chr(159) => 's', chr(195).chr(160) => 'a',
181         chr(195).chr(161) => 'a', chr(195).chr(162) => 'a',
182         chr(195).chr(163) => 'a', chr(195).chr(164) => 'a',
183         chr(195).chr(165) => 'a', chr(195).chr(167) => 'c',
184         chr(195).chr(168) => 'e', chr(195).chr(169) => 'e',
185         chr(195).chr(170) => 'e', chr(195).chr(171) => 'e',
186         chr(195).chr(172) => 'i', chr(195).chr(173) => 'i',
187         chr(195).chr(174) => 'i', chr(195).chr(175) => 'i',
188         chr(195).chr(177) => 'n', chr(195).chr(178) => 'o',
189         chr(195).chr(179) => 'o', chr(195).chr(180) => 'o',
190         chr(195).chr(181) => 'o', chr(195).chr(182) => 'o',
191         chr(195).chr(182) => 'o', chr(195).chr(185) => 'u',
192         chr(195).chr(186) => 'u', chr(195).chr(187) => 'u',
193         chr(195).chr(188) => 'u', chr(195).chr(189) => 'y',
194         chr(195).chr(191) => 'y',
195         // Decompositions for Latin Extended-A
196         chr(196).chr(128) => 'A', chr(196).chr(129) => 'a',
197         chr(196).chr(130) => 'A', chr(196).chr(131) => 'a',
198         chr(196).chr(132) => 'A', chr(196).chr(133) => 'a',
199         chr(196).chr(134) => 'C', chr(196).chr(135) => 'c',
200         chr(196).chr(136) => 'C', chr(196).chr(137) => 'c',
201         chr(196).chr(138) => 'C', chr(196).chr(139) => 'c',
202         chr(196).chr(140) => 'C', chr(196).chr(141) => 'c',
203         chr(196).chr(142) => 'D', chr(196).chr(143) => 'd',
204         chr(196).chr(144) => 'D', chr(196).chr(145) => 'd',
205         chr(196).chr(146) => 'E', chr(196).chr(147) => 'e',
206         chr(196).chr(148) => 'E', chr(196).chr(149) => 'e',
207         chr(196).chr(150) => 'E', chr(196).chr(151) => 'e',
208         chr(196).chr(152) => 'E', chr(196).chr(153) => 'e',
209         chr(196).chr(154) => 'E', chr(196).chr(155) => 'e',
210         chr(196).chr(156) => 'G', chr(196).chr(157) => 'g',
211         chr(196).chr(158) => 'G', chr(196).chr(159) => 'g',
212         chr(196).chr(160) => 'G', chr(196).chr(161) => 'g',
213         chr(196).chr(162) => 'G', chr(196).chr(163) => 'g',
214         chr(196).chr(164) => 'H', chr(196).chr(165) => 'h',
215         chr(196).chr(166) => 'H', chr(196).chr(167) => 'h',
216         chr(196).chr(168) => 'I', chr(196).chr(169) => 'i',
217         chr(196).chr(170) => 'I', chr(196).chr(171) => 'i',
218         chr(196).chr(172) => 'I', chr(196).chr(173) => 'i',
219         chr(196).chr(174) => 'I', chr(196).chr(175) => 'i',
220         chr(196).chr(176) => 'I', chr(196).chr(177) => 'i',
221         chr(196).chr(178) => 'IJ',chr(196).chr(179) => 'ij',
222         chr(196).chr(180) => 'J', chr(196).chr(181) => 'j',
223         chr(196).chr(182) => 'K', chr(196).chr(183) => 'k',
224         chr(196).chr(184) => 'k', chr(196).chr(185) => 'L',
225         chr(196).chr(186) => 'l', chr(196).chr(187) => 'L',
226         chr(196).chr(188) => 'l', chr(196).chr(189) => 'L',
227         chr(196).chr(190) => 'l', chr(196).chr(191) => 'L',
228         chr(197).chr(128) => 'l', chr(197).chr(129) => 'L',
229         chr(197).chr(130) => 'l', chr(197).chr(131) => 'N',
230         chr(197).chr(132) => 'n', chr(197).chr(133) => 'N',
231         chr(197).chr(134) => 'n', chr(197).chr(135) => 'N',
232         chr(197).chr(136) => 'n', chr(197).chr(137) => 'N',
233         chr(197).chr(138) => 'n', chr(197).chr(139) => 'N',
234         chr(197).chr(140) => 'O', chr(197).chr(141) => 'o',
235         chr(197).chr(142) => 'O', chr(197).chr(143) => 'o',
236         chr(197).chr(144) => 'O', chr(197).chr(145) => 'o',
237         chr(197).chr(146) => 'OE',chr(197).chr(147) => 'oe',
238         chr(197).chr(148) => 'R',chr(197).chr(149) => 'r',
239         chr(197).chr(150) => 'R',chr(197).chr(151) => 'r',
240         chr(197).chr(152) => 'R',chr(197).chr(153) => 'r',
241         chr(197).chr(154) => 'S',chr(197).chr(155) => 's',
242         chr(197).chr(156) => 'S',chr(197).chr(157) => 's',
243         chr(197).chr(158) => 'S',chr(197).chr(159) => 's',
244         chr(197).chr(160) => 'S', chr(197).chr(161) => 's',
245         chr(197).chr(162) => 'T', chr(197).chr(163) => 't',
246         chr(197).chr(164) => 'T', chr(197).chr(165) => 't'<