Version Description
Download this release
Release Info
Developer | tenpura |
Plugin | WP Multibyte Patch |
Version | 1.6.4 |
Comparing to | |
See all releases |
Code changes from version 1.6.3 to 1.6.4
- ext/ja/class.php +1 -1
- js/word-count.dev.js +0 -48
- js/word-count.js +48 -1
- js/word-count.min.js +1 -0
- js/wplink.dev.js +0 -593
- js/wplink.js +593 -1
- js/wplink.min.js +1 -0
- readme.txt +3 -3
- wp-multibyte-patch.php +13 -9
ext/ja/class.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* WP Multibyte Patch Japanese Locale Extension
|
4 |
*
|
5 |
* @package WP_Multibyte_Patch
|
6 |
-
* @version 1.6.
|
7 |
* @author Seisuke Kuraishi <210pura@gmail.com>
|
8 |
* @copyright Copyright (c) 2012 Seisuke Kuraishi, Tinybit Inc.
|
9 |
* @license http://opensource.org/licenses/gpl-2.0.php GPLv2
|
3 |
* WP Multibyte Patch Japanese Locale Extension
|
4 |
*
|
5 |
* @package WP_Multibyte_Patch
|
6 |
+
* @version 1.6.4
|
7 |
* @author Seisuke Kuraishi <210pura@gmail.com>
|
8 |
* @copyright Copyright (c) 2012 Seisuke Kuraishi, Tinybit Inc.
|
9 |
* @license http://opensource.org/licenses/gpl-2.0.php GPLv2
|
js/word-count.dev.js
DELETED
@@ -1,48 +0,0 @@
|
|
1 |
-
(function($,undefined) {
|
2 |
-
wpWordCount = {
|
3 |
-
|
4 |
-
settings : {
|
5 |
-
strip : /<[a-zA-Z\/][^<>]*>/g, // strip HTML tags
|
6 |
-
clean : /[0-9.(),;:!?%#$¿'"_+=\\/-]+/g, // regexp to remove punctuation, etc.
|
7 |
-
count : /\S\s+/g, // word-counting regexp
|
8 |
-
},
|
9 |
-
|
10 |
-
block : 0,
|
11 |
-
|
12 |
-
wc : function(tx, type) {
|
13 |
-
var t = this, w = $('.word-count'), tc = 0;
|
14 |
-
|
15 |
-
if ( type === undefined )
|
16 |
-
type = wordCountL10n.type;
|
17 |
-
if ( type !== 'w' && type !== 'c' )
|
18 |
-
type = 'w';
|
19 |
-
|
20 |
-
if ( t.block )
|
21 |
-
return;
|
22 |
-
|
23 |
-
t.block = 1;
|
24 |
-
|
25 |
-
setTimeout( function() {
|
26 |
-
if ( tx ) {
|
27 |
-
if ( type == 'w' ) { // word-counting
|
28 |
-
tx = tx.replace( t.settings.strip, ' ' ).replace( / | /gi, ' ' );
|
29 |
-
tx = tx.replace( t.settings.clean, '' );
|
30 |
-
tx.replace( t.settings.count, function(){tc++;} );
|
31 |
-
}
|
32 |
-
else if ( type == 'c' ) { // char-counting for asian languages
|
33 |
-
tx = tx.replace( t.settings.strip, '' ).replace( /^ +| +$/gm, '' );
|
34 |
-
tx = tx.replace( / +| | /gi, ' ' );
|
35 |
-
tx.replace( /[\S \u00A0\u3000]/g, function(){tc++;} );
|
36 |
-
}
|
37 |
-
}
|
38 |
-
w.html(tc.toString());
|
39 |
-
|
40 |
-
setTimeout( function() { t.block = 0; }, 2000 );
|
41 |
-
}, 1 );
|
42 |
-
}
|
43 |
-
}
|
44 |
-
|
45 |
-
$(document).bind( 'wpcountwords', function(e, txt) {
|
46 |
-
wpWordCount.wc(txt);
|
47 |
-
});
|
48 |
-
}(jQuery));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/word-count.js
CHANGED
@@ -1 +1,48 @@
|
|
1 |
-
(function(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($,undefined) {
|
2 |
+
wpWordCount = {
|
3 |
+
|
4 |
+
settings : {
|
5 |
+
strip : /<[a-zA-Z\/][^<>]*>/g, // strip HTML tags
|
6 |
+
clean : /[0-9.(),;:!?%#$¿'"_+=\\/-]+/g, // regexp to remove punctuation, etc.
|
7 |
+
count : /\S\s+/g, // word-counting regexp
|
8 |
+
},
|
9 |
+
|
10 |
+
block : 0,
|
11 |
+
|
12 |
+
wc : function(tx, type) {
|
13 |
+
var t = this, w = $('.word-count'), tc = 0;
|
14 |
+
|
15 |
+
if ( type === undefined )
|
16 |
+
type = wordCountL10n.type;
|
17 |
+
if ( type !== 'w' && type !== 'c' )
|
18 |
+
type = 'w';
|
19 |
+
|
20 |
+
if ( t.block )
|
21 |
+
return;
|
22 |
+
|
23 |
+
t.block = 1;
|
24 |
+
|
25 |
+
setTimeout( function() {
|
26 |
+
if ( tx ) {
|
27 |
+
if ( type == 'w' ) { // word-counting
|
28 |
+
tx = tx.replace( t.settings.strip, ' ' ).replace( / | /gi, ' ' );
|
29 |
+
tx = tx.replace( t.settings.clean, '' );
|
30 |
+
tx.replace( t.settings.count, function(){tc++;} );
|
31 |
+
}
|
32 |
+
else if ( type == 'c' ) { // char-counting for asian languages
|
33 |
+
tx = tx.replace( t.settings.strip, '' ).replace( /^ +| +$/gm, '' );
|
34 |
+
tx = tx.replace( / +| | /gi, ' ' );
|
35 |
+
tx.replace( /[\S \u00A0\u3000]/g, function(){tc++;} );
|
36 |
+
}
|
37 |
+
}
|
38 |
+
w.html(tc.toString());
|
39 |
+
|
40 |
+
setTimeout( function() { t.block = 0; }, 2000 );
|
41 |
+
}, 1 );
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
$(document).bind( 'wpcountwords', function(e, txt) {
|
46 |
+
wpWordCount.wc(txt);
|
47 |
+
});
|
48 |
+
}(jQuery));
|
js/word-count.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
(function(a,b){wpWordCount={settings:{strip:/<[a-zA-Z\/][^<>]*>/g,clean:/[0-9.(),;:!?%#$¿'"_+=\\/-]+/g,count:/\S\s+/g,},block:0,wc:function(e,g){var f=this,d=a(".word-count"),c=0;if(g===b){g=wordCountL10n.type}if(g!=="w"&&g!=="c"){g="w"}if(f.block){return}f.block=1;setTimeout(function(){if(e){if(g=="w"){e=e.replace(f.settings.strip," ").replace(/ | /gi," ");e=e.replace(f.settings.clean,"");e.replace(f.settings.count,function(){c++})}else{if(g=="c"){e=e.replace(f.settings.strip,"").replace(/^ +| +$/gm,"");e=e.replace(/ +| | /gi," ");e.replace(/[\S \u00A0\u3000]/g,function(){c++})}}}d.html(c.toString());setTimeout(function(){f.block=0},2000)},1)}};a(document).bind("wpcountwords",function(d,c){wpWordCount.wc(c)})}(jQuery));
|
js/wplink.dev.js
DELETED
@@ -1,593 +0,0 @@
|
|
1 |
-
var wpLink;
|
2 |
-
|
3 |
-
(function($){
|
4 |
-
var inputs = {}, rivers = {}, ed, River, Query;
|
5 |
-
|
6 |
-
wpLink = {
|
7 |
-
timeToTriggerRiver: 150,
|
8 |
-
minRiverAJAXDuration: 200,
|
9 |
-
riverBottomThreshold: 5,
|
10 |
-
keySensitivity: 100,
|
11 |
-
lastSearch: '',
|
12 |
-
textarea: '',
|
13 |
-
|
14 |
-
init : function() {
|
15 |
-
inputs.dialog = $('#wp-link');
|
16 |
-
inputs.submit = $('#wp-link-submit');
|
17 |
-
// URL
|
18 |
-
inputs.url = $('#url-field');
|
19 |
-
inputs.nonce = $('#_ajax_linking_nonce');
|
20 |
-
// Secondary options
|
21 |
-
inputs.title = $('#link-title-field');
|
22 |
-
// Advanced Options
|
23 |
-
inputs.openInNewTab = $('#link-target-checkbox');
|
24 |
-
inputs.search = $('#search-field');
|
25 |
-
// Build Rivers
|
26 |
-
rivers.search = new River( $('#search-results') );
|
27 |
-
rivers.recent = new River( $('#most-recent-results') );
|
28 |
-
rivers.elements = $('.query-results', inputs.dialog);
|
29 |
-
|
30 |
-
// Bind event handlers
|
31 |
-
inputs.dialog.keydown( wpLink.keydown );
|
32 |
-
inputs.dialog.keyup( wpLink.keyup );
|
33 |
-
inputs.submit.click( function(e){
|
34 |
-
e.preventDefault();
|
35 |
-
wpLink.update();
|
36 |
-
});
|
37 |
-
$('#wp-link-cancel').click( function(e){
|
38 |
-
e.preventDefault();
|
39 |
-
wpLink.close();
|
40 |
-
});
|
41 |
-
$('#internal-toggle').click( wpLink.toggleInternalLinking );
|
42 |
-
|
43 |
-
rivers.elements.bind('river-select', wpLink.updateFields );
|
44 |
-
|
45 |
-
inputs.search.keyup( wpLink.searchInternalLinks );
|
46 |
-
|
47 |
-
inputs.dialog.bind('wpdialogrefresh', wpLink.refresh);
|
48 |
-
inputs.dialog.bind('wpdialogbeforeopen', wpLink.beforeOpen);
|
49 |
-
inputs.dialog.bind('wpdialogclose', wpLink.onClose);
|
50 |
-
},
|
51 |
-
|
52 |
-
beforeOpen : function() {
|
53 |
-
wpLink.range = null;
|
54 |
-
|
55 |
-
if ( ! wpLink.isMCE() && document.selection ) {
|
56 |
-
wpLink.textarea.focus();
|
57 |
-
wpLink.range = document.selection.createRange();
|
58 |
-
}
|
59 |
-
},
|
60 |
-
|
61 |
-
open : function() {
|
62 |
-
if ( !wpActiveEditor )
|
63 |
-
return;
|
64 |
-
|
65 |
-
this.textarea = $('#'+wpActiveEditor).get(0);
|
66 |
-
|
67 |
-
// Initialize the dialog if necessary (html mode).
|
68 |
-
if ( ! inputs.dialog.data('wpdialog') ) {
|
69 |
-
inputs.dialog.wpdialog({
|
70 |
-
title: wpLinkL10n.title,
|
71 |
-
width: 480,
|
72 |
-
height: 'auto',
|
73 |
-
modal: true,
|
74 |
-
dialogClass: 'wp-dialog',
|
75 |
-
zIndex: 300000
|
76 |
-
});
|
77 |
-
}
|
78 |
-
|
79 |
-
inputs.dialog.wpdialog('open');
|
80 |
-
},
|
81 |
-
|
82 |
-
isMCE : function() {
|
83 |
-
return tinyMCEPopup && ( ed = tinyMCEPopup.editor ) && ! ed.isHidden();
|
84 |
-
},
|
85 |
-
|
86 |
-
refresh : function() {
|
87 |
-
// Refresh rivers (clear links, check visibility)
|
88 |
-
rivers.search.refresh();
|
89 |
-
rivers.recent.refresh();
|
90 |
-
|
91 |
-
if ( wpLink.isMCE() )
|
92 |
-
wpLink.mceRefresh();
|
93 |
-
else
|
94 |
-
wpLink.setDefaultValues();
|
95 |
-
|
96 |
-
// Focus the URL field and highlight its contents.
|
97 |
-
// If this is moved above the selection changes,
|
98 |
-
// IE will show a flashing cursor over the dialog.
|
99 |
-
inputs.url.focus()[0].select();
|
100 |
-
// Load the most recent results if this is the first time opening the panel.
|
101 |
-
if ( ! rivers.recent.ul.children().length )
|
102 |
-
rivers.recent.ajax();
|
103 |
-
},
|
104 |
-
|
105 |
-
mceRefresh : function() {
|
106 |
-
var e;
|
107 |
-
ed = tinyMCEPopup.editor;
|
108 |
-
|
109 |
-
tinyMCEPopup.restoreSelection();
|
110 |
-
|
111 |
-
// If link exists, select proper values.
|
112 |
-
if ( e = ed.dom.getParent(ed.selection.getNode(), 'A') ) {
|
113 |
-
// Set URL and description.
|
114 |
-
inputs.url.val( ed.dom.getAttrib(e, 'href') );
|
115 |
-
inputs.title.val( ed.dom.getAttrib(e, 'title') );
|
116 |
-
// Set open in new tab.
|
117 |
-
if ( "_blank" == ed.dom.getAttrib(e, 'target') )
|
118 |
-
inputs.openInNewTab.prop('checked', true);
|
119 |
-
// Update save prompt.
|
120 |
-
inputs.submit.val( wpLinkL10n.update );
|
121 |
-
|
122 |
-
// If there's no link, set the default values.
|
123 |
-
} else {
|
124 |
-
wpLink.setDefaultValues();
|
125 |
-
}
|
126 |
-
|
127 |
-
tinyMCEPopup.storeSelection();
|
128 |
-
},
|
129 |
-
|
130 |
-
close : function() {
|
131 |
-
if ( wpLink.isMCE() )
|
132 |
-
tinyMCEPopup.close();
|
133 |
-
else
|
134 |
-
inputs.dialog.wpdialog('close');
|
135 |
-
},
|
136 |
-
|
137 |
-
onClose: function() {
|
138 |
-
if ( ! wpLink.isMCE() ) {
|
139 |
-
wpLink.textarea.focus();
|
140 |
-
if ( wpLink.range ) {
|
141 |
-
wpLink.range.moveToBookmark( wpLink.range.getBookmark() );
|
142 |
-
wpLink.range.select();
|
143 |
-
}
|
144 |
-
}
|
145 |
-
},
|
146 |
-
|
147 |
-
getAttrs : function() {
|
148 |
-
return {
|
149 |
-
href : inputs.url.val(),
|
150 |
-
title : inputs.title.val(),
|
151 |
-
target : inputs.openInNewTab.prop('checked') ? '_blank' : ''
|
152 |
-
};
|
153 |
-
},
|
154 |
-
|
155 |
-
update : function() {
|
156 |
-
if ( wpLink.isMCE() )
|
157 |
-
wpLink.mceUpdate();
|
158 |
-
else
|
159 |
-
wpLink.htmlUpdate();
|
160 |
-
},
|
161 |
-
|
162 |
-
htmlUpdate : function() {
|
163 |
-
var attrs, html, begin, end, cursor,
|
164 |
-
textarea = wpLink.textarea;
|
165 |
-
|
166 |
-
if ( ! textarea )
|
167 |
-
return;
|
168 |
-
|
169 |
-
attrs = wpLink.getAttrs();
|
170 |
-
|
171 |
-
// If there's no href, return.
|
172 |
-
if ( ! attrs.href || attrs.href == 'http://' )
|
173 |
-
return;
|
174 |
-
|
175 |
-
// Build HTML
|
176 |
-
html = '<a href="' + attrs.href + '"';
|
177 |
-
|
178 |
-
if ( attrs.title )
|
179 |
-
html += ' title="' + attrs.title + '"';
|
180 |
-
if ( attrs.target )
|
181 |
-
html += ' target="' + attrs.target + '"';
|
182 |
-
|
183 |
-
html += '>';
|
184 |
-
|
185 |
-
// Insert HTML
|
186 |
-
if ( document.selection && wpLink.range ) {
|
187 |
-
// IE
|
188 |
-
// Note: If no text is selected, IE will not place the cursor
|
189 |
-
// inside the closing tag.
|
190 |
-
textarea.focus();
|
191 |
-
wpLink.range.text = html + wpLink.range.text + '</a>';
|
192 |
-
wpLink.range.moveToBookmark( wpLink.range.getBookmark() );
|
193 |
-
wpLink.range.select();
|
194 |
-
|
195 |
-
wpLink.range = null;
|
196 |
-
} else if ( typeof textarea.selectionStart !== 'undefined' ) {
|
197 |
-
// W3C
|
198 |
-
begin = textarea.selectionStart;
|
199 |
-
end = textarea.selectionEnd;
|
200 |
-
selection = textarea.value.substring( begin, end );
|
201 |
-
html = html + selection + '</a>';
|
202 |
-
cursor = begin + html.length;
|
203 |
-
|
204 |
-
// If no next is selected, place the cursor inside the closing tag.
|
205 |
-
if ( begin == end )
|
206 |
-
cursor -= '</a>'.length;
|
207 |
-
|
208 |
-
textarea.value = textarea.value.substring( 0, begin )
|
209 |
-
+ html
|
210 |
-
+ textarea.value.substring( end, textarea.value.length );
|
211 |
-
|
212 |
-
// Update cursor position
|
213 |
-
textarea.selectionStart = textarea.selectionEnd = cursor;
|
214 |
-
}
|
215 |
-
|
216 |
-
wpLink.close();
|
217 |
-
textarea.focus();
|
218 |
-
},
|
219 |
-
|
220 |
-
mceUpdate : function() {
|
221 |
-
var ed = tinyMCEPopup.editor,
|
222 |
-
attrs = wpLink.getAttrs(),
|
223 |
-
e, b;
|
224 |
-
|
225 |
-
tinyMCEPopup.restoreSelection();
|
226 |
-
e = ed.dom.getParent(ed.selection.getNode(), 'A');
|
227 |
-
|
228 |
-
// If the values are empty, unlink and return
|
229 |
-
if ( ! attrs.href || attrs.href == 'http://' ) {
|
230 |
-
if ( e ) {
|
231 |
-
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
232 |
-
b = ed.selection.getBookmark();
|
233 |
-
ed.dom.remove(e, 1);
|
234 |
-
ed.selection.moveToBookmark(b);
|
235 |
-
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
236 |
-
wpLink.close();
|
237 |
-
}
|
238 |
-
return;
|
239 |
-
}
|
240 |
-
|
241 |
-
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
242 |
-
|
243 |
-
if (e == null) {
|
244 |
-
ed.getDoc().execCommand("unlink", false, null);
|
245 |
-
tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1});
|
246 |
-
|
247 |
-
tinymce.each(ed.dom.select("a"), function(n) {
|
248 |
-
if (ed.dom.getAttrib(n, 'href') == '#mce_temp_url#') {
|
249 |
-
e = n;
|
250 |
-
ed.dom.setAttribs(e, attrs);
|
251 |
-
}
|
252 |
-
});
|
253 |
-
|
254 |
-
// Sometimes WebKit lets a user create a link where
|
255 |
-
// they shouldn't be able to. In this case, CreateLink
|
256 |
-
// injects "#mce_temp_url#" into their content. Fix it.
|
257 |
-
if ( $(e).text() == '#mce_temp_url#' ) {
|
258 |
-
ed.dom.remove(e);
|
259 |
-
e = null;
|
260 |
-
}
|
261 |
-
} else {
|
262 |
-
ed.dom.setAttribs(e, attrs);
|
263 |
-
}
|
264 |
-
|
265 |
-
// Don't move caret if selection was image
|
266 |
-
if ( e && (e.childNodes.length != 1 || e.firstChild.nodeName != 'IMG') ) {
|
267 |
-
ed.focus();
|
268 |
-
ed.selection.select(e);
|
269 |
-
ed.selection.collapse(0);
|
270 |
-
tinyMCEPopup.storeSelection();
|
271 |
-
}
|
272 |
-
|
273 |
-
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
274 |
-
wpLink.close();
|
275 |
-
},
|
276 |
-
|
277 |
-
updateFields : function( e, li, originalEvent ) {
|
278 |
-
inputs.url.val( li.children('.item-permalink').val() );
|
279 |
-
inputs.title.val( li.hasClass('no-title') ? '' : li.children('.item-title').text() );
|
280 |
-
if ( originalEvent && originalEvent.type == "click" )
|
281 |
-
inputs.url.focus();
|
282 |
-
},
|
283 |
-
setDefaultValues : function() {
|
284 |
-
// Set URL and description to defaults.
|
285 |
-
// Leave the new tab setting as-is.
|
286 |
-
inputs.url.val('http://');
|
287 |
-
inputs.title.val('');
|
288 |
-
|
289 |
-
// Update save prompt.
|
290 |
-
inputs.submit.val( wpLinkL10n.save );
|
291 |
-
},
|
292 |
-
|
293 |
-
searchInternalLinks : function() {
|
294 |
-
var t = $(this), waiting,
|
295 |
-
search = t.val();
|
296 |
-
|
297 |
-
if ( search.length > 1 ) {
|
298 |
-
rivers.recent.hide();
|
299 |
-
rivers.search.show();
|
300 |
-
|
301 |
-
// Don't search if the keypress didn't change the title.
|
302 |
-
if ( wpLink.lastSearch == search )
|
303 |
-
return;
|
304 |
-
|
305 |
-
wpLink.lastSearch = search;
|
306 |
-
waiting = t.siblings('img.waiting').show();
|
307 |
-
|
308 |
-
rivers.search.change( search );
|
309 |
-
rivers.search.ajax( function(){ waiting.hide(); });
|
310 |
-
} else {
|
311 |
-
rivers.search.hide();
|
312 |
-
rivers.recent.show();
|
313 |
-
}
|
314 |
-
},
|
315 |
-
|
316 |
-
next : function() {
|
317 |
-
rivers.search.next();
|
318 |
-
rivers.recent.next();
|
319 |
-
},
|
320 |
-
prev : function() {
|
321 |
-
rivers.search.prev();
|
322 |
-
rivers.recent.prev();
|
323 |
-
},
|
324 |
-
|
325 |
-
keydown : function( event ) {
|
326 |
-
var fn, key = $.ui.keyCode;
|
327 |
-
|
328 |
-
switch( event.which ) {
|
329 |
-
case key.UP:
|
330 |
-
fn = 'prev';
|
331 |
-
case key.DOWN:
|
332 |
-
fn = fn || 'next';
|
333 |
-
clearInterval( wpLink.keyInterval );
|
334 |
-
wpLink[ fn ]();
|
335 |
-
wpLink.keyInterval = setInterval( wpLink[ fn ], wpLink.keySensitivity );
|
336 |
-
break;
|
337 |
-
default:
|
338 |
-
return;
|
339 |
-
}
|
340 |
-
event.preventDefault();
|
341 |
-
},
|
342 |
-
keyup: function( event ) {
|
343 |
-
var key = $.ui.keyCode;
|
344 |
-
|
345 |
-
switch( event.which ) {
|
346 |
-
case key.ESCAPE:
|
347 |
-
event.stopImmediatePropagation();
|
348 |
-
if ( ! $(document).triggerHandler( 'wp_CloseOnEscape', [{ event: event, what: 'wplink', cb: wpLink.close }] ) )
|
349 |
-
wpLink.close();
|
350 |
-
|
351 |
-
return false;
|
352 |
-
break;
|
353 |
-
case key.UP:
|
354 |
-
case key.DOWN:
|
355 |
-
clearInterval( wpLink.keyInterval );
|
356 |
-
break;
|
357 |
-
default:
|
358 |
-
return;
|
359 |
-
}
|
360 |
-
event.preventDefault();
|
361 |
-
},
|
362 |
-
|
363 |
-
delayedCallback : function( func, delay ) {
|
364 |
-
var timeoutTriggered, funcTriggered, funcArgs, funcContext;
|
365 |
-
|
366 |
-
if ( ! delay )
|
367 |
-
return func;
|
368 |
-
|
369 |
-
setTimeout( function() {
|
370 |
-
if ( funcTriggered )
|
371 |
-
return func.apply( funcContext, funcArgs );
|
372 |
-
// Otherwise, wait.
|
373 |
-
timeoutTriggered = true;
|
374 |
-
}, delay);
|
375 |
-
|
376 |
-
return function() {
|
377 |
-
if ( timeoutTriggered )
|
378 |
-
return func.apply( this, arguments );
|
379 |
-
// Otherwise, wait.
|
380 |
-
funcArgs = arguments;
|
381 |
-
funcContext = this;
|
382 |
-
funcTriggered = true;
|
383 |
-
};
|
384 |
-
},
|
385 |
-
|
386 |
-
toggleInternalLinking : function( event ) {
|
387 |
-
var panel = $('#search-panel'),
|
388 |
-
widget = inputs.dialog.wpdialog('widget'),
|
389 |
-
// We're about to toggle visibility; it's currently the opposite
|
390 |
-
visible = !panel.is(':visible'),
|
391 |
-
win = $(window);
|
392 |
-
|
393 |
-
$(this).toggleClass('toggle-arrow-active', visible);
|
394 |
-
|
395 |
-
inputs.dialog.height('auto');
|
396 |
-
panel.slideToggle( 300, function() {
|
397 |
-
setUserSetting('wplink', visible ? '1' : '0');
|
398 |
-
inputs[ visible ? 'search' : 'url' ].focus();
|
399 |
-
|
400 |
-
// Move the box if the box is now expanded, was opened in a collapsed state,
|
401 |
-
// and if it needs to be moved. (Judged by bottom not being positive or
|
402 |
-
// bottom being smaller than top.)
|
403 |
-
var scroll = win.scrollTop(),
|
404 |
-
top = widget.offset().top,
|
405 |
-
bottom = top + widget.outerHeight(),
|
406 |
-
diff = bottom - win.height();
|
407 |
-
|
408 |
-
if ( diff > scroll ) {
|
409 |
-
widget.animate({'top': diff < top ? top - diff : scroll }, 200);
|
410 |
-
}
|
411 |
-
});
|
412 |
-
event.preventDefault();
|
413 |
-
}
|
414 |
-
}
|
415 |
-
|
416 |
-
River = function( element, search ) {
|
417 |
-
var self = this;
|
418 |
-
this.element = element;
|
419 |
-
this.ul = element.children('ul');
|
420 |
-
this.waiting = element.find('.river-waiting');
|
421 |
-
|
422 |
-
this.change( search );
|
423 |
-
this.refresh();
|
424 |
-
|
425 |
-
element.scroll( function(){ self.maybeLoad(); });
|
426 |
-
element.delegate('li', 'click', function(e){ self.select( $(this), e ); });
|
427 |
-
};
|
428 |
-
|
429 |
-
$.extend( River.prototype, {
|
430 |
-
refresh: function() {
|
431 |
-
this.deselect();
|
432 |
-
this.visible = this.element.is(':visible');
|
433 |
-
},
|
434 |
-
show: function() {
|
435 |
-
if ( ! this.visible ) {
|
436 |
-
this.deselect();
|
437 |
-
this.element.show();
|
438 |
-
this.visible = true;
|
439 |
-
}
|
440 |
-
},
|
441 |
-
hide: function() {
|
442 |
-
this.element.hide();
|
443 |
-
this.visible = false;
|
444 |
-
},
|
445 |
-
// Selects a list item and triggers the river-select event.
|
446 |
-
select: function( li, event ) {
|
447 |
-
var liHeight, elHeight, liTop, elTop;
|
448 |
-
|
449 |
-
if ( li.hasClass('unselectable') || li == this.selected )
|
450 |
-
return;
|
451 |
-
|
452 |
-
this.deselect();
|
453 |
-
this.selected = li.addClass('selected');
|
454 |
-
// Make sure the element is visible
|
455 |
-
liHeight = li.outerHeight();
|
456 |
-
elHeight = this.element.height();
|
457 |
-
liTop = li.position().top;
|
458 |
-
elTop = this.element.scrollTop();
|
459 |
-
|
460 |
-
if ( liTop < 0 ) // Make first visible element
|
461 |
-
this.element.scrollTop( elTop + liTop );
|
462 |
-
else if ( liTop + liHeight > elHeight ) // Make last visible element
|
463 |
-
this.element.scrollTop( elTop + liTop - elHeight + liHeight );
|
464 |
-
|
465 |
-
// Trigger the river-select event
|
466 |
-
this.element.trigger('river-select', [ li, event, this ]);
|
467 |
-
},
|
468 |
-
deselect: function() {
|
469 |
-
if ( this.selected )
|
470 |
-
this.selected.removeClass('selected');
|
471 |
-
this.selected = false;
|
472 |
-
},
|
473 |
-
prev: function() {
|
474 |
-
if ( ! this.visible )
|
475 |
-
return;
|
476 |
-
|
477 |
-
var to;
|
478 |
-
if ( this.selected ) {
|
479 |
-
to = this.selected.prev('li');
|
480 |
-
if ( to.length )
|
481 |
-
this.select( to );
|
482 |
-
}
|
483 |
-
},
|
484 |
-
next: function() {
|
485 |
-
if ( ! this.visible )
|
486 |
-
return;
|
487 |
-
|
488 |
-
var to = this.selected ? this.selected.next('li') : $('li:not(.unselectable):first', this.element);
|
489 |
-
if ( to.length )
|
490 |
-
this.select( to );
|
491 |
-
},
|
492 |
-
ajax: function( callback ) {
|
493 |
-
var self = this,
|
494 |
-
delay = this.query.page == 1 ? 0 : wpLink.minRiverAJAXDuration,
|
495 |
-
response = wpLink.delayedCallback( function( results, params ) {
|
496 |
-
self.process( results, params );
|
497 |
-
if ( callback )
|
498 |
-
callback( results, params );
|
499 |
-
}, delay );
|
500 |
-
|
501 |
-
this.query.ajax( response );
|
502 |
-
},
|
503 |
-
change: function( search ) {
|
504 |
-
if ( this.query && this._search == search )
|
505 |
-
return;
|
506 |
-
|
507 |
-
this._search = search;
|
508 |
-
this.query = new Query( search );
|
509 |
-
this.element.scrollTop(0);
|
510 |
-
},
|
511 |
-
process: function( results, params ) {
|
512 |
-
var list = '', alt = true, classes = '',
|
513 |
-
firstPage = params.page == 1;
|
514 |
-
|
515 |
-
if ( !results ) {
|
516 |
-
if ( firstPage ) {
|
517 |
-
list += '<li class="unselectable"><span class="item-title"><em>'
|
518 |
-
+ wpLinkL10n.noMatchesFound
|
519 |
-
+ '</em></span></li>';
|
520 |
-
}
|
521 |
-
} else {
|
522 |
-
$.each( results, function() {
|
523 |
-
classes = alt ? 'alternate' : '';
|
524 |
-
classes += this['title'] ? '' : ' no-title';
|
525 |
-
list += classes ? '<li class="' + classes + '">' : '<li>';
|
526 |
-
list += '<input type="hidden" class="item-permalink" value="' + this['permalink'] + '" />';
|
527 |
-
list += '<span class="item-title">';
|
528 |
-
list += this['title'] ? this['title'] : wpLinkL10n.noTitle;
|
529 |
-
list += '</span><span class="item-info">' + this['info'] + '</span></li>';
|
530 |
-
alt = ! alt;
|
531 |
-
});
|
532 |
-
}
|
533 |
-
|
534 |
-
this.ul[ firstPage ? 'html' : 'append' ]( list );
|
535 |
-
},
|
536 |
-
maybeLoad: function() {
|
537 |
-
var self = this,
|
538 |
-
el = this.element,
|
539 |
-
bottom = el.scrollTop() + el.height();
|
540 |
-
|
541 |
-
if ( ! this.query.ready() || bottom < this.ul.height() - wpLink.riverBottomThreshold )
|
542 |
-
return;
|
543 |
-
|
544 |
-
setTimeout(function() {
|
545 |
-
var newTop = el.scrollTop(),
|
546 |
-
newBottom = newTop + el.height();
|
547 |
-
|
548 |
-
if ( ! self.query.ready() || newBottom < self.ul.height() - wpLink.riverBottomThreshold )
|
549 |
-
return;
|
550 |
-
|
551 |
-
self.waiting.show();
|
552 |
-
el.scrollTop( newTop + self.waiting.outerHeight() );
|
553 |
-
|
554 |
-
self.ajax( function() { self.waiting.hide(); });
|
555 |
-
}, wpLink.timeToTriggerRiver );
|
556 |
-
}
|
557 |
-
});
|
558 |
-
|
559 |
-
Query = function( search ) {
|
560 |
-
this.page = 1;
|
561 |
-
this.allLoaded = false;
|
562 |
-
this.querying = false;
|
563 |
-
this.search = search;
|
564 |
-
};
|
565 |
-
|
566 |
-
$.extend( Query.prototype, {
|
567 |
-
ready: function() {
|
568 |
-
return !( this.querying || this.allLoaded );
|
569 |
-
},
|
570 |
-
ajax: function( callback ) {
|
571 |
-
var self = this,
|
572 |
-
query = {
|
573 |
-
action : 'wp-link-ajax',
|
574 |
-
page : this.page,
|
575 |
-
'_ajax_linking_nonce' : inputs.nonce.val()
|
576 |
-
};
|
577 |
-
|
578 |
-
if ( this.search )
|
579 |
-
query.search = this.search;
|
580 |
-
|
581 |
-
this.querying = true;
|
582 |
-
|
583 |
-
$.post( ajaxurl, query, function(r) {
|
584 |
-
self.page++;
|
585 |
-
self.querying = false;
|
586 |
-
self.allLoaded = !r;
|
587 |
-
callback( r, query );
|
588 |
-
}, "json" );
|
589 |
-
}
|
590 |
-
});
|
591 |
-
|
592 |
-
$(document).ready( wpLink.init );
|
593 |
-
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
js/wplink.js
CHANGED
@@ -1 +1,593 @@
|
|
1 |
-
var wpLink;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
var wpLink;
|
2 |
+
|
3 |
+
(function($){
|
4 |
+
var inputs = {}, rivers = {}, ed, River, Query;
|
5 |
+
|
6 |
+
wpLink = {
|
7 |
+
timeToTriggerRiver: 150,
|
8 |
+
minRiverAJAXDuration: 200,
|
9 |
+
riverBottomThreshold: 5,
|
10 |
+
keySensitivity: 100,
|
11 |
+
lastSearch: '',
|
12 |
+
textarea: '',
|
13 |
+
|
14 |
+
init : function() {
|
15 |
+
inputs.dialog = $('#wp-link');
|
16 |
+
inputs.submit = $('#wp-link-submit');
|
17 |
+
// URL
|
18 |
+
inputs.url = $('#url-field');
|
19 |
+
inputs.nonce = $('#_ajax_linking_nonce');
|
20 |
+
// Secondary options
|
21 |
+
inputs.title = $('#link-title-field');
|
22 |
+
// Advanced Options
|
23 |
+
inputs.openInNewTab = $('#link-target-checkbox');
|
24 |
+
inputs.search = $('#search-field');
|
25 |
+
// Build Rivers
|
26 |
+
rivers.search = new River( $('#search-results') );
|
27 |
+
rivers.recent = new River( $('#most-recent-results') );
|
28 |
+
rivers.elements = $('.query-results', inputs.dialog);
|
29 |
+
|
30 |
+
// Bind event handlers
|
31 |
+
inputs.dialog.keydown( wpLink.keydown );
|
32 |
+
inputs.dialog.keyup( wpLink.keyup );
|
33 |
+
inputs.submit.click( function(e){
|
34 |
+
e.preventDefault();
|
35 |
+
wpLink.update();
|
36 |
+
});
|
37 |
+
$('#wp-link-cancel').click( function(e){
|
38 |
+
e.preventDefault();
|
39 |
+
wpLink.close();
|
40 |
+
});
|
41 |
+
$('#internal-toggle').click( wpLink.toggleInternalLinking );
|
42 |
+
|
43 |
+
rivers.elements.bind('river-select', wpLink.updateFields );
|
44 |
+
|
45 |
+
inputs.search.keyup( wpLink.searchInternalLinks );
|
46 |
+
|
47 |
+
inputs.dialog.bind('wpdialogrefresh', wpLink.refresh);
|
48 |
+
inputs.dialog.bind('wpdialogbeforeopen', wpLink.beforeOpen);
|
49 |
+
inputs.dialog.bind('wpdialogclose', wpLink.onClose);
|
50 |
+
},
|
51 |
+
|
52 |
+
beforeOpen : function() {
|
53 |
+
wpLink.range = null;
|
54 |
+
|
55 |
+
if ( ! wpLink.isMCE() && document.selection ) {
|
56 |
+
wpLink.textarea.focus();
|
57 |
+
wpLink.range = document.selection.createRange();
|
58 |
+
}
|
59 |
+
},
|
60 |
+
|
61 |
+
open : function() {
|
62 |
+
if ( !wpActiveEditor )
|
63 |
+
return;
|
64 |
+
|
65 |
+
this.textarea = $('#'+wpActiveEditor).get(0);
|
66 |
+
|
67 |
+
// Initialize the dialog if necessary (html mode).
|
68 |
+
if ( ! inputs.dialog.data('wpdialog') ) {
|
69 |
+
inputs.dialog.wpdialog({
|
70 |
+
title: wpLinkL10n.title,
|
71 |
+
width: 480,
|
72 |
+
height: 'auto',
|
73 |
+
modal: true,
|
74 |
+
dialogClass: 'wp-dialog',
|
75 |
+
zIndex: 300000
|
76 |
+
});
|
77 |
+
}
|
78 |
+
|
79 |
+
inputs.dialog.wpdialog('open');
|
80 |
+
},
|
81 |
+
|
82 |
+
isMCE : function() {
|
83 |
+
return tinyMCEPopup && ( ed = tinyMCEPopup.editor ) && ! ed.isHidden();
|
84 |
+
},
|
85 |
+
|
86 |
+
refresh : function() {
|
87 |
+
// Refresh rivers (clear links, check visibility)
|
88 |
+
rivers.search.refresh();
|
89 |
+
rivers.recent.refresh();
|
90 |
+
|
91 |
+
if ( wpLink.isMCE() )
|
92 |
+
wpLink.mceRefresh();
|
93 |
+
else
|
94 |
+
wpLink.setDefaultValues();
|
95 |
+
|
96 |
+
// Focus the URL field and highlight its contents.
|
97 |
+
// If this is moved above the selection changes,
|
98 |
+
// IE will show a flashing cursor over the dialog.
|
99 |
+
inputs.url.focus()[0].select();
|
100 |
+
// Load the most recent results if this is the first time opening the panel.
|
101 |
+
if ( ! rivers.recent.ul.children().length )
|
102 |
+
rivers.recent.ajax();
|
103 |
+
},
|
104 |
+
|
105 |
+
mceRefresh : function() {
|
106 |
+
var e;
|
107 |
+
ed = tinyMCEPopup.editor;
|
108 |
+
|
109 |
+
tinyMCEPopup.restoreSelection();
|
110 |
+
|
111 |
+
// If link exists, select proper values.
|
112 |
+
if ( e = ed.dom.getParent(ed.selection.getNode(), 'A') ) {
|
113 |
+
// Set URL and description.
|
114 |
+
inputs.url.val( ed.dom.getAttrib(e, 'href') );
|
115 |
+
inputs.title.val( ed.dom.getAttrib(e, 'title') );
|
116 |
+
// Set open in new tab.
|
117 |
+
if ( "_blank" == ed.dom.getAttrib(e, 'target') )
|
118 |
+
inputs.openInNewTab.prop('checked', true);
|
119 |
+
// Update save prompt.
|
120 |
+
inputs.submit.val( wpLinkL10n.update );
|
121 |
+
|
122 |
+
// If there's no link, set the default values.
|
123 |
+
} else {
|
124 |
+
wpLink.setDefaultValues();
|
125 |
+
}
|
126 |
+
|
127 |
+
tinyMCEPopup.storeSelection();
|
128 |
+
},
|
129 |
+
|
130 |
+
close : function() {
|
131 |
+
if ( wpLink.isMCE() )
|
132 |
+
tinyMCEPopup.close();
|
133 |
+
else
|
134 |
+
inputs.dialog.wpdialog('close');
|
135 |
+
},
|
136 |
+
|
137 |
+
onClose: function() {
|
138 |
+
if ( ! wpLink.isMCE() ) {
|
139 |
+
wpLink.textarea.focus();
|
140 |
+
if ( wpLink.range ) {
|
141 |
+
wpLink.range.moveToBookmark( wpLink.range.getBookmark() );
|
142 |
+
wpLink.range.select();
|
143 |
+
}
|
144 |
+
}
|
145 |
+
},
|
146 |
+
|
147 |
+
getAttrs : function() {
|
148 |
+
return {
|
149 |
+
href : inputs.url.val(),
|
150 |
+
title : inputs.title.val(),
|
151 |
+
target : inputs.openInNewTab.prop('checked') ? '_blank' : ''
|
152 |
+
};
|
153 |
+
},
|
154 |
+
|
155 |
+
update : function() {
|
156 |
+
if ( wpLink.isMCE() )
|
157 |
+
wpLink.mceUpdate();
|
158 |
+
else
|
159 |
+
wpLink.htmlUpdate();
|
160 |
+
},
|
161 |
+
|
162 |
+
htmlUpdate : function() {
|
163 |
+
var attrs, html, begin, end, cursor,
|
164 |
+
textarea = wpLink.textarea;
|
165 |
+
|
166 |
+
if ( ! textarea )
|
167 |
+
return;
|
168 |
+
|
169 |
+
attrs = wpLink.getAttrs();
|
170 |
+
|
171 |
+
// If there's no href, return.
|
172 |
+
if ( ! attrs.href || attrs.href == 'http://' )
|
173 |
+
return;
|
174 |
+
|
175 |
+
// Build HTML
|
176 |
+
html = '<a href="' + attrs.href + '"';
|
177 |
+
|
178 |
+
if ( attrs.title )
|
179 |
+
html += ' title="' + attrs.title + '"';
|
180 |
+
if ( attrs.target )
|
181 |
+
html += ' target="' + attrs.target + '"';
|
182 |
+
|
183 |
+
html += '>';
|
184 |
+
|
185 |
+
// Insert HTML
|
186 |
+
if ( document.selection && wpLink.range ) {
|
187 |
+
// IE
|
188 |
+
// Note: If no text is selected, IE will not place the cursor
|
189 |
+
// inside the closing tag.
|
190 |
+
textarea.focus();
|
191 |
+
wpLink.range.text = html + wpLink.range.text + '</a>';
|
192 |
+
wpLink.range.moveToBookmark( wpLink.range.getBookmark() );
|
193 |
+
wpLink.range.select();
|
194 |
+
|
195 |
+
wpLink.range = null;
|
196 |
+
} else if ( typeof textarea.selectionStart !== 'undefined' ) {
|
197 |
+
// W3C
|
198 |
+
begin = textarea.selectionStart;
|
199 |
+
end = textarea.selectionEnd;
|
200 |
+
selection = textarea.value.substring( begin, end );
|
201 |
+
html = html + selection + '</a>';
|
202 |
+
cursor = begin + html.length;
|
203 |
+
|
204 |
+
// If no next is selected, place the cursor inside the closing tag.
|
205 |
+
if ( begin == end )
|
206 |
+
cursor -= '</a>'.length;
|
207 |
+
|
208 |
+
textarea.value = textarea.value.substring( 0, begin )
|
209 |
+
+ html
|
210 |
+
+ textarea.value.substring( end, textarea.value.length );
|
211 |
+
|
212 |
+
// Update cursor position
|
213 |
+
textarea.selectionStart = textarea.selectionEnd = cursor;
|
214 |
+
}
|
215 |
+
|
216 |
+
wpLink.close();
|
217 |
+
textarea.focus();
|
218 |
+
},
|
219 |
+
|
220 |
+
mceUpdate : function() {
|
221 |
+
var ed = tinyMCEPopup.editor,
|
222 |
+
attrs = wpLink.getAttrs(),
|
223 |
+
e, b;
|
224 |
+
|
225 |
+
tinyMCEPopup.restoreSelection();
|
226 |
+
e = ed.dom.getParent(ed.selection.getNode(), 'A');
|
227 |
+
|
228 |
+
// If the values are empty, unlink and return
|
229 |
+
if ( ! attrs.href || attrs.href == 'http://' ) {
|
230 |
+
if ( e ) {
|
231 |
+
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
232 |
+
b = ed.selection.getBookmark();
|
233 |
+
ed.dom.remove(e, 1);
|
234 |
+
ed.selection.moveToBookmark(b);
|
235 |
+
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
236 |
+
wpLink.close();
|
237 |
+
}
|
238 |
+
return;
|
239 |
+
}
|
240 |
+
|
241 |
+
tinyMCEPopup.execCommand("mceBeginUndoLevel");
|
242 |
+
|
243 |
+
if (e == null) {
|
244 |
+
ed.getDoc().execCommand("unlink", false, null);
|
245 |
+
tinyMCEPopup.execCommand("mceInsertLink", false, "#mce_temp_url#", {skip_undo : 1});
|
246 |
+
|
247 |
+
tinymce.each(ed.dom.select("a"), function(n) {
|
248 |
+
if (ed.dom.getAttrib(n, 'href') == '#mce_temp_url#') {
|
249 |
+
e = n;
|
250 |
+
ed.dom.setAttribs(e, attrs);
|
251 |
+
}
|
252 |
+
});
|
253 |
+
|
254 |
+
// Sometimes WebKit lets a user create a link where
|
255 |
+
// they shouldn't be able to. In this case, CreateLink
|
256 |
+
// injects "#mce_temp_url#" into their content. Fix it.
|
257 |
+
if ( $(e).text() == '#mce_temp_url#' ) {
|
258 |
+
ed.dom.remove(e);
|
259 |
+
e = null;
|
260 |
+
}
|
261 |
+
} else {
|
262 |
+
ed.dom.setAttribs(e, attrs);
|
263 |
+
}
|
264 |
+
|
265 |
+
// Don't move caret if selection was image
|
266 |
+
if ( e && (e.childNodes.length != 1 || e.firstChild.nodeName != 'IMG') ) {
|
267 |
+
ed.focus();
|
268 |
+
ed.selection.select(e);
|
269 |
+
ed.selection.collapse(0);
|
270 |
+
tinyMCEPopup.storeSelection();
|
271 |
+
}
|
272 |
+
|
273 |
+
tinyMCEPopup.execCommand("mceEndUndoLevel");
|
274 |
+
wpLink.close();
|
275 |
+
},
|
276 |
+
|
277 |
+
updateFields : function( e, li, originalEvent ) {
|
278 |
+
inputs.url.val( li.children('.item-permalink').val() );
|
279 |
+
inputs.title.val( li.hasClass('no-title') ? '' : li.children('.item-title').text() );
|
280 |
+
if ( originalEvent && originalEvent.type == "click" )
|
281 |
+
inputs.url.focus();
|
282 |
+
},
|
283 |
+
setDefaultValues : function() {
|
284 |
+
// Set URL and description to defaults.
|
285 |
+
// Leave the new tab setting as-is.
|
286 |
+
inputs.url.val('http://');
|
287 |
+
inputs.title.val('');
|
288 |
+
|
289 |
+
// Update save prompt.
|
290 |
+
inputs.submit.val( wpLinkL10n.save );
|
291 |
+
},
|
292 |
+
|
293 |
+
searchInternalLinks : function() {
|
294 |
+
var t = $(this), waiting,
|
295 |
+
search = t.val();
|
296 |
+
|
297 |
+
if ( search.length > 1 ) {
|
298 |
+
rivers.recent.hide();
|
299 |
+
rivers.search.show();
|
300 |
+
|
301 |
+
// Don't search if the keypress didn't change the title.
|
302 |
+
if ( wpLink.lastSearch == search )
|
303 |
+
return;
|
304 |
+
|
305 |
+
wpLink.lastSearch = search;
|
306 |
+
waiting = t.parent().find('.spinner').show();
|
307 |
+
|
308 |
+
rivers.search.change( search );
|
309 |
+
rivers.search.ajax( function(){ waiting.hide(); });
|
310 |
+
} else {
|
311 |
+
rivers.search.hide();
|
312 |
+
rivers.recent.show();
|
313 |
+
}
|
314 |
+
},
|
315 |
+
|
316 |
+
next : function() {
|
317 |
+
rivers.search.next();
|
318 |
+
rivers.recent.next();
|
319 |
+
},
|
320 |
+
prev : function() {
|
321 |
+
rivers.search.prev();
|
322 |
+
rivers.recent.prev();
|
323 |
+
},
|
324 |
+
|
325 |
+
keydown : function( event ) {
|
326 |
+
var fn, key = $.ui.keyCode;
|
327 |
+
|
328 |
+
switch( event.which ) {
|
329 |
+
case key.UP:
|
330 |
+
fn = 'prev';
|
331 |
+
case key.DOWN:
|
332 |
+
fn = fn || 'next';
|
333 |
+
clearInterval( wpLink.keyInterval );
|
334 |
+
wpLink[ fn ]();
|
335 |
+
wpLink.keyInterval = setInterval( wpLink[ fn ], wpLink.keySensitivity );
|
336 |
+
break;
|
337 |
+
default:
|
338 |
+
return;
|
339 |
+
}
|
340 |
+
event.preventDefault();
|
341 |
+
},
|
342 |
+
keyup: function( event ) {
|
343 |
+
var key = $.ui.keyCode;
|
344 |
+
|
345 |
+
switch( event.which ) {
|
346 |
+
case key.ESCAPE:
|
347 |
+
event.stopImmediatePropagation();
|
348 |
+
if ( ! $(document).triggerHandler( 'wp_CloseOnEscape', [{ event: event, what: 'wplink', cb: wpLink.close }] ) )
|
349 |
+
wpLink.close();
|
350 |
+
|
351 |
+
return false;
|
352 |
+
break;
|
353 |
+
case key.UP:
|
354 |
+
case key.DOWN:
|
355 |
+
clearInterval( wpLink.keyInterval );
|
356 |
+
break;
|
357 |
+
default:
|
358 |
+
return;
|
359 |
+
}
|
360 |
+
event.preventDefault();
|
361 |
+
},
|
362 |
+
|
363 |
+
delayedCallback : function( func, delay ) {
|
364 |
+
var timeoutTriggered, funcTriggered, funcArgs, funcContext;
|
365 |
+
|
366 |
+
if ( ! delay )
|
367 |
+
return func;
|
368 |
+
|
369 |
+
setTimeout( function() {
|
370 |
+
if ( funcTriggered )
|
371 |
+
return func.apply( funcContext, funcArgs );
|
372 |
+
// Otherwise, wait.
|
373 |
+
timeoutTriggered = true;
|
374 |
+
}, delay);
|
375 |
+
|
376 |
+
return function() {
|
377 |
+
if ( timeoutTriggered )
|
378 |
+
return func.apply( this, arguments );
|
379 |
+
// Otherwise, wait.
|
380 |
+
funcArgs = arguments;
|
381 |
+
funcContext = this;
|
382 |
+
funcTriggered = true;
|
383 |
+
};
|
384 |
+
},
|
385 |
+
|
386 |
+
toggleInternalLinking : function( event ) {
|
387 |
+
var panel = $('#search-panel'),
|
388 |
+
widget = inputs.dialog.wpdialog('widget'),
|
389 |
+
// We're about to toggle visibility; it's currently the opposite
|
390 |
+
visible = !panel.is(':visible'),
|
391 |
+
win = $(window);
|
392 |
+
|
393 |
+
$(this).toggleClass('toggle-arrow-active', visible);
|
394 |
+
|
395 |
+
inputs.dialog.height('auto');
|
396 |
+
panel.slideToggle( 300, function() {
|
397 |
+
setUserSetting('wplink', visible ? '1' : '0');
|
398 |
+
inputs[ visible ? 'search' : 'url' ].focus();
|
399 |
+
|
400 |
+
// Move the box if the box is now expanded, was opened in a collapsed state,
|
401 |
+
// and if it needs to be moved. (Judged by bottom not being positive or
|
402 |
+
// bottom being smaller than top.)
|
403 |
+
var scroll = win.scrollTop(),
|
404 |
+
top = widget.offset().top,
|
405 |
+
bottom = top + widget.outerHeight(),
|
406 |
+
diff = bottom - win.height();
|
407 |
+
|
408 |
+
if ( diff > scroll ) {
|
409 |
+
widget.animate({'top': diff < top ? top - diff : scroll }, 200);
|
410 |
+
}
|
411 |
+
});
|
412 |
+
event.preventDefault();
|
413 |
+
}
|
414 |
+
}
|
415 |
+
|
416 |
+
River = function( element, search ) {
|
417 |
+
var self = this;
|
418 |
+
this.element = element;
|
419 |
+
this.ul = element.children('ul');
|
420 |
+
this.waiting = element.find('.river-waiting');
|
421 |
+
|
422 |
+
this.change( search );
|
423 |
+
this.refresh();
|
424 |
+
|
425 |
+
element.scroll( function(){ self.maybeLoad(); });
|
426 |
+
element.delegate('li', 'click', function(e){ self.select( $(this), e ); });
|
427 |
+
};
|
428 |
+
|
429 |
+
$.extend( River.prototype, {
|
430 |
+
refresh: function() {
|
431 |
+
this.deselect();
|
432 |
+
this.visible = this.element.is(':visible');
|
433 |
+
},
|
434 |
+
show: function() {
|
435 |
+
if ( ! this.visible ) {
|
436 |
+
this.deselect();
|
437 |
+
this.element.show();
|
438 |
+
this.visible = true;
|
439 |
+
}
|
440 |
+
},
|
441 |
+
hide: function() {
|
442 |
+
this.element.hide();
|
443 |
+
this.visible = false;
|
444 |
+
},
|
445 |
+
// Selects a list item and triggers the river-select event.
|
446 |
+
select: function( li, event ) {
|
447 |
+
var liHeight, elHeight, liTop, elTop;
|
448 |
+
|
449 |
+
if ( li.hasClass('unselectable') || li == this.selected )
|
450 |
+
return;
|
451 |
+
|
452 |
+
this.deselect();
|
453 |
+
this.selected = li.addClass('selected');
|
454 |
+
// Make sure the element is visible
|
455 |
+
liHeight = li.outerHeight();
|
456 |
+
elHeight = this.element.height();
|
457 |
+
liTop = li.position().top;
|
458 |
+
elTop = this.element.scrollTop();
|
459 |
+
|
460 |
+
if ( liTop < 0 ) // Make first visible element
|
461 |
+
this.element.scrollTop( elTop + liTop );
|
462 |
+
else if ( liTop + liHeight > elHeight ) // Make last visible element
|
463 |
+
this.element.scrollTop( elTop + liTop - elHeight + liHeight );
|
464 |
+
|
465 |
+
// Trigger the river-select event
|
466 |
+
this.element.trigger('river-select', [ li, event, this ]);
|
467 |
+
},
|
468 |
+
deselect: function() {
|
469 |
+
if ( this.selected )
|
470 |
+
this.selected.removeClass('selected');
|
471 |
+
this.selected = false;
|
472 |
+
},
|
473 |
+
prev: function() {
|
474 |
+
if ( ! this.visible )
|
475 |
+
return;
|
476 |
+
|
477 |
+
var to;
|
478 |
+
if ( this.selected ) {
|
479 |
+
to = this.selected.prev('li');
|
480 |
+
if ( to.length )
|
481 |
+
this.select( to );
|
482 |
+
}
|
483 |
+
},
|
484 |
+
next: function() {
|
485 |
+
if ( ! this.visible )
|
486 |
+
return;
|
487 |
+
|
488 |
+
var to = this.selected ? this.selected.next('li') : $('li:not(.unselectable):first', this.element);
|
489 |
+
if ( to.length )
|
490 |
+
this.select( to );
|
491 |
+
},
|
492 |
+
ajax: function( callback ) {
|
493 |
+
var self = this,
|
494 |
+
delay = this.query.page == 1 ? 0 : wpLink.minRiverAJAXDuration,
|
495 |
+
response = wpLink.delayedCallback( function( results, params ) {
|
496 |
+
self.process( results, params );
|
497 |
+
if ( callback )
|
498 |
+
callback( results, params );
|
499 |
+
}, delay );
|
500 |
+
|
501 |
+
this.query.ajax( response );
|
502 |
+
},
|
503 |
+
change: function( search ) {
|
504 |
+
if ( this.query && this._search == search )
|
505 |
+
return;
|
506 |
+
|
507 |
+
this._search = search;
|
508 |
+
this.query = new Query( search );
|
509 |
+
this.element.scrollTop(0);
|
510 |
+
},
|
511 |
+
process: function( results, params ) {
|
512 |
+
var list = '', alt = true, classes = '',
|
513 |
+
firstPage = params.page == 1;
|
514 |
+
|
515 |
+
if ( !results ) {
|
516 |
+
if ( firstPage ) {
|
517 |
+
list += '<li class="unselectable"><span class="item-title"><em>'
|
518 |
+
+ wpLinkL10n.noMatchesFound
|
519 |
+
+ '</em></span></li>';
|
520 |
+
}
|
521 |
+
} else {
|
522 |
+
$.each( results, function() {
|
523 |
+
classes = alt ? 'alternate' : '';
|
524 |
+
classes += this['title'] ? '' : ' no-title';
|
525 |
+
list += classes ? '<li class="' + classes + '">' : '<li>';
|
526 |
+
list += '<input type="hidden" class="item-permalink" value="' + this['permalink'] + '" />';
|
527 |
+
list += '<span class="item-title">';
|
528 |
+
list += this['title'] ? this['title'] : wpLinkL10n.noTitle;
|
529 |
+
list += '</span><span class="item-info">' + this['info'] + '</span></li>';
|
530 |
+
alt = ! alt;
|
531 |
+
});
|
532 |
+
}
|
533 |
+
|
534 |
+
this.ul[ firstPage ? 'html' : 'append' ]( list );
|
535 |
+
},
|
536 |
+
maybeLoad: function() {
|
537 |
+
var self = this,
|
538 |
+
el = this.element,
|
539 |
+
bottom = el.scrollTop() + el.height();
|
540 |
+
|
541 |
+
if ( ! this.query.ready() || bottom < this.ul.height() - wpLink.riverBottomThreshold )
|
542 |
+
return;
|
543 |
+
|
544 |
+
setTimeout(function() {
|
545 |
+
var newTop = el.scrollTop(),
|
546 |
+
newBottom = newTop + el.height();
|
547 |
+
|
548 |
+
if ( ! self.query.ready() || newBottom < self.ul.height() - wpLink.riverBottomThreshold )
|
549 |
+
return;
|
550 |
+
|
551 |
+
self.waiting.show();
|
552 |
+
el.scrollTop( newTop + self.waiting.outerHeight() );
|
553 |
+
|
554 |
+
self.ajax( function() { self.waiting.hide(); });
|
555 |
+
}, wpLink.timeToTriggerRiver );
|
556 |
+
}
|
557 |
+
});
|
558 |
+
|
559 |
+
Query = function( search ) {
|
560 |
+
this.page = 1;
|
561 |
+
this.allLoaded = false;
|
562 |
+
this.querying = false;
|
563 |
+
this.search = search;
|
564 |
+
};
|
565 |
+
|
566 |
+
$.extend( Query.prototype, {
|
567 |
+
ready: function() {
|
568 |
+
return !( this.querying || this.allLoaded );
|
569 |
+
},
|
570 |
+
ajax: function( callback ) {
|
571 |
+
var self = this,
|
572 |
+
query = {
|
573 |
+
action : 'wp-link-ajax',
|
574 |
+
page : this.page,
|
575 |
+
'_ajax_linking_nonce' : inputs.nonce.val()
|
576 |
+
};
|
577 |
+
|
578 |
+
if ( this.search )
|
579 |
+
query.search = this.search;
|
580 |
+
|
581 |
+
this.querying = true;
|
582 |
+
|
583 |
+
$.post( ajaxurl, query, function(r) {
|
584 |
+
self.page++;
|
585 |
+
self.querying = false;
|
586 |
+
self.allLoaded = !r;
|
587 |
+
callback( r, query );
|
588 |
+
}, "json" );
|
589 |
+
}
|
590 |
+
});
|
591 |
+
|
592 |
+
$(document).ready( wpLink.init );
|
593 |
+
})(jQuery);
|
js/wplink.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
var wpLink;(function(f){var b={},e={},d,a,c;wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",init:function(){b.dialog=f("#wp-link");b.submit=f("#wp-link-submit");b.url=f("#url-field");b.nonce=f("#_ajax_linking_nonce");b.title=f("#link-title-field");b.openInNewTab=f("#link-target-checkbox");b.search=f("#search-field");e.search=new a(f("#search-results"));e.recent=new a(f("#most-recent-results"));e.elements=f(".query-results",b.dialog);b.dialog.keydown(wpLink.keydown);b.dialog.keyup(wpLink.keyup);b.submit.click(function(g){g.preventDefault();wpLink.update()});f("#wp-link-cancel").click(function(g){g.preventDefault();wpLink.close()});f("#internal-toggle").click(wpLink.toggleInternalLinking);e.elements.bind("river-select",wpLink.updateFields);b.search.keyup(wpLink.searchInternalLinks);b.dialog.bind("wpdialogrefresh",wpLink.refresh);b.dialog.bind("wpdialogbeforeopen",wpLink.beforeOpen);b.dialog.bind("wpdialogclose",wpLink.onClose)},beforeOpen:function(){wpLink.range=null;if(!wpLink.isMCE()&&document.selection){wpLink.textarea.focus();wpLink.range=document.selection.createRange()}},open:function(){if(!wpActiveEditor){return}this.textarea=f("#"+wpActiveEditor).get(0);if(!b.dialog.data("wpdialog")){b.dialog.wpdialog({title:wpLinkL10n.title,width:480,height:"auto",modal:true,dialogClass:"wp-dialog",zIndex:300000})}b.dialog.wpdialog("open")},isMCE:function(){return tinyMCEPopup&&(d=tinyMCEPopup.editor)&&!d.isHidden()},refresh:function(){e.search.refresh();e.recent.refresh();if(wpLink.isMCE()){wpLink.mceRefresh()}else{wpLink.setDefaultValues()}b.url.focus()[0].select();if(!e.recent.ul.children().length){e.recent.ajax()}},mceRefresh:function(){var g;d=tinyMCEPopup.editor;tinyMCEPopup.restoreSelection();if(g=d.dom.getParent(d.selection.getNode(),"A")){b.url.val(d.dom.getAttrib(g,"href"));b.title.val(d.dom.getAttrib(g,"title"));if("_blank"==d.dom.getAttrib(g,"target")){b.openInNewTab.prop("checked",true)}b.submit.val(wpLinkL10n.update)}else{wpLink.setDefaultValues()}tinyMCEPopup.storeSelection()},close:function(){if(wpLink.isMCE()){tinyMCEPopup.close()}else{b.dialog.wpdialog("close")}},onClose:function(){if(!wpLink.isMCE()){wpLink.textarea.focus();if(wpLink.range){wpLink.range.moveToBookmark(wpLink.range.getBookmark());wpLink.range.select()}}},getAttrs:function(){return{href:b.url.val(),title:b.title.val(),target:b.openInNewTab.prop("checked")?"_blank":""}},update:function(){if(wpLink.isMCE()){wpLink.mceUpdate()}else{wpLink.htmlUpdate()}},htmlUpdate:function(){var i,j,k,h,l,g=wpLink.textarea;if(!g){return}i=wpLink.getAttrs();if(!i.href||i.href=="http://"){return}j='<a href="'+i.href+'"';if(i.title){j+=' title="'+i.title+'"'}if(i.target){j+=' target="'+i.target+'"'}j+=">";if(document.selection&&wpLink.range){g.focus();wpLink.range.text=j+wpLink.range.text+"</a>";wpLink.range.moveToBookmark(wpLink.range.getBookmark());wpLink.range.select();wpLink.range=null}else{if(typeof g.selectionStart!=="undefined"){k=g.selectionStart;h=g.selectionEnd;selection=g.value.substring(k,h);j=j+selection+"</a>";l=k+j.length;if(k==h){l-="</a>".length}g.value=g.value.substring(0,k)+j+g.value.substring(h,g.value.length);g.selectionStart=g.selectionEnd=l}}wpLink.close();g.focus()},mceUpdate:function(){var h=tinyMCEPopup.editor,i=wpLink.getAttrs(),j,g;tinyMCEPopup.restoreSelection();j=h.dom.getParent(h.selection.getNode(),"A");if(!i.href||i.href=="http://"){if(j){tinyMCEPopup.execCommand("mceBeginUndoLevel");g=h.selection.getBookmark();h.dom.remove(j,1);h.selection.moveToBookmark(g);tinyMCEPopup.execCommand("mceEndUndoLevel");wpLink.close()}return}tinyMCEPopup.execCommand("mceBeginUndoLevel");if(j==null){h.getDoc().execCommand("unlink",false,null);tinyMCEPopup.execCommand("mceInsertLink",false,"#mce_temp_url#",{skip_undo:1});tinymce.each(h.dom.select("a"),function(k){if(h.dom.getAttrib(k,"href")=="#mce_temp_url#"){j=k;h.dom.setAttribs(j,i)}});if(f(j).text()=="#mce_temp_url#"){h.dom.remove(j);j=null}}else{h.dom.setAttribs(j,i)}if(j&&(j.childNodes.length!=1||j.firstChild.nodeName!="IMG")){h.focus();h.selection.select(j);h.selection.collapse(0);tinyMCEPopup.storeSelection()}tinyMCEPopup.execCommand("mceEndUndoLevel");wpLink.close()},updateFields:function(i,h,g){b.url.val(h.children(".item-permalink").val());b.title.val(h.hasClass("no-title")?"":h.children(".item-title").text());if(g&&g.type=="click"){b.url.focus()}},setDefaultValues:function(){b.url.val("http://");b.title.val("");b.submit.val(wpLinkL10n.save)},searchInternalLinks:function(){var h=f(this),i,g=h.val();if(g.length>1){e.recent.hide();e.search.show();if(wpLink.lastSearch==g){return}wpLink.lastSearch=g;i=h.parent().find(".spinner").show();e.search.change(g);e.search.ajax(function(){i.hide()})}else{e.search.hide();e.recent.show()}},next:function(){e.search.next();e.recent.next()},prev:function(){e.search.prev();e.recent.prev()},keydown:function(i){var h,g=f.ui.keyCode;switch(i.which){case g.UP:h="prev";case g.DOWN:h=h||"next";clearInterval(wpLink.keyInterval);wpLink[h]();wpLink.keyInterval=setInterval(wpLink[h],wpLink.keySensitivity);break;default:return}i.preventDefault()},keyup:function(h){var g=f.ui.keyCode;switch(h.which){case g.ESCAPE:h.stopImmediatePropagation();if(!f(document).triggerHandler("wp_CloseOnEscape",[{event:h,what:"wplink",cb:wpLink.close}])){wpLink.close()}return false;break;case g.UP:case g.DOWN:clearInterval(wpLink.keyInterval);break;default:return}h.preventDefault()},delayedCallback:function(i,g){var l,k,j,h;if(!g){return i}setTimeout(function(){if(k){return i.apply(h,j)}l=true},g);return function(){if(l){return i.apply(this,arguments)}j=arguments;h=this;k=true}},toggleInternalLinking:function(h){var g=f("#search-panel"),i=b.dialog.wpdialog("widget"),k=!g.is(":visible"),j=f(window);f(this).toggleClass("toggle-arrow-active",k);b.dialog.height("auto");g.slideToggle(300,function(){setUserSetting("wplink",k?"1":"0");b[k?"search":"url"].focus();var l=j.scrollTop(),o=i.offset().top,m=o+i.outerHeight(),n=m-j.height();if(n>l){i.animate({top:n<o?o-n:l},200)}});h.preventDefault()}};a=function(i,h){var g=this;this.element=i;this.ul=i.children("ul");this.waiting=i.find(".river-waiting");this.change(h);this.refresh();i.scroll(function(){g.maybeLoad()});i.delegate("li","click",function(j){g.select(f(this),j)})};f.extend(a.prototype,{refresh:function(){this.deselect();this.visible=this.element.is(":visible")},show:function(){if(!this.visible){this.deselect();this.element.show();this.visible=true}},hide:function(){this.element.hide();this.visible=false},select:function(h,k){var j,i,l,g;if(h.hasClass("unselectable")||h==this.selected){return}this.deselect();this.selected=h.addClass("selected");j=h.outerHeight();i=this.element.height();l=h.position().top;g=this.element.scrollTop();if(l<0){this.element.scrollTop(g+l)}else{if(l+j>i){this.element.scrollTop(g+l-i+j)}}this.element.trigger("river-select",[h,k,this])},deselect:function(){if(this.selected){this.selected.removeClass("selected")}this.selected=false},prev:function(){if(!this.visible){return}var g;if(this.selected){g=this.selected.prev("li");if(g.length){this.select(g)}}},next:function(){if(!this.visible){return}var g=this.selected?this.selected.next("li"):f("li:not(.unselectable):first",this.element);if(g.length){this.select(g)}},ajax:function(j){var h=this,i=this.query.page==1?0:wpLink.minRiverAJAXDuration,g=wpLink.delayedCallback(function(k,l){h.process(k,l);if(j){j(k,l)}},i);this.query.ajax(g)},change:function(g){if(this.query&&this._search==g){return}this._search=g;this.query=new c(g);this.element.scrollTop(0)},process:function(h,l){var i="",j=true,g="",k=l.page==1;if(!h){if(k){i+='<li class="unselectable"><span class="item-title"><em>'+wpLinkL10n.noMatchesFound+"</em></span></li>"}}else{f.each(h,function(){g=j?"alternate":"";g+=this["title"]?"":" no-title";i+=g?'<li class="'+g+'">':"<li>";i+='<input type="hidden" class="item-permalink" value="'+this["permalink"]+'" />';i+='<span class="item-title">';i+=this["title"]?this["title"]:wpLinkL10n.noTitle;i+='</span><span class="item-info">'+this["info"]+"</span></li>";j=!j})}this.ul[k?"html":"append"](i)},maybeLoad:function(){var h=this,i=this.element,g=i.scrollTop()+i.height();if(!this.query.ready()||g<this.ul.height()-wpLink.riverBottomThreshold){return}setTimeout(function(){var j=i.scrollTop(),k=j+i.height();if(!h.query.ready()||k<h.ul.height()-wpLink.riverBottomThreshold){return}h.waiting.show();i.scrollTop(j+h.waiting.outerHeight());h.ajax(function(){h.waiting.hide()})},wpLink.timeToTriggerRiver)}});c=function(g){this.page=1;this.allLoaded=false;this.querying=false;this.search=g};f.extend(c.prototype,{ready:function(){return !(this.querying||this.allLoaded)},ajax:function(i){var g=this,h={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:b.nonce.val()};if(this.search){h.search=this.search}this.querying=true;f.post(ajaxurl,h,function(j){g.page++;g.querying=false;g.allLoaded=!j;i(j,h)},"json")}});f(document).ready(wpLink.init)})(jQuery);
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== WP Multibyte Patch ===
|
2 |
Contributors: tenpura
|
3 |
Tags: multibyte,i18n,wp-multibyte-patch,Japanese
|
4 |
-
Requires at least: 3.
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 1.6.
|
7 |
|
8 |
Multibyte functionality enhancement for the WordPress Japanese package.
|
9 |
|
1 |
=== WP Multibyte Patch ===
|
2 |
Contributors: tenpura
|
3 |
Tags: multibyte,i18n,wp-multibyte-patch,Japanese
|
4 |
+
Requires at least: 3.5
|
5 |
+
Tested up to: 3.5
|
6 |
+
Stable tag: 1.6.4
|
7 |
|
8 |
Multibyte functionality enhancement for the WordPress Japanese package.
|
9 |
|
wp-multibyte-patch.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: WP Multibyte Patch
|
4 |
Description: Multibyte functionality enhancement for the WordPress Japanese package.
|
5 |
-
Version: 1.6.
|
6 |
Plugin URI: http://eastcoder.com/code/wp-multibyte-patch/
|
7 |
Author: Seisuke Kuraishi
|
8 |
Author URI: http://tinybit.co.jp/
|
@@ -15,7 +15,7 @@ Domain Path: /languages
|
|
15 |
* Multibyte functionality enhancement for the WordPress Japanese package.
|
16 |
*
|
17 |
* @package WP_Multibyte_Patch
|
18 |
-
* @version 1.6.
|
19 |
* @author Seisuke Kuraishi <210pura@gmail.com>
|
20 |
* @copyright Copyright (c) 2012 Seisuke Kuraishi, Tinybit Inc.
|
21 |
* @license http://opensource.org/licenses/gpl-2.0.php GPLv2
|
@@ -59,7 +59,7 @@ class multibyte_patch {
|
|
59 |
var $debug_suffix = '';
|
60 |
var $textdomain = 'wp-multibyte-patch';
|
61 |
var $lang_dir = 'languages';
|
62 |
-
var $required_version = '3.
|
63 |
var $query_based_vars = array();
|
64 |
|
65 |
// For fallback purpose only. (1.6)
|
@@ -132,6 +132,8 @@ class multibyte_patch {
|
|
132 |
}
|
133 |
|
134 |
function incoming_pingback($commentdata) {
|
|
|
|
|
135 |
if('pingback' != $commentdata['comment_type'])
|
136 |
return $commentdata;
|
137 |
|
@@ -143,7 +145,10 @@ class multibyte_patch {
|
|
143 |
|
144 |
$linea = preg_replace("/" . preg_quote('<!DOC', '/') . "/i", '<DOC', $linea);
|
145 |
$linea = preg_replace("/[\r\n\t ]+/", ' ', $linea);
|
146 |
-
$linea = preg_replace("
|
|
|
|
|
|
|
147 |
|
148 |
preg_match("/<meta[^<>]+charset=\"*([a-zA-Z0-9\-_]+)\"*[^<>]*>/i", $linea, $matches);
|
149 |
$charset = isset($matches[1]) ? $matches[1] : '';
|
@@ -194,10 +199,9 @@ class multibyte_patch {
|
|
194 |
}
|
195 |
|
196 |
$commentdata['comment_content'] = '[...] ' . esc_html($excerpt) . ' [...]';
|
197 |
-
$commentdata['comment_content'] =
|
198 |
-
$commentdata['comment_author'] =
|
199 |
-
$commentdata['comment_author'] = $
|
200 |
-
$commentdata['comment_author'] = addslashes($commentdata['comment_author']);
|
201 |
|
202 |
return $commentdata;
|
203 |
}
|
@@ -454,7 +458,7 @@ class multibyte_patch {
|
|
454 |
|
455 |
$this->has_mbfunctions = $this->mbfunctions_exist();
|
456 |
$this->has_mb_strlen = function_exists('mb_strlen');
|
457 |
-
$this->debug_suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '
|
458 |
|
459 |
load_textdomain($this->textdomain, plugin_dir_path(__FILE__) . $this->lang_dir . '/' . $this->textdomain . '-' . get_locale() . '.mo');
|
460 |
register_activation_hook(__FILE__, array($this, 'activation_check'));
|
2 |
/*
|
3 |
Plugin Name: WP Multibyte Patch
|
4 |
Description: Multibyte functionality enhancement for the WordPress Japanese package.
|
5 |
+
Version: 1.6.4
|
6 |
Plugin URI: http://eastcoder.com/code/wp-multibyte-patch/
|
7 |
Author: Seisuke Kuraishi
|
8 |
Author URI: http://tinybit.co.jp/
|
15 |
* Multibyte functionality enhancement for the WordPress Japanese package.
|
16 |
*
|
17 |
* @package WP_Multibyte_Patch
|
18 |
+
* @version 1.6.4
|
19 |
* @author Seisuke Kuraishi <210pura@gmail.com>
|
20 |
* @copyright Copyright (c) 2012 Seisuke Kuraishi, Tinybit Inc.
|
21 |
* @license http://opensource.org/licenses/gpl-2.0.php GPLv2
|
59 |
var $debug_suffix = '';
|
60 |
var $textdomain = 'wp-multibyte-patch';
|
61 |
var $lang_dir = 'languages';
|
62 |
+
var $required_version = '3.5';
|
63 |
var $query_based_vars = array();
|
64 |
|
65 |
// For fallback purpose only. (1.6)
|
132 |
}
|
133 |
|
134 |
function incoming_pingback($commentdata) {
|
135 |
+
global $wpdb;
|
136 |
+
|
137 |
if('pingback' != $commentdata['comment_type'])
|
138 |
return $commentdata;
|
139 |
|
145 |
|
146 |
$linea = preg_replace("/" . preg_quote('<!DOC', '/') . "/i", '<DOC', $linea);
|
147 |
$linea = preg_replace("/[\r\n\t ]+/", ' ', $linea);
|
148 |
+
$linea = preg_replace("/<\/*(h1|h2|h3|h4|h5|h6|p|th|td|li|dt|dd|pre|caption|input|textarea|button|body)[^>]*>/i", "\n\n", $linea);
|
149 |
+
|
150 |
+
preg_match('|<title>([^<]*?)</title>|is', $linea, $matchtitle);
|
151 |
+
$title = $matchtitle[1];
|
152 |
|
153 |
preg_match("/<meta[^<>]+charset=\"*([a-zA-Z0-9\-_]+)\"*[^<>]*>/i", $linea, $matches);
|
154 |
$charset = isset($matches[1]) ? $matches[1] : '';
|
199 |
}
|
200 |
|
201 |
$commentdata['comment_content'] = '[...] ' . esc_html($excerpt) . ' [...]';
|
202 |
+
$commentdata['comment_content'] = $wpdb->escape($commentdata['comment_content']);
|
203 |
+
$commentdata['comment_author'] = $this->convenc($title, $blog_encoding, $from_encoding);
|
204 |
+
$commentdata['comment_author'] = $wpdb->escape($commentdata['comment_author']);
|
|
|
205 |
|
206 |
return $commentdata;
|
207 |
}
|
458 |
|
459 |
$this->has_mbfunctions = $this->mbfunctions_exist();
|
460 |
$this->has_mb_strlen = function_exists('mb_strlen');
|
461 |
+
$this->debug_suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
|
462 |
|
463 |
load_textdomain($this->textdomain, plugin_dir_path(__FILE__) . $this->lang_dir . '/' . $this->textdomain . '-' . get_locale() . '.mo');
|
464 |
register_activation_hook(__FILE__, array($this, 'activation_check'));
|