upgrading to tinymce 2.0.6.1
This commit is contained in:
parent
f8e69afdf4
commit
0534118f8d
70 changed files with 1159 additions and 555 deletions
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* $RCSfile: editor_plugin_src.js,v $
|
||||
* $Revision: 1.36 $
|
||||
* $Date: 2006/03/20 12:03:44 $
|
||||
* $Revision: 1.37 $
|
||||
* $Date: 2006/03/27 10:07:08 $
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright © 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
|
|
@ -308,15 +308,15 @@ var TinyMCE_PastePlugin = {
|
|||
// Add the rest
|
||||
var np = p.nextSibling;
|
||||
while (np) {
|
||||
// If the node is whitespace, then
|
||||
// ignore it and continue on.
|
||||
if (np.nodeType == 3 && /^\s$/m.test(np.nodeValue)) {
|
||||
np = np.nextSibling;
|
||||
continue;
|
||||
}
|
||||
|
||||
// If the node is whitespace, then
|
||||
// ignore it and continue on.
|
||||
if (np.nodeType == 3 && new RegExp('^\\s$', 'm').test(np.nodeValue)) {
|
||||
np = np.nextSibling;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (search == mdot) {
|
||||
if (np.nodeType == 1 && /^o(\s+| )/.test(np.innerHTML)) {
|
||||
if (np.nodeType == 1 && new RegExp('^o(\\s+| )').test(np.innerHTML)) {
|
||||
// Second level of nesting
|
||||
if (!prevul) {
|
||||
prevul = ul;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
// Traduit par Normand Lamoureux le 2005-11-12
|
||||
// FR lang variables
|
||||
// Modified by Motte, last updated 2006-03-23
|
||||
|
||||
tinyMCE.addToLang('',{
|
||||
paste_text_desc : 'Coller comme du texte',
|
||||
paste_text_title : 'Faites CTRL+V pour coller le texte dans la fenêtre.',
|
||||
paste_text_linebreaks : 'Conserver les retours à la ligne',
|
||||
paste_text_title : 'Faites CTRL+V pour coller le texte dans la fenêtre.',
|
||||
paste_text_linebreaks : 'Conserver les retours à la ligne',
|
||||
paste_word_desc : 'Coller depuis Word',
|
||||
paste_word_title : 'Faites CTRL+V pour coller le texte dans la fenêtre.',
|
||||
selectall_desc : 'Sélectionner tout'
|
||||
paste_word_title : 'Faites CTRL+V pour coller le texte dans la fenêtre.',
|
||||
selectall_desc : 'Sélectionner tout'
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue