]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/js/editor.js
WordPress 3.5.1
[autoinstalls/wordpress.git] / wp-admin / js / editor.js
1
2 var switchEditors = {
3
4         switchto: function(el) {
5                 var aid = el.id, l = aid.length, id = aid.substr(0, l - 5), mode = aid.substr(l - 4);
6
7                 this.go(id, mode);
8         },
9
10         go: function(id, mode) { // mode can be 'html', 'tmce', or 'toggle'; 'html' is used for the "Text" editor tab.
11                 id = id || 'content';
12                 mode = mode || 'toggle';
13
14                 var t = this, ed = tinyMCE.get(id), wrap_id, txtarea_el, dom = tinymce.DOM;
15
16                 wrap_id = 'wp-'+id+'-wrap';
17                 txtarea_el = dom.get(id);
18
19                 if ( 'toggle' == mode ) {
20                         if ( ed && !ed.isHidden() )
21                                 mode = 'html';
22                         else
23                                 mode = 'tmce';
24                 }
25
26                 if ( 'tmce' == mode || 'tinymce' == mode ) {
27                         if ( ed && ! ed.isHidden() )
28                                 return false;
29
30                         if ( typeof(QTags) != 'undefined' )
31                                 QTags.closeAllTags(id);
32
33                         if ( tinyMCEPreInit.mceInit[id] && tinyMCEPreInit.mceInit[id].wpautop )
34                                 txtarea_el.value = t.wpautop( txtarea_el.value );
35
36                         if ( ed ) {
37                                 ed.show();
38                         } else {
39                                 ed = new tinymce.Editor(id, tinyMCEPreInit.mceInit[id]);
40                                 ed.render();
41                         }
42
43                         dom.removeClass(wrap_id, 'html-active');
44                         dom.addClass(wrap_id, 'tmce-active');
45                         setUserSetting('editor', 'tinymce');
46
47                 } else if ( 'html' == mode ) {
48
49                         if ( ed && ed.isHidden() )
50                                 return false;
51
52                         if ( ed )
53                                 ed.hide();
54
55                         dom.removeClass(wrap_id, 'tmce-active');
56                         dom.addClass(wrap_id, 'html-active');
57                         setUserSetting('editor', 'html');
58                 }
59                 return false;
60         },
61
62         _wp_Nop : function(content) {
63                 var blocklist1, blocklist2, preserve_linebreaks = false, preserve_br = false;
64
65                 // Protect pre|script tags
66                 if ( content.indexOf('<pre') != -1 || content.indexOf('<script') != -1 ) {
67                         preserve_linebreaks = true;
68                         content = content.replace(/<(pre|script)[^>]*>[\s\S]+?<\/\1>/g, function(a) {
69                                 a = a.replace(/<br ?\/?>(\r\n|\n)?/g, '<wp-temp-lb>');
70                                 return a.replace(/<\/?p( [^>]*)?>(\r\n|\n)?/g, '<wp-temp-lb>');
71                         });
72                 }
73
74                 // keep <br> tags inside captions and remove line breaks
75                 if ( content.indexOf('[caption') != -1 ) {
76                         preserve_br = true;
77                         content = content.replace(/\[caption[\s\S]+?\[\/caption\]/g, function(a) {
78                                 return a.replace(/<br([^>]*)>/g, '<wp-temp-br$1>').replace(/[\r\n\t]+/, '');
79                         });
80                 }
81
82                 // Pretty it up for the source editor
83                 blocklist1 = 'blockquote|ul|ol|li|table|thead|tbody|tfoot|tr|th|td|div|h[1-6]|p|fieldset';
84                 content = content.replace(new RegExp('\\s*</('+blocklist1+')>\\s*', 'g'), '</$1>\n');
85                 content = content.replace(new RegExp('\\s*<((?:'+blocklist1+')(?: [^>]*)?)>', 'g'), '\n<$1>');
86
87                 // Mark </p> if it has any attributes.
88                 content = content.replace(/(<p [^>]+>.*?)<\/p>/g, '$1</p#>');
89
90                 // Sepatate <div> containing <p>
91                 content = content.replace(/<div( [^>]*)?>\s*<p>/gi, '<div$1>\n\n');
92
93                 // Remove <p> and <br />
94                 content = content.replace(/\s*<p>/gi, '');
95                 content = content.replace(/\s*<\/p>\s*/gi, '\n\n');
96                 content = content.replace(/\n[\s\u00a0]+\n/g, '\n\n');
97                 content = content.replace(/\s*<br ?\/?>\s*/gi, '\n');
98
99                 // Fix some block element newline issues
100                 content = content.replace(/\s*<div/g, '\n<div');
101                 content = content.replace(/<\/div>\s*/g, '</div>\n');
102                 content = content.replace(/\s*\[caption([^\[]+)\[\/caption\]\s*/gi, '\n\n[caption$1[/caption]\n\n');
103                 content = content.replace(/caption\]\n\n+\[caption/g, 'caption]\n\n[caption');
104
105                 blocklist2 = 'blockquote|ul|ol|li|table|thead|tbody|tfoot|tr|th|td|h[1-6]|pre|fieldset';
106                 content = content.replace(new RegExp('\\s*<((?:'+blocklist2+')(?: [^>]*)?)\\s*>', 'g'), '\n<$1>');
107                 content = content.replace(new RegExp('\\s*</('+blocklist2+')>\\s*', 'g'), '</$1>\n');
108                 content = content.replace(/<li([^>]*)>/g, '\t<li$1>');
109
110                 if ( content.indexOf('<hr') != -1 ) {
111                         content = content.replace(/\s*<hr( [^>]*)?>\s*/g, '\n\n<hr$1>\n\n');
112                 }
113
114                 if ( content.indexOf('<object') != -1 ) {
115                         content = content.replace(/<object[\s\S]+?<\/object>/g, function(a){
116                                 return a.replace(/[\r\n]+/g, '');
117                         });
118                 }
119
120                 // Unmark special paragraph closing tags
121                 content = content.replace(/<\/p#>/g, '</p>\n');
122                 content = content.replace(/\s*(<p [^>]+>[\s\S]*?<\/p>)/g, '\n$1');
123
124                 // Trim whitespace
125                 content = content.replace(/^\s+/, '');
126                 content = content.replace(/[\s\u00a0]+$/, '');
127
128                 // put back the line breaks in pre|script
129                 if ( preserve_linebreaks )
130                         content = content.replace(/<wp-temp-lb>/g, '\n');
131
132                 // and the <br> tags in captions
133                 if ( preserve_br )
134                         content = content.replace(/<wp-temp-br([^>]*)>/g, '<br$1>');
135
136                 return content;
137         },
138
139         _wp_Autop : function(pee) {
140                 var preserve_linebreaks = false, preserve_br = false,
141                         blocklist = 'table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|option|form|map|area|blockquote|address|math|style|p|h[1-6]|hr|fieldset|noscript|samp|legend|section|article|aside|hgroup|header|footer|nav|figure|figcaption|details|menu|summary';
142
143                 if ( pee.indexOf('<object') != -1 ) {
144                         pee = pee.replace(/<object[\s\S]+?<\/object>/g, function(a){
145                                 return a.replace(/[\r\n]+/g, '');
146                         });
147                 }
148
149                 pee = pee.replace(/<[^<>]+>/g, function(a){
150                         return a.replace(/[\r\n]+/g, ' ');
151                 });
152
153                 // Protect pre|script tags
154                 if ( pee.indexOf('<pre') != -1 || pee.indexOf('<script') != -1 ) {
155                         preserve_linebreaks = true;
156                         pee = pee.replace(/<(pre|script)[^>]*>[\s\S]+?<\/\1>/g, function(a) {
157                                 return a.replace(/(\r\n|\n)/g, '<wp-temp-lb>');
158                         });
159                 }
160
161                 // keep <br> tags inside captions and convert line breaks
162                 if ( pee.indexOf('[caption') != -1 ) {
163                         preserve_br = true;
164                         pee = pee.replace(/\[caption[\s\S]+?\[\/caption\]/g, function(a) {
165                                 // keep existing <br>
166                                 a = a.replace(/<br([^>]*)>/g, '<wp-temp-br$1>');
167                                 // no line breaks inside HTML tags
168                                 a = a.replace(/<[a-zA-Z0-9]+( [^<>]+)?>/g, function(b){
169                                         return b.replace(/[\r\n\t]+/, ' ');
170                                 });
171                                 // convert remaining line breaks to <br>
172                                 return a.replace(/\s*\n\s*/g, '<wp-temp-br />');
173                         });
174                 }
175
176                 pee = pee + '\n\n';
177                 pee = pee.replace(/<br \/>\s*<br \/>/gi, '\n\n');
178                 pee = pee.replace(new RegExp('(<(?:'+blocklist+')(?: [^>]*)?>)', 'gi'), '\n$1');
179                 pee = pee.replace(new RegExp('(</(?:'+blocklist+')>)', 'gi'), '$1\n\n');
180                 pee = pee.replace(/<hr( [^>]*)?>/gi, '<hr$1>\n\n'); // hr is self closing block element
181                 pee = pee.replace(/\r\n|\r/g, '\n');
182                 pee = pee.replace(/\n\s*\n+/g, '\n\n');
183                 pee = pee.replace(/([\s\S]+?)\n\n/g, '<p>$1</p>\n');
184                 pee = pee.replace(/<p>\s*?<\/p>/gi, '');
185                 pee = pee.replace(new RegExp('<p>\\s*(</?(?:'+blocklist+')(?: [^>]*)?>)\\s*</p>', 'gi'), "$1");
186                 pee = pee.replace(/<p>(<li.+?)<\/p>/gi, '$1');
187                 pee = pee.replace(/<p>\s*<blockquote([^>]*)>/gi, '<blockquote$1><p>');
188                 pee = pee.replace(/<\/blockquote>\s*<\/p>/gi, '</p></blockquote>');
189                 pee = pee.replace(new RegExp('<p>\\s*(</?(?:'+blocklist+')(?: [^>]*)?>)', 'gi'), "$1");
190                 pee = pee.replace(new RegExp('(</?(?:'+blocklist+')(?: [^>]*)?>)\\s*</p>', 'gi'), "$1");
191                 pee = pee.replace(/\s*\n/gi, '<br />\n');
192                 pee = pee.replace(new RegExp('(</?(?:'+blocklist+')[^>]*>)\\s*<br />', 'gi'), "$1");
193                 pee = pee.replace(/<br \/>(\s*<\/?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)>)/gi, '$1');
194                 pee = pee.replace(/(?:<p>|<br ?\/?>)*\s*\[caption([^\[]+)\[\/caption\]\s*(?:<\/p>|<br ?\/?>)*/gi, '[caption$1[/caption]');
195
196                 pee = pee.replace(/(<(?:div|th|td|form|fieldset|dd)[^>]*>)(.*?)<\/p>/g, function(a, b, c) {
197                         if ( c.match(/<p( [^>]*)?>/) )
198                                 return a;
199
200                         return b + '<p>' + c + '</p>';
201                 });
202
203                 // put back the line breaks in pre|script
204                 if ( preserve_linebreaks )
205                         pee = pee.replace(/<wp-temp-lb>/g, '\n');
206
207                 if ( preserve_br )
208                         pee = pee.replace(/<wp-temp-br([^>]*)>/g, '<br$1>');
209
210                 return pee;
211         },
212
213         pre_wpautop : function(content) {
214                 var t = this, o = { o: t, data: content, unfiltered: content },
215                         q = typeof(jQuery) != 'undefined';
216
217                 if ( q )
218                         jQuery('body').trigger('beforePreWpautop', [o]);
219                 o.data = t._wp_Nop(o.data);
220                 if ( q )
221                         jQuery('body').trigger('afterPreWpautop', [o]);
222
223                 return o.data;
224         },
225
226         wpautop : function(pee) {
227                 var t = this, o = { o: t, data: pee, unfiltered: pee },
228                         q = typeof(jQuery) != 'undefined';
229
230                 if ( q )
231                         jQuery('body').trigger('beforeWpautop', [o]);
232                 o.data = t._wp_Autop(o.data);
233                 if ( q )
234                         jQuery('body').trigger('afterWpautop', [o]);
235
236                 return o.data;
237         }
238 }