code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231 values | license stringclasses 13 values | size int64 1 2.01M |
|---|---|---|---|---|---|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Adapter — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script type="text/javascript" src="../ckeditor.js"></script>
<script type="text/javascript" src="../adapters/jquery.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
//<![CDATA[
$(function()
{
var config = {
toolbar:
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'],
['UIColor']
]
};
// Initialize the editor.
// Callback function can be passed and executed after full instance creation.
$('.jquery_ckeditor').ckeditor(config);
});
//]]>
</script>
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using jQuery Adapter
</h1>
<div class="description">
<p>
This sample shows how to load CKEditor and configure it using the
<a class="samples" href="http://docs.cksource.com/CKEditor_3.x/Developers_Guide/jQuery_Adapter">jQuery adapter</a>.
In this case the jQuery adapter is responsible for transforming a <code><textarea></code>
element into a CKEditor instance and setting the configuration of the toolbar.
</p>
<p>
CKEditor instance with custom configuration set in jQuery can be inserted with the
following JavaScript code:
</p>
<pre class="samples">$(function()
{
var config = {
skin:'v2'
};
$('.<em>textarea_class</em>').ckeditor(config);
});</pre>
<p>
Note that <code><em>textarea_class</em></code> in the code above is the
<code>class</code> attribute of the <code><textarea></code> element to be replaced with
CKEditor. Any other jQuery selector can be used to match the target element.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<!-- This <fieldset> holds the HTML that you will usually find in your
pages. -->
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
Editor 1:</label>
<textarea class="jquery_ckeditor" cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/jqueryadapter.html | HTML | asf20 | 3,517 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Output for Flash — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="assets/swfobject.js"></script>
<script type="text/javascript">
function sendToFlash()
{
var html = CKEDITOR.instances.editor1.getData() ;
var flash = document.getElementById( 'ckFlash' ) ;
flash.setData( html ) ;
}
function init()
{
var so = new SWFObject("assets/output_for_flash.swf", "ckFlash", "550", "400", "8", "#ffffff") ;
so.addParam("wmode", "transparent");
so.write("ckFlashContainer") ;
}
</script>
</head>
<body onload="init()">
<h1 class="samples">
CKEditor Sample — Producing Flash Compliant HTML Output
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor to output
HTML code that can be used with
<a class="samples" href="http://www.adobe.com/livedocs/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00000922.html">
Adobe Flash</a>.
The code will contain a subset of standard HTML elements like <code><b></code>,
<code><i></code>, and <code><p></code> as well as HTML attributes.
</p>
<p>
To add a CKEditor instance outputting Flash compliant HTML code, load the editor using a standard
JavaScript call, and define CKEditor features to use HTML elements and attributes.
</p>
<p>
For details on how to create this setup check the source code of this sample page.
</p>
</div>
<p>
To see how it works, create some content in the editing area of CKEditor on the left
and send it to the Flash object on the right side of the page by using the
<strong>Send to Flash</strong> button.
</p>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<hr />
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td style="width: 100%">
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <b>sample text</b>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
if ( document.location.protocol == 'file:' )
alert( 'Warning: This samples does not work when loaded from local filesystem due to security restrictions implemented in Flash.' +
'\n\nPlease load the sample from a web server instead.') ;
CKEDITOR.replace( 'editor1',
{
height : 300,
width : '100%',
toolbar : [
['Source','-','Bold','Italic','Underline','-','BulletedList','-','Link','Unlink'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
'/',
['Font','FontSize'],
['TextColor','-','About']
],
/*
* Style sheet for the contents
*/
contentsCss : 'body {color:#000; background-color#FFF; font-family: Arial; font-size:80%;} p, ol, ul {margin-top: 0px; margin-bottom: 0px;}',
/*
* Quirks doctype
*/
docType : '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">',
/*
* Core styles.
*/
coreStyles_bold : { element : 'b' },
coreStyles_italic : { element : 'i' },
coreStyles_underline : { element : 'u'},
/*
* Font face
*/
// Define the way font elements will be applied to the document. The "font"
// element will be used.
font_style :
{
element : 'font',
attributes : { 'face' : '#(family)' }
},
/*
* Font sizes.
* The CSS part of the font sizes isn't used by Flash, it is there to get the
* font rendered correctly in CKEditor.
*/
fontSize_sizes : '8px/8;9px/9;10px/10;11px/11;12px/12;14px/14;16px/16;18px/18;20px/20;22px/22;24px/24;26px/26;28px/28;36px/36;48px/48;72px/72',
fontSize_style :
{
element : 'font',
attributes : { 'size' : '#(size)' },
styles : { 'font-size' : '#(size)px' }
} ,
/*
* Font colors.
*/
colorButton_enableMore : true,
colorButton_foreStyle :
{
element : 'font',
attributes : { 'color' : '#(color)' }
},
colorButton_backStyle :
{
element : 'font',
styles : { 'background-color' : '#(color)' }
},
on : { 'instanceReady' : configureFlashOutput }
});
/*
* Adjust the behavior of the dataProcessor to match the
* requirements of Flash
*/
function configureFlashOutput( ev )
{
var editor = ev.editor,
dataProcessor = editor.dataProcessor,
htmlFilter = dataProcessor && dataProcessor.htmlFilter;
// Out self closing tags the HTML4 way, like <br>.
dataProcessor.writer.selfClosingEnd = '>';
// Make output formatting match Flash expectations
var dtd = CKEDITOR.dtd;
for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
{
dataProcessor.writer.setRules( e,
{
indent : false,
breakBeforeOpen : false,
breakAfterOpen : false,
breakBeforeClose : false,
breakAfterClose : false
});
}
dataProcessor.writer.setRules( 'br',
{
indent : false,
breakBeforeOpen : false,
breakAfterOpen : false,
breakBeforeClose : false,
breakAfterClose : false
});
// Output properties as attributes, not styles.
htmlFilter.addRules(
{
elements :
{
$ : function( element )
{
var style, match, width, height, align;
// Output dimensions of images as width and height
if ( element.name == 'img' )
{
style = element.attributes.style;
if ( style )
{
// Get the width from the style.
match = /(?:^|\s)width\s*:\s*(\d+)px/i.exec( style );
width = match && match[1];
// Get the height from the style.
match = /(?:^|\s)height\s*:\s*(\d+)px/i.exec( style );
height = match && match[1];
if ( width )
{
element.attributes.style = element.attributes.style.replace( /(?:^|\s)width\s*:\s*(\d+)px;?/i , '' );
element.attributes.width = width;
}
if ( height )
{
element.attributes.style = element.attributes.style.replace( /(?:^|\s)height\s*:\s*(\d+)px;?/i , '' );
element.attributes.height = height;
}
}
}
// Output alignment of paragraphs using align
if ( element.name == 'p' )
{
style = element.attributes.style;
if ( style )
{
// Get the align from the style.
match = /(?:^|\s)text-align\s*:\s*(\w*);?/i.exec( style );
align = match && match[1];
if ( align )
{
element.attributes.style = element.attributes.style.replace( /(?:^|\s)text-align\s*:\s*(\w*);?/i , '' );
element.attributes.align = align;
}
}
}
if ( element.attributes.style === '' )
delete element.attributes.style;
return element;
}
}
} );
}
//]]>
</script>
<input type="button" value="Send to Flash" onclick="sendToFlash();" />
</td>
<td valign="top" style="padding-left: 15px" id="ckFlashContainer">
</td>
</tr>
</table>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/output_for_flash.html | HTML | asf20 | 8,579 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Replace Textareas by Class Name — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Replace Textarea Elements by Class Name
</h1>
<div class="description">
<p>
This sample shows how to automatically replace all <code><textarea></code> elements
of a given class with a CKEditor instance.
</p>
<p>
To replace a <code><textarea></code> element, simply assign it the <code>ckeditor</code>
class, as in the code below:
</p>
<pre class="samples"><textarea <strong>class="ckeditor</strong>" name="editor1"></textarea></pre>
<p>
Note that other <code><textarea></code> attributes (like <code>id</code> or <code>name</code>) need to be adjusted to your document.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
Editor 1:</label>
<textarea class="ckeditor" cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/replacebyclass.html | HTML | asf20 | 2,548 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Shared Toolbars — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<style id="styles" type="text/css">
#editorsForm
{
height: 400px;
overflow: auto;
border: solid 1px #555;
margin: 10px 0;
padding: 0 10px;
}
</style>
</head>
<body>
<h1 class="samples">
CKEditor Sample — Shared Toolbars
</h1>
<div class="description">
<p>
This sample shows how to configure multiple CKEditor instances to share some parts of the interface.
You can choose to share the toolbar (<code>topSpace</code>), the elements path
(<code>bottomSpace</code>), or both.
</p>
<p>
CKEditor instances with shared spaces can be inserted with a JavaScript call using the following code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>sharedSpaces :
{
top : 'topSpace',
bottom : 'bottomSpace'
}</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced with CKEditor.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<div id="topSpace">
</div>
<form action="sample_posteddata.php" id="editorsForm" method="post">
<p>
<label for="editor1">
Editor 1 (uses the shared toolbar and elements path):</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<label for="editor2">
Editor 2 (uses the shared toolbar and elements path):</label>
<textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<label for="editor3">
Editor 3 (uses the shared toolbar only):</label>
<textarea cols="80" id="editor3" name="editor3" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<label for="editor4">
Editor 4 (no shared spaces):</label>
<textarea cols="80" id="editor4" name="editor4" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="bottomSpace">
</div>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
<script type="text/javascript">
//<![CDATA[
// Create all editor instances at the end of the page, so we are sure
// that the "bottomSpace" div is available in the DOM (IE issue).
CKEDITOR.replace( 'editor1',
{
sharedSpaces :
{
top : 'topSpace',
bottom : 'bottomSpace'
},
// Removes the maximize plugin as it's not usable
// in a shared toolbar.
// Removes the resizer as it's not usable in a
// shared elements path.
removePlugins : 'maximize,resize'
} );
CKEDITOR.replace( 'editor2',
{
sharedSpaces :
{
top : 'topSpace',
bottom : 'bottomSpace'
},
// Removes the maximize plugin as it's not usable
// in a shared toolbar.
// Removes the resizer as it's not usable in a
// shared elements path.
removePlugins : 'maximize,resize'
} );
CKEDITOR.replace( 'editor3',
{
sharedSpaces :
{
top : 'topSpace'
},
// Removes the maximize plugin as it's not usable
// in a shared toolbar.
removePlugins : 'maximize'
} );
CKEDITOR.replace( 'editor4' );
//]]>
</script>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/sharedspaces.html | HTML | asf20 | 5,063 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>API Usage — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
//<![CDATA[
// The instanceReady event is fired, when an instance of CKEditor has finished
// its initialization.
CKEDITOR.on( 'instanceReady', function( ev )
{
// Show the editor name and description in the browser status bar.
document.getElementById( 'eMessage' ).innerHTML = '<p>Instance <code>' + ev.editor.name + '<\/code> loaded.<\/p>';
// Show this sample buttons.
document.getElementById( 'eButtons' ).style.display = 'block';
});
function InsertHTML()
{
// Get the editor instance that we want to interact with.
var oEditor = CKEDITOR.instances.editor1;
var value = document.getElementById( 'htmlArea' ).value;
// Check the active editing mode.
if ( oEditor.mode == 'wysiwyg' )
{
// Insert HTML code.
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#insertHtml
oEditor.insertHtml( value );
}
else
alert( 'You must be in WYSIWYG mode!' );
}
function InsertText()
{
// Get the editor instance that we want to interact with.
var oEditor = CKEDITOR.instances.editor1;
var value = document.getElementById( 'txtArea' ).value;
// Check the active editing mode.
if ( oEditor.mode == 'wysiwyg' )
{
// Insert as plain text.
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#insertText
oEditor.insertText( value );
}
else
alert( 'You must be in WYSIWYG mode!' );
}
function SetContents()
{
// Get the editor instance that we want to interact with.
var oEditor = CKEDITOR.instances.editor1;
var value = document.getElementById( 'htmlArea' ).value;
// Set editor contents (replace current contents).
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setData
oEditor.setData( value );
}
function GetContents()
{
// Get the editor instance that you want to interact with.
var oEditor = CKEDITOR.instances.editor1;
// Get editor contents
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#getData
alert( oEditor.getData() );
}
function ExecuteCommand( commandName )
{
// Get the editor instance that we want to interact with.
var oEditor = CKEDITOR.instances.editor1;
// Check the active editing mode.
if ( oEditor.mode == 'wysiwyg' )
{
// Execute the command.
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#execCommand
oEditor.execCommand( commandName );
}
else
alert( 'You must be in WYSIWYG mode!' );
}
function CheckDirty()
{
// Get the editor instance that we want to interact with.
var oEditor = CKEDITOR.instances.editor1;
// Checks whether the current editor contents present changes when compared
// to the contents loaded into the editor at startup
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#checkDirty
alert( oEditor.checkDirty() );
}
function ResetDirty()
{
// Get the editor instance that we want to interact with.
var oEditor = CKEDITOR.instances.editor1;
// Resets the "dirty state" of the editor (see CheckDirty())
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#resetDirty
oEditor.resetDirty();
alert( 'The "IsDirty" status has been reset' );
}
//]]>
</script>
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using CKEditor JavaScript API
</h1>
<div class="description">
<p>
This sample shows how to use the
<a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html">CKEditor JavaScript API</a>
to interact with the editor at runtime.
</p>
<p>
For details on how to create this setup check the source code of this sample page.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<textarea cols="100" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor1"> with an CKEditor instance.
var editor = CKEDITOR.replace( 'editor1' );
//]]>
</script>
<div id="eMessage">
</div>
<div id="eButtons" style="display: none">
<input onclick="InsertHTML();" type="button" value="Insert HTML" />
<input onclick="SetContents();" type="button" value="Set Editor Contents" />
<input onclick="GetContents();" type="button" value="Get Editor Contents (XHTML)" />
<br />
<textarea cols="100" id="htmlArea" rows="3"><h2>Test</h2><p>This is some <a href="/Test1.html">sample</a> HTML code.</p></textarea>
<br />
<br />
<input onclick="InsertText();" type="button" value="Insert Text" />
<br />
<textarea cols="100" id="txtArea" rows="3"> First line with some leading whitespaces.
Second line of text preceded by two line breaks.</textarea>
<br />
<input onclick="ExecuteCommand('bold');" type="button" value="Execute "bold" Command" />
<input onclick="ExecuteCommand('link');" type="button" value="Execute "link" Command" />
<br />
<br />
<input onclick="CheckDirty();" type="button" value="checkDirty()" />
<input onclick="ResetDirty();" type="button" value="resetDirty()" />
</div>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/api.html | HTML | asf20 | 6,740 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Skins — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Skins
</h1>
<div class="description">
<p>
This sample shows how to automatically replace <code><textarea></code> elements
with a CKEditor instance using a specific <a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.skin">skin</a>.
</p>
<p>
CKEditor with a specified skin (in this case, the "Office 2003" skin) is inserted with a JavaScript call using the following code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>skin : 'office2003'</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<h2 class="samples">"Kama" skin</h2>
<p>The default skin used in CKEditor. No additional configuration is required.</p>
<p>
<textarea cols="80" id="editor_kama" name="editor_kama" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor_kama',
{
skin : 'kama'
});
//]]>
</script>
</p>
<h2 class="samples">"Office 2003" skin</h2>
<p>Use the following code to configure a CKEditor instance to use the "Office 2003" skin.</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>skin : 'office2003'</strong>
});</pre>
<p>
<textarea cols="80" id="editor_office2003" name="editor_office2003" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor_office2003',
{
skin : 'office2003'
});
//]]>
</script>
</p>
<h2 class="samples">"V2" skin</h2>
<p>Use the following code to configure a CKEditor instance to use the "V2" skin.</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>skin : 'v2'</strong>
});</pre>
<textarea cols="80" id="editor_v2" name="editor_v2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor_v2',
{
skin : 'v2'
});
//]]>
</script>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/skins.html | HTML | asf20 | 4,117 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ASP integration Samples List — CKEditor</title>
<link type="text/css" rel="stylesheet" href="../sample.css" />
</head>
<body>
<h1 class="samples">
CKEditor Samples List for ASP — CKEditor Sample
</h1>
<h2 class="samples">
Overview
</h2>
<p>The ckeditor.asp file provides a wrapper to ease the work of creating CKEditor instances from classic Asp.</p>
<p>To use it, you must first include it into your page:
<code>
<!-- #INCLUDE file="../../ckeditor.asp" -->
</code>
Of course, you should adjust the path to make it point to the correct location, and maybe use a full path (with virtual="" instead of file="")
</p>
<p>After that script is included, you can use it in different ways, based on the following pattern:</p>
<ol>
<li>
Create an instance of the CKEditor class:
<pre class="samples">dim editor
set editor = New CKEditor</pre>
</li>
<li>
Set the path to the folder where CKEditor has been installed, by default it will use /ckeditor/
<pre class="samples">editor.basePath = "../../"</pre>
</li>
<li>
Now use one of the three main methods to create the CKEditor instances:
<ul class="samples">
<li>
Replace textarea with id (or name) "editor1".
<pre class="samples">editor.replaceInstance "editor1"</pre>
</li>
<li>
Replace all textareas with CKEditor.
<pre class="samples">editor.replaceAll empty</pre>
</li>
<li>
Create a textarea element and attach CKEditor to it.
<pre class="samples">editor.editor "editor1", initialValue</pre>
</li>
</ul>
</li>
</ol>
<p>Before step 3 you can use a number of methods and properties to adjust the behavior of this class and the CKEditor instances
that will be created:</p>
<ul class="samples">
<li>returnOutput : if set to true, the functions won't dump the code with response.write, but instead they will return it so
you can do anything you want</li>
<li>basePath: location of the CKEditor scripts</li>
<li>initialized: if you set it to true, it means that you have already included the CKEditor.js file into the page and it
doesn't have to be generated again.</li>
<li>textareaAttributes: You can set here a Dictionary object with the attributes that you want to output in the call to the "editor" method.</li>
<li>config: Allows to set config values for all the instances from now on.</li>
<li>instanceConfig: Allows to set config values just for the next instance.</li>
<li>addEventHandler: Adds an event handler for all the instances from now on.</li>
<li>addInstanceEventHandler: Adds an event handler just for the next instance.</li>
<li>addGlobalEventHandler: Adds an event handler for the global CKEDITOR object.</li>
<li>clearEventHandlers: Removes one or all the event handlers from all the instances from now on.</li>
<li>clearInstanceEventHandlers: Removes one or all the event handlers from the next instance.</li>
<li>clearGlobalEventHandlers: Removes one or all the event handlers from the global CKEDITOR object.</li>
</ul>
<h2 class="samples">
Basic Samples
</h2>
<ul class="samples">
<li><a class="samples" href="replace.asp">Replace existing textareas by code</a></li>
<li><a class="samples" href="replaceall.asp">Replace all textareas by code</a></li>
<li><a class="samples" href="standalone.asp">Create instances in asp</a></li>
</ul>
<h2 class="samples">
Advanced Samples
</h2>
<ul class="samples">
<li><a class="samples" href="advanced.asp">Advanced example</a></li>
<li><a class="samples" href="events.asp">Listening to events</a></li>
</ul>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/index.html | HTML | asf20 | 4,311 |
<%@ codepage="65001" language="VBScript" %>
<% Option Explicit %>
<!-- #INCLUDE file="../../ckeditor.asp" -->
<%
' You must set "Enable Parent Paths" on your web site
' in order for the above relative include to work.
' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample - CKEditor</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link href="../sample.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1 class="samples">
CKEditor Sample
</h1>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
<fieldset title="Output">
<legend>Output</legend>
<form action="sample_posteddata.asp" method="post">
<p>
<label for="editor1">
Editor 1:</label><br/>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<input type="submit" value="Submit"/>
</p>
</form>
</fieldset>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
<%
' Create class instance.
dim editor
set editor = New CKEditor
' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
' editor.basePath = "/ckeditor/"
' If not set, CKEditor will default to /ckeditor/
editor.basePath = "../../"
' Replace textarea with id (or name) "editor1".
editor.replaceInstance "editor1"
%>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/replace.asp | Classic ASP | asf20 | 2,553 |
<%@ codepage="65001" language="VBScript" %>
<% Option Explicit %>
<!-- #INCLUDE file="../../ckeditor.asp" -->
<%
' You must set "Enable Parent Paths" on your web site
' in order for the above relative include to work.
' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample - CKEditor</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link href="../sample.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1 class="samples">
CKEditor Sample
</h1>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
<fieldset title="Output">
<legend>Output</legend>
<form action="sample_posteddata.asp" method="post">
<p>
<label>Editor 1:</label><br/>
</p>
<%
''
' Adds global event, will hide "Target" tab in Link dialog in all instances.
'
function CKEditorHideLinkTargetTab(editor)
dim functionCode
functionCode = "function (ev) {" & vbcrlf & _
"// Take the dialog name and its definition from the event data" & vbcrlf & _
"var dialogName = ev.data.name;" & vbcrlf & _
"var dialogDefinition = ev.data.definition;" & vbcrlf & _
"" & vbcrlf & _
"// Check if the definition is from the Link dialog." & vbcrlf & _
"if ( dialogName == 'link' )" & vbcrlf & _
" dialogDefinition.removeContents('target')" & vbcrlf & _
"}" & vbcrlf
editor.addGlobalEventHandler "dialogDefinition", functionCode
end function
''
' Adds global event, will notify about opened dialog.
'
function CKEditorNotifyAboutOpenedDialog(editor)
dim functionCode
functionCode = "function (evt) {" & vbcrlf & _
"alert('Loading dialog: ' + evt.data.name);" & vbcrlf & _
"}"
editor.addGlobalEventHandler "dialogDefinition", functionCode
end function
dim editor, initialValue
' Create class instance.
set editor = new CKEditor
' Set configuration option for all editors.
editor.config("width") = 750
' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
' editor.basePath = "/ckeditor/"
' If not set, CKEditor will default to /ckeditor/
editor.basePath = "../../"
' The initial value to be displayed in the editor.
initialValue = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ckeditor.com/"">CKEditor</a>.</p>"
' Event that will be handled only by the first editor.
editor.addEventHandler "instanceReady", "function (evt) { alert('Loaded editor: ' + evt.editor.name );}"
' Create first instance.
editor.editor "editor1", initialValue
' Clear event handlers, instances that will be created later will not have
' the 'instanceReady' listener defined a couple of lines above.
editor.clearEventHandlers empty
%>
<p>
<label>Editor 2:</label><br/>
</p>
<%
' Configuration that will be used only by the second editor.
editor.instanceConfig("width") = 600
editor.instanceConfig("toolbar") = "Basic"
' Add some global event handlers (for all editors).
CKEditorHideLinkTargetTab(editor)
CKEditorNotifyAboutOpenedDialog(editor)
' Event that will be handled only by the second editor.
editor.addInstanceEventHandler "instanceReady", "function (evt) { alert('Loaded second editor: ' + evt.editor.name );}"
' Create second instance.
editor.editor "editor2", initialValue
%>
<p>
<input type="submit" value="Submit"/>
</p>
</form>
</fieldset>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/events.asp | Classic ASP | asf20 | 4,504 |
<%@ codepage="65001" language="VBScript" %>
<% Option Explicit %>
<!-- #INCLUDE file="../../ckeditor.asp" -->
<%
' You must set "Enable Parent Paths" on your web site
' in order for the above relative include to work.
' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample - CKEditor</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link href="../sample.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1 class="samples">
CKEditor Sample
</h1>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
<fieldset title="Output">
<legend>Output</legend>
<form action="sample_posteddata.asp" method="post">
<p>
Editor 1:
</p>
<p>
<%
dim initialValue, editor
' The initial value to be displayed in the editor.
initialValue = "<p>This is some <strong>sample text</strong>.</p>"
' Create class instance.
set editor = New CKEditor
' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
' editor.basePath = "/ckeditor/"
' If not set, CKEditor will default to /ckeditor/
editor.basePath = "../../"
' Create textarea element and attach CKEditor to it.
editor.editor "editor1", initialValue
%>
<input type="submit" value="Submit"/>
</p>
</form>
</fieldset>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/standalone.asp | Classic ASP | asf20 | 2,476 |
<%@ codepage="65001" language="VBScript" %>
<% Option Explicit %>
<!-- #INCLUDE file="../../ckeditor.asp" -->
<%
' You must set "Enable Parent Paths" on your web site
' in order for the above relative include to work.
' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample - CKEditor</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link href="../sample.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1 class="samples">
CKEditor Sample
</h1>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
<fieldset title="Output">
<legend>Output</legend>
<form action="sample_posteddata.asp" method="post">
<p>
<label>Editor 1:</label><br/>
</p>
<%
' Create class instance.
dim editor, initialValue, code, textareaAttributes
set editor = New CKEditor
' Do not print the code directly to the browser, return it instead
editor.returnOutput = true
' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
' editor.basePath = "/ckeditor/"
' If not set, CKEditor will default to /ckeditor/
editor.basePath = "../../"
' Set global configuration (will be used by all instances of CKEditor).
editor.config("width") = 600
' Change default textarea attributes
set textareaAttributes = CreateObject("Scripting.Dictionary")
textareaAttributes.Add "rows", 10
textareaAttributes.Add "cols", 80
Set editor.textareaAttributes = textareaAttributes
' The initial value to be displayed in the editor.
initialValue = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ckeditor.com/"">CKEditor</a>.</p>"
' Create first instance.
code = editor.editor("editor1", initialValue)
response.write code
%>
<p>
<label>Editor 2:</label><br/>
</p>
<%
' Configuration that will be used only by the second editor.
editor.instanceConfig("toolbar") = Array( _
Array( "Source", "-", "Bold", "Italic", "Underline", "Strike" ), _
Array( "Image", "Link", "Unlink", "Anchor" ) _
)
editor.instanceConfig("skin") = "v2"
' Create second instance.
response.write editor.editor("editor2", initialValue)
%>
<p>
<input type="submit" value="Submit"/>
</p>
</form>
</fieldset>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/advanced.asp | Classic ASP | asf20 | 3,408 |
<%@ codepage="65001" language="VBScript" %>
<% Option Explicit %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample - CKEditor</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="../sample.css" />
</head>
<body>
<h1 class="samples">
CKEditor - Posted Data
</h1>
<table border="1" cellspacing="0" id="outputSample">
<colgroup><col width="100" /></colgroup>
<thead>
<tr>
<th>Field Name</th>
<th>Value</th>
</tr>
</thead>
<%
Dim sForm
For Each sForm in Request.Form
%>
<tr>
<th><%=Server.HTMLEncode( sForm )%></th>
<td><pre class="samples"><%=Server.HTMLEncode( Request.Form(sForm) )%></pre></td>
</tr>
<% Next %>
</table>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/sample_posteddata.asp | Classic ASP | asf20 | 1,426 |
<%@ codepage="65001" language="VBScript" %>
<% Option Explicit %>
<!-- #INCLUDE file="../../ckeditor.asp" -->
<%
' You must set "Enable Parent Paths" on your web site
' in order for the above relative include to work.
' Or you can use #INCLUDE VIRTUAL="/full path/ckeditor.asp"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample - CKEditor</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
<link href="../sample.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<h1 class="samples">
CKEditor Sample
</h1>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<!-- This <fieldset> holds the HTML that you will usually find in your pages. -->
<fieldset title="Output">
<legend>Output</legend>
<form action="sample_posteddata.asp" method="post">
<p>
<label for="editor1">
Editor 1:</label><br/>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<label for="editor2">
Editor 2:</label><br/>
<textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<input type="submit" value="Submit"/>
</p>
</form>
</fieldset>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
<%
' Create class instance.
dim editor
set editor = New CKEditor
' Path to CKEditor directory, ideally instead of relative dir, use an absolute path:
' editor.basePath = "/ckeditor/"
' If not set, CKEditor will default to /ckeditor/
editor.basePath = "../../"
' Replace all textareas with CKEditor.
editor.replaceAll empty
%>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/asp/replaceall.asp | Classic ASP | asf20 | 2,827 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Placeholder Plugin — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using the Placeholder Plugin
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor instances to use the
<strong>Placeholder</strong> plugin that lets you insert read-only elements
into your content. To enter and modify read-only text, use the
<strong>Create Placeholder</strong> button and its matching dialog window.
</p>
<p>
To add a CKEditor instance that uses the <code>placeholder</code> plugin and a related
<strong>Create Placeholder</strong> toolbar button, insert the following JavaScript
call to your code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>extraPlugins : 'placeholder',</strong>
toolbar : [ [ 'Source', 'Bold' ], [<strong>'CreatePlaceholder'</strong>] ]
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced with CKEditor.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
CKEditor using the <code>placeholder</code> plugin with its default configuration:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is a [[sample placeholder]]. You are using <a href="http://ckeditor.com/">CKEditor</a>. </p></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor1', {
extraPlugins : 'placeholder',
toolbar : [ [ 'Source', 'CreatePlaceholder' ] ]
});
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/placeholder.html | HTML | asf20 | 3,125 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Replace Textarea by Code - CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../../ckeditor.js"></script>
<link href="../sample.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body { margin: 10px ; }
</style></head>
<body>
<h1 class="samples">
CKEditor - Adobe AIR Sample
</h1>
<p>
This is a sample HTML/JavaScript Adobe AIR application with CKEditor with default features.
</p>
<p>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1' );
//]]>
</script>
</p>
<div id="footer" style="position:absolute;bottom:0;left:0;right:0;width:100%;padding-bottom:10px;">
<hr />
<p>
CKEditor - The text editor for Internet - <a class="samples" href="#" onclick="window.runtime.flash.net.navigateToURL(new window.runtime.flash.net.URLRequest('http://ckeditor.com/'));return false;">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="#" onclick="window.runtime.flash.net.navigateToURL(new window.runtime.flash.net.URLRequest('http://cksource.com/'));return false;">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/adobeair/sample.html | HTML | asf20 | 1,940 |
@ECHO OFF
::
:: Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
:: For licensing, see LICENSE.html or http://ckeditor.com/license
::
:: Use this file to quickly run the sample in a Windows environment.
::
adl application.xml ../../
| 10npsite | trunk/guanli/system/ckeditor/_samples/adobeair/run.bat | Batchfile | asf20 | 270 |
#!/usr/bin/env bash
# Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
# For licensing, see LICENSE.html or http://ckeditor.com/license
# Use this file to quickly run the sample under Linux.
adl application.xml ../../
| 10npsite | trunk/guanli/system/ckeditor/_samples/adobeair/.svn/text-base/run.sh.svn-base | Shell | asf20 | 248 |
#!/usr/bin/env bash
# Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
# For licensing, see LICENSE.html or http://ckeditor.com/license
# Use this file to quickly run the sample under Linux.
adl application.xml ../../
| 10npsite | trunk/guanli/system/ckeditor/_samples/adobeair/run.sh | Shell | asf20 | 248 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre {
line-height: 1.5em;
}
body {
padding:10px 30px;
}
input, textarea, select, option, optgroup, button, td, th {
font-size: 100%;
}
pre,
code,
kbd,
samp,
tt{
font-family: monospace,monospace;
font-size: 1em;
}
h1.samples {
color:#0782C1;
font-size:200%;
font-weight:normal;
margin: 0;
padding: 0;
}
h2.samples {
color:#000000;
font-size:130%;
margin: 0;
padding: 0;
}
p, blockquote, address, form, pre, dl, h1.samples, h2.samples {
margin-bottom:15px;
}
ul.samples {
margin-bottom:15px;
}
.clear {
clear:both;
}
fieldset
{
margin: 0;
padding: 10px;
}
body, input, textarea {
color: #333333;
font-family: Arial, Helvetica, sans-serif;
}
body {
font-size: 75%;
}
a.samples {
color:#189DE1;
text-decoration:none;
}
a.samples:hover {
text-decoration:underline;
}
form
{
margin: 0;
padding: 0;
}
pre.samples
{
background-color: #F7F7F7;
border: 1px solid #D7D7D7;
overflow: auto;
padding: 0.25em;
}
#alerts
{
color: Red;
}
#footer hr
{
margin: 10px 0 15px 0;
height: 1px;
border: solid 1px gray;
border-bottom: none;
}
#footer p
{
margin: 0 10px 10px 10px;
float: left;
}
#footer #copy
{
float: right;
}
#outputSample
{
width: 100%;
table-layout: fixed;
}
#outputSample thead th
{
color: #dddddd;
background-color: #999999;
padding: 4px;
white-space: nowrap;
}
#outputSample tbody th
{
vertical-align: top;
text-align: left;
}
#outputSample pre
{
margin: 0;
padding: 0;
white-space: pre; /* CSS2 */
white-space: -moz-pre-wrap; /* Mozilla*/
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
}
.description {
border: 1px dotted #B7B7B7;
margin-bottom: 10px;
padding: 10px 10px 0;
}
label {
display: block;
margin-bottom:6px;
}
| 10npsite | trunk/guanli/system/ckeditor/_samples/sample.css | CSS | asf20 | 2,352 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Using DevTools Plugin — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using the Developer Tools Plugin
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor instances to use the
<strong>Developer Tools</strong> (<code>devtools</code>) plugin that displays
information about dialog window elements, including the name of the dialog window,
tab, and UI element. Please note that the tooltip also contains a link to the
<a href="http://docs.cksource.com/ckeditor_api/">CKEditor JavaScript API</a>
documentation for each of the selected elements.
</p>
<p>
This plugin is aimed at developers who would like to customize their CKEditor
instances and create their own plugins. By default it is turned off; it is
usually useful to only turn it on in the development phase. Note that it works with
all CKEditor dialog windows, including the ones that were created by custom plugins.
</p>
<p>
To add a CKEditor instance using the <strong>devtools</strong> plugin, insert
the following JavaScript call into your code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>extraPlugins : 'devtools'</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced with CKEditor.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
Editor 1:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1' ,
{
extraPlugins : 'devtools'
});
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/devtools.html | HTML | asf20 | 3,636 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Using Stylesheet Parser Plugin — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using the Stylesheet Parser Plugin
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor instances to use the
<strong>Stylesheet Parser</strong> (<code>stylesheetparser</code>) plugin that fills
the <strong>Styles</strong> drop-down list based on the CSS rules available in the document stylesheet.
</p>
<p>
To add a CKEditor instance using the <code>stylesheetparser</code> plugin, insert
the following JavaScript call into your code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>extraPlugins : 'stylesheetparser'</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced with CKEditor.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
CKEditor using the <code>stylesheetparser</code> plugin with its default configuration:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1' ,
{
extraPlugins : 'stylesheetparser',
/*
* Stylesheet for the contents.
*/
contentsCss : 'assets/parsesample.css',
/*
* Do not load the default Styles configuration.
*/
stylesSet : []
});
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/stylesheetparser.html | HTML | asf20 | 3,413 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>BBCode Plugin — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — BBCode Plugin
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor to output <a href="http://en.wikipedia.org/wiki/BBCode">BBCode</a> format instead of HTML.
Please note that the editor configuration was modified to reflect what is needed in a BBCode editing environment.
Smiley images, for example, were stripped to the emoticons that are commonly used in some BBCode dialects.
</p>
<p>
Please note that currently there is no standard for the BBCode markup language, so its implementation
for different platforms (message boards, blogs etc.) can vary. This means that before using CKEditor to
output BBCode you may need to adjust the implementation to your own environment.
</p>
<p>
A snippet of the configuration code can be seen below; check the source of this page for
a full definition:
</p>
<pre class="samples">
CKEDITOR.replace( 'editor1',
{
<strong>extraPlugins : 'bbcode',</strong>
toolbar :
[
['Source', '-', 'Save','NewPage','-','Undo','Redo'],
['Find','Replace','-','SelectAll','RemoveFormat'],
['Link', 'Unlink', 'Image'],
'/',
['FontSize', 'Bold', 'Italic','Underline'],
['NumberedList','BulletedList','-','Blockquote'],
['TextColor', '-', 'Smiley','SpecialChar', '-', 'Maximize']
],
... <i>some other configurations omitted here</i>
}); </pre>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
Editor 1:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10">This is some [b]sample text[/b]. You are using [url=http://ckeditor.com/]CKEditor[/url].</textarea>
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor"> with an CKEditor
// instance, using the "bbcode" plugin, shaping some of the
// editor configuration to fit BBCode environment.
CKEDITOR.replace( 'editor1',
{
extraPlugins : 'bbcode',
// Remove unused plugins.
removePlugins : 'bidi,button,dialogadvtab,div,filebrowser,flash,format,forms,horizontalrule,iframe,indent,justify,liststyle,pagebreak,showborders,stylescombo,table,tabletools,templates',
// Width and height are not supported in the BBCode format, so object resizing is disabled.
disableObjectResizing : true,
// Define font sizes in percent values.
fontSize_sizes : "30/30%;50/50%;100/100%;120/120%;150/150%;200/200%;300/300%",
toolbar :
[
['Source', '-', 'Save','NewPage','-','Undo','Redo'],
['Find','Replace','-','SelectAll','RemoveFormat'],
['Link', 'Unlink', 'Image', 'Smiley','SpecialChar'],
'/',
['Bold', 'Italic','Underline'],
['FontSize'],
['TextColor'],
['NumberedList','BulletedList','-','Blockquote'],
['Maximize']
],
// Strip CKEditor smileys to those commonly used in BBCode.
smiley_images :
[
'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','tounge_smile.gif',
'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angel_smile.gif','shades_smile.gif',
'cry_smile.gif','kiss.gif'
],
smiley_descriptions :
[
'smiley', 'sad', 'wink', 'laugh', 'cheeky', 'blush', 'surprise',
'indecision', 'angel', 'cool', 'crying', 'kiss'
]
} );
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/bbcode.html | HTML | asf20 | 4,930 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Replace Textarea by Code — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Replace Textarea Elements Using JavaScript Code
</h1>
<div class="description">
<p>
This sample shows how to automatically replace all <code><textarea></code> elements
with a CKEditor instance by using a JavaScript call.
</p>
<p>
To replace a <code><textarea></code> element, place the following call at any point
after the <code><textarea></code> element or inside a <code><script></code> element located
in the <code><head></code> section of the page, in a <code>window.onload</code> event handler:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>' );</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
Editor 1:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1' );
//]]>
</script>
</p>
<p>
<label for="editor2">
Editor 2:</label>
<textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor2' );
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/replacebycode.html | HTML | asf20 | 3,719 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Full Page Editing with Document Properties Plugin — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Full Page Editing with Document Properties Plugin
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor to edit entire HTML pages, from the
<code><html></code> tag to the <code></html></code> tag.
</p>
<p>
The <strong>Document Properties</strong> (<code>docprops</code>) plugin is also turned on.
This plugin allows you to set the metadata of the page, including the page encoding, margins,
meta tags, or background.
</p>
<p>
The CKEditor instance below is inserted with a JavaScript call using the following code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>fullPage : true,
extraPlugins : 'docprops'</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<label for="editor1">
CKEditor using the <code>docprops</code> plugin and working in the Full Page mode:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><html><head><title>CKEditor Sample</title></head><body><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></body></html></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor1',
{
fullPage : true,
extraPlugins : 'docprops'
});
//]]>
</script>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/fullpage.html | HTML | asf20 | 3,189 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>UI Color Picker — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — UI Color Picker
</h1>
<div class="description">
<p>
This sample shows how to automatically replace <code><textarea></code> elements
with a CKEditor instance with an option to change the color of its user interface.
</p>
<h2 class="samples">Setting the User Interface Color</h2>
<p>
To specify the color of the user interface, set the <code>uiColor</code> property:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>uiColor: '#EE0000'</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced.
</p>
<h2 class="samples">Enabling the Color Picker</h2>
<p>
If the <strong>uicolor</strong> plugin along with the dedicated <strong>UIColor</strong>
toolbar button is added to CKEditor, the user will also be able to pick the color of the
UI from the color palette available in the <strong>UI Color Picker</strong> dialog window.
</p>
<p>
To insert a CKEditor instance with the <strong>uicolor</strong> plugin enabled,
use the following JavaScript call:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>extraPlugins : 'uicolor',</strong>
toolbar : [ [ 'Bold', 'Italic' ], [ <strong>'UIColor'</strong> ] ]
});</pre>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<p>
Click the <strong>UI Color Picker</strong> button to test your color preferences at runtime.
</p>
<p>
The first editor instance includes the <strong>UI Color Picker</strong> toolbar button,
but the default UI color is not defined, so the editor uses the skin color.
</p>
<form action="sample_posteddata.php" method="post">
<p>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1',
{
extraPlugins : 'uicolor',
toolbar :
[
[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
[ 'UIColor' ]
]
});
//]]>
</script>
</p>
<p>
The second editor instance includes the <strong>UI Color Picker</strong> toolbar button. The
default UI color was defined, so the skin color is not used.
</p>
<p>
<textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor2',
{
extraPlugins : 'uicolor',
uiColor: '#14B8C4',
toolbar :
[
[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
[ 'UIColor' ]
]
} );
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/ui_color.html | HTML | asf20 | 4,720 |
<?php /*
-------------------------------------------------------------------------------------------
CKEditor - Posted Data
We are sorry, but your Web server does not support the PHP language used in this script.
Please note that CKEditor can be used with any other server-side language than just PHP.
To save the content created with CKEditor you need to read the POST data on the server
side and write it to a file or a database.
Copyright 2003-2012, CKSource - Frederico Knabben.
All rights reserved.
-------------------------------------------------------------------------------------------
*/ include "assets/_posteddata.php"; ?>
| 10npsite | trunk/guanli/system/ckeditor/_samples/sample_posteddata.php | PHP | asf20 | 681 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
// This file is not required by CKEditor and may be safely ignored.
// It is just a helper file that displays a red message about browser compatibility
// at the top of the samples (if incompatible browser is detected).
if ( window.CKEDITOR )
{
(function()
{
var showCompatibilityMsg = function()
{
var env = CKEDITOR.env;
var html = '<p><strong>Your browser is not compatible with CKEditor.</strong>';
var browsers =
{
gecko : 'Firefox 2.0',
ie : 'Internet Explorer 6.0',
opera : 'Opera 9.5',
webkit : 'Safari 3.0'
};
var alsoBrowsers = '';
for ( var key in env )
{
if ( browsers[ key ] )
{
if ( env[key] )
html += ' CKEditor is compatible with ' + browsers[ key ] + ' or higher.';
else
alsoBrowsers += browsers[ key ] + '+, ';
}
}
alsoBrowsers = alsoBrowsers.replace( /\+,([^,]+), $/, '+ and $1' );
html += ' It is also compatible with ' + alsoBrowsers + '.';
html += '</p><p>With non compatible browsers, you should still be able to see and edit the contents (HTML) in a plain text field.</p>';
var alertsEl = document.getElementById( 'alerts' );
alertsEl && ( alertsEl.innerHTML = html );
};
var onload = function()
{
// Show a friendly compatibility message as soon as the page is loaded,
// for those browsers that are not compatible with CKEditor.
if ( !CKEDITOR.env.isCompatible )
showCompatibilityMsg();
};
// Register the onload listener.
if ( window.addEventListener )
window.addEventListener( 'load', onload, false );
else if ( window.attachEvent )
window.attachEvent( 'onload', onload );
})();
}
| 10npsite | trunk/guanli/system/ckeditor/_samples/sample.js | JavaScript | asf20 | 1,866 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Ajax — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
//<![CDATA[
var editor, html = '';
function createEditor()
{
if ( editor )
return;
// Create a new editor inside the <div id="editor">, setting its value to html
var config = {};
editor = CKEDITOR.appendTo( 'editor', config, html );
}
function removeEditor()
{
if ( !editor )
return;
// Retrieve the editor contents. In an Ajax application, this data would be
// sent to the server or used in any other way.
document.getElementById( 'editorcontents' ).innerHTML = html = editor.getData();
document.getElementById( 'contents' ).style.display = '';
// Destroy the editor.
editor.destroy();
editor = null;
}
//]]>
</script>
</head>
<body>
<h1 class="samples">
CKEditor Sample — Create and Destroy Editor Instances for Ajax Applications
</h1>
<div class="description">
<p>
This sample shows how to create and destroy CKEditor instances on the fly. After the removal of CKEditor the content created inside the editing
area will be displayed in a <code><div></code> element.
</p>
<p>
For details of how to create this setup check the source code of this sample page
for JavaScript code responsible for the creation and destruction of a CKEditor instance.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<p>Click the buttons to create and remove a CKEditor instance.</p>
<p>
<input onclick="createEditor();" type="button" value="Create Editor" />
<input onclick="removeEditor();" type="button" value="Remove Editor" />
</p>
<!-- This div will hold the editor. -->
<div id="editor">
</div>
<div id="contents" style="display: none">
<p>
Edited Contents:</p>
<!-- This div will be used to display the editor contents. -->
<div id="editorcontents">
</div>
</div>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/ajax.html | HTML | asf20 | 3,178 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Replace DIV — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<style id="styles" type="text/css">
div.editable
{
border: solid 2px Transparent;
padding-left: 15px;
padding-right: 15px;
}
div.editable:hover
{
border-color: black;
}
</style>
<script type="text/javascript">
//<![CDATA[
// Uncomment the following code to test the "Timeout Loading Method".
// CKEDITOR.loadFullCoreTimeout = 5;
window.onload = function()
{
// Listen to the double click event.
if ( window.addEventListener )
document.body.addEventListener( 'dblclick', onDoubleClick, false );
else if ( window.attachEvent )
document.body.attachEvent( 'ondblclick', onDoubleClick );
};
function onDoubleClick( ev )
{
// Get the element which fired the event. This is not necessarily the
// element to which the event has been attached.
var element = ev.target || ev.srcElement;
// Find out the div that holds this element.
var name;
do
{
element = element.parentNode;
}
while ( element && ( name = element.nodeName.toLowerCase() ) && ( name != 'div' || element.className.indexOf( 'editable' ) == -1 ) && name != 'body' )
if ( name == 'div' && element.className.indexOf( 'editable' ) != -1 )
replaceDiv( element );
}
var editor;
function replaceDiv( div )
{
if ( editor )
editor.destroy();
editor = CKEDITOR.replace( div );
}
//]]>
</script>
</head>
<body>
<h1 class="samples">
CKEditor Sample — Replace DIV with CKEditor on the Fly
</h1>
<div class="description">
<p>
This sample shows how to automatically replace <code><div></code> elements
with a CKEditor instance on the fly, following user's doubleclick. The content
that was previously placed inside the <code><div></code> element will now
be moved into CKEditor editing area.
</p>
<p>
For details on how to create this setup check the source code of this sample page.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<p>
Double-click any of the following <code><div></code> elements to transform them into
editor instances.</p>
<div class="editable">
<h3>
Part 1</h3>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi
semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna
rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla
nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce
eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus.
</p>
</div>
<div class="editable">
<h3>
Part 2</h3>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi
semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna
rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla
nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce
eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus.
</p>
<p>
Donec velit. Mauris massa. Vestibulum non nulla. Nam suscipit arcu nec elit. Phasellus
sollicitudin iaculis ante. Ut non mauris et sapien tincidunt adipiscing. Vestibulum
vitae leo. Suspendisse nec mi tristique nulla laoreet vulputate.
</p>
</div>
<div class="editable">
<h3>
Part 3</h3>
<p>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras et ipsum quis mi
semper accumsan. Integer pretium dui id massa. Suspendisse in nisl sit amet urna
rutrum imperdiet. Nulla eu tellus. Donec ante nisi, ullamcorper quis, fringilla
nec, sagittis eleifend, pede. Nulla commodo interdum massa. Donec id metus. Fusce
eu ipsum. Suspendisse auctor. Phasellus fermentum porttitor risus.
</p>
</div>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/divreplace.html | HTML | asf20 | 5,152 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Using TableResize Plugin — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using the TableResize Plugin
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor instances to use the
<strong>TableResize</strong> (<code>tableresize</code>) plugin that allows
the user to edit table columns by using the mouse.
</p>
<p>
The TableResize plugin makes it possible to modify table column width. Hover
your mouse over the column border to see the cursor change to indicate that
the column can be resized. Click and drag your mouse to set the desired width.
</p>
<p>
By default the plugin is turned off. To add a CKEditor instance using the
TableResize plugin, insert the following JavaScript call into your code:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
<strong>extraPlugins : 'tableresize'</strong>
});</pre>
<p>
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
the <code><textarea></code> element to be replaced with CKEditor.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
CKEditor using the <code>tableresize</code> plugin:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10">
<table style="width: 500px;">
<caption>
A sample table</caption>
<tbody>
<tr>
<td>
Column 1</td>
<td>
Column 2</td>
</tr>
<tr>
<td>
You can resize a table column.</td>
<td>
Hover your mouse over its border.</td>
</tr>
<tr>
<td>
Watch the cursor change.</td>
<td>
Now click and drag to resize.</td>
</tr>
</tbody>
</table>
</textarea>
<script type="text/javascript">
//<![CDATA[
// This call can be placed at any point after the
// <textarea>, or inside a <head><script> in a
// window.onload event handler.
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace( 'editor1', {
extraPlugins : 'tableresize'
});
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/tableresize.html | HTML | asf20 | 3,771 |
body
{
font-family: Arial, Verdana, sans-serif;
font-size: 12px;
color: #222;
background-color: #fff;
}
/* preserved spaces for rtl list item bullets. (#6249)*/
ol,ul,dl
{
padding-right:40px;
}
h1,h2,h3,h4
{
font-family: Georgia, Times, serif;
}
h1.lightBlue
{
color: #00A6C7;
font-size: 1.8em;
font-weight:normal;
}
h3.green
{
color: #739E39;
font-weight:normal;
}
span.markYellow { background-color: yellow; }
span.markGreen { background-color: lime; }
img.left
{
padding: 5px;
margin-right: 5px;
float:left;
border:2px solid #DDD;
}
img.right
{
padding: 5px;
margin-right: 5px;
float:right;
border:2px solid #DDD;
}
a.green
{
color:#739E39;
}
table.grey
{
background-color : #F5F5F5;
}
table.grey th
{
background-color : #DDD;
}
ul.square
{
list-style-type : square;
}
| 10npsite | trunk/guanli/system/ckeditor/_samples/assets/parsesample.css | CSS | asf20 | 876 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample — CKEditor</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="sample.css" />
</head>
<body>
<h1 class="samples">
CKEditor — Posted Data
</h1>
<table border="1" cellspacing="0" id="outputSample">
<colgroup><col width="120" /></colgroup>
<thead>
<tr>
<th>Field Name</th>
<th>Value</th>
</tr>
</thead>
<?php
if ( isset( $_POST ) )
$postArray = &$_POST ; // 4.1.0 or later, use $_POST
else
$postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS
foreach ( $postArray as $sForm => $value )
{
if ( get_magic_quotes_gpc() )
$postedValue = htmlspecialchars( stripslashes( $value ) ) ;
else
$postedValue = htmlspecialchars( $value ) ;
?>
<tr>
<th style="vertical-align: top"><?php echo htmlspecialchars($sForm); ?></th>
<td><pre class="samples"><?php echo $postedValue?></pre></td>
</tr>
<?php
}
?>
</table>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/assets/_posteddata.php | PHP | asf20 | 1,696 |
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*
* Styles used by the XHTML 1.1 sample page (xhtml.html).
*/
/**
* Basic definitions for the editing area.
*/
body
{
font-family: Arial, Verdana, sans-serif;
font-size: 80%;
color: #000000;
background-color: #ffffff;
padding: 5px;
margin: 0px;
}
/**
* Core styles.
*/
.Bold
{
font-weight: bold;
}
.Italic
{
font-style: italic;
}
.Underline
{
text-decoration: underline;
}
.StrikeThrough
{
text-decoration: line-through;
}
.Subscript
{
vertical-align: sub;
font-size: smaller;
}
.Superscript
{
vertical-align: super;
font-size: smaller;
}
/**
* Font faces.
*/
.FontComic
{
font-family: 'Comic Sans MS';
}
.FontCourier
{
font-family: 'Courier New';
}
.FontTimes
{
font-family: 'Times New Roman';
}
/**
* Font sizes.
*/
.FontSmaller
{
font-size: smaller;
}
.FontLarger
{
font-size: larger;
}
.FontSmall
{
font-size: 8pt;
}
.FontBig
{
font-size: 14pt;
}
.FontDouble
{
font-size: 200%;
}
/**
* Font colors.
*/
.FontColor1
{
color: #ff9900;
}
.FontColor2
{
color: #0066cc;
}
.FontColor3
{
color: #ff0000;
}
.FontColor1BG
{
background-color: #ff9900;
}
.FontColor2BG
{
background-color: #0066cc;
}
.FontColor3BG
{
background-color: #ff0000;
}
/**
* Indentation.
*/
.Indent1
{
margin-left: 40px;
}
.Indent2
{
margin-left: 80px;
}
.Indent3
{
margin-left: 120px;
}
/**
* Alignment.
*/
.JustifyLeft
{
text-align: left;
}
.JustifyRight
{
text-align: right;
}
.JustifyCenter
{
text-align: center;
}
.JustifyFull
{
text-align: justify;
}
/**
* Other.
*/
code
{
font-family: courier, monospace;
background-color: #eeeeee;
padding-left: 1px;
padding-right: 1px;
border: #c0c0c0 1px solid;
}
kbd
{
padding: 0px 1px 0px 1px;
border-width: 1px 2px 2px 1px;
border-style: solid;
}
blockquote
{
color: #808080;
}
| 10npsite | trunk/guanli/system/ckeditor/_samples/assets/output_xhtml.css | CSS | asf20 | 2,145 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Read-only State — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
//<![CDATA[
var editor;
// The instanceReady event is fired, when an instance of CKEditor has finished
// its initialization.
CKEDITOR.on( 'instanceReady', function( ev )
{
editor = ev.editor;
// Show this "on" button.
document.getElementById( 'readOnlyOn' ).style.display = '';
// Event fired when the readOnly property changes.
editor.on( 'readOnly', function()
{
document.getElementById( 'readOnlyOn' ).style.display = this.readOnly ? 'none' : '';
document.getElementById( 'readOnlyOff' ).style.display = this.readOnly ? '' : 'none';
});
});
function toggleReadOnly( isReadOnly )
{
// Change the read-only state of the editor.
// http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setReadOnly
editor.setReadOnly( isReadOnly );
}
//]]>
</script>
</head>
<body>
<h1 class="samples">
CKEditor Sample — Using the CKEditor Read-Only API
</h1>
<div class="description">
<p>
This sample shows how to use the
<code><a class="samples" href="http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.editor.html#setReadOnly">setReadOnly</a></code>
API to put editor into the read-only state that makes it impossible for users to change the editor contents.
</p>
<p>
For details on how to create this setup check the source code of this sample page.
</p>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<textarea class="ckeditor" id="editor1" name="editor1" cols="100" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<p>
<input id="readOnlyOn" onclick="toggleReadOnly();" type="button" value="Make it read-only" style="display:none" />
<input id="readOnlyOff" onclick="toggleReadOnly( false );" type="button" value="Make it editable again" style="display:none" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2012, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| 10npsite | trunk/guanli/system/ckeditor/_samples/readonly.html | HTML | asf20 | 3,388 |
<?php
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* \brief CKEditor class that can be used to create editor
* instances in PHP pages on server side.
* @see http://ckeditor.com
*
* Sample usage:
* @code
* $CKEditor = new CKEditor();
* $CKEditor->editor("editor1", "<p>Initial value.</p>");
* @endcode
*/
class CKEditor
{
/**
* The version of %CKEditor.
*/
const version = '3.6.4';
/**
* A constant string unique for each release of %CKEditor.
*/
const timestamp = 'C6HH5UF';
/**
* URL to the %CKEditor installation directory (absolute or relative to document root).
* If not set, CKEditor will try to guess it's path.
*
* Example usage:
* @code
* $CKEditor->basePath = '/ckeditor/';
* @endcode
*/
public $basePath;
/**
* An array that holds the global %CKEditor configuration.
* For the list of available options, see http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html
*
* Example usage:
* @code
* $CKEditor->config['height'] = 400;
* // Use @@ at the beggining of a string to ouput it without surrounding quotes.
* $CKEditor->config['width'] = '@@screen.width * 0.8';
* @endcode
*/
public $config = array();
/**
* A boolean variable indicating whether CKEditor has been initialized.
* Set it to true only if you have already included
* <script> tag loading ckeditor.js in your website.
*/
public $initialized = false;
/**
* Boolean variable indicating whether created code should be printed out or returned by a function.
*
* Example 1: get the code creating %CKEditor instance and print it on a page with the "echo" function.
* @code
* $CKEditor = new CKEditor();
* $CKEditor->returnOutput = true;
* $code = $CKEditor->editor("editor1", "<p>Initial value.</p>");
* echo "<p>Editor 1:</p>";
* echo $code;
* @endcode
*/
public $returnOutput = false;
/**
* An array with textarea attributes.
*
* When %CKEditor is created with the editor() method, a HTML <textarea> element is created,
* it will be displayed to anyone with JavaScript disabled or with incompatible browser.
*/
public $textareaAttributes = array( "rows" => 8, "cols" => 60 );
/**
* A string indicating the creation date of %CKEditor.
* Do not change it unless you want to force browsers to not use previously cached version of %CKEditor.
*/
public $timestamp = "C6HH5UF";
/**
* An array that holds event listeners.
*/
private $events = array();
/**
* An array that holds global event listeners.
*/
private $globalEvents = array();
/**
* Main Constructor.
*
* @param $basePath (string) URL to the %CKEditor installation directory (optional).
*/
function __construct($basePath = null) {
if (!empty($basePath)) {
$this->basePath = $basePath;
}
}
/**
* Creates a %CKEditor instance.
* In incompatible browsers %CKEditor will downgrade to plain HTML <textarea> element.
*
* @param $name (string) Name of the %CKEditor instance (this will be also the "name" attribute of textarea element).
* @param $value (string) Initial value (optional).
* @param $config (array) The specific configurations to apply to this editor instance (optional).
* @param $events (array) Event listeners for this editor instance (optional).
*
* Example usage:
* @code
* $CKEditor = new CKEditor();
* $CKEditor->editor("field1", "<p>Initial value.</p>");
* @endcode
*
* Advanced example:
* @code
* $CKEditor = new CKEditor();
* $config = array();
* $config['toolbar'] = array(
* array( 'Source', '-', 'Bold', 'Italic', 'Underline', 'Strike' ),
* array( 'Image', 'Link', 'Unlink', 'Anchor' )
* );
* $events['instanceReady'] = 'function (ev) {
* alert("Loaded: " + ev.editor.name);
* }';
* $CKEditor->editor("field1", "<p>Initial value.</p>", $config, $events);
* @endcode
*/
public function editor($name, $value = "", $config = array(), $events = array())
{
$attr = "";
foreach ($this->textareaAttributes as $key => $val) {
$attr.= " " . $key . '="' . str_replace('"', '"', $val) . '"';
}
$out = "<textarea name=\"" . $name . "\"" . $attr . ">" . htmlspecialchars($value) . "</textarea>\n";
if (!$this->initialized) {
$out .= $this->init();
}
$_config = $this->configSettings($config, $events);
$js = $this->returnGlobalEvents();
if (!empty($_config))
$js .= "CKEDITOR.replace('".$name."', ".$this->jsEncode($_config).");";
else
$js .= "CKEDITOR.replace('".$name."');";
$out .= $this->script($js);
if (!$this->returnOutput) {
print $out;
$out = "";
}
return $out;
}
/**
* Replaces a <textarea> with a %CKEditor instance.
*
* @param $id (string) The id or name of textarea element.
* @param $config (array) The specific configurations to apply to this editor instance (optional).
* @param $events (array) Event listeners for this editor instance (optional).
*
* Example 1: adding %CKEditor to <textarea name="article"></textarea> element:
* @code
* $CKEditor = new CKEditor();
* $CKEditor->replace("article");
* @endcode
*/
public function replace($id, $config = array(), $events = array())
{
$out = "";
if (!$this->initialized) {
$out .= $this->init();
}
$_config = $this->configSettings($config, $events);
$js = $this->returnGlobalEvents();
if (!empty($_config)) {
$js .= "CKEDITOR.replace('".$id."', ".$this->jsEncode($_config).");";
}
else {
$js .= "CKEDITOR.replace('".$id."');";
}
$out .= $this->script($js);
if (!$this->returnOutput) {
print $out;
$out = "";
}
return $out;
}
/**
* Replace all <textarea> elements available in the document with editor instances.
*
* @param $className (string) If set, replace all textareas with class className in the page.
*
* Example 1: replace all <textarea> elements in the page.
* @code
* $CKEditor = new CKEditor();
* $CKEditor->replaceAll();
* @endcode
*
* Example 2: replace all <textarea class="myClassName"> elements in the page.
* @code
* $CKEditor = new CKEditor();
* $CKEditor->replaceAll( 'myClassName' );
* @endcode
*/
public function replaceAll($className = null)
{
$out = "";
if (!$this->initialized) {
$out .= $this->init();
}
$_config = $this->configSettings();
$js = $this->returnGlobalEvents();
if (empty($_config)) {
if (empty($className)) {
$js .= "CKEDITOR.replaceAll();";
}
else {
$js .= "CKEDITOR.replaceAll('".$className."');";
}
}
else {
$classDetection = "";
$js .= "CKEDITOR.replaceAll( function(textarea, config) {\n";
if (!empty($className)) {
$js .= " var classRegex = new RegExp('(?:^| )' + '". $className ."' + '(?:$| )');\n";
$js .= " if (!classRegex.test(textarea.className))\n";
$js .= " return false;\n";
}
$js .= " CKEDITOR.tools.extend(config, ". $this->jsEncode($_config) .", true);";
$js .= "} );";
}
$out .= $this->script($js);
if (!$this->returnOutput) {
print $out;
$out = "";
}
return $out;
}
/**
* Adds event listener.
* Events are fired by %CKEditor in various situations.
*
* @param $event (string) Event name.
* @param $javascriptCode (string) Javascript anonymous function or function name.
*
* Example usage:
* @code
* $CKEditor->addEventHandler('instanceReady', 'function (ev) {
* alert("Loaded: " + ev.editor.name);
* }');
* @endcode
*/
public function addEventHandler($event, $javascriptCode)
{
if (!isset($this->events[$event])) {
$this->events[$event] = array();
}
// Avoid duplicates.
if (!in_array($javascriptCode, $this->events[$event])) {
$this->events[$event][] = $javascriptCode;
}
}
/**
* Clear registered event handlers.
* Note: this function will have no effect on already created editor instances.
*
* @param $event (string) Event name, if not set all event handlers will be removed (optional).
*/
public function clearEventHandlers($event = null)
{
if (!empty($event)) {
$this->events[$event] = array();
}
else {
$this->events = array();
}
}
/**
* Adds global event listener.
*
* @param $event (string) Event name.
* @param $javascriptCode (string) Javascript anonymous function or function name.
*
* Example usage:
* @code
* $CKEditor->addGlobalEventHandler('dialogDefinition', 'function (ev) {
* alert("Loading dialog: " + ev.data.name);
* }');
* @endcode
*/
public function addGlobalEventHandler($event, $javascriptCode)
{
if (!isset($this->globalEvents[$event])) {
$this->globalEvents[$event] = array();
}
// Avoid duplicates.
if (!in_array($javascriptCode, $this->globalEvents[$event])) {
$this->globalEvents[$event][] = $javascriptCode;
}
}
/**
* Clear registered global event handlers.
* Note: this function will have no effect if the event handler has been already printed/returned.
*
* @param $event (string) Event name, if not set all event handlers will be removed (optional).
*/
public function clearGlobalEventHandlers($event = null)
{
if (!empty($event)) {
$this->globalEvents[$event] = array();
}
else {
$this->globalEvents = array();
}
}
/**
* Prints javascript code.
*
* @param string $js
*/
private function script($js)
{
$out = "<script type=\"text/javascript\">";
$out .= "//<![CDATA[\n";
$out .= $js;
$out .= "\n//]]>";
$out .= "</script>\n";
return $out;
}
/**
* Returns the configuration array (global and instance specific settings are merged into one array).
*
* @param $config (array) The specific configurations to apply to editor instance.
* @param $events (array) Event listeners for editor instance.
*/
private function configSettings($config = array(), $events = array())
{
$_config = $this->config;
$_events = $this->events;
if (is_array($config) && !empty($config)) {
$_config = array_merge($_config, $config);
}
if (is_array($events) && !empty($events)) {
foreach ($events as $eventName => $code) {
if (!isset($_events[$eventName])) {
$_events[$eventName] = array();
}
if (!in_array($code, $_events[$eventName])) {
$_events[$eventName][] = $code;
}
}
}
if (!empty($_events)) {
foreach($_events as $eventName => $handlers) {
if (empty($handlers)) {
continue;
}
else if (count($handlers) == 1) {
$_config['on'][$eventName] = '@@'.$handlers[0];
}
else {
$_config['on'][$eventName] = '@@function (ev){';
foreach ($handlers as $handler => $code) {
$_config['on'][$eventName] .= '('.$code.')(ev);';
}
$_config['on'][$eventName] .= '}';
}
}
}
return $_config;
}
/**
* Return global event handlers.
*/
private function returnGlobalEvents()
{
static $returnedEvents;
$out = "";
if (!isset($returnedEvents)) {
$returnedEvents = array();
}
if (!empty($this->globalEvents)) {
foreach ($this->globalEvents as $eventName => $handlers) {
foreach ($handlers as $handler => $code) {
if (!isset($returnedEvents[$eventName])) {
$returnedEvents[$eventName] = array();
}
// Return only new events
if (!in_array($code, $returnedEvents[$eventName])) {
$out .= ($code ? "\n" : "") . "CKEDITOR.on('". $eventName ."', $code);";
$returnedEvents[$eventName][] = $code;
}
}
}
}
return $out;
}
/**
* Initializes CKEditor (executed only once).
*/
private function init()
{
static $initComplete;
$out = "";
if (!empty($initComplete)) {
return "";
}
if ($this->initialized) {
$initComplete = true;
return "";
}
$args = "";
$ckeditorPath = $this->ckeditorPath();
if (!empty($this->timestamp) && $this->timestamp != "%"."TIMESTAMP%") {
$args = '?t=' . $this->timestamp;
}
// Skip relative paths...
if (strpos($ckeditorPath, '..') !== 0) {
$out .= $this->script("window.CKEDITOR_BASEPATH='". $ckeditorPath ."';");
}
$out .= "<script type=\"text/javascript\" src=\"" . $ckeditorPath . 'ckeditor.js' . $args . "\"></script>\n";
$extraCode = "";
if ($this->timestamp != self::timestamp) {
$extraCode .= ($extraCode ? "\n" : "") . "CKEDITOR.timestamp = '". $this->timestamp ."';";
}
if ($extraCode) {
$out .= $this->script($extraCode);
}
$initComplete = $this->initialized = true;
return $out;
}
/**
* Return path to ckeditor.js.
*/
private function ckeditorPath()
{
if (!empty($this->basePath)) {
return $this->basePath;
}
/**
* The absolute pathname of the currently executing script.
* Note: If a script is executed with the CLI, as a relative path, such as file.php or ../file.php,
* $_SERVER['SCRIPT_FILENAME'] will contain the relative path specified by the user.
*/
if (isset($_SERVER['SCRIPT_FILENAME'])) {
$realPath = dirname($_SERVER['SCRIPT_FILENAME']);
}
else {
/**
* realpath - Returns canonicalized absolute pathname
*/
$realPath = realpath( './' ) ;
}
/**
* The filename of the currently executing script, relative to the document root.
* For instance, $_SERVER['PHP_SELF'] in a script at the address http://example.com/test.php/foo.bar
* would be /test.php/foo.bar.
*/
$selfPath = dirname($_SERVER['PHP_SELF']);
$file = str_replace("\\", "/", __FILE__);
if (!$selfPath || !$realPath || !$file) {
return "/ckeditor/";
}
$documentRoot = substr($realPath, 0, strlen($realPath) - strlen($selfPath));
$fileUrl = substr($file, strlen($documentRoot));
$ckeditorUrl = str_replace("ckeditor_php5.php", "", $fileUrl);
return $ckeditorUrl;
}
/**
* This little function provides a basic JSON support.
*
* @param mixed $val
* @return string
*/
private function jsEncode($val)
{
if (is_null($val)) {
return 'null';
}
if (is_bool($val)) {
return $val ? 'true' : 'false';
}
if (is_int($val)) {
return $val;
}
if (is_float($val)) {
return str_replace(',', '.', $val);
}
if (is_array($val) || is_object($val)) {
if (is_array($val) && (array_keys($val) === range(0,count($val)-1))) {
return '[' . implode(',', array_map(array($this, 'jsEncode'), $val)) . ']';
}
$temp = array();
foreach ($val as $k => $v){
$temp[] = $this->jsEncode("{$k}") . ':' . $this->jsEncode($v);
}
return '{' . implode(',', $temp) . '}';
}
// String otherwise
if (strpos($val, '@@') === 0)
return substr($val, 2);
if (strtoupper(substr($val, 0, 9)) == 'CKEDITOR.')
return $val;
return '"' . str_replace(array("\\", "/", "\n", "\t", "\r", "\x08", "\x0c", '"'), array('\\\\', '\\/', '\\n', '\\t', '\\r', '\\b', '\\f', '\"'), $val) . '"';
}
}
| 10npsite | trunk/guanli/system/ckeditor/ckeditor_php5.php | PHP | asf20 | 15,333 |
<?php
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* \brief CKEditor class that can be used to create editor
* instances in PHP pages on server side.
* @see http://ckeditor.com
*
* Sample usage:
* @code
* $CKEditor = new CKEditor();
* $CKEditor->editor("editor1", "<p>Initial value.</p>");
* @endcode
*/
class CKEditor
{
/**
* The version of %CKEditor.
* \private
*/
var $version = '3.6.4';
/**
* A constant string unique for each release of %CKEditor.
* \private
*/
var $_timestamp = 'C6HH5UF';
/**
* URL to the %CKEditor installation directory (absolute or relative to document root).
* If not set, CKEditor will try to guess it's path.
*
* Example usage:
* @code
* $CKEditor->basePath = '/ckeditor/';
* @endcode
*/
var $basePath;
/**
* An array that holds the global %CKEditor configuration.
* For the list of available options, see http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html
*
* Example usage:
* @code
* $CKEditor->config['height'] = 400;
* // Use @@ at the beggining of a string to ouput it without surrounding quotes.
* $CKEditor->config['width'] = '@@screen.width * 0.8';
* @endcode
*/
var $config = array();
/**
* A boolean variable indicating whether CKEditor has been initialized.
* Set it to true only if you have already included
* <script> tag loading ckeditor.js in your website.
*/
var $initialized = false;
/**
* Boolean variable indicating whether created code should be printed out or returned by a function.
*
* Example 1: get the code creating %CKEditor instance and print it on a page with the "echo" function.
* @code
* $CKEditor = new CKEditor();
* $CKEditor->returnOutput = true;
* $code = $CKEditor->editor("editor1", "<p>Initial value.</p>");
* echo "<p>Editor 1:</p>";
* echo $code;
* @endcode
*/
var $returnOutput = false;
/**
* An array with textarea attributes.
*
* When %CKEditor is created with the editor() method, a HTML <textarea> element is created,
* it will be displayed to anyone with JavaScript disabled or with incompatible browser.
*/
var $textareaAttributes = array( "rows" => 8, "cols" => 60 );
/**
* A string indicating the creation date of %CKEditor.
* Do not change it unless you want to force browsers to not use previously cached version of %CKEditor.
*/
var $timestamp = "C6HH5UF";
/**
* An array that holds event listeners.
* \private
*/
var $_events = array();
/**
* An array that holds global event listeners.
* \private
*/
var $_globalEvents = array();
/**
* Main Constructor.
*
* @param $basePath (string) URL to the %CKEditor installation directory (optional).
*/
function CKEditor($basePath = null) {
if (!empty($basePath)) {
$this->basePath = $basePath;
}
}
/**
* Creates a %CKEditor instance.
* In incompatible browsers %CKEditor will downgrade to plain HTML <textarea> element.
*
* @param $name (string) Name of the %CKEditor instance (this will be also the "name" attribute of textarea element).
* @param $value (string) Initial value (optional).
* @param $config (array) The specific configurations to apply to this editor instance (optional).
* @param $events (array) Event listeners for this editor instance (optional).
*
* Example usage:
* @code
* $CKEditor = new CKEditor();
* $CKEditor->editor("field1", "<p>Initial value.</p>");
* @endcode
*
* Advanced example:
* @code
* $CKEditor = new CKEditor();
* $config = array();
* $config['toolbar'] = array(
* array( 'Source', '-', 'Bold', 'Italic', 'Underline', 'Strike' ),
* array( 'Image', 'Link', 'Unlink', 'Anchor' )
* );
* $events['instanceReady'] = 'function (ev) {
* alert("Loaded: " + ev.editor.name);
* }';
* $CKEditor->editor("field1", "<p>Initial value.</p>", $config, $events);
* @endcode
*/
function editor($name, $value = "", $config = array(), $events = array())
{
$attr = "";
foreach ($this->textareaAttributes as $key => $val) {
$attr.= " " . $key . '="' . str_replace('"', '"', $val) . '"';
}
$out = "<textarea name=\"" . $name . "\"" . $attr . ">" . htmlspecialchars($value) . "</textarea>\n";
if (!$this->initialized) {
$out .= $this->init();
}
$_config = $this->configSettings($config, $events);
$js = $this->returnGlobalEvents();
if (!empty($_config))
$js .= "CKEDITOR.replace('".$name."', ".$this->jsEncode($_config).");";
else
$js .= "CKEDITOR.replace('".$name."');";
$out .= $this->script($js);
if (!$this->returnOutput) {
print $out;
$out = "";
}
return $out;
}
/**
* Replaces a <textarea> with a %CKEditor instance.
*
* @param $id (string) The id or name of textarea element.
* @param $config (array) The specific configurations to apply to this editor instance (optional).
* @param $events (array) Event listeners for this editor instance (optional).
*
* Example 1: adding %CKEditor to <textarea name="article"></textarea> element:
* @code
* $CKEditor = new CKEditor();
* $CKEditor->replace("article");
* @endcode
*/
function replace($id, $config = array(), $events = array())
{
$out = "";
if (!$this->initialized) {
$out .= $this->init();
}
$_config = $this->configSettings($config, $events);
$js = $this->returnGlobalEvents();
if (!empty($_config)) {
$js .= "CKEDITOR.replace('".$id."', ".$this->jsEncode($_config).");";
}
else {
$js .= "CKEDITOR.replace('".$id."');";
}
$out .= $this->script($js);
if (!$this->returnOutput) {
print $out;
$out = "";
}
return $out;
}
/**
* Replace all <textarea> elements available in the document with editor instances.
*
* @param $className (string) If set, replace all textareas with class className in the page.
*
* Example 1: replace all <textarea> elements in the page.
* @code
* $CKEditor = new CKEditor();
* $CKEditor->replaceAll();
* @endcode
*
* Example 2: replace all <textarea class="myClassName"> elements in the page.
* @code
* $CKEditor = new CKEditor();
* $CKEditor->replaceAll( 'myClassName' );
* @endcode
*/
function replaceAll($className = null)
{
$out = "";
if (!$this->initialized) {
$out .= $this->init();
}
$_config = $this->configSettings();
$js = $this->returnGlobalEvents();
if (empty($_config)) {
if (empty($className)) {
$js .= "CKEDITOR.replaceAll();";
}
else {
$js .= "CKEDITOR.replaceAll('".$className."');";
}
}
else {
$classDetection = "";
$js .= "CKEDITOR.replaceAll( function(textarea, config) {\n";
if (!empty($className)) {
$js .= " var classRegex = new RegExp('(?:^| )' + '". $className ."' + '(?:$| )');\n";
$js .= " if (!classRegex.test(textarea.className))\n";
$js .= " return false;\n";
}
$js .= " CKEDITOR.tools.extend(config, ". $this->jsEncode($_config) .", true);";
$js .= "} );";
}
$out .= $this->script($js);
if (!$this->returnOutput) {
print $out;
$out = "";
}
return $out;
}
/**
* Adds event listener.
* Events are fired by %CKEditor in various situations.
*
* @param $event (string) Event name.
* @param $javascriptCode (string) Javascript anonymous function or function name.
*
* Example usage:
* @code
* $CKEditor->addEventHandler('instanceReady', 'function (ev) {
* alert("Loaded: " + ev.editor.name);
* }');
* @endcode
*/
function addEventHandler($event, $javascriptCode)
{
if (!isset($this->_events[$event])) {
$this->_events[$event] = array();
}
// Avoid duplicates.
if (!in_array($javascriptCode, $this->_events[$event])) {
$this->_events[$event][] = $javascriptCode;
}
}
/**
* Clear registered event handlers.
* Note: this function will have no effect on already created editor instances.
*
* @param $event (string) Event name, if not set all event handlers will be removed (optional).
*/
function clearEventHandlers($event = null)
{
if (!empty($event)) {
$this->_events[$event] = array();
}
else {
$this->_events = array();
}
}
/**
* Adds global event listener.
*
* @param $event (string) Event name.
* @param $javascriptCode (string) Javascript anonymous function or function name.
*
* Example usage:
* @code
* $CKEditor->addGlobalEventHandler('dialogDefinition', 'function (ev) {
* alert("Loading dialog: " + ev.data.name);
* }');
* @endcode
*/
function addGlobalEventHandler($event, $javascriptCode)
{
if (!isset($this->_globalEvents[$event])) {
$this->_globalEvents[$event] = array();
}
// Avoid duplicates.
if (!in_array($javascriptCode, $this->_globalEvents[$event])) {
$this->_globalEvents[$event][] = $javascriptCode;
}
}
/**
* Clear registered global event handlers.
* Note: this function will have no effect if the event handler has been already printed/returned.
*
* @param $event (string) Event name, if not set all event handlers will be removed (optional).
*/
function clearGlobalEventHandlers($event = null)
{
if (!empty($event)) {
$this->_globalEvents[$event] = array();
}
else {
$this->_globalEvents = array();
}
}
/**
* Prints javascript code.
* \private
*
* @param string $js
*/
function script($js)
{
$out = "<script type=\"text/javascript\">";
$out .= "//<![CDATA[\n";
$out .= $js;
$out .= "\n//]]>";
$out .= "</script>\n";
return $out;
}
/**
* Returns the configuration array (global and instance specific settings are merged into one array).
* \private
*
* @param $config (array) The specific configurations to apply to editor instance.
* @param $events (array) Event listeners for editor instance.
*/
function configSettings($config = array(), $events = array())
{
$_config = $this->config;
$_events = $this->_events;
if (is_array($config) && !empty($config)) {
$_config = array_merge($_config, $config);
}
if (is_array($events) && !empty($events)) {
foreach ($events as $eventName => $code) {
if (!isset($_events[$eventName])) {
$_events[$eventName] = array();
}
if (!in_array($code, $_events[$eventName])) {
$_events[$eventName][] = $code;
}
}
}
if (!empty($_events)) {
foreach($_events as $eventName => $handlers) {
if (empty($handlers)) {
continue;
}
else if (count($handlers) == 1) {
$_config['on'][$eventName] = '@@'.$handlers[0];
}
else {
$_config['on'][$eventName] = '@@function (ev){';
foreach ($handlers as $handler => $code) {
$_config['on'][$eventName] .= '('.$code.')(ev);';
}
$_config['on'][$eventName] .= '}';
}
}
}
return $_config;
}
/**
* Return global event handlers.
* \private
*/
function returnGlobalEvents()
{
static $returnedEvents;
$out = "";
if (!isset($returnedEvents)) {
$returnedEvents = array();
}
if (!empty($this->_globalEvents)) {
foreach ($this->_globalEvents as $eventName => $handlers) {
foreach ($handlers as $handler => $code) {
if (!isset($returnedEvents[$eventName])) {
$returnedEvents[$eventName] = array();
}
// Return only new events
if (!in_array($code, $returnedEvents[$eventName])) {
$out .= ($code ? "\n" : "") . "CKEDITOR.on('". $eventName ."', $code);";
$returnedEvents[$eventName][] = $code;
}
}
}
}
return $out;
}
/**
* Initializes CKEditor (executed only once).
* \private
*/
function init()
{
static $initComplete;
$out = "";
if (!empty($initComplete)) {
return "";
}
if ($this->initialized) {
$initComplete = true;
return "";
}
$args = "";
$ckeditorPath = $this->ckeditorPath();
if (!empty($this->timestamp) && $this->timestamp != "%"."TIMESTAMP%") {
$args = '?t=' . $this->timestamp;
}
// Skip relative paths...
if (strpos($ckeditorPath, '..') !== 0) {
$out .= $this->script("window.CKEDITOR_BASEPATH='". $ckeditorPath ."';");
}
$out .= "<script type=\"text/javascript\" src=\"" . $ckeditorPath . 'ckeditor.js' . $args . "\"></script>\n";
$extraCode = "";
if ($this->timestamp != $this->_timestamp) {
$extraCode .= ($extraCode ? "\n" : "") . "CKEDITOR.timestamp = '". $this->timestamp ."';";
}
if ($extraCode) {
$out .= $this->script($extraCode);
}
$initComplete = $this->initialized = true;
return $out;
}
/**
* Return path to ckeditor.js.
* \private
*/
function ckeditorPath()
{
if (!empty($this->basePath)) {
return $this->basePath;
}
/**
* The absolute pathname of the currently executing script.
* Note: If a script is executed with the CLI, as a relative path, such as file.php or ../file.php,
* $_SERVER['SCRIPT_FILENAME'] will contain the relative path specified by the user.
*/
if (isset($_SERVER['SCRIPT_FILENAME'])) {
$realPath = dirname($_SERVER['SCRIPT_FILENAME']);
}
else {
/**
* realpath - Returns canonicalized absolute pathname
*/
$realPath = realpath( './' ) ;
}
/**
* The filename of the currently executing script, relative to the document root.
* For instance, $_SERVER['PHP_SELF'] in a script at the address http://example.com/test.php/foo.bar
* would be /test.php/foo.bar.
*/
$selfPath = dirname($_SERVER['PHP_SELF']);
$file = str_replace("\\", "/", __FILE__);
if (!$selfPath || !$realPath || !$file) {
return "/ckeditor/";
}
$documentRoot = substr($realPath, 0, strlen($realPath) - strlen($selfPath));
$fileUrl = substr($file, strlen($documentRoot));
$ckeditorUrl = str_replace("ckeditor_php4.php", "", $fileUrl);
return $ckeditorUrl;
}
/**
* This little function provides a basic JSON support.
* \private
*
* @param mixed $val
* @return string
*/
function jsEncode($val)
{
if (is_null($val)) {
return 'null';
}
if (is_bool($val)) {
return $val ? 'true' : 'false';
}
if (is_int($val)) {
return $val;
}
if (is_float($val)) {
return str_replace(',', '.', $val);
}
if (is_array($val) || is_object($val)) {
if (is_array($val) && (array_keys($val) === range(0,count($val)-1))) {
return '[' . implode(',', array_map(array($this, 'jsEncode'), $val)) . ']';
}
$temp = array();
foreach ($val as $k => $v){
$temp[] = $this->jsEncode("{$k}") . ':' . $this->jsEncode($v);
}
return '{' . implode(',', $temp) . '}';
}
// String otherwise
if (strpos($val, '@@') === 0)
return substr($val, 2);
if (strtoupper(substr($val, 0, 9)) == 'CKEDITOR.')
return $val;
return '"' . str_replace(array("\\", "/", "\n", "\t", "\r", "\x08", "\x0c", '"'), array('\\\\', '\\/', '\\n', '\\t', '\\r', '\\b', '\\f', '\"'), $val) . '"';
}
}
| 10npsite | trunk/guanli/system/ckeditor/ckeditor_php4.php | PHP | asf20 | 15,365 |
<?php
$sitepath=dirname(__FILE__);
$sys_config=array(
"uppicload"=>"/upfiles/".date("Ym")."/",//上传图片保存的路径
"fileType"=>array(".gif",".png",".jpg",".jpeg",".bmp"),//上传类型
"fileSize"=>1000,//文件大小限制,单位KB
);
?> | 10npsite | trunk/guanli/system/ueditor/config.php | PHP | asf20 | 258 |
///import editor.js
///import core/utils.js
/**
* 事件基础类
* @public
* @class
* @name baidu.editor.EventBase
*/
var EventBase = UE.EventBase = function(){};
EventBase.prototype = /**@lends baidu.editor.EventBase.prototype*/{
/**
* 注册事件监听器
* @public
* @function
* @param {String} type 事件名
* @param {Function} listener 监听器数组
*/
addListener : function ( type, listener ) {
getListener( this, type, true ).push( listener );
},
/**
* 移除事件监听器
* @public
* @function
* @param {String} type 事件名
* @param {Function} listener 监听器数组
*/
removeListener : function ( type, listener ) {
var listeners = getListener( this, type );
listeners && utils.removeItem( listeners, listener );
},
/**
* 触发事件
* @public
* @function
* @param {String} type 事件名
*
*/
fireEvent : function ( type ) {
var listeners = getListener( this, type ),
r, t, k;
if ( listeners ) {
k = listeners.length;
while ( k -- ) {
t = listeners[k].apply( this, arguments );
if ( t !== undefined ) {
r = t;
}
}
}
if ( t = this['on' + type.toLowerCase()] ) {
r = t.apply( this, arguments );
}
return r;
}
};
/**
* 获得对象所拥有监听类型的所有监听器
* @public
* @function
* @param {Object} obj 查询监听器的对象
* @param {String} type 事件类型
* @param {Boolean} force 为true且当前所有type类型的侦听器不存在时,创建一个空监听器数组
* @returns {Array} 监听器数组
*/
function getListener( obj, type, force ) {
var allListeners;
type = type.toLowerCase();
return ( ( allListeners = ( obj.__allListeners || force && ( obj.__allListeners = {} ) ) )
&& ( allListeners[type] || force && ( allListeners[type] = [] ) ) );
}
| 10npsite | trunk/guanli/system/ueditor/_src/core/EventBase.js | JavaScript | asf20 | 2,437 |
///import editor.js
///import core/utils.js
///import core/EventBase.js
///import core/browser.js
///import core/dom/dom.js
///import core/dom/domUtils.js
///import core/dom/Selection.js
///import core/dom/dtd.js
(function () {
var uid = 0,
_selectionChangeTimer;
function replaceSrc(div){
var imgs = div.getElementsByTagName("img"),
orgSrc;
for(var i=0,img;img = imgs[i++];){
if(orgSrc = img.getAttribute("orgSrc")){
img.src = orgSrc;
img.removeAttribute("orgSrc");
}
}
var as = div.getElementsByTagName("a");
for(var i=0,ai;ai=as[i++];i++){
if(ai.getAttribute('data_ue_src')){
ai.setAttribute('href',ai.getAttribute('data_ue_src'))
}
}
}
/**
* 编辑器类
* @public
* @class
* @extends baidu.editor.EventBase
* @name baidu.editor.Editor
* @param {Object} options
*/
var Editor = UE.Editor = function( options ) {
var me = this;
me.uid = uid ++;
EventBase.call( me );
me.commands = {};
me.options = utils.extend( options || {}, UEDITOR_CONFIG, true );
//初始化插件
for ( var pi in UE.plugins ) {
UE.plugins[pi].call( me )
}
};
Editor.prototype = /**@lends baidu.editor.Editor.prototype*/{
destroy : function(){
this.fireEvent('destroy');
this.container.innerHTML = '';
domUtils.remove(this.container);
},
/**
* 渲染编辑器的DOM到指定容器,必须且只能调用一次
* @public
* @function
* @param {Element|String} container
*/
render : function ( container ) {
if (container.constructor === String) {
container = document.getElementById(container);
}
if(container){
container.innerHTML = '<iframe id="' + 'baidu_editor_' + this.uid + '"' + 'width="100%" height="100%" frameborder="0"></iframe>';
container.style.overflow = 'hidden';
this._setup( container.firstChild.contentWindow.document );
}
},
_setup: function ( doc ) {
var options = this.options,
me = this;
//防止在chrome下连接后边带# 会跳动的问题
!browser.webkit && doc.open();
var useBodyAsViewport = ie && browser.version < 9;
doc.write( ( ie && browser.version < 9 ? '' : '<!DOCTYPE html>') +
'<html xmlns="http://www.w3.org/1999/xhtml"' + (!useBodyAsViewport ? ' class="view"' : '') + '><head>' +
( options.iframeCssUrl ? '<link rel="stylesheet" type="text/css" href="' + utils.unhtml( /^http/.test(options.iframeCssUrl) ? options.iframeCssUrl : (options.UEDITOR_HOME_URL + options.iframeCssUrl) ) + '"/>' : '' ) +
'<style type="text/css">'
+ ( options.initialStyle ||' ' ) +
'</style></head><body' + (useBodyAsViewport ? ' class="view"' : '') + '></body></html>' );
!browser.webkit && doc.close();
if ( ie ) {
doc.body.disabled = true;
doc.body.contentEditable = true;
doc.body.disabled = false;
} else {
doc.body.contentEditable = true;
doc.body.spellcheck = false;
}
this.document = doc;
this.window = doc.defaultView || doc.parentWindow;
this.iframe = this.window.frameElement;
this.body = doc.body;
if (this.options.minFrameHeight) {
this.setHeight(this.options.minFrameHeight);
this.body.style.height = this.options.minFrameHeight;
}
this.selection = new dom.Selection( doc );
//gecko初始化就能得到range,无法判断isFocus了
if(browser.gecko){
this.selection.getNative().removeAllRanges();
}
this._initEvents();
if(me.options.initialContent){
if(me.options.autoClearinitialContent){
var oldExecCommand = me.execCommand;
me.execCommand = function(){
me.fireEvent('firstBeforeExecCommand');
oldExecCommand.apply(me,arguments)
};
this.setDefaultContent(this.options.initialContent);
}else
this.setContent(this.options.initialContent,true);
}
//为form提交提供一个隐藏的textarea
for(var form = this.iframe.parentNode;!domUtils.isBody(form);form = form.parentNode){
if(form.tagName == 'FORM'){
domUtils.on(form,'submit',function(){
var textarea = document.getElementById('ueditor_textarea_' + me.options.textarea);
if(!textarea){
textarea = document.createElement('textarea');
textarea.setAttribute('name',me.options.textarea);
textarea.id = 'ueditor_textarea_' + me.options.textarea;
textarea.style.display = 'none';
this.appendChild(textarea);
}
textarea.value = me.getContent();
});
break;
}
}
//编辑器不能为空内容
if(domUtils.isEmptyNode(me.body)){
this.body.innerHTML = '<p>'+(browser.ie?'':'<br/>')+'</p>';
}
//如果要求focus, 就把光标定位到内容开始
if(me.options.focus){
setTimeout(function(){
me.focus();
//如果自动清除开着,就不需要做selectionchange;
!me.options.autoClearinitialContent && me._selectionChange()
});
}
if(!this.container){
this.container = this.iframe.parentNode;
}
if(me.options.fullscreen && me.ui){
me.ui.setFullScreen(true)
}
this.fireEvent( 'ready' );
if(!browser.ie){
domUtils.on(me.window,'blur',function(){
me._bakRange = me.selection.getRange();
me.selection.getNative().removeAllRanges();
});
}
//trace:1518 ff3.6body不够寛,会导致点击空白处无法获得焦点
if(browser.gecko && browser.version <= 10902){
//修复ff3.6初始化进来,不能点击获得焦点
me.body.contentEditable = false;
setTimeout(function(){
me.body.contentEditable = true;
},100);
setInterval(function(){
me.body.style.height = me.iframe.offsetHeight - 20 + 'px'
},100)
}
},
/**
* 创建textarea,同步编辑的内容到textarea,为后台获取内容做准备
* @param formId 制定在那个form下添加
* @public
* @function
*/
sync : function(formId){
var me = this,
form;
function setValue(form){
var textarea = document.getElementById('ueditor_textarea_' + me.options.textarea);
if(!textarea){
textarea = document.createElement('textarea');
textarea.setAttribute('name',me.options.textarea);
textarea.id = 'ueditor_textarea_' + me.options.textarea;
textarea.style.display = 'none';
form.appendChild(textarea);
}
textarea.value = me.getContent();
}
if(formId){
form = document.getElementById(formId);
form && setValue(form);
}else{
for(form = me.iframe.parentNode;!domUtils.isBody(form);form = form.parentNode){
if(form.tagName == 'FORM'){
setValue(form);
break;
}
}
}
},
/**
* 设置编辑器高度
* @public
* @function
* @param {Number} height 高度
*/
setHeight: function (height){
if (height !== parseInt(this.iframe.parentNode.style.height)){
this.iframe.parentNode.style.height = height + 'px';
}
//ie9下body 高度100%失效,改为手动设置
if(browser.ie && browser.version == 9){
this.document.body.style.height = height - 20 + 'px'
}
},
/**
* 获取编辑器内容
* @public
* @function
* @returns {String}
*/
getContent : function (cmd) {
this.fireEvent( 'beforegetcontent',cmd );
var reg = new RegExp( domUtils.fillChar, 'g' ),
//ie下取得的html可能会有\n存在,要去掉,在处理replace(/[\t\r\n]*/g,'');代码高量的\n不能去除
html = this.document.body.innerHTML.replace(reg,'').replace(/>[\t\r\n]*?</g,'><');
this.fireEvent( 'aftergetcontent',cmd );
if (this.serialize) {
var node = this.serialize.parseHTML(html);
node = this.serialize.transformOutput(node);
html = this.serialize.toHTML(node);
}
return html;
},
/**
* 获取编辑器中的文本内容
* @public
* @function
* @returns {String}
*/
getContentTxt : function(){
var reg = new RegExp( domUtils.fillChar,'g' );
return this.body[browser.ie ? 'innerText':'textContent'].replace(reg,'')
},
/**
* 设置编辑器内容
* @public
* @function
* @param {String} html
*/
setContent : function ( html,notFireSelectionchange) {
var me = this,
inline = utils.extend({a:1,A:1},dtd.$inline,true),
lastTagName;
html = html
.replace(/^[ \t\r\n]*?</,'<')
.replace(/>[ \t\r\n]*?$/,'>')
.replace(/>[\t\r\n]*?</g,'><')//代码高量的\n不能去除
.replace(/[\s\/]?(\w+)?>[ \t\r\n]*?<\/?(\w+)/gi,function(a,b,c){
if(b){
lastTagName = c;
}else{
b = lastTagName
}
return !inline[b] && !inline[c] ? a.replace(/>[ \t\r\n]*?</,'><') : a;
});
me.fireEvent( 'beforesetcontent' );
var serialize = this.serialize;
if (serialize) {
var node = serialize.parseHTML(html);
node = serialize.transformInput(node);
node = serialize.filter(node);
html = serialize.toHTML(node);
}
//html.replace(new RegExp('[\t\n\r' + domUtils.fillChar + ']*','g'),'');
//去掉了\t\n\r 如果有插入的代码,在源码切换所见即所得模式时,换行都丢掉了
//\r在ie下的不可见字符,在源码切换时会变成多个
//trace:1559
this.document.body.innerHTML = html.replace(new RegExp('[\r' + domUtils.fillChar + ']*','g'),'');
//处理ie6下innerHTML自动将相对路径转化成绝对路径的问题
if(browser.ie && browser.version < 7 && me.options.relativePath){
replaceSrc(this.document.body);
}
//给文本或者inline节点套p标签
if(me.options.enterTag == 'p'){
var child = this.body.firstChild,
p = me.document.createElement('p'),
tmpNode;
if(!child || child.nodeType == 1 && dtd.$cdata[child.tagName]){
this.body.innerHTML = '<p>'+(browser.ie ? '' :'<br/>')+'</p>' + this.body.innerHTML;
}else{
while(child){
if(child.nodeType ==3 || child.nodeType == 1 && dtd.p[child.tagName]){
tmpNode = child.nextSibling;
p.appendChild(child);
child = tmpNode;
if(!child){
me.body.appendChild(p);
}
}else{
if(p.firstChild){
me.body.insertBefore(p,child);
p = me.document.createElement('p')
}
child = child.nextSibling
}
}
}
}
me.adjustTable && me.adjustTable(me.body);
me.fireEvent( 'aftersetcontent' );
me.fireEvent( 'contentchange' );
!notFireSelectionchange && me._selectionChange();
//清除保存的选区
me._bakRange = me._bakIERange = null;
//trace:1742 setContent后gecko能得到焦点问题
if(browser.gecko){
me.selection.getNative().removeAllRanges();
}
},
/**
* 让编辑器获得焦点
* @public
* @function
*/
focus : function () {
this.selection.getRange().select(true);
},
/**
* 初始化事件,绑定selectionchange
* @private
* @function
*/
_initEvents : function () {
var me = this,
doc = me.document,
win = me.window;
me._proxyDomEvent = utils.bind( me._proxyDomEvent, me );
domUtils.on( doc, ['click', 'contextmenu','mousedown','keydown', 'keyup','keypress', 'mouseup', 'mouseover', 'mouseout', 'selectstart'], me._proxyDomEvent );
domUtils.on( win, ['focus', 'blur'], me._proxyDomEvent );
domUtils.on( doc, ['mouseup','keydown'], function(evt){
//特殊键不触发selectionchange
if(evt.type == 'keydown' && (evt.ctrlKey || evt.metaKey || evt.shiftKey || evt.altKey)){
return;
}
if(evt.button == 2)return;
me._selectionChange(250, evt );
});
//处理拖拽
//ie ff不能从外边拖入
//chrome只针对从外边拖入的内容过滤
var innerDrag = 0,source = browser.ie ? me.body : me.document,dragoverHandler;
domUtils.on(source,'dragstart',function(){
innerDrag = 1;
});
domUtils.on(source,browser.webkit ? 'dragover' : 'drop',function(){
return browser.webkit ?
function(){
clearTimeout( dragoverHandler );
dragoverHandler = setTimeout( function(){
if(!innerDrag){
var sel = me.selection,
range = sel.getRange();
if(range){
var common = range.getCommonAncestor();
if(common && me.serialize){
var f = me.serialize,
node =
f.filter(
f.transformInput(
f.parseHTML(
f.word(common.innerHTML)
)
)
);
common.innerHTML = f.toHTML(node)
}
}
}
innerDrag = 0;
}, 200 );
} :
function(e){
if(!innerDrag){
e.preventDefault ? e.preventDefault() :(e.returnValue = false) ;
}
innerDrag = 0;
}
}());
},
_proxyDomEvent: function ( evt ) {
return this.fireEvent( evt.type.replace( /^on/, '' ), evt );
},
_selectionChange : function ( delay, evt ) {
var me = this;
//有光标才做selectionchange
if(!me.selection.isFocus())
return;
var hackForMouseUp = false;
var mouseX, mouseY;
if (browser.ie && browser.version < 9 && evt && evt.type == 'mouseup') {
var range = this.selection.getRange();
if (!range.collapsed) {
hackForMouseUp = true;
mouseX = evt.clientX;
mouseY = evt.clientY;
}
}
clearTimeout(_selectionChangeTimer);
_selectionChangeTimer = setTimeout(function(){
if(!me.selection.getNative()){
return;
}
//修复一个IE下的bug: 鼠标点击一段已选择的文本中间时,可能在mouseup后的一段时间内取到的range是在selection的type为None下的错误值.
//IE下如果用户是拖拽一段已选择文本,则不会触发mouseup事件,所以这里的特殊处理不会对其有影响
var ieRange;
if (hackForMouseUp && me.selection.getNative().type == 'None' ) {
ieRange = me.document.body.createTextRange();
try {
ieRange.moveToPoint( mouseX, mouseY );
} catch(ex){
ieRange = null;
}
}
var bakGetIERange;
if (ieRange) {
bakGetIERange = me.selection.getIERange;
me.selection.getIERange = function (){
return ieRange;
};
}
me.selection.cache();
if (bakGetIERange) {
me.selection.getIERange = bakGetIERange;
}
if ( me.selection._cachedRange && me.selection._cachedStartElement ) {
me.fireEvent( 'beforeselectionchange' );
// 第二个参数causeByUi为true代表由用户交互造成的selectionchange.
me.fireEvent( 'selectionchange', !!evt );
me.fireEvent('afterselectionchange');
me.selection.clear();
}
}, delay || 50);
},
_callCmdFn: function ( fnName, args ) {
var cmdName = args[0].toLowerCase(),
cmd, cmdFn;
cmdFn = ( cmd = this.commands[cmdName] ) && cmd[fnName] ||
( cmd = UE.commands[cmdName]) && cmd[fnName];
if ( cmd && !cmdFn && fnName == 'queryCommandState' ) {
return false;
} else if ( cmdFn ) {
return cmdFn.apply( this, args );
}
},
/**
* 执行命令
* @public
* @function
* @param {String} cmdName 执行的命令名
*
*/
execCommand : function ( cmdName ) {
cmdName = cmdName.toLowerCase();
var me = this,
result,
cmd = me.commands[cmdName] || UE.commands[cmdName];
if ( !cmd || !cmd.execCommand ) {
return;
}
if ( !cmd.notNeedUndo && !me.__hasEnterExecCommand ) {
me.__hasEnterExecCommand = true;
if(me.queryCommandState(cmdName) !=-1){
me.fireEvent( 'beforeexeccommand', cmdName );
result = this._callCmdFn( 'execCommand', arguments );
me.fireEvent( 'afterexeccommand', cmdName );
}
me.__hasEnterExecCommand = false;
} else {
result = this._callCmdFn( 'execCommand', arguments );
}
me._selectionChange();
return result;
},
/**
* 查询命令的状态
* @public
* @function
* @param {String} cmdName 执行的命令名
* @returns {Number|*} -1 : disabled, false : normal, true : enabled.
*
*/
queryCommandState : function ( cmdName ) {
return this._callCmdFn( 'queryCommandState', arguments );
},
/**
* 查询命令的值
* @public
* @function
* @param {String} cmdName 执行的命令名
* @returns {*}
*/
queryCommandValue : function ( cmdName ) {
return this._callCmdFn( 'queryCommandValue', arguments );
},
/**
* 检查编辑区域中是否有内容
* @public
* @params{Array} 自定义的标签
* @function
* @returns {Boolean} true 有,false 没有
*/
hasContents : function(tags){
if(tags){
for(var i=0,ci;ci=tags[i++];){
if(this.document.getElementsByTagName(ci).length > 0)
return true;
}
}
if(!domUtils.isEmptyBlock(this.body)){
return true
}
return false;
},
/**
* 从新设置
* @public
* @function
*/
reset : function(){
this.fireEvent('reset');
},
/**
* 设置默认内容
* @function
* @param {String} cont 要存入的内容
*/
setDefaultContent : function(){
function clear(){
var me = this;
if(me.document.getElementById('initContent')){
me.document.body.innerHTML = '<p>'+(ie ? '' : '<br/>')+'</p>';
var range = me.selection.getRange();
me.removeListener('firstBeforeExecCommand',clear);
me.removeListener('focus',clear);
setTimeout(function(){
range.setStart(me.document.body.firstChild,0).collapse(true).select(true);
me._selectionChange();
})
}
}
return function (cont){
var me = this;
me.document.body.innerHTML = '<p id="initContent">'+cont+'</p>';
if(browser.ie && browser.version < 7 && me.options.relativePath){
replaceSrc(me.document.body);
}
me.addListener('firstBeforeExecCommand',clear);
me.addListener('focus',clear);
}
}()
};
utils.inherits( Editor, EventBase );
})();
| 10npsite | trunk/guanli/system/ueditor/_src/core/Editor.js | JavaScript | asf20 | 24,421 |
///import editor.js
/**
* @class baidu.editor.browser 判断浏览器
*/
var browser = UE.browser = function(){
var agent = navigator.userAgent.toLowerCase(),
opera = window.opera,
browser = {
/**
* 检测浏览器是否为IE
* @name baidu.editor.browser.ie
* @property 检测浏览器是否为IE
* @grammar baidu.editor.browser.ie
* @return {Boolean} 返回是否为ie浏览器
*/
ie : !!window.ActiveXObject,
/**
* 检测浏览器是否为Opera
* @name baidu.editor.browser.opera
* @property 检测浏览器是否为Opera
* @grammar baidu.editor.browser.opera
* @return {Boolean} 返回是否为opera浏览器
*/
opera : ( !!opera && opera.version ),
/**
* 检测浏览器是否为WebKit内核
* @name baidu.editor.browser.webkit
* @property 检测浏览器是否为WebKit内核
* @grammar baidu.editor.browser.webkit
* @return {Boolean} 返回是否为WebKit内核
*/
webkit : ( agent.indexOf( ' applewebkit/' ) > -1 ),
/**
* 检查是否为Macintosh系统
* @name baidu.editor.browser.mac
* @property 检查是否为Macintosh系统
* @grammar baidu.editor.browser.mac
* @return {Boolean} 返回是否为Macintosh系统
*/
mac : ( agent.indexOf( 'macintosh' ) > -1 ),
/**
* 检查浏览器是否为quirks模式
* @name baidu.editor.browser.quirks
* @property 检查浏览器是否为quirks模式
* @grammar baidu.editor.browser.quirks
* @return {Boolean} 返回是否为quirks模式
*/
quirks : ( document.compatMode == 'BackCompat' )
};
/**
* 检测浏览器是否为Gecko内核,如Firefox
* @name baidu.editor.browser.gecko
* @property 检测浏览器是否为Gecko内核
* @grammar baidu.editor.browser.gecko
* @return {Boolean} 返回是否为Gecko内核
*/
browser.gecko = ( navigator.product == 'Gecko' && !browser.webkit && !browser.opera );
var version = 0;
// Internet Explorer 6.0+
if ( browser.ie )
{
version = parseFloat( agent.match( /msie (\d+)/ )[1] );
/**
* 检测浏览器是否为 IE8 浏览器
* @name baidu.editor.browser.IE8
* @property 检测浏览器是否为 IE8 浏览器
* @grammar baidu.editor.browser.IE8
* @return {Boolean} 返回是否为 IE8 浏览器
*/
browser.ie8 = !!document.documentMode;
/**
* 检测浏览器是否为 IE8 模式
* @name baidu.editor.browser.ie8Compat
* @property 检测浏览器是否为 IE8 模式
* @grammar baidu.editor.browser.ie8Compat
* @return {Boolean} 返回是否为 IE8 模式
*/
browser.ie8Compat = document.documentMode == 8;
/**
* 检测浏览器是否运行在 兼容IE7模式
* @name baidu.editor.browser.ie7Compat
* @property 检测浏览器是否为兼容IE7模式
* @grammar baidu.editor.browser.ie7Compat
* @return {Boolean} 返回是否为兼容IE7模式
*/
browser.ie7Compat = ( ( version == 7 && !document.documentMode )
|| document.documentMode == 7 );
/**
* 检测浏览器是否IE6模式或怪异模式
* @name baidu.editor.browser.ie6Compat
* @property 检测浏览器是否IE6 模式或怪异模式
* @grammar baidu.editor.browser.ie6Compat
* @return {Boolean} 返回是否为IE6 模式或怪异模式
*/
browser.ie6Compat = ( version < 7 || browser.quirks );
}
// Gecko.
if ( browser.gecko )
{
var geckoRelease = agent.match( /rv:([\d\.]+)/ );
if ( geckoRelease )
{
geckoRelease = geckoRelease[1].split( '.' );
version = geckoRelease[0] * 10000 + ( geckoRelease[1] || 0 ) * 100 + ( geckoRelease[2] || 0 ) * 1;
}
}
/**
* 检测浏览器是否为chrome
* @name baidu.editor.browser.chrome
* @property 检测浏览器是否为chrome
* @grammar baidu.editor.browser.chrome
* @return {Boolean} 返回是否为chrome浏览器
*/
if (/chrome\/(\d+\.\d)/i.test(agent)) {
browser.chrome = + RegExp['\x241'];
}
/**
* 检测浏览器是否为safari
* @name baidu.editor.browser.safari
* @property 检测浏览器是否为safari
* @grammar baidu.editor.browser.safari
* @return {Boolean} 返回是否为safari浏览器
*/
if(/(\d+\.\d)?(?:\.\d)?\s+safari\/?(\d+\.\d+)?/i.test(agent) && !/chrome/i.test(agent)){
browser.safari = + (RegExp['\x241'] || RegExp['\x242']);
}
// Opera 9.50+
if ( browser.opera )
version = parseFloat( opera.version() );
// WebKit 522+ (Safari 3+)
if ( browser.webkit )
version = parseFloat( agent.match( / applewebkit\/(\d+)/ )[1] );
/**
* 浏览器版本
*
* gecko内核浏览器的版本会转换成这样(如 1.9.0.2 -> 10900).
*
* webkit内核浏览器版本号使用其build号 (如 522).
* @name baidu.editor.browser.version
* @grammar baidu.editor.browser.version
* @return {Boolean} 返回浏览器版本号
* @example
* if ( baidu.editor.browser.ie && <b>baidu.editor.browser.version</b> <= 6 )
* alert( "Ouch!" );
*/
browser.version = version;
/**
* 是否是兼容模式的浏览器
* @name baidu.editor.browser.isCompatible
* @grammar baidu.editor.browser.isCompatible
* @return {Boolean} 返回是否是兼容模式的浏览器
* @example
* if ( baidu.editor.browser.isCompatible )
* alert( "Your browser is pretty cool!" );
*/
browser.isCompatible =
!browser.mobile && (
( browser.ie && version >= 6 ) ||
( browser.gecko && version >= 10801 ) ||
( browser.opera && version >= 9.5 ) ||
( browser.air && version >= 1 ) ||
( browser.webkit && version >= 522 ) ||
false );
return browser;
}();
//快捷方式
var ie = browser.ie,
webkit = browser.webkit,
gecko = browser.gecko; | 10npsite | trunk/guanli/system/ueditor/_src/core/browser.js | JavaScript | asf20 | 6,723 |
///import editor.js
///import core/utils.js
/**
* @class baidu.editor.utils 工具类
*/
var utils = UE.utils =
/**@lends baidu.editor.utils.prototype*/
{
/**
* 以obj为原型创建实例
* @public
* @function
* @param {Object} obj
* @return {Object} 返回新的对象
*/
makeInstance: function(obj) {
var noop = new Function();
noop.prototype = obj;
obj = new noop;
noop.prototype = null;
return obj;
},
/**
* 将s对象中的属性扩展到t对象上
* @public
* @function
* @param {Object} t
* @param {Object} s
* @param {Boolean} b 是否保留已有属性
* @returns {Object} t 返回扩展了s对象属性的t
*/
extend: function(t, s, b) {
if (s) {
for (var k in s) {
if (!b || ! t.hasOwnProperty(k)) {
t[k] = s[k];
}
}
}
return t;
},
/**
* 判断是否为数组
* @public
* @function
* @param {Object} array
* @return {Boolean} true:为数组,false:不为数组
*/
isArray: function(array) {
return Object.prototype.toString.apply(array) === '[object Array]'
},
/**
* 判断是否为字符串
* @public
* @function
* @param {Object} str
* @return {Boolean} true:为字符串。 false:不为字符串
*/
isString: function(str) {
return typeof str == 'string' || str.constructor == String;
},
/**
* subClass继承superClass
* @public
* @function
* @param {Object} subClass 子类
* @param {Object} superClass 超类
* @return {Object} 扩展后的新对象
*/
inherits: function(subClass, superClass) {
var oldP = subClass.prototype,
newP = utils.makeInstance(superClass.prototype);
utils.extend(newP, oldP, true);
subClass.prototype = newP;
return (newP.constructor = subClass);
},
/**
* 为对象绑定函数
* @public
* @function
* @param {Function} fn 函数
* @param {Object} this_ 对象
* @return {Function} 绑定后的函数
*/
bind: function(fn, this_) {
return function() {
return fn.apply(this_, arguments);
};
},
/**
* 创建延迟执行的函数
* @public
* @function
* @param {Function} fn 要执行的函数
* @param {Number} delay 延迟时间,单位为毫秒
* @param {Boolean} exclusion 是否互斥执行,true则执行下一次defer时会先把前一次的延迟函数删除
* @return {Function} 延迟执行的函数
*/
defer: function(fn, delay, exclusion) {
var timerID;
return function() {
if (exclusion) {
clearTimeout(timerID);
}
timerID = setTimeout(fn, delay);
};
},
/**
* 查找元素在数组中的索引, 若找不到返回-1
* @public
* @function
* @param {Array} array 要查找的数组
* @param {*} item 查找的元素
* @param {Number} at 开始查找的位置
* @returns {Number} 返回在数组中的索引
*/
indexOf: function(array, item, at) {
for(var i=at||0,l = array.length;i<l;i++){
if(array[i] === item){
return i;
}
}
return -1;
},
findNode : function(nodes,tagNames,fn){
for(var i=0,ci;ci=nodes[i++];){
if(fn? fn(ci) : this.indexOf(tagNames,ci.tagName.toLowerCase())!=-1){
return ci;
}
}
},
/**
* 移除数组中的元素
* @public
* @function
* @param {Array} array 要删除元素的数组
* @param {*} item 要删除的元素
*/
removeItem: function(array, item) {
for(var i=0,l = array.length;i<l;i++){
if(array[i] === item){
array.splice(i,1);
i--;
}
}
},
/**
* 删除字符串首尾空格
* @public
* @function
* @param {String} str 字符串
* @return {String} str 删除空格后的字符串
*/
trim: function(str) {
return str.replace(/(^[ \t\n\r]+)|([ \t\n\r]+$)/g, '');
},
/**
* 将字符串转换成hashmap
* @public
* @function
* @param {String/Array} list 字符串,以‘,’隔开
* @returns {Object} 转成hashmap的对象
*/
listToMap: function(list) {
if(!list)return {};
list = utils.isArray(list) ? list : list.split(',');
for(var i=0,ci,obj={};ci=list[i++];){
obj[ci.toUpperCase()] = obj[ci] = 1;
}
return obj;
},
/**
* 将str中的html符号转义
* @public
* @function
* @param {String} str 需要转义的字符串
* @returns {String} 转义后的字符串
*/
unhtml: function(str) {
return str ? str.replace(/[&<">]/g, function(m){
return {
'<': '<',
'&': '&',
'"': '"',
'>': '>'
}[m]
}) : '';
},
/**
* 将css样式转换为驼峰的形式。如font-size -> fontSize
* @public
* @function
* @param {String} cssName 需要转换的样式
* @returns {String} 转换后的样式
*/
cssStyleToDomStyle: function() {
var test = document.createElement('div').style,
cache = {
'float': test.cssFloat != undefined ? 'cssFloat' : test.styleFloat != undefined ? 'styleFloat': 'float'
};
return function(cssName) {
return cache[cssName] || (cache[cssName] = cssName.toLowerCase().replace(/-./g, function(match){return match.charAt(1).toUpperCase();}));
};
}(),
/**
* 加载css文件,执行回调函数
* @public
* @function
* @param {document} doc document对象
* @param {String} path 文件路径
* @param {Function} fun 回调函数
* @param {String} id 元素id
*/
loadFile : function(doc,obj,fun){
if (obj.id && doc.getElementById(obj.id)) {
return;
}
var element = doc.createElement(obj.tag);
delete obj.tag;
for(var p in obj){
element.setAttribute(p,obj[p]);
}
element.onload = element.onreadystatechange = function() {
if (!this.readyState || /loaded|complete/.test(this.readyState)) {
fun && fun();
element.onload = element.onreadystatechange = null;
}
};
doc.getElementsByTagName("head")[0].appendChild(element);
},
/**
* 判断对象是否为空
* @param {Object} obj
* @return {Boolean} true 空,false 不空
*/
isEmptyObject : function(obj){
for ( var p in obj ) {
return false;
}
return true;
},
fixColor : function (name, value) {
if (/color/i.test(name) && /rgba?/.test(value)) {
var array = value.split(",");
if (array.length > 3)
return "";
value = "#";
for (var i = 0, color; color = array[i++];) {
color = parseInt(color.replace(/[^\d]/gi, ''), 10).toString(16);
value += color.length == 1 ? "0" + color : color;
}
value = value.toUpperCase();
}
return value;
},
/**
* 只针对border,padding,margin做了处理,因为性能问题
* @public
* @function
* @param {String} val style字符串
*/
optCss : function(val){
var padding,margin,border;
val = val.replace(/(padding|margin|border)\-([^:]+):([^;]+);?/gi,function(str,key,name,val){
if(val.split(' ').length == 1){
switch (key){
case 'padding':
!padding && (padding = {});
padding[name] = val;
return '';
case 'margin':
!margin && (margin = {});
margin[name] = val;
return '';
case 'border':
return val == 'initial' ? '' : str;
}
}
return str
});
function opt(obj,name){
if(!obj)
return ''
var t = obj.top ,b = obj.bottom,l = obj.left,r = obj.right,val = '';
if(!t || !l || !b || !r){
for(var p in obj){
val +=';'+name+'-' + p + ':' + obj[p]+';';
}
}else{
val += ';'+name+':' +
(t == b && b == l && l == r ? t :
t == b && l == r ? (t + ' ' + l) :
l == r ? (t + ' ' + l + ' ' + b) : (t + ' ' + r + ' ' + b + ' ' + l))+';'
}
return val;
}
val += opt(padding,'padding') + opt(margin,'margin');
return val.replace(/^[ \n\r\t;]*|[ \n\r\t]*$/,'').replace(/;([ \n\r\t]+)|\1;/g,';')
.replace(/(&((l|g)t|quot|#39))?;{2,}/g,function(a,b){
return b ? b + ";;" : ';'
})
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/core/utils.js | JavaScript | asf20 | 10,468 |
///import editor.js
///import core/dom/dom.js
/**
* dtd html语义化的体现类
* @constructor
* @namespace dtd
*/
var dtd = dom.dtd = (function() {
function _( s ) {
for (var k in s) {
s[k.toUpperCase()] = s[k];
}
return s;
}
function X( t ) {
var a = arguments;
for ( var i=1; i<a.length; i++ ) {
var x = a[i];
for ( var k in x ) {
if (!t.hasOwnProperty(k)) {
t[k] = x[k];
}
}
}
return t;
}
var A = _({isindex:1,fieldset:1}),
B = _({input:1,button:1,select:1,textarea:1,label:1}),
C = X( _({a:1}), B ),
D = X( {iframe:1}, C ),
E = _({hr:1,ul:1,menu:1,div:1,blockquote:1,noscript:1,table:1,center:1,address:1,dir:1,pre:1,h5:1,dl:1,h4:1,noframes:1,h6:1,ol:1,h1:1,h3:1,h2:1}),
F = _({ins:1,del:1,script:1,style:1}),
G = X( _({b:1,acronym:1,bdo:1,'var':1,'#':1,abbr:1,code:1,br:1,i:1,cite:1,kbd:1,u:1,strike:1,s:1,tt:1,strong:1,q:1,samp:1,em:1,dfn:1,span:1}), F ),
H = X( _({sub:1,img:1,embed:1,object:1,sup:1,basefont:1,map:1,applet:1,font:1,big:1,small:1}), G ),
I = X( _({p:1}), H ),
J = X( _({iframe:1}), H, B ),
K = _({img:1,embed:1,noscript:1,br:1,kbd:1,center:1,button:1,basefont:1,h5:1,h4:1,samp:1,h6:1,ol:1,h1:1,h3:1,h2:1,form:1,font:1,'#':1,select:1,menu:1,ins:1,abbr:1,label:1,code:1,table:1,script:1,cite:1,input:1,iframe:1,strong:1,textarea:1,noframes:1,big:1,small:1,span:1,hr:1,sub:1,bdo:1,'var':1,div:1,object:1,sup:1,strike:1,dir:1,map:1,dl:1,applet:1,del:1,isindex:1,fieldset:1,ul:1,b:1,acronym:1,a:1,blockquote:1,i:1,u:1,s:1,tt:1,address:1,q:1,pre:1,p:1,em:1,dfn:1}),
L = X( _({a:0}), J ),//a不能被切开,所以把他
M = _({tr:1}),
N = _({'#':1}),
O = X( _({param:1}), K ),
P = X( _({form:1}), A, D, E, I ),
Q = _({li:1}),
R = _({style:1,script:1}),
S = _({base:1,link:1,meta:1,title:1}),
T = X( S, R ),
U = _({head:1,body:1}),
V = _({html:1});
var block = _({address:1,blockquote:1,center:1,dir:1,div:1,dl:1,fieldset:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,hr:1,isindex:1,menu:1,noframes:1,ol:1,p:1,pre:1,table:1,ul:1}),
//针对优酷的embed他添加了结束标识,导致粘贴进来会变成两个,暂时去掉 ,embed:1
empty = _({area:1,base:1,br:1,col:1,hr:1,img:1,input:1,link:1,meta:1,param:1,embed:1});
return _({
// $ 表示自定的属性
// body外的元素列表.
$nonBodyContent: X( V, U, S ),
//块结构元素列表
$block : block,
//内联元素列表
$inline : L,
$body : X( _({script:1,style:1}), block ),
$cdata : _({script:1,style:1}),
//自闭和元素
$empty : empty,
//不是自闭合,但不能让range选中里边
$nonChild : _({iframe:1}),
//列表元素列表
$listItem : _({dd:1,dt:1,li:1}),
//列表根元素列表
$list: _({ul:1,ol:1,dl:1}),
//不能认为是空的元素
$isNotEmpty : _({table:1,ul:1,ol:1,dl:1,iframe:1,area:1,base:1,col:1,hr:1,img:1,embed:1,input:1,link:1,meta:1,param:1}),
//如果没有子节点就可以删除的元素列表,像span,a
$removeEmpty : _({a:1,abbr:1,acronym:1,address:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,s:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,'var':1}),
$removeEmptyBlock : _({'p':1,'div':1}),
//在table元素里的元素列表
$tableContent : _({caption:1,col:1,colgroup:1,tbody:1,td:1,tfoot:1,th:1,thead:1,tr:1,table:1}),
//不转换的标签
$notTransContent : _({pre:1,script:1,style:1,textarea:1}),
html: U,
head: T,
style: N,
script: N,
body: P,
base: {},
link: {},
meta: {},
title: N,
col : {},
tr : _({td:1,th:1}),
img : {},
embed: {},
colgroup : _({thead:1,col:1,tbody:1,tr:1,tfoot:1}),
noscript : P,
td : P,
br : {},
th : P,
center : P,
kbd : L,
button : X( I, E ),
basefont : {},
h5 : L,
h4 : L,
samp : L,
h6 : L,
ol : Q,
h1 : L,
h3 : L,
option : N,
h2 : L,
form : X( A, D, E, I ),
select : _({optgroup:1,option:1}),
font : L,
ins : L,
menu : Q,
abbr : L,
label : L,
table : _({thead:1,col:1,tbody:1,tr:1,colgroup:1,caption:1,tfoot:1}),
code : L,
tfoot : M,
cite : L,
li : P,
input : {},
iframe : P,
strong : L,
textarea : N,
noframes : P,
big : L,
small : L,
span :_({'#':1,br:1}),
hr : L,
dt : L,
sub : L,
optgroup : _({option:1}),
param : {},
bdo : L,
'var' : L,
div : P,
object : O,
sup : L,
dd : P,
strike : L,
area : {},
dir : Q,
map : X( _({area:1,form:1,p:1}), A, F, E ),
applet : O,
dl : _({dt:1,dd:1}),
del : L,
isindex : {},
fieldset : X( _({legend:1}), K ),
thead : M,
ul : Q,
acronym : L,
b : L,
a : X( _({a:1}), J ),
blockquote :X(_({td:1,tr:1,tbody:1,li:1}),P),
caption : L,
i : L,
u : L,
tbody : M,
s : L,
address : X( D, I ),
tt : L,
legend : L,
q : L,
pre : X( G, C ),
p : X(_({'a':1}),L),
em :L,
dfn : L
});
})();
| 10npsite | trunk/guanli/system/ueditor/_src/core/dom/dtd.js | JavaScript | asf20 | 6,026 |
///import editor.js
///import core/browser.js
///import core/dom/dom.js
///import core/dom/dtd.js
///import core/dom/domUtils.js
///import core/dom/Range.js
/**
* @class baidu.editor.dom.Selection Selection类
*/
(function () {
function getBoundaryInformation( range, start ) {
var getIndex = domUtils.getNodeIndex;
range = range.duplicate();
range.collapse( start );
var parent = range.parentElement();
//如果节点里没有子节点,直接退出
if ( !parent.hasChildNodes() ) {
return {container:parent,offset:0};
}
var siblings = parent.children,
child,
testRange = range.duplicate(),
startIndex = 0,endIndex = siblings.length - 1,index = -1,
distance;
while ( startIndex <= endIndex ) {
index = Math.floor( (startIndex + endIndex) / 2 );
child = siblings[index];
testRange.moveToElementText( child );
var position = testRange.compareEndPoints( 'StartToStart', range );
if ( position > 0 ) {
endIndex = index - 1;
} else if ( position < 0 ) {
startIndex = index + 1;
} else {
//trace:1043
return {container:parent,offset:getIndex( child )};
}
}
if ( index == -1 ) {
testRange.moveToElementText( parent );
testRange.setEndPoint( 'StartToStart', range );
distance = testRange.text.replace( /(\r\n|\r)/g, '\n' ).length;
siblings = parent.childNodes;
if ( !distance ) {
child = siblings[siblings.length - 1];
return {container:child,offset:child.nodeValue.length};
}
var i = siblings.length;
while ( distance > 0 )
distance -= siblings[ --i ].nodeValue.length;
return {container:siblings[i],offset:-distance}
}
testRange.collapse( position > 0 );
testRange.setEndPoint( position > 0 ? 'StartToStart' : 'EndToStart', range );
distance = testRange.text.replace( /(\r\n|\r)/g, '\n' ).length;
if ( !distance ) {
return dtd.$empty[child.tagName] || dtd.$nonChild[child.tagName]?
{container : parent,offset:getIndex( child ) + (position > 0 ? 0 : 1)} :
{container : child,offset: position > 0 ? 0 : child.childNodes.length}
}
while ( distance > 0 ) {
try{
var pre = child;
child = child[position > 0 ? 'previousSibling' : 'nextSibling'];
distance -= child.nodeValue.length;
}catch(e){
return {container:parent,offset:getIndex(pre)};
}
}
return {container:child,offset:position > 0 ? -distance : child.nodeValue.length + distance}
}
/**
* 将ieRange转换为Range对象
* @param {Range} ieRange ieRange对象
* @param {Range} range Range对象
* @return {Range} range 返回转换后的Range对象
*/
function transformIERangeToRange( ieRange, range ) {
if ( ieRange.item ) {
range.selectNode( ieRange.item( 0 ) );
} else {
var bi = getBoundaryInformation( ieRange, true );
range.setStart( bi.container, bi.offset );
if ( ieRange.compareEndPoints( 'StartToEnd',ieRange ) != 0 ) {
bi = getBoundaryInformation( ieRange, false );
range.setEnd( bi.container, bi.offset );
}
}
return range;
}
/**
* 获得ieRange
* @param {Selection} sel Selection对象
* @return {ieRange} 得到ieRange
*/
function _getIERange(sel){
var ieRange;
//ie下有可能报错
try{
ieRange = sel.getNative().createRange();
}catch(e){
return null;
}
var el = ieRange.item ? ieRange.item( 0 ) : ieRange.parentElement();
if ( ( el.ownerDocument || el ) === sel.document ) {
return ieRange;
}
return null;
}
var Selection = dom.Selection = function ( doc ) {
var me = this, iframe;
me.document = doc;
if ( ie ) {
iframe = domUtils.getWindow(doc).frameElement;
domUtils.on( iframe, 'beforedeactivate', function () {
me._bakIERange = me.getIERange();
} );
domUtils.on( iframe, 'activate', function () {
try {
if ( !_getIERange(me) && me._bakIERange ) {
me._bakIERange.select();
}
} catch ( ex ) {
}
me._bakIERange = null;
} );
}
iframe = doc = null;
};
Selection.prototype = {
/**
* 获取原生seleciton对象
* @public
* @function
* @name baidu.editor.dom.Selection.getNative
* @return {Selection} 获得selection对象
*/
getNative : function () {
var doc = this.document;
return !doc ? null : ie ? doc.selection : domUtils.getWindow( doc ).getSelection();
},
/**
* 获得ieRange
* @public
* @function
* @name baidu.editor.dom.Selection.getIERange
* @return {ieRange} 返回ie原生的Range
*/
getIERange : function () {
var ieRange = _getIERange(this);
if ( !ieRange ) {
if ( this._bakIERange ) {
return this._bakIERange;
}
}
return ieRange;
},
/**
* 缓存当前选区的range和选区的开始节点
* @public
* @function
* @name baidu.editor.dom.Selection.cache
*/
cache : function () {
this.clear();
this._cachedRange = this.getRange();
this._cachedStartElement = this.getStart();
this._cachedStartElementPath = this.getStartElementPath();
},
getStartElementPath : function(){
if(this._cachedStartElementPath){
return this._cachedStartElementPath;
}
var start = this.getStart();
if(start){
return domUtils.findParents(start,true,null,true)
}
return [];
},
/**
* 清空缓存
* @public
* @function
* @name baidu.editor.dom.Selection.clear
*/
clear : function () {
this._cachedStartElementPath = this._cachedRange = this._cachedStartElement = null;
},
/**
* 编辑器是否得到了选区
*/
isFocus : function(){
return browser.ie && _getIERange(this) || !browser.ie && this.getNative().rangeCount ? true : false;
},
/**
* 获取选区对应的Range
* @public
* @function
* @name baidu.editor.dom.Selection.getRange
* @returns {baidu.editor.dom.Range} 得到Range对象
*/
getRange : function () {
var me = this;
function optimze(range){
var child = me.document.body.firstChild,
collapsed = range.collapsed;
while(child && child.firstChild){
range.setStart(child,0);
child = child.firstChild;
}
if(!range.startContainer){
range.setStart(me.document.body,0)
}
if(collapsed){
range.collapse(true);
}
}
if ( me._cachedRange != null ) {
return this._cachedRange;
}
var range = new baidu.editor.dom.Range( me.document );
if ( ie ) {
var nativeRange = me.getIERange();
if(nativeRange){
transformIERangeToRange( nativeRange, range );
}else{
optimze(range)
}
} else {
var sel = me.getNative();
if ( sel && sel.rangeCount ) {
var firstRange = sel.getRangeAt( 0 ) ;
var lastRange = sel.getRangeAt( sel.rangeCount - 1 );
range.setStart( firstRange.startContainer, firstRange.startOffset ).setEnd( lastRange.endContainer, lastRange.endOffset );
if(range.collapsed && domUtils.isBody(range.startContainer) && !range.startOffset){
optimze(range)
}
} else {
//trace:1734 有可能已经不在dom树上了,标识的节点
if(this._bakRange && domUtils.inDoc(this._bakRange.startContainer,this.document))
return this._bakRange;
optimze(range)
}
}
return this._bakRange = range;
},
/**
* 获取开始元素,用于状态反射
* @public
* @function
* @name baidu.editor.dom.Selection.getStart
* @return {Element} 获得开始元素
*/
getStart : function () {
if ( this._cachedStartElement ) {
return this._cachedStartElement;
}
var range = ie ? this.getIERange() : this.getRange(),
tmpRange,
start,tmp,parent;
if (ie) {
if(!range){
//todo 给第一个值可能会有问题
return this.document.body.firstChild;
}
//control元素
if (range.item)
return range.item(0);
tmpRange = range.duplicate();
//修正ie下<b>x</b>[xx] 闭合后 <b>x|</b>xx
tmpRange.text.length > 0 && tmpRange.moveStart('character',1);
tmpRange.collapse(1);
start = tmpRange.parentElement();
parent = tmp = range.parentElement();
while (tmp = tmp.parentNode) {
if (tmp == start) {
start = parent;
break;
}
}
} else {
range.shrinkBoundary();
start = range.startContainer;
if (start.nodeType == 1 && start.hasChildNodes())
start = start.childNodes[Math.min(start.childNodes.length - 1, range.startOffset)];
if (start.nodeType == 3)
return start.parentNode;
}
return start;
},
/**
* 得到选区中的文本
* @public
* @function
* @name baidu.editor.dom.Selection.getText
* @return {String} 选区中包含的文本
*/
getText : function(){
if(this.isFocus()){
var nativeSel = this.getNative(),
nativeRange = browser.ie ? nativeSel.createRange() : nativeSel.getRangeAt(0);
return nativeRange.text || nativeRange.toString();
}
return '';
}
};
})(); | 10npsite | trunk/guanli/system/ueditor/_src/core/dom/Selection.js | JavaScript | asf20 | 11,922 |
///import editor.js
///import core/utils.js
///import core/browser.js
///import core/dom/dom.js
///import core/dom/dtd.js
/**
* @class baidu.editor.dom.domUtils dom工具类
*/
//for getNextDomNode getPreviousDomNode
function getDomNode(node, start, ltr, startFromChild, fn, guard) {
var tmpNode = startFromChild && node[start],
parent;
!tmpNode && (tmpNode = node[ltr]);
while (!tmpNode && (parent = (parent || node).parentNode)) {
if (parent.tagName == 'BODY' || guard && !guard(parent))
return null;
tmpNode = parent[ltr];
}
if (tmpNode && fn && !fn(tmpNode)) {
return getDomNode(tmpNode, start, ltr, false, fn)
}
return tmpNode;
}
var attrFix = ie && browser.version < 9 ? {
tabindex: "tabIndex",
readonly: "readOnly",
"for": "htmlFor",
"class": "className",
maxlength: "maxLength",
cellspacing: "cellSpacing",
cellpadding: "cellPadding",
rowspan: "rowSpan",
colspan: "colSpan",
usemap: "useMap",
frameborder: "frameBorder"
} : {
tabindex: "tabIndex",
readonly: "readOnly"
},
styleBlock = utils.listToMap([
'-webkit-box','-moz-box','block' ,
'list-item' ,'table' ,'table-row-group' ,
'table-header-group','table-footer-group' ,
'table-row' ,'table-column-group' ,'table-column' ,
'table-cell' ,'table-caption'
]);
var domUtils = dom.domUtils = {
//节点常量
NODE_ELEMENT : 1,
NODE_DOCUMENT : 9,
NODE_TEXT : 3,
NODE_COMMENT : 8,
NODE_DOCUMENT_FRAGMENT : 11,
//位置关系
POSITION_IDENTICAL : 0,
POSITION_DISCONNECTED : 1,
POSITION_FOLLOWING : 2,
POSITION_PRECEDING : 4,
POSITION_IS_CONTAINED : 8,
POSITION_CONTAINS : 16,
//ie6使用其他的会有一段空白出现
fillChar : ie && browser.version == '6' ? '\ufeff' : '\u200B',
//-------------------------Node部分--------------------------------
keys : {
/*Backspace*/ 8:1, /*Delete*/ 46:1,
/*Shift*/ 16:1, /*Ctrl*/ 17:1, /*Alt*/ 18:1,
37:1, 38:1, 39:1, 40:1,
13:1 /*enter*/
},
/**
* 获取两个节点的位置关系
* @function
* @param {Node} nodeA 节点A
* @param {Node} nodeB 节点B
* @returns {Number} 返回位置关系
*/
getPosition : function (nodeA, nodeB) {
// 如果两个节点是同一个节点
if (nodeA === nodeB) {
// domUtils.POSITION_IDENTICAL
return 0;
}
var node,
parentsA = [nodeA],
parentsB = [nodeB];
node = nodeA;
while (node = node.parentNode) {
// 如果nodeB是nodeA的祖先节点
if (node === nodeB) {
// domUtils.POSITION_IS_CONTAINED + domUtils.POSITION_FOLLOWING
return 10;
}
parentsA.push(node);
}
node = nodeB;
while (node = node.parentNode) {
// 如果nodeA是nodeB的祖先节点
if (node === nodeA) {
// domUtils.POSITION_CONTAINS + domUtils.POSITION_PRECEDING
return 20;
}
parentsB.push(node);
}
parentsA.reverse();
parentsB.reverse();
if (parentsA[0] !== parentsB[0])
// domUtils.POSITION_DISCONNECTED
return 1;
var i = -1;
while (i++,parentsA[i] === parentsB[i]) ;
nodeA = parentsA[i];
nodeB = parentsB[i];
while (nodeA = nodeA.nextSibling) {
if (nodeA === nodeB) {
// domUtils.POSITION_PRECEDING
return 4
}
}
// domUtils.POSITION_FOLLOWING
return 2;
},
/**
* 返回节点索引,zero-based
* @function
* @param {Node} node 节点
* @returns {Number} 节点的索引
*/
getNodeIndex : function (node) {
var child = node.parentNode.firstChild,i = 0;
while(node!==child){
i++;
child = child.nextSibling;
}
return i;
},
/**
* 判断节点是否在树上
* @param node
*/
inDoc: function (node, doc){
while (node = node.parentNode) {
if (node === doc) {
return true;
}
}
return false;
},
/**
* 查找祖先节点
* @function
* @param {Node} node 节点
* @param {Function} tester 以函数为规律
* @param {Boolean} includeSelf 包含自己
* @returns {Node} 返回祖先节点
*/
findParent : function (node, tester, includeSelf) {
if (!domUtils.isBody(node)) {
node = includeSelf ? node : node.parentNode;
while (node) {
if (!tester || tester(node) || this.isBody(node)) {
return tester && !tester(node) && this.isBody(node) ? null : node;
}
node = node.parentNode;
}
}
return null;
},
/**
* 查找祖先节点
* @function
* @param {Node} node 节点
* @param {String} tagName 标签名称
* @param {Boolean} includeSelf 包含自己
* @returns {Node} 返回祖先节点
*/
findParentByTagName : function(node, tagName, includeSelf,excludeFn) {
if (node && node.nodeType && !this.isBody(node) && (node.nodeType == 1 || node.nodeType)) {
tagName = utils.listToMap(utils.isArray(tagName) ? tagName : [tagName]);
node = node.nodeType == 3 || !includeSelf ? node.parentNode : node;
while (node && node.tagName && node.nodeType != 9) {
if(excludeFn && excludeFn(node))
break;
if (tagName[node.tagName])
return node;
node = node.parentNode;
}
}
return null;
},
/**
* 查找祖先节点集合
* @param {Node} node 节点
* @param {Function} tester 函数
* @param {Boolean} includeSelf 是否从自身开始找
* @param {Boolean} closerFirst
* @returns {Array} 祖先节点集合
*/
findParents: function (node, includeSelf, tester, closerFirst) {
var parents = includeSelf && ( tester && tester(node) || !tester ) ? [node] : [];
while (node = domUtils.findParent(node, tester)) {
parents.push(node);
}
return closerFirst ? parents : parents.reverse();
},
/**
* 往后插入节点
* @function
* @param {Node} node 基准节点
* @param {Node} nodeToInsert 要插入的节点
* @return {Node} 返回node
*/
insertAfter : function (node, nodeToInsert) {
return node.parentNode.insertBefore(nodeToInsert, node.nextSibling);
},
/**
* 删除该节点
* @function
* @param {Node} node 要删除的节点
* @param {Boolean} keepChildren 是否保留子节点不删除
* @return {Node} 返回要删除的节点
*/
remove : function (node, keepChildren) {
var parent = node.parentNode,
child;
if (parent) {
if (keepChildren && node.hasChildNodes()) {
while (child = node.firstChild) {
parent.insertBefore(child, node);
}
}
parent.removeChild(node);
}
return node;
},
/**
* 取得node节点在dom树上的下一个节点
* @function
* @param {Node} node 节点
* @param {Boolean} startFromChild 为true从子节点开始找
* @param {Function} fn fn为真的节点
* @return {Node} 返回下一个节点
*/
getNextDomNode : function(node, startFromChild, filter, guard) {
return getDomNode(node, 'firstChild', 'nextSibling', startFromChild, filter, guard);
},
/**
* 是bookmark节点
* @param {Node} node 判断是否为书签节点
* @return {Boolean} 返回是否为书签节点
*/
isBookmarkNode : function(node) {
return node.nodeType == 1 && node.id && /^_baidu_bookmark_/i.test(node.id);
},
/**
* 获取节点所在window对象
* @param {Node} node 节点
* @return {window} 返回window对象
*/
getWindow : function (node) {
var doc = node.ownerDocument || node;
return doc.defaultView || doc.parentWindow;
},
/**
* 得到公共的祖先节点
* @param {Node} nodeA 节点A
* @param {Node} nodeB 节点B
* @return {Node} nodeA和nodeB的公共节点
*/
getCommonAncestor : function(nodeA, nodeB) {
if (nodeA === nodeB)
return nodeA;
var parentsA = [nodeA] ,parentsB = [nodeB], parent = nodeA,
i = -1;
while (parent = parent.parentNode) {
if (parent === nodeB)
return parent;
parentsA.push(parent)
}
parent = nodeB;
while (parent = parent.parentNode) {
if (parent === nodeA)
return parent;
parentsB.push(parent)
}
parentsA.reverse();
parentsB.reverse();
while (i++,parentsA[i] === parentsB[i]);
return i == 0 ? null : parentsA[i - 1];
},
/**
* 清除该节点左右空的inline节点
* @function
* @param {Node} node
* @param {Boolean} ingoreNext 默认为false清除右边为空的inline节点。true为不清除右边为空的inline节点
* @param {Boolean} ingorePre 默认为false清除左边为空的inline节点。true为不清除左边为空的inline节点
* @exmaple <b></b><i></i>xxxx<b>bb</b> --> xxxx<b>bb</b>
*/
clearEmptySibling : function(node, ingoreNext, ingorePre) {
function clear(next, dir) {
var tmpNode;
while(next && !domUtils.isBookmarkNode(next) && (domUtils.isEmptyInlineElement(next) || domUtils.isWhitespace(next) )){
tmpNode = next[dir];
domUtils.remove(next);
next = tmpNode;
}
}
!ingoreNext && clear(node.nextSibling, 'nextSibling');
!ingorePre && clear(node.previousSibling, 'previousSibling');
},
//---------------------------Text----------------------------------
/**
* 将一个文本节点拆分成两个文本节点
* @param {TextNode} node 文本节点
* @param {Integer} offset 拆分的位置
* @return {TextNode} 拆分后的后一个文本节
*/
split: function (node, offset) {
var doc = node.ownerDocument;
if (browser.ie && offset == node.nodeValue.length) {
var next = doc.createTextNode('');
return domUtils.insertAfter(node, next);
}
var retval = node.splitText(offset);
//ie8下splitText不会跟新childNodes,我们手动触发他的更新
if (browser.ie8) {
var tmpNode = doc.createTextNode('');
domUtils.insertAfter(retval, tmpNode);
domUtils.remove(tmpNode);
}
return retval;
},
/**
* 判断是否为空白节点
* @param {TextNode} node 节点
* @return {Boolean} 返回是否为文本节点
*/
isWhitespace : function(node) {
return !new RegExp('[^ \t\n\r' + domUtils.fillChar + ']').test(node.nodeValue);
},
//------------------------------Element-------------------------------------------
/**
* 获取元素相对于viewport的像素坐标
* @param {Element} element 元素
* @returns {Object} 返回坐标对象{x:left,y:top}
*/
getXY : function (element) {
var x = 0,y = 0;
while (element.offsetParent) {
y += element.offsetTop;
x += element.offsetLeft;
element = element.offsetParent;
}
return {
'x': x,
'y': y
};
},
/**
* 绑原生DOM事件
* @param {Element|Window|Document} target 元素
* @param {Array|String} type 事件类型
* @param {Function} handler 执行函数
*/
on : function (obj, type, handler) {
var types = type instanceof Array ? type : [type],
k = types.length;
if (k) while (k --) {
type = types[k];
if (obj.addEventListener) {
obj.addEventListener(type, handler, false);
} else {
if(!handler._d)
handler._d ={};
var key = type+handler.toString();
if(!handler._d[key]){
handler._d[key] = function(evt) {
return handler.call(evt.srcElement, evt || window.event);
};
obj.attachEvent('on' + type,handler._d[key]);
}
}
}
obj = null;
},
/**
* 解除原生DOM事件绑定
* @param {Element|Window|Document} obj 元素
* @param {Array|String} type 事件类型
* @param {Function} handler 执行函数
*/
un : function (obj, type, handler) {
var types = type instanceof Array ? type : [type],
k = types.length;
if (k) while (k --) {
type = types[k];
if (obj.removeEventListener) {
obj.removeEventListener(type, handler, false);
} else {
var key = type+handler.toString();
obj.detachEvent('on' + type, handler._d ? handler._d[key] : handler);
if(handler._d && handler._d[key]){
delete handler._d[key];
}
}
}
},
/**
* 比较两个节点是否tagName相同且有相同的属性和属性值
* @param {Element} nodeA 节点A
* @param {Element} nodeB 节点B
* @return {Boolean} 返回两个节点的标签,属性和属性值是否相同
* @example
* <span style="font-size:12px">ssss</span>和<span style="font-size:12px">bbbbb</span> 相等
* <span style="font-size:13px">ssss</span>和<span style="font-size:12px">bbbbb</span> 不相等
*/
isSameElement : function(nodeA, nodeB) {
if (nodeA.tagName != nodeB.tagName)
return 0;
var thisAttribs = nodeA.attributes,
otherAttribs = nodeB.attributes;
if (!ie && thisAttribs.length != otherAttribs.length)
return 0;
var attrA,attrB,al = 0,bl=0;
for(var i= 0;attrA=thisAttribs[i++];){
if(attrA.nodeName == 'style' ){
if(attrA.specified)al++;
if(domUtils.isSameStyle(nodeA,nodeB)){
continue
}else{
return 0;
}
}
if(ie){
if(attrA.specified){
al++;
attrB = otherAttribs.getNamedItem(attrA.nodeName);
}else{
continue;
}
}else{
attrB = nodeB.attributes[attrA.nodeName];
}
if(!attrB.specified)return 0;
if(attrA.nodeValue != attrB.nodeValue)
return 0;
}
// 有可能attrB的属性包含了attrA的属性之外还有自己的属性
if(ie){
for(i=0;attrB = otherAttribs[i++];){
if(attrB.specified){
bl++;
}
}
if(al!=bl)
return 0;
}
return 1;
},
/**
* 判断两个元素的style属性是不是一致
* @param {Element} elementA 元素A
* @param {Element} elementB 元素B
* @return {boolean} 返回判断结果,true为一致
*/
isSameStyle : function (elementA, elementB) {
var styleA = elementA.style.cssText.replace(/( ?; ?)/g,';').replace(/( ?: ?)/g,':'),
styleB = elementB.style.cssText.replace(/( ?; ?)/g,';').replace(/( ?: ?)/g,':');
if(!styleA || !styleB){
return styleA == styleB ? 1: 0;
}
styleA = styleA.split(';');
styleB = styleB.split(';');
if(styleA.length != styleB.length)
return 0;
for(var i = 0,ci;ci=styleA[i++];){
if(utils.indexOf(styleB,ci) == -1)
return 0
}
return 1;
},
/**
* 检查是否为块元素
* @function
* @param {Element} node 元素
* @param {String} customNodeNames 自定义的块元素的tagName
* @return {Boolean} 是否为块元素
*/
isBlockElm : function (node) {
return node.nodeType == 1 && (dtd.$block[node.tagName]||styleBlock[domUtils.getComputedStyle(node,'display')])&& !dtd.$nonChild[node.tagName];
},
/**
* 判断是否body
* @param {Node} 节点
* @return {Boolean} 是否是body节点
*/
isBody : function(node) {
return node && node.nodeType == 1 && node.tagName.toLowerCase() == 'body';
},
/**
* 以node节点为中心,将该节点的父节点拆分成2块
* @param {Element} node 节点
* @param {Element} parent 要被拆分的父节点
* @example <div>xxxx<b>xxx</b>xxx</div> ==> <div>xxx</div><b>xx</b><div>xxx</div>
*/
breakParent : function(node, parent) {
var tmpNode, parentClone = node, clone = node, leftNodes, rightNodes;
do {
parentClone = parentClone.parentNode;
if (leftNodes) {
tmpNode = parentClone.cloneNode(false);
tmpNode.appendChild(leftNodes);
leftNodes = tmpNode;
tmpNode = parentClone.cloneNode(false);
tmpNode.appendChild(rightNodes);
rightNodes = tmpNode;
} else {
leftNodes = parentClone.cloneNode(false);
rightNodes = leftNodes.cloneNode(false);
}
while (tmpNode = clone.previousSibling) {
leftNodes.insertBefore(tmpNode, leftNodes.firstChild);
}
while (tmpNode = clone.nextSibling) {
rightNodes.appendChild(tmpNode);
}
clone = parentClone;
} while (parent !== parentClone);
tmpNode = parent.parentNode;
tmpNode.insertBefore(leftNodes, parent);
tmpNode.insertBefore(rightNodes, parent);
tmpNode.insertBefore(node, rightNodes);
domUtils.remove(parent);
return node;
},
/**
* 检查是否是空inline节点
* @param {Node} node 节点
* @return {Boolean} 返回1为是,0为否
* @example
* <b><i></i></b> //true
* <b><i></i><u></u></b> true
* <b></b> true <b>xx<i></i></b> //false
*/
isEmptyInlineElement : function(node) {
if (node.nodeType != 1 || !dtd.$removeEmpty[ node.tagName ])
return 0;
node = node.firstChild;
while (node) {
//如果是创建的bookmark就跳过
if (domUtils.isBookmarkNode(node))
return 0;
if (node.nodeType == 1 && !domUtils.isEmptyInlineElement(node) ||
node.nodeType == 3 && !domUtils.isWhitespace(node)
) {
return 0;
}
node = node.nextSibling;
}
return 1;
},
/**
* 删除空白子节点
* @param {Element} node 需要删除空白子节点的元素
*/
trimWhiteTextNode : function(node) {
function remove(dir) {
var child;
while ((child = node[dir]) && child.nodeType == 3 && domUtils.isWhitespace(child))
node.removeChild(child)
}
remove('firstChild');
remove('lastChild');
},
/**
* 合并子节点
* @param {Node} node 节点
* @param {String} tagName 标签
* @param {String} attrs 属性
* @example <span style="font-size:12px;">xx<span style="font-size:12px;">aa</span>xx</span 使用后
* <span style="font-size:12px;">xxaaxx</span
*/
mergChild : function(node, tagName, attrs) {
var list = domUtils.getElementsByTagName(node, node.tagName.toLowerCase());
for (var i = 0,ci; ci = list[i++];) {
if (!ci.parentNode || domUtils.isBookmarkNode(ci)) continue;
//span单独处理
if (ci.tagName.toLowerCase() == 'span') {
if (node === ci.parentNode) {
domUtils.trimWhiteTextNode(node);
if (node.childNodes.length == 1) {
node.style.cssText = ci.style.cssText + ";" + node.style.cssText;
domUtils.remove(ci, true);
continue;
}
}
ci.style.cssText = node.style.cssText + ';' + ci.style.cssText;
if (attrs) {
var style = attrs.style;
if (style) {
style = style.split(';');
for (var j = 0,s; s = style[j++];) {
ci.style[utils.cssStyleToDomStyle(s.split(':')[0])] = s.split(':')[1];
}
}
}
if (domUtils.isSameStyle(ci, node)) {
domUtils.remove(ci, true)
}
continue;
}
if (domUtils.isSameElement(node, ci)) {
domUtils.remove(ci, true);
}
}
if (tagName == 'span') {
var as = domUtils.getElementsByTagName(node, 'a');
for (var i = 0,ai; ai = as[i++];) {
ai.style.cssText = ';' + node.style.cssText;
ai.style.textDecoration = 'underline';
}
}
},
/**
* 封装原生的getElemensByTagName
* @param {Node} node 根节点
* @param {String} name 标签的tagName
* @return {Array} 返回符合条件的元素数组
*/
getElementsByTagName : function(node, name) {
var list = node.getElementsByTagName(name),arr = [];
for (var i = 0,ci; ci = list[i++];) {
arr.push(ci)
}
return arr;
},
/**
* 将子节点合并到父节点上
* @param {Element} node 节点
* @example <span style="color:#ff"><span style="font-size:12px">xxx</span></span> ==> <span style="color:#ff;font-size:12px">xxx</span>
*/
mergToParent : function(node) {
var parent = node.parentNode;
while (parent && dtd.$removeEmpty[parent.tagName]) {
if (parent.tagName == node.tagName || parent.tagName == 'A') {//针对a标签单独处理
domUtils.trimWhiteTextNode(parent);
//span需要特殊处理 不处理这样的情况 <span stlye="color:#fff">xxx<span style="color:#ccc">xxx</span>xxx</span>
if (parent.tagName == 'SPAN' && !domUtils.isSameStyle(parent, node)
|| (parent.tagName == 'A' && node.tagName == 'SPAN')) {
if (parent.childNodes.length > 1 || parent !== node.parentNode) {
node.style.cssText = parent.style.cssText + ";" + node.style.cssText;
parent = parent.parentNode;
continue;
} else {
parent.style.cssText += ";" + node.style.cssText;
//trace:952 a标签要保持下划线
if (parent.tagName == 'A') {
parent.style.textDecoration = 'underline';
}
}
}
if(parent.tagName != 'A' ){
parent === node.parentNode && domUtils.remove(node, true);
break;
}
}
parent = parent.parentNode;
}
},
/**
* 合并左右兄弟节点
* @function
* @param {Node} node
* @param {Boolean} ingoreNext 默认为false合并上一个兄弟节点。true为不合并上一个兄弟节点
* @param {Boolean} ingorePre 默认为false合并下一个兄弟节点。true为不合并下一个兄弟节点
* @example <b>xxxx</b><b>xxx</b><b>xxxx</b> ==> <b>xxxxxxxxxxx</b>
*/
mergSibling : function(node, ingorePre, ingoreNext) {
function merg(rtl, start, node) {
var next;
if ((next = node[rtl]) && !domUtils.isBookmarkNode(next) && next.nodeType == 1 && domUtils.isSameElement(node, next)) {
while (next.firstChild) {
if (start == 'firstChild') {
node.insertBefore(next.lastChild, node.firstChild);
} else {
node.appendChild(next.firstChild)
}
}
domUtils.remove(next);
}
}
!ingorePre && merg('previousSibling', 'firstChild', node);
!ingoreNext && merg('nextSibling', 'lastChild', node);
},
/**
* 使得元素及其子节点不能被选择
* @function
* @param {Node} node 节点
*/
unselectable :
gecko ?
function(node) {
node.style.MozUserSelect = 'none';
}
: webkit ?
function(node) {
node.style.KhtmlUserSelect = 'none';
}
:
function(node) {
//for ie9
node.onselectstart = function () { return false; };
node.onclick = node.onkeyup = node.onkeydown = function(){return false};
node.unselectable = 'on';
node.setAttribute("unselectable","on");
for (var i = 0,ci; ci = node.all[i++];) {
switch (ci.tagName.toLowerCase()) {
case 'iframe' :
case 'textarea' :
case 'input' :
case 'select' :
break;
default :
ci.unselectable = 'on';
node.setAttribute("unselectable","on");
}
}
},
/**
* 删除元素上的属性,可以删除多个
* @function
* @param {Element} element 元素
* @param {Array} attrNames 要删除的属性数组
*/
removeAttributes : function (elm, attrNames) {
for(var i = 0,ci;ci=attrNames[i++];){
ci = attrFix[ci] || ci;
switch (ci){
case 'className':
elm[ci] = '';
break;
case 'style':
elm.style.cssText = '';
!browser.ie && elm.removeAttributeNode(elm.getAttributeNode('style'))
}
elm.removeAttribute(ci);
}
},
/**
* 给节点添加属性
* @function
* @param {Node} node 节点
* @param {Object} attrNames 要添加的属性名称,采用json对象存放
*/
setAttributes : function(node, attrs) {
for (var name in attrs) {
var value = attrs[name];
switch (name) {
case 'class':
//ie下要这样赋值,setAttribute不起作用
node.className = value;
break;
case 'style' :
node.style.cssText = node.style.cssText + ";" + value;
break;
case 'innerHTML':
node[name] = value;
break;
case 'value':
node.value = value;
break;
default:
node.setAttribute(attrFix[name]||name, value);
}
}
return node;
},
/**
* 获取元素的样式
* @function
* @param {Element} element 元素
* @param {String} styleName 样式名称
* @return {String} 样式值
*/
getComputedStyle : function (element, styleName) {
function fixUnit(key, val) {
if (key == 'font-size' && /pt$/.test(val)) {
val = Math.round(parseFloat(val) / 0.75) + 'px';
}
return val;
}
if(element.nodeType == 3){
element = element.parentNode;
}
//ie下font-size若body下定义了font-size,则从currentStyle里会取到这个font-size. 取不到实际值,故此修改.
if (browser.ie && browser.version < 9 && styleName == 'font-size' && !element.style.fontSize &&
!dtd.$empty[element.tagName] && !dtd.$nonChild[element.tagName]) {
var span = element.ownerDocument.createElement('span');
span.style.cssText = 'padding:0;border:0;font-family:simsun;';
span.innerHTML = '.';
element.appendChild(span);
var result = span.offsetHeight;
element.removeChild(span);
span = null;
return result + 'px';
}
try {
var value = domUtils.getStyle(element, styleName) ||
(window.getComputedStyle ? domUtils.getWindow(element).getComputedStyle(element, '').getPropertyValue(styleName) :
( element.currentStyle || element.style )[utils.cssStyleToDomStyle(styleName)]);
} catch(e) {
return null;
}
return fixUnit(styleName, utils.fixColor(styleName, value));
},
/**
* 删除cssClass,可以支持删除多个class,需以空格分隔
* @param {Element} element 元素
* @param {Array} classNames 删除的className
*/
removeClasses : function (element, classNames) {
element.className = (' ' + element.className + ' ').replace(
new RegExp('(?:\\s+(?:' + classNames.join('|') + '))+\\s+', 'g'), ' ');
},
/**
* 删除元素的样式
* @param {Element} element元素
* @param {String} name 删除的样式名称
*/
removeStyle : function(node, name) {
node.style[utils.cssStyleToDomStyle(name)] = '';
if(!node.style.cssText)
domUtils.removeAttributes(node,['style'])
},
/**
* 判断元素属性中是否包含某一个classname
* @param {Element} element 元素
* @param {String} className 样式名
* @returns {Boolean} 是否包含该classname
*/
hasClass : function (element, className) {
return ( ' ' + element.className + ' ' ).indexOf(' ' + className + ' ') > -1;
},
/**
* 阻止事件默认行为
* @param {Event} evt 需要组织的事件对象
*/
preventDefault : function (evt) {
evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false);
},
/**
* 获得元素样式
* @param {Element} element 元素
* @param {String} name 样式名称
* @return {String} 返回元素样式值
*/
getStyle : function(element, name) {
var value = element.style[ utils.cssStyleToDomStyle(name) ];
return utils.fixColor(name, value);
},
setStyle: function (element, name, value) {
element.style[utils.cssStyleToDomStyle(name)] = value;
},
setStyles: function (element, styles) {
for (var name in styles) {
if (styles.hasOwnProperty(name)) {
domUtils.setStyle(element, name, styles[name]);
}
}
},
/**
* 删除_moz_dirty属性
* @function
* @param {Node} node 节点
*/
removeDirtyAttr : function(node) {
for (var i = 0,ci,nodes = node.getElementsByTagName('*'); ci = nodes[i++];) {
ci.removeAttribute('_moz_dirty')
}
node.removeAttribute('_moz_dirty')
},
/**
* 返回子节点的数量
* @function
* @param {Node} node 父节点
* @param {Function} fn 过滤子节点的规则,若为空,则得到所有子节点的数量
* @return {Number} 符合条件子节点的数量
*/
getChildCount : function (node, fn) {
var count = 0,first = node.firstChild;
fn = fn || function() {
return 1
};
while (first) {
if (fn(first))
count++;
first = first.nextSibling;
}
return count;
},
/**
* 判断是否为空节点
* @function
* @param {Node} node 节点
* @return {Boolean} 是否为空节点
*/
isEmptyNode : function(node) {
return !node.firstChild || domUtils.getChildCount(node, function(node) {
return !domUtils.isBr(node) && !domUtils.isBookmarkNode(node) && !domUtils.isWhitespace(node)
}) == 0
},
/**
* 清空节点所有的className
* @function
* @param {Array} nodes 节点数组
*/
clearSelectedArr : function(nodes) {
var node;
while(node = nodes.pop()){
domUtils.removeAttributes(node,['class']);
}
},
/**
* 将显示区域滚动到显示节点的位置
* @function
* @param {Node} node 节点
* @param {window} win window对象
* @param {Number} offsetTop 距离上方的偏移量
*/
scrollToView : function(node, win, offsetTop) {
var
getViewPaneSize = function() {
var doc = win.document,
mode = doc.compatMode == 'CSS1Compat';
return {
width : ( mode ? doc.documentElement.clientWidth : doc.body.clientWidth ) || 0,
height : ( mode ? doc.documentElement.clientHeight : doc.body.clientHeight ) || 0
};
},
getScrollPosition = function(win) {
if ('pageXOffset' in win) {
return {
x : win.pageXOffset || 0,
y : win.pageYOffset || 0
};
}
else {
var doc = win.document;
return {
x : doc.documentElement.scrollLeft || doc.body.scrollLeft || 0,
y : doc.documentElement.scrollTop || doc.body.scrollTop || 0
};
}
};
var winHeight = getViewPaneSize().height,offset = winHeight * -1 + offsetTop;
offset += (node.offsetHeight || 0);
var elementPosition = domUtils.getXY(node);
offset += elementPosition.y;
var currentScroll = getScrollPosition(win).y;
// offset += 50;
if (offset > currentScroll || offset < currentScroll - winHeight)
win.scrollTo(0, offset + (offset < 0 ? -20 : 20));
},
/**
* 判断节点是否为br
* @function
* @param {Node} node 节点
*/
isBr : function(node) {
return node.nodeType == 1 && node.tagName == 'BR';
},
isFillChar : function(node){
return node.nodeType == 3 && !node.nodeValue.replace(new RegExp( domUtils.fillChar ),'').length
},
isStartInblock : function(range){
var tmpRange = range.cloneRange(),
flag = 0,
start = tmpRange.startContainer,
tmp;
while(start && domUtils.isFillChar(start)){
tmp = start;
start = start.previousSibling
}
if(tmp){
tmpRange.setStartBefore(tmp);
start = tmpRange.startContainer;
}
if(start.nodeType == 1 && domUtils.isEmptyNode(start) && tmpRange.startOffset == 1){
tmpRange.setStart(start,0).collapse(true);
}
while(!tmpRange.startOffset){
start = tmpRange.startContainer;
if(domUtils.isBlockElm(start)||domUtils.isBody(start)){
flag = 1;
break;
}
var pre = tmpRange.startContainer.previousSibling,
tmpNode;
if(!pre){
tmpRange.setStartBefore(tmpRange.startContainer);
}else{
while(pre && domUtils.isFillChar(pre)){
tmpNode = pre;
pre = pre.previousSibling;
}
if(tmpNode){
tmpRange.setStartBefore(tmpNode);
}else
tmpRange.setStartBefore(tmpRange.startContainer);
}
}
return flag && !domUtils.isBody(tmpRange.startContainer) ? 1 : 0;
},
isEmptyBlock : function(node){
var reg = new RegExp( '[ \t\r\n' + domUtils.fillChar+']', 'g' );
if(node[browser.ie?'innerText':'textContent'].replace(reg,'').length >0)
return 0;
for(var n in dtd.$isNotEmpty){
if(node.getElementsByTagName(n).length)
return 0;
}
return 1;
},
setViewportOffset: function (element, offset){
var left = parseInt(element.style.left) | 0;
var top = parseInt(element.style.top) | 0;
var rect = element.getBoundingClientRect();
var offsetLeft = offset.left - rect.left;
var offsetTop = offset.top - rect.top;
if (offsetLeft) {
element.style.left = left + offsetLeft + 'px';
}
if (offsetTop) {
element.style.top = top + offsetTop + 'px';
}
},
fillNode : function(doc,node){
var tmpNode = browser.ie ? doc.createTextNode(domUtils.fillChar) : doc.createElement('br');
node.innerHTML = '';
node.appendChild(tmpNode);
},
moveChild : function(src,tag,dir){
while(src.firstChild){
if(dir && tag.firstChild){
tag.insertBefore(src.lastChild,tag.firstChild);
}else{
tag.appendChild(src.firstChild)
}
}
},
//判断是否有额外属性
hasNoAttributes : function(node){
return browser.ie ? /^<\w+\s*?>/.test(node.outerHTML) :node.attributes.length == 0;
}
};
var fillCharReg = new RegExp( domUtils.fillChar, 'g' ); | 10npsite | trunk/guanli/system/ueditor/_src/core/dom/domUtils.js | JavaScript | asf20 | 44,518 |
///import editor.js
///import core/utils.js
///import core/browser.js
///import core/dom/dom.js
///import core/dom/dtd.js
///import core/dom/domUtils.js
/**
* @class baidu.editor.dom.Range Range类
*/
/**
* @description Range类实现
* @author zhanyi
*/
(function() {
var guid = 0,
fillChar = domUtils.fillChar,
fillData;
/**
* 更新range的collapse状态
* @param {Range} range range对象
*/
function updateCollapse( range ) {
range.collapsed =
range.startContainer && range.endContainer &&
range.startContainer === range.endContainer &&
range.startOffset == range.endOffset;
}
function setEndPoint( toStart, node, offset, range ) {
//如果node是自闭合标签要处理
if ( node.nodeType == 1 && (dtd.$empty[node.tagName] || dtd.$nonChild[node.tagName])) {
offset = domUtils.getNodeIndex( node ) + (toStart ? 0 : 1);
node = node.parentNode;
}
if ( toStart ) {
range.startContainer = node;
range.startOffset = offset;
if ( !range.endContainer ) {
range.collapse( true );
}
} else {
range.endContainer = node;
range.endOffset = offset;
if ( !range.startContainer ) {
range.collapse( false );
}
}
updateCollapse( range );
return range;
}
function execContentsAction ( range, action ) {
//调整边界
//range.includeBookmark();
var start = range.startContainer,
end = range.endContainer,
startOffset = range.startOffset,
endOffset = range.endOffset,
doc = range.document,
frag = doc.createDocumentFragment(),
tmpStart,tmpEnd;
if ( start.nodeType == 1 ) {
start = start.childNodes[startOffset] || (tmpStart = start.appendChild( doc.createTextNode( '' ) ));
}
if ( end.nodeType == 1 ) {
end = end.childNodes[endOffset] || (tmpEnd = end.appendChild( doc.createTextNode( '' ) ));
}
if ( start === end && start.nodeType == 3 ) {
frag.appendChild( doc.createTextNode( start.substringData( startOffset, endOffset - startOffset ) ) );
//is not clone
if ( action ) {
start.deleteData( startOffset, endOffset - startOffset );
range.collapse( true );
}
return frag;
}
var current,currentLevel,clone = frag,
startParents = domUtils.findParents( start, true ),endParents = domUtils.findParents( end, true );
for ( var i = 0; startParents[i] == endParents[i]; i++ );
for ( var j = i,si; si = startParents[j]; j++ ) {
current = si.nextSibling;
if ( si == start ) {
if ( !tmpStart ) {
if ( range.startContainer.nodeType == 3 ) {
clone.appendChild( doc.createTextNode( start.nodeValue.slice( startOffset ) ) );
//is not clone
if ( action ) {
start.deleteData( startOffset, start.nodeValue.length - startOffset );
}
} else {
clone.appendChild( !action ? start.cloneNode( true ) : start );
}
}
} else {
currentLevel = si.cloneNode( false );
clone.appendChild( currentLevel );
}
while ( current ) {
if ( current === end || current === endParents[j] )break;
si = current.nextSibling;
clone.appendChild( !action ? current.cloneNode( true ) : current );
current = si;
}
clone = currentLevel;
}
clone = frag;
if ( !startParents[i] ) {
clone.appendChild( startParents[i - 1].cloneNode( false ) );
clone = clone.firstChild;
}
for ( var j = i,ei; ei = endParents[j]; j++ ) {
current = ei.previousSibling;
if ( ei == end ) {
if ( !tmpEnd && range.endContainer.nodeType == 3 ) {
clone.appendChild( doc.createTextNode( end.substringData( 0, endOffset ) ) );
//is not clone
if ( action ) {
end.deleteData( 0, endOffset );
}
}
} else {
currentLevel = ei.cloneNode( false );
clone.appendChild( currentLevel );
}
//如果两端同级,右边第一次已经被开始做了
if ( j != i || !startParents[i] ) {
while ( current ) {
if ( current === start )break;
ei = current.previousSibling;
clone.insertBefore( !action ? current.cloneNode( true ) : current, clone.firstChild );
current = ei;
}
}
clone = currentLevel;
}
if ( action ) {
range.setStartBefore( !endParents[i] ? endParents[i - 1] : !startParents[i] ? startParents[i - 1] : endParents[i] ).collapse( true )
}
tmpStart && domUtils.remove( tmpStart );
tmpEnd && domUtils.remove( tmpEnd );
return frag;
}
/**
* Range类
* @param {Document} document 编辑器页面document对象
*/
var Range = dom.Range = function( document ) {
var me = this;
me.startContainer =
me.startOffset =
me.endContainer =
me.endOffset = null;
me.document = document;
me.collapsed = true;
};
function removeFillData(doc,excludeNode){
try{
if ( fillData && domUtils.inDoc(fillData,doc) ) {
if(!fillData.nodeValue.replace( fillCharReg, '' ).length){
var tmpNode = fillData.parentNode;
domUtils.remove(fillData);
while(tmpNode && domUtils.isEmptyInlineElement(tmpNode) && !tmpNode.contains(excludeNode)){
fillData = tmpNode.parentNode;
domUtils.remove(tmpNode);
tmpNode = fillData
}
}else
fillData.nodeValue = fillData.nodeValue.replace( fillCharReg, '' )
}
}catch(e){}
}
function mergSibling(node,dir){
var tmpNode;
node = node[dir];
while(node && domUtils.isFillChar(node)){
tmpNode = node[dir];
domUtils.remove(node);
node = tmpNode;
}
}
Range.prototype = {
/**
* 克隆选中的内容到一个fragment里
* @public
* @function
* @name baidu.editor.dom.Range.cloneContents
* @return {Fragment} frag|null 返回选中内容的文本片段或者空
*/
cloneContents : function() {
return this.collapsed ? null : execContentsAction( this, 0 );
},
/**
* 删除所选内容
* @public
* @function
* @name baidu.editor.dom.Range.deleteContents
* @return {Range} 删除选中内容后的Range
*/
deleteContents : function() {
if ( !this.collapsed )
execContentsAction( this, 1 );
if(browser.webkit){
var txt = this.startContainer;
if(txt.nodeType == 3 && !txt.nodeValue.length){
this.setStartBefore(txt).collapse(true);
domUtils.remove(txt)
}
}
return this;
},
/**
* 取出内容
* @public
* @function
* @name baidu.editor.dom.Range.extractContents
* @return {String} 获得Range选中的内容
*/
extractContents : function() {
return this.collapsed ? null : execContentsAction( this, 2 );
},
/**
* 设置range的开始位置
* @public
* @function
* @name baidu.editor.dom.Range.setStart
* @param {Node} node range开始节点
* @param {Number} offset 偏移量
* @return {Range} 返回Range
*/
setStart : function( node, offset ) {
return setEndPoint( true, node, offset, this );
},
/**
* 设置range结束点的位置
* @public
* @function
* @name baidu.editor.dom.Range.setEnd
* @param {Node} node range结束节点
* @param {Number} offset 偏移量
* @return {Range} 返回Range
*/
setEnd : function( node, offset ) {
return setEndPoint( false, node, offset, this );
},
/**
* 将开始位置设置到node后
* @public
* @function
* @name baidu.editor.dom.Range.setStartAfter
* @param {Node} node 节点
* @return {Range} 返回Range
*/
setStartAfter : function( node ) {
return this.setStart( node.parentNode, domUtils.getNodeIndex( node ) + 1 );
},
/**
* 将开始位置设置到node前
* @public
* @function
* @name baidu.editor.dom.Range.setStartBefore
* @param {Node} node 节点
* @return {Range} 返回Range
*/
setStartBefore : function( node ) {
return this.setStart( node.parentNode, domUtils.getNodeIndex( node ) );
},
/**
* 将结束点位置设置到node后
* @public
* @function
* @name baidu.editor.dom.Range.setEndAfter
* @param {Node} node 节点
* @return {Range} 返回Range
*/
setEndAfter : function( node ) {
return this.setEnd( node.parentNode, domUtils.getNodeIndex( node ) + 1 );
},
/**
* 将结束点位置设置到node前
* @public
* @function
* @name baidu.editor.dom.Range.setEndBefore
* @param {Node} node 节点
* @return {Range} 返回Range
*/
setEndBefore : function( node ) {
return this.setEnd( node.parentNode, domUtils.getNodeIndex( node ) );
},
/**
* 选中指定节点
* @public
* @function
* @name baidu.editor.dom.Range.selectNode
* @param {Node} node 节点
* @return {Range} 返回Range
*/
selectNode : function( node ) {
return this.setStartBefore( node ).setEndAfter( node );
},
/**
* 选中node下的所有节点
* @public
* @function
* @name baidu.editor.dom.Range.selectNodeContents
* @param {Element} node 要设置的节点
* @return {Range} 返回Range
*/
selectNodeContents : function( node ) {
return this.setStart( node, 0 ).setEnd( node, node.nodeType == 3 ? node.nodeValue.length : node.childNodes.length );
},
/**
* 克隆range
* @public
* @function
* @name baidu.editor.dom.Range.cloneRange
* @return {Range} 克隆的range对象
*/
cloneRange : function() {
var me = this,range = new Range( me.document );
return range.setStart( me.startContainer, me.startOffset ).setEnd( me.endContainer, me.endOffset );
},
/**
* 让选区闭合
* @public
* @function
* @name baidu.editor.dom.Range.collapse
* @param {Boolean} toStart 是否在选区开始位置闭合选区,true在开始位置闭合,false反之
* @return {Range} range对象
*/
collapse : function( toStart ) {
var me = this;
if ( toStart ) {
me.endContainer = me.startContainer;
me.endOffset = me.startOffset;
}
else {
me.startContainer = me.endContainer;
me.startOffset = me.endOffset;
}
me.collapsed = true;
return me;
},
/**
* 调整range的边界,“缩”到合适的位置
* @public
* @function
* @name baidu.editor.dom.Range.shrinkBoundary
* @param {Boolean} ignoreEnd 是否考虑前面的元素
*/
shrinkBoundary : function( ignoreEnd ) {
var me = this,child,
collapsed = me.collapsed;
while ( me.startContainer.nodeType == 1 //是element
&& (child = me.startContainer.childNodes[me.startOffset]) //子节点也是element
&& child.nodeType == 1 && !domUtils.isBookmarkNode(child)
&& !dtd.$empty[child.tagName] && !dtd.$nonChild[child.tagName] ) {
me.setStart( child, 0 );
}
if ( collapsed )
return me.collapse( true );
if ( !ignoreEnd ) {
while ( me.endContainer.nodeType == 1//是element
&& me.endOffset > 0 //如果是空元素就退出 endOffset=0那么endOffst-1为负值,childNodes[endOffset]报错
&& (child = me.endContainer.childNodes[me.endOffset - 1]) //子节点也是element
&& child.nodeType == 1 && !domUtils.isBookmarkNode(child)
&& !dtd.$empty[child.tagName] && !dtd.$nonChild[child.tagName]) {
me.setEnd( child, child.childNodes.length );
}
}
return me;
},
/**
* 找到startContainer和endContainer的公共祖先节点
* @public
* @function
* @name baidu.editor.dom.Range.getCommonAncestor
* @param {Boolean} includeSelf 是否包含自身
* @param {Boolean} ignoreTextNode 是否忽略文本节点
* @return {Node} 祖先节点
*/
getCommonAncestor : function( includeSelf, ignoreTextNode ) {
var start = this.startContainer,
end = this.endContainer;
if ( start === end ) {
if ( includeSelf && start.nodeType == 1 && this.startOffset == this.endOffset - 1 ) {
return start.childNodes[this.startOffset];
}
//只有在上来就相等的情况下才会出现是文本的情况
return ignoreTextNode && start.nodeType == 3 ? start.parentNode : start;
}
return domUtils.getCommonAncestor( start, end );
},
/**
* 切割文本节点,将边界扩大到element
* @public
* @function
* @name baidu.editor.dom.Range.trimBoundary
* @param {Boolean} ignoreEnd 为真就不处理结束边界
* @return {Range} range对象
* @example <b>|xxx</b>
* startContainer = xxx; startOffset = 0
* 执行后
* startContainer = <b>; startOffset = 0
* @example <b>xx|x</b>
* startContainer = xxx; startOffset = 2
* 执行后
* startContainer = <b>; startOffset = 1 因为将xxx切割成2个节点了
*/
trimBoundary : function( ignoreEnd ) {
this.txtToElmBoundary();
var start = this.startContainer,
offset = this.startOffset,
collapsed = this.collapsed,
end = this.endContainer;
if ( start.nodeType == 3 ) {
if ( offset == 0 ) {
this.setStartBefore( start )
} else {
if ( offset >= start.nodeValue.length ) {
this.setStartAfter( start );
} else {
var textNode = domUtils.split( start, offset );
//跟新结束边界
if ( start === end )
this.setEnd( textNode, this.endOffset - offset );
else if ( start.parentNode === end )
this.endOffset += 1;
this.setStartBefore( textNode );
}
}
if ( collapsed ) {
return this.collapse( true );
}
}
if ( !ignoreEnd ) {
offset = this.endOffset;
end = this.endContainer;
if ( end.nodeType == 3 ) {
if ( offset == 0 ) {
this.setEndBefore( end );
} else {
if ( offset >= end.nodeValue.length ) {
this.setEndAfter( end );
} else {
domUtils.split( end, offset );
this.setEndAfter( end );
}
}
}
}
return this;
},
/**
* 如果选区在文本的边界上,就扩展选区到文本的父节点上
* @public
* @function
* @name baidu.editor.dom.Range.txtToElmBoundary
* @return {Range} range对象
* @example <b> |xxx</b>
* startContainer = xxx; startOffset = 0
* 执行后
* startContainer = <b>; startOffset = 0
* @example <b> xxx| </b>
* startContainer = xxx; startOffset = 3
* 执行后
* startContainer = <b>; startOffset = 1
*/
txtToElmBoundary : function() {
function adjust( r, c ) {
var container = r[c + 'Container'],
offset = r[c + 'Offset'];
if ( container.nodeType == 3 ) {
if ( !offset ) {
r['set' + c.replace( /(\w)/, function( a ) {
return a.toUpperCase()
} ) + 'Before']( container )
} else if ( offset >= container.nodeValue.length ) {
r['set' + c.replace( /(\w)/, function( a ) {
return a.toUpperCase()
} ) + 'After' ]( container )
}
}
}
if ( !this.collapsed ) {
adjust( this, 'start' );
adjust( this, 'end' );
}
return this;
},
/**
* 在当前选区的开始位置前插入一个节点或者fragment
* @public
* @function
* @name baidu.editor.dom.Range.insertNode
* @param {Node/DocumentFragment} node 要插入的节点或fragment
* @return {Range} 返回range对象
*/
insertNode : function( node ) {
var first = node,length = 1;
if ( node.nodeType == 11 ) {
first = node.firstChild;
length = node.childNodes.length;
}
this.trimBoundary( true );
var start = this.startContainer,
offset = this.startOffset;
var nextNode = start.childNodes[ offset ];
if ( nextNode ) {
start.insertBefore( node, nextNode );
}
else {
start.appendChild( node );
}
if ( first.parentNode === this.endContainer ) {
this.endOffset = this.endOffset + length;
}
return this.setStartBefore( first );
},
/**
* 设置光标位置
* @public
* @function
* @name baidu.editor.dom.Range.setCursor
* @param {Boolean} toEnd true为闭合到选区的结束位置后,false为闭合到选区的开始位置前
* @return {Range} 返回range对象
*/
setCursor : function( toEnd ,notFillData) {
return this.collapse( toEnd ? false : true ).select(notFillData);
},
/**
* 创建书签
* @public
* @function
* @name baidu.editor.dom.Range.createBookmark
* @param {Boolean} serialize true:为true则返回对象中用id来分别表示书签的开始和结束节点
* @param {Boolean} same true:是否采用唯一的id,false将会为每一个标签产生一个唯一的id
* @returns {Object} bookmark对象
*/
createBookmark : function( serialize, same ) {
var endNode,
startNode = this.document.createElement( 'span' );
startNode.style.cssText = 'display:none;line-height:0px;';
startNode.appendChild( this.document.createTextNode( '\uFEFF' ) );
startNode.id = '_baidu_bookmark_start_' + (same ? '' : guid++);
if ( !this.collapsed ) {
endNode = startNode.cloneNode( true );
endNode.id = '_baidu_bookmark_end_' + (same ? '' : guid++);
}
this.insertNode( startNode );
if ( endNode ) {
this.collapse( false ).insertNode( endNode );
this.setEndBefore( endNode )
}
this.setStartAfter( startNode );
return {
start : serialize ? startNode.id : startNode,
end : endNode ? serialize ? endNode.id : endNode : null,
id : serialize
}
},
/**
* 移动边界到书签,并删除书签
* @public
* @function
* @name baidu.editor.dom.Range.moveToBookmark
* @params {Object} bookmark对象
* @returns {Range} Range对象
*/
moveToBookmark : function( bookmark ) {
var start = bookmark.id ? this.document.getElementById( bookmark.start ) : bookmark.start,
end = bookmark.end && bookmark.id ? this.document.getElementById( bookmark.end ) : bookmark.end;
this.setStartBefore( start );
domUtils.remove( start );
if ( end ) {
this.setEndBefore( end );
domUtils.remove( end )
} else {
this.collapse( true );
}
return this;
},
/**
* 调整边界到一个block元素上,或者移动到最大的位置
* @public
* @function
* @name baidu.editor.dom.Range.enlarge
* @params {Boolean} toBlock 扩展到block元素
* @params {Function} stopFn 停止函数,若返回true,则不再扩展
* @return {Range} Range对象
*/
enlarge : function( toBlock, stopFn ) {
var isBody = domUtils.isBody,
pre,node,tmp = this.document.createTextNode( '' );
if ( toBlock ) {
node = this.startContainer;
if ( node.nodeType == 1 ) {
if ( node.childNodes[this.startOffset] ) {
pre = node = node.childNodes[this.startOffset]
} else {
node.appendChild( tmp );
pre = node = tmp;
}
} else {
pre = node;
}
while ( 1 ) {
if ( domUtils.isBlockElm( node ) ) {
node = pre;
while ( (pre = node.previousSibling) && !domUtils.isBlockElm( pre ) ) {
node = pre;
}
this.setStartBefore( node );
break;
}
pre = node;
node = node.parentNode;
}
node = this.endContainer;
if ( node.nodeType == 1 ) {
if(pre = node.childNodes[this.endOffset]) {
node.insertBefore( tmp, pre );
}else{
node.appendChild(tmp)
}
pre = node = tmp;
} else {
pre = node;
}
while ( 1 ) {
if ( domUtils.isBlockElm( node ) ) {
node = pre;
while ( (pre = node.nextSibling) && !domUtils.isBlockElm( pre ) ) {
node = pre;
}
this.setEndAfter( node );
break;
}
pre = node;
node = node.parentNode;
}
if ( tmp.parentNode === this.endContainer ) {
this.endOffset--;
}
domUtils.remove( tmp )
}
// 扩展边界到最大
if ( !this.collapsed ) {
while ( this.startOffset == 0 ) {
if ( stopFn && stopFn( this.startContainer ) )
break;
if ( isBody( this.startContainer ) )break;
this.setStartBefore( this.startContainer );
}
while ( this.endOffset == (this.endContainer.nodeType == 1 ? this.endContainer.childNodes.length : this.endContainer.nodeValue.length) ) {
if ( stopFn && stopFn( this.endContainer ) )
break;
if ( isBody( this.endContainer ) )break;
this.setEndAfter( this.endContainer )
}
}
return this;
},
/**
* 调整边界
* @public
* @function
* @name baidu.editor.dom.Range.adjustmentBoundary
* @return {Range} Range对象
* @example
* <b>xx[</b>xxxxx] ==> <b>xx</b>[xxxxx]
* <b>[xx</b><i>]xxx</i> ==> <b>[xx</b>]<i>xxx</i>
*
*/
adjustmentBoundary : function() {
if(!this.collapsed){
while ( !domUtils.isBody( this.startContainer ) &&
this.startOffset == this.startContainer[this.startContainer.nodeType == 3 ? 'nodeValue' : 'childNodes'].length
) {
this.setStartAfter( this.startContainer );
}
while ( !domUtils.isBody( this.endContainer ) && !this.endOffset ) {
this.setEndBefore( this.endContainer );
}
}
return this;
},
/**
* 给选区中的内容加上inline样式
* @public
* @function
* @name baidu.editor.dom.Range.applyInlineStyle
* @param {String} tagName 标签名称
* @param {Object} attrObj 属性
* @return {Range} Range对象
*/
applyInlineStyle : function( tagName, attrs ,list) {
if(this.collapsed)return this;
this.trimBoundary().enlarge( false,
function( node ) {
return node.nodeType == 1 && domUtils.isBlockElm( node )
} ).adjustmentBoundary();
var bookmark = this.createBookmark(),
end = bookmark.end,
filterFn = function( node ) {
return node.nodeType == 1 ? node.tagName.toLowerCase() != 'br' : !domUtils.isWhitespace( node )
},
current = domUtils.getNextDomNode( bookmark.start, false, filterFn ),
node,
pre,
range = this.cloneRange();
while ( current && (domUtils.getPosition( current, end ) & domUtils.POSITION_PRECEDING) ) {
if ( current.nodeType == 3 || dtd[tagName][current.tagName] ) {
range.setStartBefore( current );
node = current;
while ( node && (node.nodeType == 3 || dtd[tagName][node.tagName]) && node !== end ) {
pre = node;
node = domUtils.getNextDomNode( node, node.nodeType == 1, null, function( parent ) {
return dtd[tagName][parent.tagName]
} )
}
var frag = range.setEndAfter( pre ).extractContents(),elm;
if(list && list.length > 0){
var level,top;
top = level = list[0].cloneNode(false);
for(var i=1,ci;ci=list[i++];){
level.appendChild(ci.cloneNode(false));
level = level.firstChild;
}
elm = level;
}else{
elm = range.document.createElement( tagName )
}
if ( attrs ) {
domUtils.setAttributes( elm, attrs )
}
elm.appendChild( frag );
range.insertNode( list ? top : elm );
//处理下滑线在a上的情况
var aNode;
if(tagName == 'span' && attrs.style && /text\-decoration/.test(attrs.style) && (aNode = domUtils.findParentByTagName(elm,'a',true)) ){
domUtils.setAttributes(aNode,attrs);
domUtils.remove(elm,true);
elm = aNode;
}else{
domUtils.mergSibling( elm );
domUtils.clearEmptySibling( elm );
}
//去除子节点相同的
domUtils.mergChild( elm, tagName,attrs );
current = domUtils.getNextDomNode( elm, false, filterFn );
domUtils.mergToParent( elm );
if ( node === end )break;
} else {
current = domUtils.getNextDomNode( current, true, filterFn )
}
}
return this.moveToBookmark( bookmark );
},
/**
* 去掉inline样式
* @public
* @function
* @name baidu.editor.dom.Range.removeInlineStyle
* @param {String/Array} tagName 要去掉的标签名
* @return {Range} Range对象
*/
removeInlineStyle : function( tagName ) {
if(this.collapsed)return this;
tagName = utils.isArray( tagName ) ? tagName : [tagName];
this.shrinkBoundary().adjustmentBoundary();
var start = this.startContainer,end = this.endContainer;
while ( 1 ) {
if ( start.nodeType == 1 ) {
if ( utils.indexOf( tagName, start.tagName.toLowerCase() ) > -1 ) {
break;
}
if ( start.tagName.toLowerCase() == 'body' ) {
start = null;
break;
}
}
start = start.parentNode;
}
while ( 1 ) {
if ( end.nodeType == 1 ) {
if ( utils.indexOf( tagName, end.tagName.toLowerCase() ) > -1 ) {
break;
}
if ( end.tagName.toLowerCase() == 'body' ) {
end = null;
break;
}
}
end = end.parentNode;
}
var bookmark = this.createBookmark(),
frag,
tmpRange;
if ( start ) {
tmpRange = this.cloneRange().setEndBefore( bookmark.start ).setStartBefore( start );
frag = tmpRange.extractContents();
tmpRange.insertNode( frag );
domUtils.clearEmptySibling( start, true );
start.parentNode.insertBefore( bookmark.start, start );
}
if ( end ) {
tmpRange = this.cloneRange().setStartAfter( bookmark.end ).setEndAfter( end );
frag = tmpRange.extractContents();
tmpRange.insertNode( frag );
domUtils.clearEmptySibling( end, false, true );
end.parentNode.insertBefore( bookmark.end, end.nextSibling );
}
var current = domUtils.getNextDomNode( bookmark.start, false, function( node ) {
return node.nodeType == 1
} ),next;
while ( current && current !== bookmark.end ) {
next = domUtils.getNextDomNode( current, true, function( node ) {
return node.nodeType == 1
} );
if ( utils.indexOf( tagName, current.tagName.toLowerCase() ) > -1 ) {
domUtils.remove( current, true );
}
current = next;
}
return this.moveToBookmark( bookmark );
},
/**
* 得到一个自闭合的节点
* @public
* @function
* @name baidu.editor.dom.Range.getClosedNode
* @return {Node} 闭合节点
* @example
* <img />,<br />
*/
getClosedNode : function() {
var node;
if ( !this.collapsed ) {
var range = this.cloneRange().adjustmentBoundary().shrinkBoundary();
if ( range.startContainer.nodeType == 1 && range.startContainer === range.endContainer && range.endOffset - range.startOffset == 1 ) {
var child = range.startContainer.childNodes[range.startOffset];
if ( child && child.nodeType == 1 && (dtd.$empty[child.tagName] || dtd.$nonChild[child.tagName])) {
node = child;
}
}
}
return node;
},
/**
* 根据range选中元素
* @public
* @function
* @name baidu.editor.dom.Range.select
* @param {Boolean} notInsertFillData true为不加占位符
*/
select : browser.ie ? function( notInsertFillData ,textRange) {
var nativeRange;
if ( !this.collapsed )
this.shrinkBoundary();
var node = this.getClosedNode();
if ( node && !textRange) {
try {
nativeRange = this.document.body.createControlRange();
nativeRange.addElement( node );
nativeRange.select();
} catch( e ) {
}
return this;
}
var bookmark = this.createBookmark(),
start = bookmark.start,
end;
nativeRange = this.document.body.createTextRange();
nativeRange.moveToElementText( start );
nativeRange.moveStart( 'character', 1 );
if ( !this.collapsed ) {
var nativeRangeEnd = this.document.body.createTextRange();
end = bookmark.end;
nativeRangeEnd.moveToElementText( end );
nativeRange.setEndPoint( 'EndToEnd', nativeRangeEnd );
} else {
if ( !notInsertFillData && this.startContainer.nodeType != 3 ) {
//使用<span>|x<span>固定住光标
var tmpText = this.document.createTextNode( fillChar ),
tmp = this.document.createElement( 'span' );
tmp.appendChild( this.document.createTextNode( fillChar) );
start.parentNode.insertBefore( tmp, start );
start.parentNode.insertBefore( tmpText, start );
//当点b,i,u时,不能清除i上边的b
removeFillData(this.document,tmpText);
fillData = tmpText;
mergSibling(tmp,'previousSibling');
mergSibling(start,'nextSibling');
nativeRange.moveStart( 'character', -1 );
nativeRange.collapse( true );
}
}
this.moveToBookmark( bookmark );
tmp && domUtils.remove( tmp );
nativeRange.select();
return this;
} : function( notInsertFillData ) {
var win = domUtils.getWindow( this.document ),
sel = win.getSelection(),
txtNode;
browser.gecko ? this.document.body.focus() : win.focus();
if ( sel ) {
sel.removeAllRanges();
// trace:870 chrome/safari后边是br对于闭合得range不能定位 所以去掉了判断
// this.startContainer.nodeType != 3 &&! ((child = this.startContainer.childNodes[this.startOffset]) && child.nodeType == 1 && child.tagName == 'BR'
if ( this.collapsed && !notInsertFillData ){
txtNode = this.document.createTextNode( fillChar );
//跟着前边走
this.insertNode( txtNode );
removeFillData(this.document,txtNode);
mergSibling(txtNode,'previousSibling');
mergSibling(txtNode,'nextSibling');
fillData = txtNode;
this.setStart( txtNode, browser.webkit ? 1 : 0 ).collapse( true );
}
var nativeRange = this.document.createRange();
nativeRange.setStart( this.startContainer, this.startOffset );
nativeRange.setEnd( this.endContainer, this.endOffset );
sel.addRange( nativeRange );
}
return this;
},
/**
* 滚动到可视范围
* @public
* @function
* @name baidu.editor.dom.Range.scrollToView
* @param {Boolean} win 操作的window对象,若为空,则使用当前的window对象
* @param {Number} offset 滚动的偏移量
* @return {Range} Range对象
*/
scrollToView : function(win,offset){
win = win ? window : domUtils.getWindow(this.document);
var span = this.document.createElement('span');
//trace:717
span.innerHTML = ' ';
var tmpRange = this.cloneRange();
tmpRange.insertNode(span);
domUtils.scrollToView(span,win,offset);
domUtils.remove(span);
return this;
}
};
})(); | 10npsite | trunk/guanli/system/ueditor/_src/core/dom/Range.js | JavaScript | asf20 | 40,332 |
/**
* Created by .
* User: taoqili
* Date: 11-8-18
* Time: 下午3:18
* To change this template use File | Settings | File Templates.
*/
/**
* ajax工具类
*/
UE.ajax = function() {
return {
/**
* 向url发送ajax请求
* @param url
* @param ajaxOptions
*/
request:function(url, ajaxOptions) {
var ajaxRequest = creatAjaxRequest(),
//是否超时
timeIsOut = false,
//默认参数
defaultAjaxOptions = {
method:"POST",
timeout:5000,
async:true,
data:{},//需要传递对象的话只能覆盖
onsuccess:function() {
},
onerror:function() {
}
};
if (typeof url === "object") {
ajaxOptions = url;
url = ajaxOptions.url;
}
if (!ajaxRequest || !url) return;
var ajaxOpts = ajaxOptions ? utils.extend(defaultAjaxOptions,ajaxOptions) : defaultAjaxOptions;
var submitStr = json2str(ajaxOpts); // { name:"Jim",city:"Beijing" } --> "name=Jim&city=Beijing"
//如果用户直接通过data参数传递json对象过来,则也要将此json对象转化为字符串
if (!utils.isEmptyObject(ajaxOpts.data)){
submitStr += (submitStr? "&":"") + json2str(ajaxOpts.data);
}
//超时检测
var timerID = setTimeout(function() {
if (ajaxRequest.readyState != 4) {
timeIsOut = true;
ajaxRequest.abort();
clearTimeout(timerID);
}
}, ajaxOpts.timeout);
var method = ajaxOpts.method.toUpperCase();
var str = url + (url.indexOf("?")==-1?"?":"&") + (method=="POST"?"":submitStr) + "&noCache=" + +new Date;
ajaxRequest.open(method, str, ajaxOpts.async);
ajaxRequest.onreadystatechange = function() {
if (ajaxRequest.readyState == 4) {
if (!timeIsOut && ajaxRequest.status == 200) {
ajaxOpts.onsuccess(ajaxRequest);
} else {
ajaxOpts.onerror(ajaxRequest);
}
}
};
if (method == "POST") {
ajaxRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
ajaxRequest.send(submitStr);
} else {
ajaxRequest.send(null);
}
}
};
/**
* 将json参数转化成适合ajax提交的参数列表
* @param json
*/
function json2str(json) {
var strArr = [];
for (var i in json) {
//忽略默认的几个参数
if(i=="method" || i=="timeout" || i=="async") continue;
//传递过来的对象和函数不在提交之列
if (!((typeof json[i]).toLowerCase() == "function" || (typeof json[i]).toLowerCase() == "object")) {
strArr.push( encodeURIComponent(i) + "="+encodeURIComponent(json[i]) );
}
}
return strArr.join("&");
}
/**
* 创建一个ajaxRequest对象
*/
function creatAjaxRequest() {
var xmlHttp = null;
if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
} else {
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
}
}
}
return xmlHttp;
}
}();
| 10npsite | trunk/guanli/system/ueditor/_src/core/ajax.js | JavaScript | asf20 | 3,361 |
(function (){
var browser = baidu.editor.browser,
domUtils = baidu.editor.dom.domUtils,
uiUtils = baidu.editor.ui.uiUtils;
var TPL_STATEFUL = 'onmousedown="$$.Stateful_onMouseDown(event, this);"' +
' onmouseup="$$.Stateful_onMouseUp(event, this);"' +
( browser.ie ? (
' onmouseenter="$$.Stateful_onMouseEnter(event, this);"' +
' onmouseleave="$$.Stateful_onMouseLeave(event, this);"' )
: (
' onmouseover="$$.Stateful_onMouseOver(event, this);"' +
' onmouseout="$$.Stateful_onMouseOut(event, this);"' ));
baidu.editor.ui.Stateful = {
alwalysHoverable: false,
Stateful_init: function (){
this._Stateful_dGetHtmlTpl = this.getHtmlTpl;
this.getHtmlTpl = this.Stateful_getHtmlTpl;
},
Stateful_getHtmlTpl: function (){
var tpl = this._Stateful_dGetHtmlTpl();
// 使用function避免$转义
return tpl.replace(/stateful/g, function (){ return TPL_STATEFUL; });
},
Stateful_onMouseEnter: function (evt, el){
if (!this.isDisabled() || this.alwalysHoverable) {
this.addState('hover');
this.fireEvent('over');
}
},
Stateful_onMouseLeave: function (evt, el){
if (!this.isDisabled() || this.alwalysHoverable) {
this.removeState('hover');
this.removeState('active');
this.fireEvent('out');
}
},
Stateful_onMouseOver: function (evt, el){
var rel = evt.relatedTarget;
if (!uiUtils.contains(el, rel) && el !== rel) {
this.Stateful_onMouseEnter(evt, el);
}
},
Stateful_onMouseOut: function (evt, el){
var rel = evt.relatedTarget;
if (!uiUtils.contains(el, rel) && el !== rel) {
this.Stateful_onMouseLeave(evt, el);
}
},
Stateful_onMouseDown: function (evt, el){
if (!this.isDisabled()) {
this.addState('active');
}
},
Stateful_onMouseUp: function (evt, el){
if (!this.isDisabled()) {
this.removeState('active');
}
},
Stateful_postRender: function (){
if (this.disabled && !this.hasState('disabled')) {
this.addState('disabled');
}
},
hasState: function (state){
return domUtils.hasClass(this.getStateDom(), 'edui-state-' + state);
},
addState: function (state){
if (!this.hasState(state)) {
this.getStateDom().className += ' edui-state-' + state;
}
},
removeState: function (state){
if (this.hasState(state)) {
domUtils.removeClasses(this.getStateDom(), ['edui-state-' + state]);
}
},
getStateDom: function (){
return this.getDom('state');
},
isChecked: function (){
return this.hasState('checked');
},
setChecked: function (checked){
if (!this.isDisabled() && checked) {
this.addState('checked');
} else {
this.removeState('checked');
}
},
isDisabled: function (){
return this.hasState('disabled');
},
setDisabled: function (disabled){
if (disabled) {
this.removeState('hover');
this.removeState('checked');
this.removeState('active');
this.addState('disabled');
} else {
this.removeState('disabled');
}
}
};
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/stateful.js | JavaScript | asf20 | 3,906 |
///import core
///import uicore
///import ui/colorpicker.js
///import ui/popup.js
///import ui/splitbutton.js
(function (){
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
ColorPicker = baidu.editor.ui.ColorPicker,
Popup = baidu.editor.ui.Popup,
SplitButton = baidu.editor.ui.SplitButton,
ColorButton = baidu.editor.ui.ColorButton = function (options){
this.initOptions(options);
this.initColorButton();
};
ColorButton.prototype = {
initColorButton: function (){
var me = this;
this.popup = new Popup({
content: new ColorPicker({
noColorText: '清除颜色',
onpickcolor: function (t, color){
me._onPickColor(color);
},
onpicknocolor: function (t, color){
me._onPickNoColor(color);
}
}),
editor:me.editor
});
this.initSplitButton();
},
_SplitButton_postRender: SplitButton.prototype.postRender,
postRender: function (){
this._SplitButton_postRender();
this.getDom('button_body').appendChild(
uiUtils.createElementByHtml('<div id="' + this.id + '_colorlump" class="edui-colorlump"></div>')
);
this.getDom().className += ' edui-colorbutton';
},
setColor: function (color){
this.getDom('colorlump').style.backgroundColor = color;
this.color = color;
},
_onPickColor: function (color){
if (this.fireEvent('pickcolor', color) !== false) {
this.setColor(color);
this.popup.hide();
}
},
_onPickNoColor: function (color){
if (this.fireEvent('picknocolor') !== false) {
this.popup.hide();
}
}
};
utils.inherits(ColorButton, SplitButton);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/colorbutton.js | JavaScript | asf20 | 2,122 |
///import core
///import uicore
///import ui/menu.js
///import ui/splitbutton.js
(function (){
var utils = baidu.editor.utils,
Menu = baidu.editor.ui.Menu,
SplitButton = baidu.editor.ui.SplitButton,
MenuButton = baidu.editor.ui.MenuButton = function (options){
this.initOptions(options);
this.initMenuButton();
};
MenuButton.prototype = {
initMenuButton: function (){
var me = this;
this.uiName = "menubutton";
this.popup = new Menu({
items: me.items,
className: me.className,
editor:me.editor
});
this.popup.addListener('show', function (){
var list = this;
for (var i=0; i<list.items.length; i++) {
list.items[i].removeState('checked');
if (list.items[i].value == me._value) {
list.items[i].addState('checked');
this.value = me._value;
}
}
});
this.initSplitButton();
},
setValue : function(value){
this._value = value;
}
};
utils.inherits(MenuButton, SplitButton);
})(); | 10npsite | trunk/guanli/system/ueditor/_src/ui/menubutton.js | JavaScript | asf20 | 1,325 |
///import core
///import uicore
(function (){
var utils = baidu.editor.utils,
domUtils = baidu.editor.dom.domUtils,
UIBase = baidu.editor.ui.UIBase,
uiUtils = baidu.editor.ui.uiUtils;
var Mask = baidu.editor.ui.Mask = function (options){
this.initOptions(options);
this.initUIBase();
};
Mask.prototype = {
getHtmlTpl: function (){
return '<div id="##" class="edui-mask %%" onmousedown="return $$._onMouseDown(event, this);"></div>';
},
postRender: function (){
var me = this;
domUtils.on(window, 'resize', function (){
setTimeout(function (){
if (!me.isHidden()) {
me._fill();
}
});
});
},
show: function (zIndex){
this._fill();
this.getDom().style.display = '';
this.getDom().style.zIndex = zIndex;
},
hide: function (){
this.getDom().style.display = 'none';
this.getDom().style.zIndex = '';
},
isHidden: function (){
return this.getDom().style.display == 'none';
},
_onMouseDown: function (){
return false;
},
_fill: function (){
var el = this.getDom();
var vpRect = uiUtils.getViewportRect();
el.style.width = vpRect.width + 'px';
el.style.height = vpRect.height + 'px';
}
};
utils.inherits(Mask, UIBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/mask.js | JavaScript | asf20 | 1,622 |
(function (){
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
domUtils = baidu.editor.dom.domUtils,
Button = baidu.editor.ui.Button,
PopupButton = baidu.editor.ui.PopupButton = function (options){
this.initOptions(options);
this.initPopupButton();
};
PopupButton.prototype = {
popup: null,
uiName: 'button',
title: '',
initPopupButton: function (){
this.initButton();
var me = this;
if (this.popup != null) {
var popup = this.popup;
this.popup = null;
this.setPopup(popup);
}
},
setPopup: function (popup){
if (this.popup === popup) return;
if (this.popup != null) {
this.popup.dispose();
}
popup.addListener('show', utils.bind(this._onPopupShow, this));
popup.addListener('hide', utils.bind(this._onPopupHide, this));
popup.addListener('postrender', utils.bind(function (){
popup.getDom('body').appendChild(
uiUtils.createElementByHtml('<div id="' +
this.popup.id + '_bordereraser" class="edui-bordereraser edui-background" style="width:' +
(uiUtils.getClientRect(this.getDom()).width - 2) + 'px"></div>')
);
popup.getDom().className += ' ' + this.className;
}, this));
this.popup = popup;
},
_onPopupShow: function (){
this.addState('opened');
},
_onPopupHide: function (){
this.removeState('opened');
},
showPopup: function (){
// 当popup往上弹出的时候,做特殊处理
var rect = uiUtils.getClientRect(this.getDom());
rect.top -= this.popup.SHADOW_RADIUS;
rect.height += this.popup.SHADOW_RADIUS;
this.popup.showAnchorRect(rect);
},
_onClick: function (event, el){
if (!this.isDisabled()) {
this.showPopup();
}
}
};
utils.inherits(PopupButton, Button);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/popupbutton.js | JavaScript | asf20 | 2,305 |
var baidu = baidu || {};
baidu.editor = baidu.editor || {};
baidu.editor.ui = {}; | 10npsite | trunk/guanli/system/ueditor/_src/ui/ui.js | JavaScript | asf20 | 83 |
///import core
///import uicore
///import ui/popup.js
///import ui/autotypesetpicker.js
///import ui/splitbutton.js
(function (){
var utils = baidu.editor.utils,
Popup = baidu.editor.ui.Popup,
AutoTypeSetPicker = baidu.editor.ui.AutoTypeSetPicker,
SplitButton = baidu.editor.ui.SplitButton,
AutoTypeSetButton = baidu.editor.ui.AutoTypeSetButton = function (options){
this.initOptions(options);
this.initAutoTypeSetButton();
};
function getPara(me){
var opt = me.editor.options.autotypeset,
cont = me.getDom(),
ipts = domUtils.getElementsByTagName(cont,"input");
for(var i=ipts.length-1,ipt;ipt=ipts[i--];){
if(ipt.getAttribute("type")=="checkbox"){
var attrName = ipt.getAttribute("name");
opt[attrName] && delete opt[attrName];
if(ipt.checked){
var attrValue = document.getElementById(attrName+"Value");
if(attrValue){
if(/input/ig.test(attrValue.tagName)){
opt[attrName] = attrValue.value;
}else{
var iptChilds = attrValue.getElementsByTagName("input");
for(var j=iptChilds.length-1,iptchild;iptchild=iptChilds[j--];){
if(iptchild.checked){
opt[attrName] = iptchild.value;
break;
}
}
}
}else{
opt[attrName] = true;
}
}
}
}
var selects = domUtils.getElementsByTagName(cont,"select");
for(var i=0,si;si=selects[i++];){
var attr = si.getAttribute('name');
opt[attr] = opt[attr] ? si.value : '';
}
me.editor.options.autotypeset = opt;
}
AutoTypeSetButton.prototype = {
initAutoTypeSetButton: function (){
var me = this;
this.popup = new Popup({
//传入配置参数
content: new AutoTypeSetPicker({editor:me.editor}),
'editor':me.editor,
hide : function(){
if (!this._hidden && this.getDom()) {
getPara(this);
this.getDom().style.display = 'none';
this._hidden = true;
this.fireEvent('hide');
}
}
});
var flag = 0;
this.popup.addListener('postRenderAfter',function(){
var popupUI = this;
if(flag)return;
var cont = this.getDom(),
btn = cont.getElementsByTagName('button')[0];
btn.onclick = function(){
getPara(popupUI);
me.editor.execCommand('autotypeset')
};
flag = 1;
});
this.initSplitButton();
}
};
utils.inherits(AutoTypeSetButton, SplitButton);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/autotypesetbutton.js | JavaScript | asf20 | 3,317 |
///import core
///import uicore
///import ui\popup.js
///import ui\stateful.js
(function (){
var utils = baidu.editor.utils,
domUtils = baidu.editor.dom.domUtils,
uiUtils = baidu.editor.ui.uiUtils,
UIBase = baidu.editor.ui.UIBase,
Popup = baidu.editor.ui.Popup,
Stateful = baidu.editor.ui.Stateful,
Menu = baidu.editor.ui.Menu = function (options){
this.initOptions(options);
this.initMenu();
};
var menuSeparator = {
renderHtml: function (){
return '<div class="edui-menuitem edui-menuseparator"><div class="edui-menuseparator-inner"></div></div>';
},
postRender: function (){},
queryAutoHide: function (){ return true; }
};
Menu.prototype = {
items: null,
uiName: 'menu',
initMenu: function (){
this.items = this.items || [];
this.initPopup();
this.initItems();
},
initItems: function (){
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
if (item == '-') {
this.items[i] = this.getSeparator();
} else if (!(item instanceof MenuItem)) {
this.items[i] = this.createItem(item);
}
}
},
getSeparator: function (){
return menuSeparator;
},
createItem: function (item){
return new MenuItem(item);
},
_Popup_getContentHtmlTpl: Popup.prototype.getContentHtmlTpl,
getContentHtmlTpl: function (){
if (this.items.length == 0) {
return this._Popup_getContentHtmlTpl();
}
var buff = [];
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
buff[i] = item.renderHtml();
}
return ('<div class="%%-body">' + buff.join('') + '</div>');
},
_Popup_postRender: Popup.prototype.postRender,
postRender: function (){
var me = this;
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
item.ownerMenu = this;
item.postRender();
}
domUtils.on(this.getDom(), 'mouseover', function (evt){
evt = evt || event;
var rel = evt.relatedTarget || evt.fromElement;
var el = me.getDom();
if (!uiUtils.contains(el, rel) && el !== rel) {
me.fireEvent('over');
}
});
this._Popup_postRender();
},
queryAutoHide: function (el){
if (el) {
if (uiUtils.contains(this.getDom(), el)) {
return false;
}
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
if (item.queryAutoHide(el) === false) {
return false;
}
}
}
},
clearItems: function (){
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
clearTimeout(item._showingTimer);
clearTimeout(item._closingTimer);
if (item.subMenu) {
item.subMenu.destroy();
}
}
this.items = [];
},
destroy: function (){
if (this.getDom()) {
domUtils.remove(this.getDom());
}
this.clearItems();
},
dispose: function (){
this.destroy();
}
};
utils.inherits(Menu, Popup);
var MenuItem = baidu.editor.ui.MenuItem = function (options){
this.initOptions(options);
this.initUIBase();
this.Stateful_init();
if (this.subMenu && !(this.subMenu instanceof Menu)) {
this.subMenu = new Menu(this.subMenu);
}
};
MenuItem.prototype = {
label: '',
subMenu: null,
ownerMenu: null,
uiName: 'menuitem',
alwalysHoverable: true,
getHtmlTpl: function (){
return '<div id="##" class="%%" stateful onclick="$$._onClick(event, this);">' +
'<div class="%%-body">' +
this.renderLabelHtml() +
'</div>' +
'</div>';
},
postRender: function (){
var me = this;
this.addListener('over', function (){
me.ownerMenu.fireEvent('submenuover', me);
if (me.subMenu) {
me.delayShowSubMenu();
}
});
if (this.subMenu) {
this.getDom().className += ' edui-hassubmenu';
this.subMenu.render();
this.addListener('out', function (){
me.delayHideSubMenu();
});
this.subMenu.addListener('over', function (){
clearTimeout(me._closingTimer);
me._closingTimer = null;
me.addState('opened');
});
this.ownerMenu.addListener('hide', function (){
me.hideSubMenu();
});
this.ownerMenu.addListener('submenuover', function (t, subMenu){
if (subMenu !== me) {
me.delayHideSubMenu();
}
});
this.subMenu._bakQueryAutoHide = this.subMenu.queryAutoHide;
this.subMenu.queryAutoHide = function (el){
if (el && uiUtils.contains(me.getDom(), el)) {
return false;
}
return this._bakQueryAutoHide(el);
};
}
this.getDom().style.tabIndex = '-1';
uiUtils.makeUnselectable(this.getDom());
this.Stateful_postRender();
},
delayShowSubMenu: function (){
var me = this;
if (!me.isDisabled()) {
me.addState('opened');
clearTimeout(me._showingTimer);
clearTimeout(me._closingTimer);
me._closingTimer = null;
me._showingTimer = setTimeout(function (){
me.showSubMenu();
}, 250);
}
},
delayHideSubMenu: function (){
var me = this;
if (!me.isDisabled()) {
me.removeState('opened');
clearTimeout(me._showingTimer);
if (!me._closingTimer) {
me._closingTimer = setTimeout(function (){
if (!me.hasState('opened')) {
me.hideSubMenu();
}
me._closingTimer = null;
}, 400);
}
}
},
renderLabelHtml: function (){
return '<div class="edui-arrow"></div>' +
'<div class="edui-box edui-icon"></div>' +
'<div class="edui-box edui-label %%-label">' + (this.label || '') + '</div>';
},
getStateDom: function (){
return this.getDom();
},
queryAutoHide: function (el){
if (this.subMenu && this.hasState('opened')) {
return this.subMenu.queryAutoHide(el);
}
},
_onClick: function (event, this_){
if (this.hasState('disabled')) return;
if (this.fireEvent('click', event, this_) !== false) {
if (this.subMenu) {
this.showSubMenu();
} else {
Popup.postHide();
}
}
},
showSubMenu: function (){
var rect = uiUtils.getClientRect(this.getDom());
rect.right -= 5;
rect.left += 2;
rect.width -= 7;
rect.top -= 4;
rect.bottom += 4;
rect.height += 8;
this.subMenu.showAnchorRect(rect, true, true);
},
hideSubMenu: function (){
this.subMenu.hide();
}
};
utils.inherits(MenuItem, UIBase);
utils.extend(MenuItem.prototype, Stateful, true);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/menu.js | JavaScript | asf20 | 8,693 |
///import core
///import uicore
(function (){
var utils = baidu.editor.utils,
UIBase = baidu.editor.ui.UIBase;
var AutoTypeSetPicker = baidu.editor.ui.AutoTypeSetPicker = function (options){
this.initOptions(options);
this.initAutoTypeSetPicker();
};
AutoTypeSetPicker.prototype = {
initAutoTypeSetPicker: function (){
this.initUIBase();
},
getHtmlTpl: function (){
var options = this.editor.options,
opt = options.autotypeset;
for(var i = 0,lineStr = [],li,lis = options.listMap.lineheight;li=lis[i++];){
lineStr.push('<option value="'+li+'" '+(opt["lineHeight"] == li ? 'checked' : '')+'>'+li+'</option>');
}
return '<div id="##" class="edui-autotypesetpicker %%">' +
'<div class="edui-autotypesetpicker-body">' +
'<table >' +
'<tr><td colspan="2"><input type="checkbox" name="mergeEmptyline" '+ (opt["mergeEmptyline"] ? "checked" : "" )+'>合并空行</td><td colspan="2"><input type="checkbox" name="removeEmptyline" '+ (opt["removeEmptyline"] ? "checked" : "" )+'>删除空行</td></tr>'+
'<tr><td colspan="2"><input type="checkbox" name="removeClass" '+ (opt["removeClass"] ? "checked" : "" )+'>清除样式</td><td colspan="2"><input type="checkbox" name="indent" '+ (opt["indent"] ? "checked" : "" )+'>首行缩进2字</td></tr>'+
'<tr><td colspan="2"><input type="checkbox" name="textAlign" '+ (opt["textAlign"] ? "checked" : "" )+'>对齐方式:</td><td colspan="2" id="textAlignValue"><input type="radio" name="textAlignValue" value="left" '+((opt["textAlign"]&&opt["textAlign"]=="left") ? "checked" : "")+'>左对齐<input type="radio" name="textAlignValue" value="center" '+((opt["textAlign"]&&opt["textAlign"]=="center") ? "checked" : "")+'>居中对齐<input type="radio" name="textAlignValue" value="right" '+((opt["textAlign"]&&opt["textAlign"]=="right") ? "checked" : "")+'>右对齐 </tr>'+
'<tr><td colspan="2"><input type="checkbox" name="imageBlockLine" '+ (opt["imageBlockLine"] ? "checked" : "" )+'>图片浮动</td>' +
'<td colspan="2" id="imageBlockLineValue">' +
'<input type="radio" name="imageBlockLineValue" value="none" '+((opt["imageBlockLine"]&&opt["imageBlockLine"]=="none") ? "checked" : "")+'>默认' +
'<input type="radio" name="imageBlockLineValue" value="left" '+((opt["imageBlockLine"]&&opt["imageBlockLine"]=="left") ? "checked" : "")+'>左浮动' +
'<input type="radio" name="imageBlockLineValue" value="center" '+((opt["imageBlockLine"]&&opt["imageBlockLine"]=="center") ? "checked" : "")+'>独占行居中' +
'<input type="radio" name="imageBlockLineValue" value="right" '+((opt["imageBlockLine"]&&opt["imageBlockLine"]=="right") ? "checked" : "")+'>右浮动</tr>'+
'<tr><td colspan="2"><input type="checkbox" name="clearFontSize" '+ (opt["clearFontSize"] ? "checked" : "" )+'>清除字号</td><td colspan="2"><input type="checkbox" name="clearFontFamily" '+ (opt["clearFontFamily"] ? "checked" : "" )+'>清除字体</td></tr>'+
'<tr><td colspan="4"><input type="checkbox" name="removeEmptyNode" '+ (opt["removeEmptyNode"] ? "checked" : "" )+'>去掉冗余的html代码</td></tr>'+
'<tr><td colspan="4"><input type="checkbox" name="pasteFilter" '+ (opt["pasteFilter"] ? "checked" : "" )+'>粘贴过滤 (对每次粘贴的内容应用以上过滤规则)</td></tr>'+
'<tr><td colspan="4" align="right"><button >执行</button></td></tr>'+
'</table>'+
'</div>' +
'</div>';
},
_UIBase_render: UIBase.prototype.render
};
utils.inherits(AutoTypeSetPicker, UIBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/autotypesetpicker.js | JavaScript | asf20 | 4,095 |
///import core
///import uicore
///import ui/stateful.js
(function (){
var utils = baidu.editor.utils,
UIBase = baidu.editor.ui.UIBase,
Stateful = baidu.editor.ui.Stateful,
Button = baidu.editor.ui.Button = function (options){
this.initOptions(options);
this.initButton();
};
Button.prototype = {
uiName: 'button',
label: '',
title: '',
showIcon: true,
showText: true,
initButton: function (){
this.initUIBase();
this.Stateful_init();
},
getHtmlTpl: function (){
return '<div id="##" class="edui-box %%">' +
'<div id="##_state" stateful>' +
'<div class="%%-wrap"><div id="##_body" unselectable="on" ' + (this.title ? 'title="' + this.title + '"' : '') +
' class="%%-body" onmousedown="return false;" onclick="return $$._onClick();">' +
(this.showIcon ? '<div class="edui-box edui-icon"></div>' : '') +
(this.showText ? '<div class="edui-box edui-label">' + this.label + '</div>' : '') +
'</div>' +
'</div>' +
'</div></div>';
},
postRender: function (){
this.Stateful_postRender();
},
_onClick: function (){
if (!this.isDisabled()) {
this.fireEvent('click');
}
}
};
utils.inherits(Button, UIBase);
utils.extend(Button.prototype, Stateful);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/button.js | JavaScript | asf20 | 1,594 |
(function (){
var isIE = baidu.editor.browser.ie;
var utils = baidu.editor.utils;
var editorui = baidu.editor.ui;
var _Dialog = editorui.Dialog;
editorui.Dialog = function (options){
var dialog = new _Dialog(options);
dialog.addListener('hide', function (){
if (dialog.editor) {
var editor = dialog.editor;
try {
editor.focus()
} catch(ex){}
}
});
return dialog;
};
var k, cmd;
var btnCmds = ['Undo', 'Redo','FormatMatch',
'Bold', 'Italic', 'Underline',
'StrikeThrough', 'Subscript', 'Superscript','Source','Indent','Outdent',
'BlockQuote','PastePlain','PageBreak',
'SelectAll', 'Print', 'Preview', 'Horizontal', 'RemoveFormat','Time','Date','Unlink',
'InsertParagraphBeforeTable','InsertRow','InsertCol','MergeRight','MergeDown','DeleteRow',
'DeleteCol','SplittoRows','SplittoCols','SplittoCells','MergeCells','DeleteTable'];
k = btnCmds.length;
while (k --) {
cmd = btnCmds[k];
editorui[cmd] = function (cmd){
return function (editor, title){
title = title || editor.options.labelMap[cmd.toLowerCase()] || '';
var ui = new editorui.Button({
className: 'edui-for-' + cmd.toLowerCase(),
title: title,
onclick: function (){
editor.execCommand(cmd);
},
showText: false
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
var state = editor.queryCommandState(cmd.toLowerCase());
if (state == -1) {
ui.setDisabled(true);
ui.setChecked(false);
} else {
if(!uiReady){
ui.setDisabled(false);
ui.setChecked(state);
}
}
});
return ui;
};
}(cmd);
}
editorui.SnapScreen = function(editor, title){
var cmd = "SnapScreen";
title = title || editor.options.labelMap[cmd.toLowerCase()] || '';
var ui = new editorui.Button({
className: 'edui-for-' + cmd.toLowerCase(),
title: title,
onclick: function (){
editor.execCommand(cmd);
}
});
if(isIE){
var iframeUrl = editor.options.iframeUrlMap['snapscreen'];
iframeUrl = editor.ui.mapUrl(iframeUrl);
title = title || editor.options.labelMap['snapscreen'] || '';
var dialog = new editorui.Dialog({
iframeUrl: iframeUrl,
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-snapscreen',
title: title,
buttons: [{
className: 'edui-okbutton',
label: '确认',
onclick: function (){
dialog.close(true);
}
}, {
className: 'edui-cancelbutton',
label: '取消',
onclick: function (){
dialog.close(false);
}
}],
onok: function (){},
oncancel: function (){},
onclose: function (t, ok){
if (ok) {
return this.onok();
} else {
return this.oncancel();
}
}
});
dialog.render();
editor.snapscreenInstall = dialog;
}
editor.addListener('selectionchange',function(){
var state = editor.queryCommandState('snapscreen');
ui.setDisabled(state == -1);
});
return ui;
};
editorui.ClearDoc = function(editor, title){
var cmd = "ClearDoc";
title = title || editor.options.labelMap[cmd.toLowerCase()] || '';
var ui = new editorui.Button({
className: 'edui-for-' + cmd.toLowerCase(),
title: title,
onclick: function (){
if(confirm('确定清空文档吗?')){
editor.execCommand('cleardoc');
}
}
});
editor.addListener('selectionchange',function(){
var state = editor.queryCommandState('cleardoc');
ui.setDisabled(state == -1);
});
return ui;
};
editorui.Justify = function (editor, side, title){
side = (side || 'left').toLowerCase();
title = title || editor.options.labelMap['justify'+side.toLowerCase()] || '';
var ui = new editorui.Button({
className: 'edui-for-justify' + side.toLowerCase(),
title: title,
onclick: function (){
editor.execCommand('Justify', side);
}
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
var state = editor.queryCommandState('Justify');
ui.setDisabled(state == -1);
var value = editor.queryCommandValue('Justify');
ui.setChecked(value == side && !uiReady);
});
return ui;
};
editorui.JustifyLeft = function (editor, title){
return editorui.Justify(editor, 'left', title);
};
editorui.JustifyCenter = function (editor, title){
return editorui.Justify(editor, 'center', title);
};
editorui.JustifyRight = function (editor, title){
return editorui.Justify(editor, 'right', title);
};
editorui.JustifyJustify = function (editor, title){
return editorui.Justify(editor, 'justify', title);
};
editorui.ImageFloat = function(editor,side,title){
side = (side || 'none').toLowerCase();
title = title || editor.options.labelMap['image'+side.toLowerCase()] || '';
var ui = new editorui.Button({
className: 'edui-for-image' + side.toLowerCase(),
title: title,
onclick: function (){
editor.execCommand('imagefloat', side);
}
});
editor.addListener('selectionchange', function (type){
var state = editor.queryCommandState('imagefloat');
ui.setDisabled(state == -1);
var state = editor.queryCommandValue('imagefloat');
ui.setChecked(state == side);
});
return ui;
};
editorui.ImageNone = function(editor,title){
return editorui.ImageFloat(editor, title);
};
editorui.ImageLeft = function(editor,title){
return editorui.ImageFloat(editor,"left", title);
};
editorui.ImageRight = function(editor,title){
return editorui.ImageFloat(editor,"right", title);
};
editorui.ImageCenter = function(editor,title){
return editorui.ImageFloat(editor,"center", title);
};
editorui.Directionality = function (editor, side, title){
side = (side || 'left').toLowerCase();
title = title || editor.options.labelMap['directionality'+side.toLowerCase()] || '';
var ui = new editorui.Button({
className: 'edui-for-directionality' + side.toLowerCase(),
title: title,
onclick: function (){
editor.execCommand('directionality', side);
},
type : side
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
var state = editor.queryCommandState('directionality');
ui.setDisabled(state == -1);
var value = editor.queryCommandValue('directionality');
ui.setChecked(value == ui.type && !uiReady);
});
return ui;
};
editorui.DirectionalityLtr = function (editor, title){
return new editorui.Directionality(editor, 'ltr', title);
};
editorui.DirectionalityRtl = function (editor, title){
return new editorui.Directionality(editor, 'rtl', title);
};
var colorCmds = ['BackColor', 'ForeColor'];
k = colorCmds.length;
while (k --) {
cmd = colorCmds[k];
editorui[cmd] = function (cmd){
return function (editor, title){
title = title || editor.options.labelMap[cmd.toLowerCase()] || '';
var ui = new editorui.ColorButton({
className: 'edui-for-' + cmd.toLowerCase(),
color: 'default',
title: title,
editor:editor,
onpickcolor: function (t, color){
editor.execCommand(cmd, color);
},
onpicknocolor: function (){
editor.execCommand(cmd, 'default');
this.setColor('transparent');
this.color = 'default';
},
onbuttonclick: function (){
editor.execCommand(cmd, this.color);
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState(cmd);
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
}
});
return ui;
};
}(cmd);
}
//不需要确定取消按钮的dialog
var dialogNoButton = ['SearchReplace','Help','Spechars'];
k = dialogNoButton.length;
while(k --){
cmd = dialogNoButton[k];
editorui[cmd] = function (cmd){
cmd = cmd.toLowerCase();
return function (editor, iframeUrl, title){
iframeUrl = iframeUrl || editor.options.iframeUrlMap[cmd.toLowerCase()] || 'about:blank';
iframeUrl = editor.ui.mapUrl(iframeUrl);
title = title || editor.options.labelMap[cmd.toLowerCase()] || '';
var dialog = new editorui.Dialog({
iframeUrl: iframeUrl,
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-' + cmd,
title: title,
onok: function (){},
oncancel: function (){},
onclose: function (t, ok){
if (ok) {
return this.onok();
} else {
return this.oncancel();
}
}
});
dialog.render();
var ui = new editorui.Button({
className: 'edui-for-' + cmd,
title: title,
onclick: function (){
dialog.open();
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState(cmd);
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
}
});
return ui;
};
}(cmd);
}
var dialogCmds = ['Attachment','Anchor','Link', 'InsertImage', 'Map', 'GMap', 'InsertVideo','TableSuper','HighlightCode','InsertFrame','EditTd'];
k = dialogCmds.length;
while (k --) {
cmd = dialogCmds[k];
editorui[cmd] = function (cmd){
cmd = cmd.toLowerCase();
return function (editor, iframeUrl, title){
iframeUrl = iframeUrl || editor.options.iframeUrlMap[cmd.toLowerCase()] || 'about:blank';
iframeUrl = editor.ui.mapUrl(iframeUrl);
title = title || editor.options.labelMap[cmd.toLowerCase()] || '';
var dialog = new editorui.Dialog({
iframeUrl: iframeUrl,
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-' + cmd,
title: title,
buttons: [{
className: 'edui-okbutton',
label: '确认',
onclick: function (){
dialog.close(true);
}
}, {
className: 'edui-cancelbutton',
label: '取消',
onclick: function (){
dialog.close(false);
}
}],
onok: function (){},
oncancel: function (){},
onclose: function (t, ok){
if (ok) {
return this.onok();
} else {
return this.oncancel();
}
}
});
dialog.render();
var ui = new editorui.Button({
className: 'edui-for-' + cmd,
title: title,
onclick: function (){
dialog.open();
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState(cmd);
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setChecked(state);
ui.setDisabled(false);
}
});
return ui;
};
}(cmd);
}
editorui.WordImage = function(editor){
var ui = new editorui.Button({
className: 'edui-for-wordimage',
title: "图片转存",
onclick: function (){
editor.execCommand("wordimage","word_img");
editor.ui._dialogs['wordImageDialog'].open();
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState("wordimage","word_img");
//if(console)console.log(state);
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
ui.setChecked(state);
}
});
return ui;
};
editorui.FontFamily = function (editor, list, title){
list = list || editor.options.listMap['fontfamily'] || [];
title = title || editor.options.labelMap['fontfamily'] || '';
var items = [];
for (var i=0; i<list.length; i++) {
var font = list[i];
var fonts = editor.options.fontMap[font];
var value = '"' + font + '"';
var regex = new RegExp(font, 'i');
if (fonts) {
value = '"' + fonts.join('","') + '"';
regex = new RegExp('(?:\\|)' + fonts.join('|') + '(?:\\|)', 'i');
}
items.push({
label: font,
value: value,
regex: regex,
renderLabelHtml: function (){
return '<div class="edui-label %%-label" style="font-family:' +
utils.unhtml(this.value) + '">' + (this.label || '') + '</div>';
}
});
}
var ui = new editorui.Combox({
editor:editor,
items: items,
onselect: function (t,index){
editor.execCommand('FontFamily', this.items[index].value);
},
onbuttonclick: function (){
this.showPopup();
},
title: title,
initValue: editor.options.ComboxInitial.FONT_FAMILY,
className: 'edui-for-fontfamily',
indexByValue: function (value){
if(value){
value = '|' + value.replace(/,/g, '|').replace(/"/g, '') + '|';
value.replace(/\s*|\s*/g, '|');
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
if (item.regex.test(value)) {
return i;
}
}
}
return -1;
}
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
if(!uiReady){
var state = editor.queryCommandState('FontFamily');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('FontFamily');
//trace:1871 ie下从源码模式切换回来时,字体会带单引号,而且会有逗号
value && (value = value.replace(/['"]/g,'').split(',')[0]);
ui.setValue( value);
}
}
});
return ui;
};
editorui.FontSize = function (editor, list, title){
list = list || editor.options.listMap['fontsize'] || [];
title = title || editor.options.labelMap['fontsize'] || '';
var items = [];
for (var i=0; i<list.length; i++) {
var size = list[i] + 'px';
items.push({
label: size,
value: size,
renderLabelHtml: function (){
return '<div class="edui-label %%-label" style="font-size:' +
this.value + '">' + (this.label || '') + '</div>';
}
});
}
var ui = new editorui.Combox({
editor:editor,
items: items,
title: title,
initValue: editor.options.ComboxInitial.FONT_SIZE,
onselect: function (t,index){
editor.execCommand('FontSize', this.items[index].value);
},
onbuttonclick: function (){
this.showPopup();
},
className: 'edui-for-fontsize'
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
if(!uiReady){
var state = editor.queryCommandState('FontSize');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
ui.setValue(editor.queryCommandValue('FontSize'));
}
}
});
return ui;
};
// editorui.RowSpacing = function (editor, list, title){
// list = list || editor.options.listMap['rowspacing'] || [];
// title = title || editor.options.labelMap['rowspacing'] || '';
// var items = [];
// for (var i=0; i<list.length; i++) {
// var tag = list[i] + 'px';
// var value = list[i];
// items.push({
// label: tag,
// value: value,
// renderLabelHtml: function (){
// return '<div class="edui-label %%-label" style="font-size:12px">' + (this.label || '') + '</div>';
// }
// });
// }
// var ui = new editorui.Combox({
// editor:editor,
// items: items,
// title: title,
// initValue: editor.options.ComboxInitial.ROW_SPACING,
// onselect: function (t,index){
// editor.execCommand('RowSpacing', this.items[index].value);
// },
// onbuttonclick: function (){
// this.showPopup();
// },
// className: 'edui-for-rowspacing'
// });
// editor.addListener('selectionchange', function (type, causeByUi, uiReady){
// if(!uiReady){
// var state = editor.queryCommandState('RowSpacing');
// if (state == -1) {
// ui.setDisabled(true);
// } else {
// ui.setDisabled(false);
// ui.setValue(editor.queryCommandValue('RowSpacing'));
// }
// }
//
// });
// return ui;
// };
editorui.Paragraph = function (editor, list, title){
list = list || editor.options.listMap['paragraph'] || [];
title = title || editor.options.labelMap['paragraph'] || '';
var items = [];
for (var i=0; i<list.length; i++) {
var item = list[i].split(':');
var tag = item[0];
var label = item[1];
items.push({
label: label,
value: tag,
renderLabelHtml: function (){
return '<div class="edui-label %%-label"><span class="edui-for-' + this.value + '">' + (this.label || '') + '</span></div>';
}
});
}
var ui = new editorui.Combox({
editor:editor,
items: items,
title: title,
initValue: editor.options.ComboxInitial.PARAGRAPH,
className: 'edui-for-paragraph',
onselect: function (t,index){
editor.execCommand('Paragraph', this.items[index].value);
},
onbuttonclick: function (){
this.showPopup();
}
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
if(!uiReady){
var state = editor.queryCommandState('Paragraph');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('Paragraph');
var index = ui.indexByValue(value);
if (index != -1) {
ui.setValue(value);
} else {
ui.setValue(ui.initValue);
}
}
}
});
return ui;
};
//自定义标题
editorui.CustomStyle = function(editor,list,title){
list = list || editor.options.listMap['customstyle'] || [];
title = title || editor.options.labelMap['customstyle'] || '';
for(var i=0,items = [],t;t=list[i++];){
(function(ti){
items.push({
label: ti.label,
value: ti,
renderLabelHtml: function (){
return '<div class="edui-label %%-label">' +'<'+ ti.tag +' ' + (ti.className?' class="'+ti.className+'"':"")
+ (ti.style ? ' style="' + ti.style+'"':"") + '>' + ti.label+"<\/"+ti.tag+">"
+ '</div>';
}
});
})(t)
}
var ui = new editorui.Combox({
editor:editor,
items: items,
title: title,
initValue:editor.options.ComboxInitial.CUSTOMSTYLE,
className: 'edui-for-customstyle',
onselect: function (t,index){
editor.execCommand('customstyle', this.items[index].value);
},
onbuttonclick: function (){
this.showPopup();
},
indexByValue: function (value){
for(var i=0,ti;ti=this.items[i++];){
if(ti.label == value){
return i-1
}
}
return -1;
}
});
editor.addListener('selectionchange', function (type, causeByUi, uiReady){
if(!uiReady){
var state = editor.queryCommandState('customstyle');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('customstyle');
var index = ui.indexByValue(value);
if (index != -1) {
ui.setValue(value);
} else {
ui.setValue(ui.initValue);
}
}
}
});
return ui;
};
editorui.InsertTable = function (editor, iframeUrl, title){
iframeUrl = iframeUrl || editor.options.iframeUrlMap['inserttable'] || 'about:blank';
iframeUrl = editor.ui.mapUrl(iframeUrl);
title = title || editor.options.labelMap['inserttable'] || '';
var dialog = new editorui.Dialog({
iframeUrl: iframeUrl,
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-inserttable',
title: title,
buttons: [{
className: 'edui-okbutton',
label: '确认',
onclick: function (){
dialog.close(true);
}
}, {
className: 'edui-cancelbutton',
label: '取消',
onclick: function (){
dialog.close(false);
}
}],
onok: function (){},
oncancel: function (){},
onclose: function (t,ok){
if (ok) {
return this.onok();
} else {
return this.oncancel();
}
}
});
dialog.render();
editor.tableDialog = dialog;
var ui = new editorui.TableButton({
editor:editor,
title: title,
className: 'edui-for-inserttable',
onpicktable: function (t,numCols, numRows){
editor.execCommand('InsertTable', {numRows:numRows, numCols:numCols});
},
onmore: function (){
dialog.open();
},
onbuttonclick: function (){
dialog.open();
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('inserttable');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
}
});
return ui;
};
editorui.AutoTypeSet = function (editor, iframeUrl, title){
title = title || editor.options.labelMap['autotypeset'] || '';
var ui = new editorui.AutoTypeSetButton({
editor:editor,
title: title,
className: 'edui-for-autotypeset',
onbuttonclick: function (){
editor.execCommand('autotypeset')
}
});
editor.addListener('selectionchange', function (){
ui.setDisabled(editor.queryCommandState('autotypeset') == -1);
});
return ui;
};
editorui.LineHeight = function (editor, title){
for(var i=0,ci,items=[];ci = editor.options.listMap.lineheight[i++];){
items.push({
//todo:写死了
label : ci == '1' ? '默认' : ci,
value: ci,
onclick:function(){
editor.execCommand("lineheight", this.value);
}
})
}
var ui = new editorui.MenuButton({
editor:editor,
className : 'edui-for-lineheight',
title : title || editor.options.labelMap['lineheight'] || '',
items :items,
onbuttonclick: function (){
var value = editor.queryCommandValue('LineHeight') || this.value;
editor.execCommand("LineHeight", value);
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('LineHeight');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('LineHeight');
value && ui.setValue((value + '').replace(/cm/,''));
ui.setChecked(state)
}
});
return ui;
};
editorui.RowSpacingTop = function (editor, title){
for(var i=0,ci,items=[];ci = editor.options.listMap.rowspacing[i++];){
items.push({
label : ci,
value: ci,
onclick:function(){
editor.execCommand("rowspacing", this.value,'top');
}
})
}
var ui = new editorui.MenuButton({
editor:editor,
className : 'edui-for-rowspacingtop',
title : title || editor.options.labelMap['rowspacingtop'] || '段前间距',
items :items,
onbuttonclick: function (){
var value = editor.queryCommandValue('rowspacing','top') || this.value;
editor.execCommand("rowspacing", value,'top');
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('rowspacing','top');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('rowspacing','top');
value && ui.setValue((value + '').replace(/%/,''));
ui.setChecked(state)
}
});
return ui;
};
editorui.RowSpacingBottom = function (editor, title){
for(var i=0,ci,items=[];ci = editor.options.listMap.rowspacing[i++];){
items.push({
label : ci,
value: ci,
onclick:function(){
editor.execCommand("rowspacing", this.value,'bottom');
}
})
}
var ui = new editorui.MenuButton({
editor:editor,
className : 'edui-for-rowspacingbottom',
title : title || editor.options.labelMap['rowspacingbottom'] || '段后间距',
items :items,
onbuttonclick: function (){
var value = editor.queryCommandValue('rowspacing','bottom') || this.value;
editor.execCommand("rowspacing", value,'bottom');
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('rowspacing','bottom');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('rowspacing','bottom');
value && ui.setValue((value + '').replace(/%/,''));
ui.setChecked(state)
}
});
return ui;
};
editorui.InsertOrderedList = function (editor, title){
title = title || editor.options.labelMap['insertorderedlist'] || '';
var _onMenuClick = function(){
editor.execCommand("InsertOrderedList", this.value);
};
var ui = new editorui.MenuButton({
editor:editor,
className : 'edui-for-insertorderedlist',
title : title,
items :
[{
label: '1,2,3...',
value: 'decimal',
onclick : _onMenuClick
},{
label: 'a,b,c ...',
value: 'lower-alpha',
onclick : _onMenuClick
},{
label: 'i,ii,iii...',
value: 'lower-roman',
onclick : _onMenuClick
},{
label: 'A,B,C',
value: 'upper-alpha',
onclick : _onMenuClick
},{
label: 'I,II,III...',
value: 'upper-roman',
onclick : _onMenuClick
}],
onbuttonclick: function (){
var value = editor.queryCommandValue('InsertOrderedList') || this.value;
editor.execCommand("InsertOrderedList", value);
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('InsertOrderedList');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('InsertOrderedList');
ui.setValue(value);
ui.setChecked(state)
}
});
return ui;
};
editorui.InsertUnorderedList = function (editor, title){
title = title || editor.options.labelMap['insertunorderedlist'] || '';
var _onMenuClick = function(){
editor.execCommand("InsertUnorderedList", this.value);
};
var ui = new editorui.MenuButton({
editor:editor,
className : 'edui-for-insertunorderedlist',
title: title,
items:
[{
label: '○ 小圆圈',
value: 'circle',
onclick : _onMenuClick
},{
label: '● 小圆点',
value: 'disc',
onclick : _onMenuClick
},{
label: '■ 小方块',
value: 'square',
onclick : _onMenuClick
}],
onbuttonclick: function (){
var value = editor.queryCommandValue('InsertUnorderedList') || this.value;
editor.execCommand("InsertUnorderedList", value);
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('InsertUnorderedList');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
var value = editor.queryCommandValue('InsertUnorderedList');
ui.setValue(value);
ui.setChecked(state)
}
});
return ui;
};
editorui.FullScreen = function (editor, title){
title = title || editor.options.labelMap['fullscreen'] || '';
var ui = new editorui.Button({
className: 'edui-for-fullscreen',
title: title,
onclick: function (){
if (editor.ui) {
editor.ui.setFullScreen(!editor.ui.isFullScreen());
}
this.setChecked(editor.ui.isFullScreen());
}
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('fullscreen');
ui.setDisabled(state == -1);
ui.setChecked(editor.ui.isFullScreen());
});
return ui;
};
editorui.Emotion = function(editor, iframeUrl, title){
title = title || editor.options.labelMap['emotion'] || '';
iframeUrl = iframeUrl || editor.options.iframeUrlMap['emotion'] || 'about:blank';
iframeUrl = editor.ui.mapUrl(iframeUrl);
var ui = new editorui.MultiMenuPop({
title: title,
editor: editor,
className: 'edui-for-emotion',
iframeUrl: iframeUrl
});
editor.addListener('selectionchange', function (){
var state = editor.queryCommandState('emotion');
if (state == -1) {
ui.setDisabled(true);
} else {
ui.setDisabled(false);
}
});
return ui;
};
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/editorui.js | JavaScript | asf20 | 37,353 |
///import core
///import uicore
///import ui/menu.js
///import ui/splitbutton.js
(function (){
// todo: menu和item提成通用list
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
Menu = baidu.editor.ui.Menu,
SplitButton = baidu.editor.ui.SplitButton,
Combox = baidu.editor.ui.Combox = function (options){
this.initOptions(options);
this.initCombox();
};
Combox.prototype = {
uiName: 'combox',
initCombox: function (){
var me = this;
this.items = this.items || [];
for (var i=0; i<this.items.length; i++) {
var item = this.items[i];
item.uiName = 'listitem';
item.index = i;
item.onclick = function (){
me.selectByIndex(this.index);
};
}
this.popup = new Menu({
items: this.items,
uiName: 'list',
editor:this.editor
});
this.initSplitButton();
},
_SplitButton_postRender: SplitButton.prototype.postRender,
postRender: function (){
this._SplitButton_postRender();
this.setLabel(this.label || '');
this.setValue(this.initValue || '');
},
showPopup: function (){
var rect = uiUtils.getClientRect(this.getDom());
rect.top += 1;
rect.bottom -= 1;
rect.height -= 2;
this.popup.showAnchorRect(rect);
},
getValue: function (){
return this.value;
},
setValue: function (value){
var index = this.indexByValue(value);
if (index != -1) {
this.selectedIndex = index;
this.setLabel(this.items[index].label);
this.value = this.items[index].value;
} else {
this.selectedIndex = -1;
this.setLabel(this.getLabelForUnknowValue(value));
this.value = value;
}
},
setLabel: function (label){
this.getDom('button_body').innerHTML = label;
this.label = label;
},
getLabelForUnknowValue: function (value){
return value;
},
indexByValue: function (value){
for (var i=0; i<this.items.length; i++) {
if (value == this.items[i].value) {
return i;
}
}
return -1;
},
getItem: function (index){
return this.items[index];
},
selectByIndex: function (index){
if (index < this.items.length && this.fireEvent('select', index) !== false) {
this.selectedIndex = index;
this.value = this.items[index].value;
this.setLabel(this.items[index].label);
}
}
};
utils.inherits(Combox, SplitButton);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/combox.js | JavaScript | asf20 | 3,120 |
///import core
///import uicore
(function () {
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
domUtils = baidu.editor.dom.domUtils,
UIBase = baidu.editor.ui.UIBase,
Popup = baidu.editor.ui.Popup = function (options){
this.initOptions(options);
this.initPopup();
};
var allPopups = [];
function closeAllPopup( el ){
var newAll = [];
for ( var i = 0; i < allPopups.length; i++ ) {
var pop = allPopups[i];
if (!pop.isHidden()) {
if (pop.queryAutoHide(el) !== false) {
pop.hide();
}
}
}
}
Popup.postHide = closeAllPopup;
var ANCHOR_CLASSES = ['edui-anchor-topleft','edui-anchor-topright',
'edui-anchor-bottomleft','edui-anchor-bottomright'];
Popup.prototype = {
SHADOW_RADIUS: 5,
content: null,
_hidden: false,
autoRender: true,
canSideLeft: true,
canSideUp: true,
initPopup: function (){
this.initUIBase();
allPopups.push( this );
},
getHtmlTpl: function (){
return '<div id="##" class="edui-popup %%">' +
' <div id="##_body" class="edui-popup-body">' +
' <iframe style="position:absolute;z-index:-1;left:0;top:0;background-color: white;" frameborder="0" width="100%" height="100%" src="javascript:"></iframe>' +
' <div class="edui-shadow"></div>' +
' <div id="##_content" class="edui-popup-content">' +
this.getContentHtmlTpl() +
' </div>' +
' </div>' +
'</div>';
},
getContentHtmlTpl: function (){
if (typeof this.content == 'string') {
return this.content;
}
return this.content.renderHtml();
},
_UIBase_postRender: UIBase.prototype.postRender,
postRender: function (){
if (this.content instanceof UIBase) {
this.content.postRender();
}
this.fireEvent('postRenderAfter');
this.hide(true);
this._UIBase_postRender();
},
_doAutoRender: function (){
if (!this.getDom() && this.autoRender) {
this.render();
}
},
mesureSize: function (){
var box = this.getDom('content');
return uiUtils.getClientRect(box);
},
fitSize: function (){
var popBodyEl = this.getDom('body');
popBodyEl.style.width = '';
popBodyEl.style.height = '';
var size = this.mesureSize();
popBodyEl.style.width = size.width + 'px';
popBodyEl.style.height = size.height + 'px';
return size;
},
showAnchor: function ( element, hoz ){
this.showAnchorRect( uiUtils.getClientRect( element ), hoz );
},
showAnchorRect: function ( rect, hoz, adj ){
this._doAutoRender();
var vpRect = uiUtils.getViewportRect();
this._show();
var popSize = this.fitSize();
var sideLeft, sideUp, left, top;
if (hoz) {
sideLeft = this.canSideLeft && (rect.right + popSize.width > vpRect.right && rect.left > popSize.width);
sideUp = this.canSideUp && (rect.top + popSize.height > vpRect.bottom && rect.bottom > popSize.height);
left = (sideLeft ? rect.left - popSize.width : rect.right);
top = (sideUp ? rect.bottom - popSize.height : rect.top);
} else {
sideLeft = this.canSideLeft && (rect.right + popSize.width > vpRect.right && rect.left > popSize.width);
sideUp = this.canSideUp && (rect.top + popSize.height > vpRect.bottom && rect.bottom > popSize.height);
left = (sideLeft ? rect.right - popSize.width : rect.left);
top = (sideUp ? rect.top - popSize.height : rect.bottom);
}
var popEl = this.getDom();
uiUtils.setViewportOffset(popEl, {
left: left,
top: top
});
domUtils.removeClasses(popEl, ANCHOR_CLASSES);
popEl.className += ' ' + ANCHOR_CLASSES[(sideUp ? 1 : 0) * 2 + (sideLeft ? 1 : 0)];
if(this.editor){
popEl.style.zIndex = this.editor.container.style.zIndex * 1 + 10;
baidu.editor.ui.uiUtils.getFixedLayer().style.zIndex = popEl.style.zIndex - 1;
}
},
showAt: function (offset) {
var left = offset.left;
var top = offset.top;
var rect = {
left: left,
top: top,
right: left,
bottom: top,
height: 0,
width: 0
};
this.showAnchorRect(rect, false, true);
},
_show: function (){
if (this._hidden) {
var box = this.getDom();
box.style.display = '';
this._hidden = false;
// if (box.setActive) {
// box.setActive();
// }
this.fireEvent('show');
}
},
isHidden: function (){
return this._hidden;
},
show: function (){
this._doAutoRender();
this._show();
},
hide: function (notNofity){
if (!this._hidden && this.getDom()) {
// this.getDom().style.visibility = 'hidden';
this.getDom().style.display = 'none';
this._hidden = true;
if (!notNofity) {
this.fireEvent('hide');
}
}
},
queryAutoHide: function (el){
return !el || !uiUtils.contains(this.getDom(), el);
}
};
utils.inherits(Popup, UIBase);
domUtils.on( document, 'mousedown', function ( evt ) {
var el = evt.target || evt.srcElement;
closeAllPopup( el );
} );
domUtils.on( window, 'scroll', function () {
closeAllPopup();
} );
// var lastVpRect = uiUtils.getViewportRect();
// domUtils.on( window, 'resize', function () {
// var vpRect = uiUtils.getViewportRect();
// if (vpRect.width != lastVpRect.width || vpRect.height != lastVpRect.height) {
// closeAllPopup();
// }
// } );
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/popup.js | JavaScript | asf20 | 6,784 |
(function (){
var utils = baidu.editor.utils,
UIBase = baidu.editor.ui.UIBase,
Separator = baidu.editor.ui.Separator = function (options){
this.initOptions(options);
this.initSeparator();
};
Separator.prototype = {
uiName: 'separator',
initSeparator: function (){
this.initUIBase();
},
getHtmlTpl: function (){
return '<div id="##" class="edui-box %%"></div>';
}
};
utils.inherits(Separator, UIBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/separator.js | JavaScript | asf20 | 555 |
(function (){
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
EventBase = baidu.editor.EventBase,
UIBase = baidu.editor.ui.UIBase = function (){};
UIBase.prototype = {
className: '',
uiName: '',
initOptions: function (options){
var me = this;
for (var k in options) {
me[k] = options[k];
}
this.id = this.id || 'edui' + uiUtils.uid();
},
initUIBase: function (){
this._globalKey = utils.unhtml( uiUtils.setGlobal(this.id, this) );
},
render: function (holder){
var html = this.renderHtml();
var el = uiUtils.createElementByHtml(html);
var seatEl = this.getDom();
if (seatEl != null) {
seatEl.parentNode.replaceChild(el, seatEl);
uiUtils.copyAttributes(el, seatEl);
} else {
if (typeof holder == 'string') {
holder = document.getElementById(holder);
}
holder = holder || uiUtils.getFixedLayer();
holder.appendChild(el);
}
this.postRender();
},
getDom: function (name){
if (!name) {
return document.getElementById( this.id );
} else {
return document.getElementById( this.id + '_' + name );
}
},
postRender: function (){
this.fireEvent('postrender');
},
getHtmlTpl: function (){
return '';
},
formatHtml: function (tpl){
var prefix = 'edui-' + this.uiName;
return (tpl
.replace(/##/g, this.id)
.replace(/%%-/g, this.uiName ? prefix + '-' : '')
.replace(/%%/g, (this.uiName ? prefix : '') + ' ' + this.className)
.replace(/\$\$/g, this._globalKey));
},
renderHtml: function (){
return this.formatHtml(this.getHtmlTpl());
},
dispose: function (){
var box = this.getDom();
if (box) baidu.editor.dom.domUtils.remove( box );
uiUtils.unsetGlobal(this.id);
}
};
utils.inherits(UIBase, EventBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/uibase.js | JavaScript | asf20 | 2,385 |
///import core
///commands 全屏
///commandsName FullScreen
///commandsTitle 全屏
(function () {
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
UIBase = baidu.editor.ui.UIBase;
function EditorUI( options ) {
this.initOptions( options );
this.initEditorUI();
}
EditorUI.prototype = {
uiName: 'editor',
initEditorUI: function () {
this.editor.ui = this;
this._dialogs = {};
this.initUIBase();
this._initToolbars();
var editor = this.editor,
iframeUrlMap = editor.options.iframeUrlMap;
editor.addListener( 'ready', function () {
baidu.editor.dom.domUtils.on( editor.window, 'scroll', function () {
baidu.editor.ui.Popup.postHide();
} );
//display bottom-bar label based on config
if ( editor.options.elementPathEnabled ) {
editor.ui.getDom( 'elementpath' ).innerHTML = '<div class="edui-editor-breadcrumb">path:</div>';
}
if ( editor.options.wordCount ) {
editor.ui.getDom( 'wordcount' ).innerHTML = '字数统计';
}
if(!editor.selection.isFocus())return;
editor.fireEvent( 'selectionchange', false, true );
} );
editor.addListener( 'mousedown', function ( t, evt ) {
var el = evt.target || evt.srcElement;
baidu.editor.ui.Popup.postHide( el );
} );
editor.addListener( 'contextmenu', function ( t, evt ) {
baidu.editor.ui.Popup.postHide();
} );
var me = this;
editor.addListener( 'selectionchange', function () {
if(!editor.selection.isFocus())return;
me._updateElementPath();
//字数统计
me._wordCount();
} );
editor.addListener( 'sourcemodechanged', function ( t, mode ) {
if ( editor.options.elementPathEnabled ) {
if ( mode ) {
me.disableElementPath();
} else {
me.enableElementPath();
}
}
if ( editor.options.wordCount ) {
if ( mode ) {
me.disableWordCount();
} else {
me.enableWordCount();
}
}
} );
// 超链接的编辑器浮层
var linkDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap ? editor.ui.mapUrl(iframeUrlMap.link ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-link',
title: '超链接',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
linkDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
linkDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
linkDialog.render();
// 图片的编辑器浮层
var imgDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl(iframeUrlMap.insertimage ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-insertimage',
title: '图片',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
imgDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
imgDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
imgDialog.render();
//锚点
var anchorDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl( iframeUrlMap.anchor ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-anchor',
title: '锚点',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
anchorDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
anchorDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
anchorDialog.render();
// video
var videoDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl( iframeUrlMap.insertvideo ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-insertvideo',
title: '视频',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
videoDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
videoDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
videoDialog.render();
//本地word图片上传
var wordImageDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl( iframeUrlMap.wordimage ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-wordimage',
title: '图片转存',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
wordImageDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
wordImageDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
wordImageDialog.render();
//挂载dialog框到ui实例
me._dialogs['wordImageDialog'] = wordImageDialog;
var tdDialog = new baidu.editor.ui.Dialog({
iframeUrl: iframeUrlMap?me.mapUrl(iframeUrlMap['edittd']):'about:blank',
autoReset: true,
draggable: true,
editor:editor,
className: 'edui-for-edittd',
title: "单元格",
buttons: [{
className: 'edui-okbutton',
label: '确认',
onclick: function (){
tdDialog.close(true);
}
}, {
className: 'edui-cancelbutton',
label: '取消',
onclick: function (){
tdDialog.close(false);
}
}],
onok: function (){},
oncancel: function (){},
onclose: function (t,ok){
if (ok) {
return this.onok();
} else {
return this.oncancel();
}
}
});
tdDialog.render();
me._dialogs['tdDialog'] = tdDialog;
// map
var mapDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl(iframeUrlMap.map ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-map',
title: '地图',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
mapDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
mapDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
mapDialog.render();
// map
var gmapDialog = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl( iframeUrlMap.gmap ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-gmap',
title: 'Google地图',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
gmapDialog.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
gmapDialog.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
gmapDialog.render();
var popup = new baidu.editor.ui.Popup( {
editor:editor,
content: '',
className: 'edui-bubble',
_onEditButtonClick: function () {
this.hide();
linkDialog.open();
},
_onImgEditButtonClick: function () {
this.hide();
var nodeStart = editor.selection.getRange().getClosedNode();
var img = baidu.editor.dom.domUtils.findParentByTagName( nodeStart, "img", true );
if ( img && img.className.indexOf( "edui-faked-video" ) != -1 ) {
videoDialog.open();
} else if ( img && img.src.indexOf( "http://api.map.baidu.com" ) != -1 ) {
mapDialog.open();
} else if ( img && img.src.indexOf( "http://maps.google.com/maps/api/staticmap" ) != -1 ) {
gmapDialog.open();
} else if ( img && img.getAttribute( "anchorname" ) ) {
anchorDialog.open();
}else if(img && img.getAttribute("word_img")){
editor.word_img = [img.getAttribute("word_img")];
editor.ui._dialogs["wordImageDialog"].open();
} else {
imgDialog.open();
}
},
_getImg: function () {
var img = editor.selection.getRange().getClosedNode();
if ( img && (img.nodeName == 'img' || img.nodeName == 'IMG') ) {
return img;
}
return null;
},
_onImgSetFloat: function( value ) {
if ( this._getImg() ) {
editor.execCommand( "imagefloat", value );
var img = this._getImg();
if ( img ) {
this.showAnchor( img );
}
}
},
_setIframeAlign: function( value ) {
var frame = popup.anchorEl;
var newFrame = frame.cloneNode( true );
switch ( value ) {
case -2:
newFrame.setAttribute( "align", "" );
break;
case -1:
newFrame.setAttribute( "align", "left" );
break;
case 1:
newFrame.setAttribute( "align", "right" );
break;
case 2:
newFrame.setAttribute( "align", "middle" );
break;
}
frame.parentNode.insertBefore( newFrame, frame );
baidu.editor.dom.domUtils.remove( frame );
popup.anchorEl = newFrame;
popup.showAnchor( popup.anchorEl );
},
_updateIframe: function() {
editor._iframe = popup.anchorEl;
insertframe.open();
popup.hide();
},
_onRemoveButtonClick: function () {
var nodeStart = editor.selection.getRange().getClosedNode();
var img = baidu.editor.dom.domUtils.findParentByTagName( nodeStart, "img", true );
if ( img && img.getAttribute( "anchorname" ) ) {
editor.execCommand( "anchor" );
} else {
editor.execCommand( 'unlink' );
}
this.hide();
},
queryAutoHide: function ( el ) {
if ( el && el.ownerDocument == editor.document ) {
if ( el.tagName.toLowerCase() == 'img' || baidu.editor.dom.domUtils.findParentByTagName( el, 'a', true ) ) {
return el !== popup.anchorEl;
}
}
return baidu.editor.ui.Popup.prototype.queryAutoHide.call( this, el );
}
} );
popup.render();
//iframe
var insertframe = new baidu.editor.ui.Dialog( {
iframeUrl: iframeUrlMap?editor.ui.mapUrl( iframeUrlMap.insertframe ):"",
autoReset: true,
draggable: true,
editor: editor,
className: 'edui-for-insertframe',
title: '插入iframe',
buttons: [
{
className: 'edui-okbutton',
label: '确认',
onclick: function () {
insertframe.close( true );
}
},
{
className: 'edui-cancelbutton',
label: '取消',
onclick: function () {
insertframe.close( false );
}
}
],
onok: function () {
},
oncancel: function () {
},
onclose: function ( t, ok ) {
if ( ok ) {
return this.onok();
} else {
return this.oncancel();
}
}
} );
insertframe.render();
editor.addListener( 'mouseover', function( t, evt ) {
evt = evt || window.event;
var el = evt.target || evt.srcElement;
if ( /iframe/ig.test( el.tagName ) && editor.options.imagePopup ) {
var html = popup.formatHtml(
'<nobr>属性: <span onclick=$$._setIframeAlign(-2) class="edui-clickable">默认</span> <span onclick=$$._setIframeAlign(-1) class="edui-clickable">左对齐</span> <span onclick=$$._setIframeAlign(1) class="edui-clickable">右对齐</span> ' +
'<span onclick=$$._setIframeAlign(2) class="edui-clickable">居中</span>' +
' <span onclick="$$._updateIframe( this);" class="edui-clickable">修改</span></nobr>' );
if ( html ) {
popup.getDom( 'content' ).innerHTML = html;
popup.anchorEl = el;
popup.showAnchor( popup.anchorEl );
} else {
popup.hide();
}
}
} );
editor.addListener( 'selectionchange', function ( t, causeByUi ) {
if ( !causeByUi ) return;
var html = '';
var img = editor.selection.getRange().getClosedNode();
if ( img != null && img.tagName.toLowerCase() == 'img' ) {
if ( img.getAttribute( 'anchorname' ) ) {
//锚点处理
html += popup.formatHtml(
'<nobr>属性: <span onclick=$$._onImgEditButtonClick(event) class="edui-clickable">修改</span> <span onclick=$$._onRemoveButtonClick(event) class="edui-clickable">删除</span></nobr>' );
} else if ( editor.options.imagePopup ) {
html += popup.formatHtml(
'<nobr>属性: <span onclick=$$._onImgSetFloat("none") class="edui-clickable">默认</span> <span onclick=$$._onImgSetFloat("left") class="edui-clickable">居左</span> <span onclick=$$._onImgSetFloat("right") class="edui-clickable">居右</span> ' +
'<span onclick=$$._onImgSetFloat("center") class="edui-clickable">居中</span>' +
' <span onclick="$$._onImgEditButtonClick(event, this);" class="edui-clickable">修改</span></nobr>' );
}
}
var link;
if ( editor.selection.getRange().collapsed ) {
link = editor.queryCommandValue( "link" );
} else {
link = editor.selection.getStart();
}
link = baidu.editor.dom.domUtils.findParentByTagName( link, "a", true );
var url;
if ( link != null && (url = (link.getAttribute( 'data_ue_src' ) || link.getAttribute( 'href', 2 ))) != null ) {
var txt = url;
if ( url.length > 30 ) {
txt = url.substring( 0, 20 ) + "...";
}
if ( html ) {
html += '<div style="height:5px;"></div>'
}
html += popup.formatHtml(
'<nobr>链接: <a target="_blank" href="' + url + '" title="' + url + '" >' + txt + '</a>' +
' <span class="edui-clickable" onclick="$$._onEditButtonClick(event, this);">修改</span>' +
' <span class="edui-clickable" onclick="$$._onRemoveButtonClick(event, this);"> 清除</span></nobr>' );
popup.showAnchor( link );
}
if ( html ) {
popup.getDom( 'content' ).innerHTML = html;
popup.anchorEl = img || link;
popup.showAnchor( popup.anchorEl );
} else {
popup.hide();
}
} );
},
_initToolbars: function () {
var editor = this.editor;
var toolbars = this.toolbars || [];
var toolbarUis = [];
for ( var i = 0; i < toolbars.length; i++ ) {
var toolbar = toolbars[i];
var toolbarUi = new baidu.editor.ui.Toolbar();
for ( var j = 0; j < toolbar.length; j++ ) {
var toolbarItem = toolbar[j];
var toolbarItemUi = null;
if ( typeof toolbarItem == 'string' ) {
if ( toolbarItem == '|' ) {
toolbarItem = 'Separator';
}
if ( baidu.editor.ui[toolbarItem] ) {
toolbarItemUi = new baidu.editor.ui[toolbarItem]( editor );
}
//todo fullscreen这里单独处理一下,放到首行去
if ( toolbarItem == 'FullScreen' ) {
if ( toolbarUis && toolbarUis[0] ) {
toolbarUis[0].items.splice( 0, 0, toolbarItemUi );
} else {
toolbarUi.items.splice( 0, 0, toolbarItemUi );
}
continue;
}
} else {
toolbarItemUi = toolbarItem;
}
if ( toolbarItemUi ) {
toolbarUi.add( toolbarItemUi );
}
}
toolbarUis[i] = toolbarUi;
}
this.toolbars = toolbarUis;
},
getHtmlTpl: function () {
return '<div id="##" class="%%">' +
'<div id="##_toolbarbox" class="%%-toolbarbox">' +
'<div id="##_toolbarboxouter" class="%%-toolbarboxouter"><div class="%%-toolbarboxinner">' +
this.renderToolbarBoxHtml() +
'</div></div>' +
'<div id="##_toolbarmsg" class="%%-toolbarmsg" style="display:none;">' +
'<div id = "##_upload_dialog" class="%%-toolbarmsg-upload" onclick="$$.showWordImageDialog();">点此上传</div>' +
'<div class="%%-toolbarmsg-close" onclick="$$.hideToolbarMsg();">x</div>' +
'<div id="##_toolbarmsg_label" class="%%-toolbarmsg-label"></div>' +
'<div style="height:0;overflow:hidden;clear:both;"></div>' +
'</div>' +
'</div>' +
'<div id="##_iframeholder" class="%%-iframeholder"></div>' +
//modify wdcount by matao
'<div id="##_bottombar" class="%%-bottomContainer"><table><tr>' +
'<td id="##_elementpath" class="%%-bottombar"></td>' +
'<td id="##_wordcount" class="%%-wordcount"></td>' +
'</tr></table></div>' +
'</div>';
},
showWordImageDialog:function() {
this.editor.execCommand( "wordimage", "word_img" );
this._dialogs['wordImageDialog'].open();
},
renderToolbarBoxHtml: function () {
var buff = [];
for ( var i = 0; i < this.toolbars.length; i++ ) {
buff.push( this.toolbars[i].renderHtml() );
}
return buff.join( '' );
},
setFullScreen: function ( fullscreen ) {
if ( this._fullscreen != fullscreen ) {
this._fullscreen = fullscreen;
this.editor.fireEvent( 'beforefullscreenchange', fullscreen );
var editor = this.editor;
if ( baidu.editor.browser.gecko ) {
var bk = editor.selection.getRange().createBookmark();
}
if ( fullscreen ) {
this._bakHtmlOverflow = document.documentElement.style.overflow;
this._bakBodyOverflow = document.body.style.overflow;
this._bakAutoHeight = this.editor.autoHeightEnabled;
this._bakScrollTop = Math.max( document.documentElement.scrollTop, document.body.scrollTop );
if ( this._bakAutoHeight ) {
//当全屏时不能执行自动长高
editor.autoHeightEnabled = false;
this.editor.disableAutoHeight();
}
document.documentElement.style.overflow = 'hidden';
document.body.style.overflow = 'hidden';
this._bakCssText = this.getDom().style.cssText;
this._bakCssText1 = this.getDom( 'iframeholder' ).style.cssText;
this._updateFullScreen();
} else {
this.getDom().style.cssText = this._bakCssText;
this.getDom( 'iframeholder' ).style.cssText = this._bakCssText1;
if ( this._bakAutoHeight ) {
editor.autoHeightEnabled = true;
this.editor.enableAutoHeight();
}
document.documentElement.style.overflow = this._bakHtmlOverflow;
document.body.style.overflow = this._bakBodyOverflow;
window.scrollTo( 0, this._bakScrollTop );
}
if ( baidu.editor.browser.gecko ) {
var input = document.createElement( 'input' );
document.body.appendChild( input );
editor.body.contentEditable = false;
setTimeout( function() {
input.focus();
setTimeout( function() {
editor.body.contentEditable = true;
editor.selection.getRange().moveToBookmark( bk ).select( true );
baidu.editor.dom.domUtils.remove( input );
fullscreen && window.scroll( 0, 0 );
} )
} )
}
this.editor.fireEvent( 'fullscreenchanged', fullscreen );
this.triggerLayout();
}
},
_wordCount:function() {
var wdcount = this.getDom( 'wordcount' );
if ( !this.editor.options.wordCount ) {
wdcount.style.display = "none";
return;
}
wdcount.innerHTML = this.editor.queryCommandValue( "wordcount" );
},
disableWordCount: function () {
var w = this.getDom( 'wordcount' );
w.innerHTML = '';
w.style.display = 'none';
this.wordcount = false;
},
enableWordCount: function () {
var w = this.getDom( 'wordcount' );
w.style.display = '';
this.wordcount = true;
this._wordCount();
},
_updateFullScreen: function () {
if ( this._fullscreen ) {
var vpRect = uiUtils.getViewportRect();
this.getDom().style.cssText = 'border:0;position:absolute;left:0;top:0;width:' + vpRect.width + 'px;height:' + vpRect.height + 'px;z-index:' + (this.getDom().style.zIndex * 1 + 100);
uiUtils.setViewportOffset( this.getDom(), { left: 0, top: 0 } );
this.editor.setHeight( vpRect.height - this.getDom( 'toolbarbox' ).offsetHeight - this.getDom( 'bottombar' ).offsetHeight );
}
},
_updateElementPath: function () {
var bottom = this.getDom( 'elementpath' ),list;
if ( this.elementPathEnabled && (list = this.editor.queryCommandValue( 'elementpath' ))) {
var buff = [];
for ( var i = 0,ci; ci = list[i]; i++ ) {
buff[i] = this.formatHtml( '<span unselectable="on" onclick="$$.editor.execCommand("elementpath", "' + i + '");">' + ci + '</span>' );
}
bottom.innerHTML = '<div class="edui-editor-breadcrumb" onmousedown="return false;">path: ' + buff.join( ' > ' ) + '</div>';
} else {
bottom.style.display = 'none'
}
},
disableElementPath: function () {
var bottom = this.getDom( 'elementpath' );
bottom.innerHTML = '';
bottom.style.display = 'none';
this.elementPathEnabled = false;
},
enableElementPath: function () {
var bottom = this.getDom( 'elementpath' );
bottom.style.display = '';
this.elementPathEnabled = true;
this._updateElementPath();
},
isFullScreen: function () {
return this._fullscreen;
},
postRender: function () {
UIBase.prototype.postRender.call( this );
for ( var i = 0; i < this.toolbars.length; i++ ) {
this.toolbars[i].postRender();
}
var me = this;
var timerId,
domUtils = baidu.editor.dom.domUtils,
updateFullScreenTime = function() {
clearTimeout( timerId );
timerId = setTimeout( function () {
me._updateFullScreen();
} );
};
domUtils.on( window, 'resize', updateFullScreenTime );
me.addListener( 'destroy', function() {
domUtils.un( window, 'resize', updateFullScreenTime );
clearTimeout( timerId );
} )
},
showToolbarMsg: function ( msg, flag ) {
this.getDom( 'toolbarmsg_label' ).innerHTML = msg;
this.getDom( 'toolbarmsg' ).style.display = '';
//
if ( !flag ) {
var w = this.getDom( 'upload_dialog' );
w.style.display = 'none';
}
},
hideToolbarMsg: function () {
this.getDom( 'toolbarmsg' ).style.display = 'none';
},
mapUrl: function ( url ) {
return url.replace( '~/', this.editor.options.UEDITOR_HOME_URL || '' );
},
triggerLayout: function () {
var dom = this.getDom();
if ( dom.style.zoom == '1' ) {
dom.style.zoom = '100%';
} else {
dom.style.zoom = '1';
}
}
};
utils.inherits( EditorUI, baidu.editor.ui.UIBase );
baidu.editor.ui.Editor = function ( options ) {
var editor = new baidu.editor.Editor( options );
editor.options.editor = editor;
new EditorUI( editor.options );
var oldRender = editor.render;
editor.render = function ( holder ) {
if ( holder ) {
if ( holder.constructor === String ) {
holder = document.getElementById( holder );
}
holder && holder.getAttribute( 'name' ) && ( editor.options.textarea = holder.getAttribute( 'name' ));
if ( holder && /script|textarea/ig.test( holder.tagName ) ) {
var newDiv = document.createElement( 'div' );
holder.parentNode.insertBefore( newDiv, holder );
editor.options.initialContent = holder.value || holder.innerHTML;
holder.id && (newDiv.id = holder.id);
holder.className && (newDiv.className = holder.className);
holder.style.cssText && (newDiv.style.cssText = holder.style.cssText);
holder.parentNode.removeChild( holder );
holder = newDiv;
holder.innerHTML = '';
}
}
editor.ui.render( holder );
var iframeholder = editor.ui.getDom( 'iframeholder' );
//给实例添加一个编辑器的容器引用
editor.container = editor.ui.getDom();
editor.container.style.zIndex = editor.options.zIndex;
oldRender.call( editor, iframeholder );
};
return editor;
};
})(); | 10npsite | trunk/guanli/system/ueditor/_src/ui/editor.js | JavaScript | asf20 | 36,161 |
(function (){
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
UIBase = baidu.editor.ui.UIBase,
Toolbar = baidu.editor.ui.Toolbar = function (options){
this.initOptions(options);
this.initToolbar();
};
Toolbar.prototype = {
items: null,
initToolbar: function (){
this.items = this.items || [];
this.initUIBase();
},
add: function (item){
this.items.push(item);
},
getHtmlTpl: function (){
var buff = [];
for (var i=0; i<this.items.length; i++) {
buff[i] = this.items[i].renderHtml();
}
return '<div id="##" class="edui-toolbar %%" onselectstart="return false;" onmousedown="return $$._onMouseDown(event, this);">' +
buff.join('') +
'</div>'
},
postRender: function (){
var box = this.getDom();
for (var i=0; i<this.items.length; i++) {
this.items[i].postRender();
}
uiUtils.makeUnselectable(box);
},
_onMouseDown: function (){
return false;
}
};
utils.inherits(Toolbar, UIBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/toolbar.js | JavaScript | asf20 | 1,312 |
(function (){
var browser = baidu.editor.browser,
domUtils = baidu.editor.dom.domUtils;
var magic = '$EDITORUI';
var root = window[magic] = {};
var uidMagic = 'ID' + magic;
var uidCount = 0;
var uiUtils = baidu.editor.ui.uiUtils = {
uid: function (obj){
return (obj ? obj[uidMagic] || (obj[uidMagic] = ++ uidCount) : ++ uidCount);
},
hook: function ( fn, callback ) {
var dg;
if (fn && fn._callbacks) {
dg = fn;
} else {
dg = function (){
var q;
if (fn) {
q = fn.apply(this, arguments);
}
var callbacks = dg._callbacks;
var k = callbacks.length;
while (k --) {
var r = callbacks[k].apply(this, arguments);
if (q === undefined) {
q = r;
}
}
return q;
};
dg._callbacks = [];
}
dg._callbacks.push(callback);
return dg;
},
createElementByHtml: function (html){
var el = document.createElement('div');
el.innerHTML = html;
el = el.firstChild;
el.parentNode.removeChild(el);
return el;
},
getViewportElement: function (){
return (browser.ie && browser.quirks) ?
document.body : document.documentElement;
},
getClientRect: function (element){
var bcr = element.getBoundingClientRect();
var rect = {
left: Math.round(bcr.left),
top: Math.round(bcr.top),
height: Math.round(bcr.bottom - bcr.top),
width: Math.round(bcr.right - bcr.left)
};
var doc;
while ((doc = element.ownerDocument) !== document &&
(element = domUtils.getWindow(doc).frameElement)) {
bcr = element.getBoundingClientRect();
rect.left += bcr.left;
rect.top += bcr.top;
}
rect.bottom = rect.top + rect.height;
rect.right = rect.left + rect.width;
return rect;
},
getViewportRect: function (){
var viewportEl = uiUtils.getViewportElement();
var width = (window.innerWidth || viewportEl.clientWidth) | 0;
var height = (window.innerHeight ||viewportEl.clientHeight) | 0;
return {
left: 0,
top: 0,
height: height,
width: width,
bottom: height,
right: width
};
},
setViewportOffset: function (element, offset){
var rect;
var fixedLayer = uiUtils.getFixedLayer();
if (element.parentNode === fixedLayer) {
element.style.left = offset.left + 'px';
element.style.top = offset.top + 'px';
} else {
domUtils.setViewportOffset(element, offset);
}
},
getEventOffset: function (evt){
var el = evt.target || evt.srcElement;
var rect = uiUtils.getClientRect(el);
var offset = uiUtils.getViewportOffsetByEvent(evt);
return {
left: offset.left - rect.left,
top: offset.top - rect.top
};
},
getViewportOffsetByEvent: function (evt){
var el = evt.target || evt.srcElement;
var frameEl = domUtils.getWindow(el).frameElement;
var offset = {
left: evt.clientX,
top: evt.clientY
};
if (frameEl && el.ownerDocument !== document) {
var rect = uiUtils.getClientRect(frameEl);
offset.left += rect.left;
offset.top += rect.top;
}
return offset;
},
setGlobal: function (id, obj){
root[id] = obj;
return magic + '["' + id + '"]';
},
unsetGlobal: function (id){
delete root[id];
},
copyAttributes: function (tgt, src){
var attributes = src.attributes;
var k = attributes.length;
while (k --) {
var attrNode = attributes[k];
if ( attrNode.nodeName != 'style' && attrNode.nodeName != 'class' && (!browser.ie || attrNode.specified) ) {
tgt.setAttribute(attrNode.nodeName, attrNode.nodeValue);
}
}
if (src.className) {
tgt.className += ' ' + src.className;
}
if (src.style.cssText) {
tgt.style.cssText += ';' + src.style.cssText;
}
},
removeStyle: function (el, styleName){
if (el.style.removeProperty) {
el.style.removeProperty(styleName);
} else if (el.style.removeAttribute) {
el.style.removeAttribute(styleName);
} else throw '';
},
contains: function (elA, elB){
return elA && elB && (elA === elB ? false : (
elA.contains ? elA.contains(elB) :
elA.compareDocumentPosition(elB) & 16
));
},
startDrag: function (evt, callbacks,doc){
var doc = doc || document;
var startX = evt.clientX;
var startY = evt.clientY;
function handleMouseMove(evt){
var x = evt.clientX - startX;
var y = evt.clientY - startY;
callbacks.ondragmove(x, y);
if (evt.stopPropagation) {
evt.stopPropagation();
} else {
evt.cancelBubble = true;
}
}
if (doc.addEventListener) {
function handleMouseUp(evt){
doc.removeEventListener('mousemove', handleMouseMove, true);
doc.removeEventListener('mouseup', handleMouseMove, true);
callbacks.ondragstop();
}
doc.addEventListener('mousemove', handleMouseMove, true);
doc.addEventListener('mouseup', handleMouseUp, true);
evt.preventDefault();
} else {
var elm = evt.srcElement;
elm.setCapture();
function releaseCaptrue(){
elm.releaseCapture();
elm.detachEvent('onmousemove', handleMouseMove);
elm.detachEvent('onmouseup', releaseCaptrue);
elm.detachEvent('onlosecaptrue', releaseCaptrue);
callbacks.ondragstop();
}
elm.attachEvent('onmousemove', handleMouseMove);
elm.attachEvent('onmouseup', releaseCaptrue);
elm.attachEvent('onlosecaptrue', releaseCaptrue);
evt.returnValue = false;
}
callbacks.ondragstart();
},
getFixedLayer: function (){
var layer = document.getElementById('edui_fixedlayer');
if (layer == null) {
layer = document.createElement('div');
layer.id = 'edui_fixedlayer';
document.body.appendChild(layer);
if (browser.ie && browser.version <= 8) {
layer.style.position = 'absolute';
bindFixedLayer();
setTimeout(updateFixedOffset);
} else {
layer.style.position = 'fixed';
}
layer.style.left = '0';
layer.style.top = '0';
layer.style.width = '0';
layer.style.height = '0';
}
return layer;
},
makeUnselectable: function (element){
if (browser.opera || (browser.ie && browser.version < 9)) {
element.unselectable = 'on';
if (element.hasChildNodes()) {
for (var i=0; i<element.childNodes.length; i++) {
if (element.childNodes[i].nodeType == 1) {
uiUtils.makeUnselectable(element.childNodes[i]);
}
}
}
} else {
if (element.style.MozUserSelect !== undefined) {
element.style.MozUserSelect = 'none';
} else if (element.style.WebkitUserSelect !== undefined) {
element.style.WebkitUserSelect = 'none';
} else if (element.style.KhtmlUserSelect !== undefined) {
element.style.KhtmlUserSelect = 'none';
}
}
}
};
function updateFixedOffset(){
var layer = document.getElementById('edui_fixedlayer');
uiUtils.setViewportOffset(layer, {
left: 0,
top: 0
});
// layer.style.display = 'none';
// layer.style.display = 'block';
//#trace: 1354
// setTimeout(updateFixedOffset);
}
function bindFixedLayer(adjOffset){
domUtils.on(window, 'scroll', updateFixedOffset);
domUtils.on(window, 'resize', baidu.editor.utils.defer(updateFixedOffset, 0, true));
}
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/uiutils.js | JavaScript | asf20 | 9,832 |
///import core
///import uicore
///import ui/mask.js
///import ui/button.js
(function (){
var utils = baidu.editor.utils,
domUtils = baidu.editor.dom.domUtils,
uiUtils = baidu.editor.ui.uiUtils,
Mask = baidu.editor.ui.Mask,
UIBase = baidu.editor.ui.UIBase,
Button = baidu.editor.ui.Button,
Dialog = baidu.editor.ui.Dialog = function (options){
this.initOptions(options);
this.initDialog();
};
var modalMask;
var dragMask;
Dialog.prototype = {
draggable: false,
uiName: 'dialog',
initDialog: function (){
var me = this;
this.initUIBase();
this.modalMask = (modalMask || (modalMask = new Mask({
className: 'edui-dialog-modalmask'
})));
this.dragMask = (dragMask || (dragMask = new Mask({
className: 'edui-dialog-dragmask'
})));
this.closeButton = new Button({
className: 'edui-dialog-closebutton',
title: '关闭对话框',
onclick: function (){
me.close(false);
}
});
if (this.buttons) {
for (var i=0; i<this.buttons.length; i++) {
if (!(this.buttons[i] instanceof Button)) {
this.buttons[i] = new Button(this.buttons[i]);
}
}
}
},
fitSize: function (){
var popBodyEl = this.getDom('body');
// if (!(baidu.editor.browser.ie && baidu.editor.browser.version == 7)) {
// uiUtils.removeStyle(popBodyEl, 'width');
// uiUtils.removeStyle(popBodyEl, 'height');
// }
var size = this.mesureSize();
popBodyEl.style.width = size.width + 'px';
popBodyEl.style.height = size.height + 'px';
return size;
},
safeSetOffset: function (offset){
var me = this;
var el = me.getDom();
var vpRect = uiUtils.getViewportRect();
var rect = uiUtils.getClientRect(el);
var left = offset.left;
if (left + rect.width > vpRect.right) {
left = vpRect.right - rect.width;
}
var top = offset.top;
if (top + rect.height > vpRect.bottom) {
top = vpRect.bottom - rect.height;
}
el.style.left = Math.max(left, 0) + 'px';
el.style.top = Math.max(top, 0) + 'px';
},
showAtCenter: function (){
this.getDom().style.display = '';
var vpRect = uiUtils.getViewportRect();
var popSize = this.fitSize();
var titleHeight = this.getDom('titlebar').offsetHeight | 0;
var left = vpRect.width / 2 - popSize.width / 2;
var top = vpRect.height / 2 - (popSize.height - titleHeight) / 2 - titleHeight;
var popEl = this.getDom();
this.safeSetOffset({
left: Math.max(left | 0, 0),
top: Math.max(top | 0, 0)
});
if (!domUtils.hasClass(popEl, 'edui-state-centered')) {
popEl.className += ' edui-state-centered';
}
this._show();
},
getContentHtml: function (){
var contentHtml = '';
if (typeof this.content == 'string') {
contentHtml = this.content;
} else if (this.iframeUrl) {
contentHtml = '<iframe id="'+ this.id +
'_iframe" class="%%-iframe" height="100%" width="100%" frameborder="0" src="'+ this.iframeUrl +'"></iframe>';
}
return contentHtml;
},
getHtmlTpl: function (){
var footHtml = '';
if (this.buttons) {
var buff = [];
for (var i=0; i<this.buttons.length; i++) {
buff[i] = this.buttons[i].renderHtml();
}
footHtml = '<div class="%%-foot">' +
'<div id="##_buttons" class="%%-buttons">' + buff.join('') + '</div>' +
'</div>';
}
return '<div id="##" class="%%"><div class="%%-wrap"><div id="##_body" class="%%-body">' +
'<div class="%%-shadow"></div>' +
'<div id="##_titlebar" class="%%-titlebar">' +
'<div class="%%-draghandle" onmousedown="$$._onTitlebarMouseDown(event, this);">' +
'<span class="%%-caption">' + (this.title || '') + '</span>' +
'</div>' +
this.closeButton.renderHtml() +
'</div>' +
'<div id="##_content" class="%%-content">'+ ( this.autoReset ? '' : this.getContentHtml()) +'</div>' +
footHtml +
'</div></div></div>';
},
postRender: function (){
// todo: 保持居中/记住上次关闭位置选项
if (!this.modalMask.getDom()) {
this.modalMask.render();
this.modalMask.hide();
}
if (!this.dragMask.getDom()) {
this.dragMask.render();
this.dragMask.hide();
}
var me = this;
this.addListener('show', function (){
me.modalMask.show(this.getDom().style.zIndex - 2);
});
this.addListener('hide', function (){
me.modalMask.hide();
});
if (this.buttons) {
for (var i=0; i<this.buttons.length; i++) {
this.buttons[i].postRender();
}
}
domUtils.on(window, 'resize', function (){
setTimeout(function (){
if (!me.isHidden()) {
me.safeSetOffset(uiUtils.getClientRect(me.getDom()));
}
});
});
this._hide();
},
mesureSize: function (){
var body = this.getDom('body');
var width = uiUtils.getClientRect(this.getDom('content')).width;
var dialogBodyStyle = body.style;
dialogBodyStyle.width = width;
return uiUtils.getClientRect(body);
},
_onTitlebarMouseDown: function (evt, el){
if (this.draggable) {
var rect;
var vpRect = uiUtils.getViewportRect();
var me = this;
uiUtils.startDrag(evt, {
ondragstart: function (){
rect = uiUtils.getClientRect(me.getDom());
me.dragMask.show(me.getDom().style.zIndex - 1);
},
ondragmove: function (x, y){
var left = rect.left + x;
var top = rect.top + y;
me.safeSetOffset({
left: left,
top: top
});
},
ondragstop: function (){
domUtils.removeClasses(me.getDom(), ['edui-state-centered']);
me.dragMask.hide();
}
});
}
},
reset: function (){
this.getDom('content').innerHTML = this.getContentHtml();
},
_show: function (){
if (this._hidden) {
this.getDom().style.display = '';
//要高过编辑器的zindxe
this.editor.container.style.zIndex && (this.getDom().style.zIndex = this.editor.container.style.zIndex * 1 + 10);
this._hidden = false;
this.fireEvent('show');
baidu.editor.ui.uiUtils.getFixedLayer().style.zIndex = this.getDom().style.zIndex - 4;
}
},
isHidden: function (){
return this._hidden;
},
_hide: function (){
if (!this._hidden) {
this.getDom().style.display = 'none';
this.getDom().style.zIndex = '';
this._hidden = true;
this.fireEvent('hide');
}
},
open: function (){
if (this.autoReset) {
this.reset();
}
this.showAtCenter();
if (this.iframeUrl) {
try {
this.getDom('iframe').focus();
} catch(ex){}
}
},
_onCloseButtonClick: function (evt, el){
this.close(false);
},
close: function (ok){
if (this.fireEvent('close', ok) !== false) {
this._hide();
}
}
};
utils.inherits(Dialog, UIBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/dialog.js | JavaScript | asf20 | 9,138 |
///import core
///import uicore
(function (){
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
UIBase = baidu.editor.ui.UIBase;
var TablePicker = baidu.editor.ui.TablePicker = function (options){
this.initOptions(options);
this.initTablePicker();
};
TablePicker.prototype = {
defaultNumRows: 10,
defaultNumCols: 10,
maxNumRows: 20,
maxNumCols: 20,
numRows: 10,
numCols: 10,
lengthOfCellSide: 22,
initTablePicker: function (){
this.initUIBase();
},
getHtmlTpl: function (){
return '<div id="##" class="edui-tablepicker %%">' +
'<div class="edui-tablepicker-body">' +
'<div class="edui-infoarea">' +
'<span id="##_label" class="edui-label"></span>' +
'<span class="edui-clickable" onclick="$$._onMore();">更多</span>' +
'</div>' +
'<div class="edui-pickarea"' +
' onmousemove="$$._onMouseMove(event, this);"' +
' onmouseover="$$._onMouseOver(event, this);"' +
' onmouseout="$$._onMouseOut(event, this);"' +
' onclick="$$._onClick(event, this);"' +
'>' +
'<div id="##_overlay" class="edui-overlay"></div>' +
'</div>' +
'</div>' +
'</div>';
},
_UIBase_render: UIBase.prototype.render,
render: function (holder){
this._UIBase_render(holder);
this.getDom('label').innerHTML = '0列 x 0行';
},
_track: function (numCols, numRows){
var style = this.getDom('overlay').style;
var sideLen = this.lengthOfCellSide;
style.width = numCols * sideLen + 'px';
style.height = numRows * sideLen + 'px';
var label = this.getDom('label');
label.innerHTML = numCols + '列 x ' + numRows + '行';
this.numCols = numCols;
this.numRows = numRows;
},
_onMouseOver: function (evt, el){
var rel = evt.relatedTarget || evt.fromElement;
if (!uiUtils.contains(el, rel) && el !== rel) {
this.getDom('label').innerHTML = '0列 x 0行';
this.getDom('overlay').style.visibility = '';
}
},
_onMouseOut: function (evt, el){
var rel = evt.relatedTarget || evt.toElement;
if (!uiUtils.contains(el, rel) && el !== rel) {
this.getDom('label').innerHTML = '0列 x 0行';
this.getDom('overlay').style.visibility = 'hidden';
}
},
_onMouseMove: function (evt, el){
var style = this.getDom('overlay').style;
var offset = uiUtils.getEventOffset(evt);
var sideLen = this.lengthOfCellSide;
var numCols = Math.ceil(offset.left / sideLen);
var numRows = Math.ceil(offset.top / sideLen);
this._track(numCols, numRows);
},
_onClick: function (){
this.fireEvent('picktable', this.numCols, this.numRows);
},
_onMore: function (){
this.fireEvent('more');
}
};
utils.inherits(TablePicker, UIBase);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/tablepicker.js | JavaScript | asf20 | 3,473 |
///import core
///import uicore
(function (){
var utils = baidu.editor.utils,
UIBase = baidu.editor.ui.UIBase,
ColorPicker = baidu.editor.ui.ColorPicker = function (options){
this.initOptions(options);
this.noColorText = this.noColorText || '不设置颜色';
this.initUIBase();
};
ColorPicker.prototype = {
getHtmlTpl: function (){
return genColorPicker(
this.noColorText
);
},
_onTableClick: function (evt){
var tgt = evt.target || evt.srcElement;
var color = tgt.getAttribute('data-color');
if (color) {
this.fireEvent('pickcolor', color);
}
},
_onTableOver: function (evt){
var tgt = evt.target || evt.srcElement;
var color = tgt.getAttribute('data-color');
if (color) {
this.getDom('preview').style.backgroundColor = color;
}
},
_onTableOut: function (){
this.getDom('preview').style.backgroundColor = '';
},
_onPickNoColor: function (){
this.fireEvent('picknocolor');
}
};
utils.inherits(ColorPicker, UIBase);
var COLORS = (
'ffffff,000000,eeece1,1f497d,4f81bd,c0504d,9bbb59,8064a2,4bacc6,f79646,' +
'f2f2f2,7f7f7f,ddd9c3,c6d9f0,dbe5f1,f2dcdb,ebf1dd,e5e0ec,dbeef3,fdeada,' +
'd8d8d8,595959,c4bd97,8db3e2,b8cce4,e5b9b7,d7e3bc,ccc1d9,b7dde8,fbd5b5,' +
'bfbfbf,3f3f3f,938953,548dd4,95b3d7,d99694,c3d69b,b2a2c7,92cddc,fac08f,' +
'a5a5a5,262626,494429,17365d,366092,953734,76923c,5f497a,31859b,e36c09,' +
'7f7f7f,0c0c0c,1d1b10,0f243e,244061,632423,4f6128,3f3151,205867,974806,' +
'c00000,ff0000,ffc000,ffff00,92d050,00b050,00b0f0,0070c0,002060,7030a0,').split(',');
function genColorPicker(noColorText){
var html = '<div id="##" class="edui-colorpicker %%">' +
'<div class="edui-colorpicker-topbar edui-clearfix">' +
'<div unselectable="on" id="##_preview" class="edui-colorpicker-preview"></div>' +
'<div unselectable="on" class="edui-colorpicker-nocolor" onclick="$$._onPickNoColor(event, this);">'+ noColorText +'</div>' +
'</div>' +
'<table class="edui-box" style="border-collapse: collapse;" onmouseover="$$._onTableOver(event, this);" onmouseout="$$._onTableOut(event, this);" onclick="return $$._onTableClick(event, this);" cellspacing="0" cellpadding="0">' +
'<tr style="border-bottom: 1px solid #ddd;font-size: 13px;line-height: 25px;color:#366092;padding-top: 2px"><td colspan="10">主题颜色</td> </tr>'+
'<tr class="edui-colorpicker-tablefirstrow" >';
for (var i=0; i<COLORS.length; i++) {
if (i && i%10 === 0) {
html += '</tr>'+(i==60?'<tr style="border-bottom: 1px solid #ddd;font-size: 13px;line-height: 25px;color:#366092;"><td colspan="10">标准颜色</td></tr>':'')+'<tr'+(i==60?' class="edui-colorpicker-tablefirstrow"':'')+'>';
}
html += i<70 ? '<td style="padding: 0 2px;"><a hidefocus title="'+COLORS[i]+'" onclick="return false;" href="javascript:" unselectable="on" class="edui-box edui-colorpicker-colorcell"' +
' data-color="#'+ COLORS[i] +'"'+
' style="background-color:#'+ COLORS[i] +';border:solid #ccc;'+
(i<10 || i>=60?'border-width:1px;':
i>=10&&i<20?'border-width:1px 1px 0 1px;':
'border-width:0 1px 0 1px;')+
'"' +
'></a></td>':'';
}
html += '</tr></table></div>';
return html;
}
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/colorpicker.js | JavaScript | asf20 | 3,897 |
///import core
///import uicore
///import ui/popup.js
///import ui/tablepicker.js
///import ui/splitbutton.js
(function (){
var utils = baidu.editor.utils,
Popup = baidu.editor.ui.Popup,
TablePicker = baidu.editor.ui.TablePicker,
SplitButton = baidu.editor.ui.SplitButton,
TableButton = baidu.editor.ui.TableButton = function (options){
this.initOptions(options);
this.initTableButton();
};
TableButton.prototype = {
initTableButton: function (){
var me = this;
this.popup = new Popup({
content: new TablePicker({
onpicktable: function (t, numCols, numRows){
me._onPickTable(numCols, numRows);
},
onmore: function (){
me.popup.hide();
me.fireEvent('more');
}
}),
'editor':me.editor
});
this.initSplitButton();
},
_onPickTable: function (numCols, numRows){
if (this.fireEvent('picktable', numCols, numRows) !== false) {
this.popup.hide();
}
}
};
utils.inherits(TableButton, SplitButton);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/tablebutton.js | JavaScript | asf20 | 1,334 |
///import core
///import uicore
///import ui/stateful.js
(function (){
var utils = baidu.editor.utils,
uiUtils = baidu.editor.ui.uiUtils,
domUtils = baidu.editor.dom.domUtils,
UIBase = baidu.editor.ui.UIBase,
Stateful = baidu.editor.ui.Stateful,
SplitButton = baidu.editor.ui.SplitButton = function (options){
this.initOptions(options);
this.initSplitButton();
};
SplitButton.prototype = {
popup: null,
uiName: 'splitbutton',
title: '',
initSplitButton: function (){
this.initUIBase();
this.Stateful_init();
var me = this;
if (this.popup != null) {
var popup = this.popup;
this.popup = null;
this.setPopup(popup);
}
},
_UIBase_postRender: UIBase.prototype.postRender,
postRender: function (){
this.Stateful_postRender();
this._UIBase_postRender();
},
setPopup: function (popup){
if (this.popup === popup) return;
if (this.popup != null) {
this.popup.dispose();
}
popup.addListener('show', utils.bind(this._onPopupShow, this));
popup.addListener('hide', utils.bind(this._onPopupHide, this));
popup.addListener('postrender', utils.bind(function (){
popup.getDom('body').appendChild(
uiUtils.createElementByHtml('<div id="' +
this.popup.id + '_bordereraser" class="edui-bordereraser edui-background" style="width:' +
(uiUtils.getClientRect(this.getDom()).width - 2) + 'px"></div>')
);
popup.getDom().className += ' ' + this.className;
}, this));
this.popup = popup;
},
_onPopupShow: function (){
this.addState('opened');
},
_onPopupHide: function (){
this.removeState('opened');
},
getHtmlTpl: function (){
return '<div id="##" class="edui-box %%">' +
'<div '+ (this.title ? 'title="' + this.title + '"' : '') +' id="##_state" stateful><div class="%%-body">' +
'<div id="##_button_body" class="edui-box edui-button-body" onclick="$$._onButtonClick(event, this);">' +
'<div class="edui-box edui-icon"></div>' +
'</div>' +
'<div class="edui-box edui-splitborder"></div>' +
'<div class="edui-box edui-arrow" onclick="$$._onArrowClick();"></div>' +
'</div></div></div>';
},
showPopup: function (){
// 当popup往上弹出的时候,做特殊处理
var rect = uiUtils.getClientRect(this.getDom());
rect.top -= this.popup.SHADOW_RADIUS;
rect.height += this.popup.SHADOW_RADIUS;
this.popup.showAnchorRect(rect);
},
_onArrowClick: function (event, el){
if (!this.isDisabled()) {
this.showPopup();
}
},
_onButtonClick: function (){
if (!this.isDisabled()) {
this.fireEvent('buttonclick');
}
}
};
utils.inherits(SplitButton, UIBase);
utils.extend(SplitButton.prototype, Stateful, true);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/splitbutton.js | JavaScript | asf20 | 3,489 |
///import core
///import uicore
///commands 表情
(function(){
var utils = baidu.editor.utils,
Popup = baidu.editor.ui.Popup,
SplitButton = baidu.editor.ui.SplitButton,
MultiMenuPop = baidu.editor.ui.MultiMenuPop = function(options){
this.initOptions(options);
this.initMultiMenu();
};
MultiMenuPop.prototype = {
initMultiMenu: function (){
var me = this;
this.popup = new Popup({
content: '',
editor : me.editor,
iframe_rendered: false,
onshow: function (){
if (!this.iframe_rendered) {
this.iframe_rendered = true;
this.getDom('content').innerHTML = '<iframe id="'+me.id+'_iframe" src="'+ me.iframeUrl +'" frameborder="0"></iframe>';
me.editor.container.style.zIndex && (this.getDom().style.zIndex = me.editor.container.style.zIndex * 1 + 1);
}
}
// canSideUp:false,
// canSideLeft:false
});
this.onbuttonclick = function(){
this.showPopup();
};
this.initSplitButton();
}
};
utils.inherits(MultiMenuPop, SplitButton);
})();
| 10npsite | trunk/guanli/system/ueditor/_src/ui/multiMenu.js | JavaScript | asf20 | 1,368 |
UEDITOR_CONFIG = window.UEDITOR_CONFIG || {};
var baidu = window.baidu || {};
window.baidu = baidu;
window.UE = baidu.editor = {};
UE.plugins = {};
UE.commands = {};
UE.version = "1.2.0.0";
var dom = UE.dom = {}; | 10npsite | trunk/guanli/system/ueditor/_src/editor.js | JavaScript | asf20 | 234 |
///import core
///commands 悬浮工具栏
///commandsName AutoFloat,autoFloatEnabled
///commandsTitle 悬浮工具栏
/*
* modified by chengchao01
*
* 注意: 引入此功能后,在IE6下会将body的背景图片覆盖掉!
*/
UE.plugins['autofloat'] = function() {
var uiUtils,
LteIE6 = browser.ie && browser.version <= 6,
quirks = browser.quirks;
function checkHasUI(editor){
if(!editor.ui){
alert('autofloat插件功能依赖于UEditor UI\nautofloat定义位置: _src/plugins/autofloat.js');
throw({
name: '未包含UI文件',
message: 'autofloat功能依赖于UEditor UI。autofloat定义位置: _src/plugins/autofloat.js'
});
}
uiUtils = UE.ui.uiUtils;
return 1;
}
function fixIE6FixedPos(){
var docStyle = document.body.style;
docStyle.backgroundImage = 'url("about:blank")';
docStyle.backgroundAttachment = 'fixed';
}
var optsAutoFloatEnabled = this.options.autoFloatEnabled;
//如果不固定toolbar的位置,则直接退出
if(!optsAutoFloatEnabled){
return;
}
var me = this,
bakCssText,
placeHolder = document.createElement('div'),
toolbarBox,orgTop,
getPosition,
flag =true; //ie7模式下需要偏移
function setFloating(){
var toobarBoxPos = domUtils.getXY(toolbarBox),
origalFloat = domUtils.getComputedStyle(toolbarBox,'position'),
origalLeft = domUtils.getComputedStyle(toolbarBox,'left');
toolbarBox.style.width = toolbarBox.offsetWidth + 'px';
toolbarBox.style.zIndex = me.options.zIndex * 1 + 1;
toolbarBox.parentNode.insertBefore(placeHolder, toolbarBox);
if (LteIE6 || quirks) {
if(toolbarBox.style.position != 'absolute'){
toolbarBox.style.position = 'absolute';
}
toolbarBox.style.top = (document.body.scrollTop||document.documentElement.scrollTop) - orgTop + 'px';
} else {
if (browser.ie7Compat && flag) {
flag = false;
toolbarBox.style.left = getPosition(toolbarBox).left - document.documentElement.getBoundingClientRect().left+2 + 'px';
}
if(toolbarBox.style.position != 'fixed'){
toolbarBox.style.position = 'fixed';
toolbarBox.style.top = '0';
((origalFloat == 'absolute' || origalFloat == 'relative') && parseFloat(origalLeft)) && (toolbarBox.style.left = toobarBoxPos.x + 'px');
}
}
}
function unsetFloating(){
flag = true;
if(placeHolder.parentNode)
placeHolder.parentNode.removeChild(placeHolder);
toolbarBox.style.cssText = bakCssText;
}
function updateFloating(){
var rect3 = getPosition(me.container);
if (rect3.top < 0 && rect3.bottom - toolbarBox.offsetHeight > 0) {
setFloating();
}else{
unsetFloating();
}
}
var defer_updateFloating = utils.defer(function(){
updateFloating();
},browser.ie ? 200 : 100,true);
me.addListener('destroy',function(){
domUtils.un(window, ['scroll','resize'], updateFloating);
me.removeListener('keydown', defer_updateFloating);
});
me.addListener('ready', function(){
if(checkHasUI(me)){
getPosition = uiUtils.getClientRect;
toolbarBox = me.ui.getDom('toolbarbox');
orgTop = getPosition(toolbarBox).top;
bakCssText = toolbarBox.style.cssText;
placeHolder.style.height = toolbarBox.offsetHeight + 'px';
if(LteIE6){
fixIE6FixedPos();
}
me.addListener('autoheightchanged', function (t, enabled){
if (enabled) {
domUtils.on(window, ['scroll','resize'], updateFloating);
me.addListener('keydown', defer_updateFloating);
} else {
domUtils.un(window, ['scroll','resize'], updateFloating);
me.removeListener('keydown', defer_updateFloating);
}
});
me.addListener('beforefullscreenchange', function (t, enabled){
if (enabled) {
unsetFloating();
}
});
me.addListener('fullscreenchanged', function (t, enabled){
if (!enabled) {
updateFloating();
}
});
me.addListener('sourcemodechanged', function (t, enabled){
setTimeout(function (){
updateFloating();
});
});
}
})
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/autofloat.js | JavaScript | asf20 | 5,232 |
///import core
///import plugins\paragraph.js
///commands 行间距
///commandsName LineHeight
///commandsTitle 行间距
/**
* @description 设置行内间距
* @name baidu.editor.execCommand
* @param {String} cmdName lineheight设置行内间距
* @param {String} value 值
* @author zhuwenxuan
*/
UE.plugins['lineheight'] = function(){
var me = this;
me.commands['lineheight'] = {
execCommand : function( cmdName,value ) {
this.execCommand('paragraph','p',{style:'line-height:'+ (value == "1" ? "normal" : value + 'em') });
return true;
},
queryCommandValue : function() {
var pN = utils.findNode(this.selection.getStartElementPath(),null,function(node){return domUtils.isBlockElm(node)});
if(pN){
var value = domUtils.getComputedStyle(pN,'line-height');
return value == 'normal' ? 1 : value.replace(/[^\d.]*/ig,"")
}
},
queryCommandState : function(){
return this.highlight ? -1 :0;
}
};
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/lineheight.js | JavaScript | asf20 | 1,128 |
///import core
///commandsName snapscreen
///commandsTitle 截屏
/**
* 截屏插件
*/
UE.commands['snapscreen'] = {
execCommand: function(){
var me = this,
editorOptions = me.options;
if(!browser.ie){
alert(editorOptions.messages.snapScreenNotIETip);
return;
}
var onSuccess = function(rs){
try{
rs = eval("("+ rs +")");
}catch(e){
alert('截屏上传有误\n\n请检查editor_config.js中关于截屏的配置项\n\nsnapscreenHost 变量值 应该为屏幕截图的server端文件所在的网站地址或者ip');
return;
}
if(rs.state != 'SUCCESS'){
alert(rs.state);
return;
}
me.execCommand('insertimage', {
src: (editorOptions.snapscreenImgIsUseImagePath ? editorOptions.imagePath : '') + rs.url,
floatStyle: editorOptions.snapscreenImgAlign,
data_ue_src:(editorOptions.snapscreenImgIsUseImagePath ? editorOptions.imagePath : '') + rs.url
});
};
var onStartUpload = function(){
//开始截图上传
};
var onError = function(){
alert(editorOptions.messages.snapScreenMsg);
};
try{
var nativeObj = new ActiveXObject('Snapsie.CoSnapsie');
nativeObj.saveSnapshot(editorOptions.snapscreenHost, editorOptions.snapscreenServerFile, editorOptions.snapscreenServerPort, onStartUpload,onSuccess,onError);
}catch(e){
me.snapscreenInstall.open();
}
},
queryCommandState: function(){
return this.highlight ? -1 :0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/snapscreen.js | JavaScript | asf20 | 1,815 |
///import core
///commands 段落格式,居左,居右,居中,两端对齐
///commandsName JustifyLeft,JustifyCenter,JustifyRight,JustifyJustify
///commandsTitle 居左对齐,居中对齐,居右对齐,两端对齐
/**
* @description 居左右中
* @name baidu.editor.execCommand
* @param {String} cmdName justify执行对齐方式的命令
* @param {String} align 对齐方式:left居左,right居右,center居中,justify两端对齐
* @author zhanyi
*/
(function(){
var block = domUtils.isBlockElm,
defaultValue = {
left : 1,
right : 1,
center : 1,
justify : 1
},
doJustify = function(range,style){
var bookmark = range.createBookmark(),
filterFn = function( node ) {
return node.nodeType == 1 ? node.tagName.toLowerCase() != 'br' && !domUtils.isBookmarkNode(node) : !domUtils.isWhitespace( node )
};
range.enlarge(true);
var bookmark2 = range.createBookmark(),
current = domUtils.getNextDomNode(bookmark2.start,false,filterFn),
tmpRange = range.cloneRange(),
tmpNode;
while(current && !(domUtils.getPosition(current,bookmark2.end)&domUtils.POSITION_FOLLOWING)){
if(current.nodeType == 3 || !block(current)){
tmpRange.setStartBefore(current);
while(current && current!==bookmark2.end && !block(current)){
tmpNode = current;
current = domUtils.getNextDomNode(current,false,null,function(node){
return !block(node)
});
}
tmpRange.setEndAfter(tmpNode);
var common = tmpRange.getCommonAncestor();
if( !domUtils.isBody(common) && block(common)){
domUtils.setStyles(common,utils.isString(style) ? {'text-align':style} : style);
current = common;
}else{
var p = range.document.createElement('p');
domUtils.setStyles(p,utils.isString(style) ? {'text-align':style} : style);
var frag = tmpRange.extractContents();
p.appendChild(frag);
tmpRange.insertNode(p);
current = p;
}
current = domUtils.getNextDomNode(current,false,filterFn);
}else{
current = domUtils.getNextDomNode(current,true,filterFn);
}
}
return range.moveToBookmark(bookmark2).moveToBookmark(bookmark)
};
UE.commands['justify'] = {
execCommand : function( cmdName,align ) {
var range = this.selection.getRange(),
txt;
if(this.currentSelectedArr && this.currentSelectedArr.length > 0){
for(var i=0,ti;ti=this.currentSelectedArr[i++];){
if(domUtils.isEmptyNode(ti)){
txt = this.document.createTextNode('p');
range.setStart(ti,0).collapse(true).insertNode(txt).selectNode(txt);
}else{
range.selectNodeContents(ti)
}
doJustify(range,align);
txt && domUtils.remove(txt);
}
range.selectNode(this.currentSelectedArr[0]).select()
}else{
//闭合时单独处理
if(range.collapsed){
txt = this.document.createTextNode('p');
range.insertNode(txt);
}
doJustify(range,align);
if(txt){
range.setStartBefore(txt).collapse(true);
domUtils.remove(txt);
}
range.select();
}
return true;
},
queryCommandValue : function() {
var startNode = this.selection.getStart(),
value = domUtils.getComputedStyle(startNode,'text-align');
return defaultValue[value] ? value : 'left';
},
queryCommandState : function(){
return this.highlight ? -1 : 0;
}
}
})();
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/justify.js | JavaScript | asf20 | 4,614 |
///import core
///commands 表格
///commandsName InsertTable,DeleteTable,InsertParagraphBeforeTable,InsertRow,DeleteRow,InsertCol,DeleteCol,MergeCells,MergeRight,MergeDown,SplittoCells,SplittoRows,SplittoCols
///commandsTitle 表格,删除表格,表格前插行,前插入行,删除行,前插入列,删除列,合并多个单元格,右合并单元格,下合并单元格,完全拆分单元格,拆分成行,拆分成列
///commandsDialog dialogs\table\table.html
/**
* Created by .
* User: taoqili
* Date: 11-5-5
* Time: 下午2:06
* To change this template use File | Settings | File Templates.
*/
/**
* table操作插件
*/
UE.plugins['table'] = function() {
var me = this,
keys = domUtils.keys,
clearSelectedTd = domUtils.clearSelectedArr;
//框选时用到的几个全局变量
var anchorTd,
tableOpt,
_isEmpty = domUtils.isEmptyNode;
function getIndex(cell) {
var cells = cell.parentNode.cells;
for (var i = 0,ci; ci = cells[i]; i++) {
if (ci === cell) {
return i;
}
}
}
function deleteTable(table,range){
var p = table.ownerDocument.createElement('p');
domUtils.fillNode(me.document,p);
var pN = table.parentNode;
if(pN && pN.getAttribute('dropdrag')){
table = pN;
}
table.parentNode.insertBefore(p, table);
domUtils.remove(table);
range.setStart(p, 0).setCursor();
}
/**
* 判断当前单元格是否处于隐藏状态
* @param cell 待判断的单元格
* @return {Boolean} 隐藏时返回true,否则返回false
*/
function _isHide(cell) {
return cell.style.display == "none";
}
function getCount(arr) {
var count = 0;
for (var i = 0,ti; ti = arr[i++];) {
if (!_isHide(ti)) {
count++
}
}
return count;
}
me.currentSelectedArr = [];
me.addListener('mousedown', _mouseDownEvent);
me.addListener('keydown', function(type, evt) {
var keyCode = evt.keyCode || evt.which;
if (!keys[keyCode] && !evt.ctrlKey && !evt.metaKey && !evt.shiftKey && !evt.altKey) {
clearSelectedTd(me.currentSelectedArr)
}
});
me.addListener('mouseup', function() {
anchorTd = null;
me.removeListener('mouseover', _mouseDownEvent);
var td = me.currentSelectedArr[0];
if (td) {
me.document.body.style.webkitUserSelect = '';
var range = new dom.Range(me.document);
if (_isEmpty(td)) {
range.setStart(me.currentSelectedArr[0], 0).setCursor();
} else {
range.selectNodeContents(me.currentSelectedArr[0]).select();
}
} else {
//浏览器能从table外边选到里边导致currentSelectedArr为空,清掉当前选区回到选区的最开始
var range = me.selection.getRange().shrinkBoundary();
if (!range.collapsed) {
var start = domUtils.findParentByTagName(range.startContainer, 'td', true),
end = domUtils.findParentByTagName(range.endContainer, 'td', true);
//在table里边的不能清除
if (start && !end || !start && end || start && end && start !== end) {
range.collapse(true).select(true)
}
}
}
});
function reset() {
me.currentSelectedArr = [];
anchorTd = null;
}
/**
* 插入表格
* @param numRows 行数
* @param numCols 列数
* @param height 列数
* @param width 列数
* @param heightUnit 列数
* @param widthUnit 列数
* @param bgColor 表格背景
* @param border 边框大小
* @param borderColor 边框颜色
* @param cellSpacing 单元格间距
* @param cellPadding 单元格边距
*/
me.commands['inserttable'] = {
queryCommandState: function () {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange();
return domUtils.findParentByTagName(range.startContainer, 'table', true)
|| domUtils.findParentByTagName(range.endContainer, 'table', true)
|| me.currentSelectedArr.length > 0 ? -1 : 0;
},
execCommand: function (cmdName, opt) {
opt = opt|| {numRows:5,numCols:5};
var html = ['<table _innerCreateTable = "true" '];
if(opt.cellSpacing && opt.cellSpacing != '0' || opt.cellPadding && opt.cellPadding != '0'){
html.push(' style="border-collapse:separate;" ')
}
opt.cellSpacing && opt.cellSpacing != '0' && html.push(' cellSpacing="' + opt.cellSpacing + '" ');
opt.cellPadding && opt.cellPadding != '0' && html.push(' cellPadding="' + opt.cellPadding + '" ');
html.push(' width="' + (opt.width||100) + (typeof opt.widthUnit == "undefined" ? '%' : opt.widthUnit)+'" ');
opt.height && html.push(' height="' + opt.height + (typeof opt.heightUnit == "undefined" ? '%' : opt.heightUnit) +'" ');
opt.align && (html.push(' align="' + opt.align + '" '));
html.push(' border="' + (opt.border||1) +'" borderColor="' + (opt.borderColor||'#000000') +'"');
opt.borderType == "1" && html.push(' borderType="1" ');
opt.bgColor && html.push(' bgColor="' + opt.bgColor + '"');
html.push(' ><tbody>');
opt.width = Math.floor((opt.width||'100')/opt.numCols);
for(var i=0;i<opt.numRows;i++){
html.push('<tr>')
for(var j=0;j<opt.numCols;j++){
html.push('<td '+' style="width:' + opt.width + (typeof opt.widthUnit == "undefined"?'%':opt.widthUnit) +';'
+(opt.borderType == '1'? 'border:'+opt.border+'px solid '+(opt.borderColor||'#000000'):'')
+'">'
+(browser.ie ? domUtils.fillChar : '<br/>')+'</td>')
}
html.push('</tr>')
}
me.execCommand('insertHtml', html.join('') + '</tbody></table>');
reset();
//如果表格的align不是默认,将不占位,给后边的block元素设置clear:both
if(opt.align){
var range = me.selection.getRange(),
bk = range.createBookmark(),
start = range.startContainer;
while(start && !domUtils.isBody(start)){
if(domUtils.isBlockElm(start)){
start.style.clear = 'both';
range.moveToBookmark(bk).select();
break;
}
start = start.parentNode;
}
}
}
};
me.commands['edittable'] = {
queryCommandState: function () {
var range = this.selection.getRange();
if(this.highlight ){return -1;}
return domUtils.findParentByTagName(range.startContainer, 'table', true)
|| me.currentSelectedArr.length > 0 ? 0 : -1;
},
execCommand: function (cmdName, opt) {
var start = me.selection.getStart(),
table = domUtils.findParentByTagName(start,'table',true);
if(table){
table.style.cssText = table.style.cssText.replace(/border[^;]+/gi,'');
table.style.borderCollapse = opt.cellSpacing && opt.cellSpacing != '0' || opt.cellPadding && opt.cellPadding != '0' ? 'separate' : 'collapse';
opt.cellSpacing && opt.cellSpacing != '0' ? table.setAttribute('cellSpacing',opt.cellSpacing) : table.removeAttribute('cellSpacing');
opt.cellPadding && opt.cellPadding != '0' ? table.setAttribute('cellPadding',opt.cellPadding): table.removeAttribute('cellPadding');
opt.height && table.setAttribute('height',opt.height+opt.heightUnit);
opt.align && table.setAttribute('align',opt.align);
opt.width && table.setAttribute('width',opt.width + opt.widthUnit);
opt.bgColor && table.setAttribute('bgColor',opt.bgColor);
opt.borderColor && table.setAttribute('borderColor',opt.borderColor);
opt.border && table.setAttribute('border',opt.border);
if(opt.borderType == "1"){
for(var i=0,ti,tds = table.getElementsByTagName('td');ti=tds[i++];){
ti.style.border = opt.border+'px solid '+(opt.borderColor||'#000000')
}
table.setAttribute('borderType','1')
}else{
for(var i=0,ti,tds = table.getElementsByTagName('td');ti=tds[i++];){
if(browser.ie){
ti.style.cssText = ti.style.cssText.replace(/border[^;]+/gi,'');
}else{
domUtils.removeStyle(ti,'border');
domUtils.removeStyle(ti,'border-image')
}
}
table.removeAttribute('borderType')
}
}
}
};
me.commands['edittd'] ={
queryCommandState:function(){
if(this.highlight ){return -1;}
var range = this.selection.getRange();
return (domUtils.findParentByTagName(range.startContainer, 'table', true)
&& domUtils.findParentByTagName(range.endContainer, 'table', true)) || me.currentSelectedArr.length > 0 ? 0 : -1;
},
/**
* 单元格属性编辑
* @param cmdName
* @param tdItems
*/
execCommand:function(cmdName,tdItems){
var range = this.selection.getRange(),
tds =!me.currentSelectedArr.length?[domUtils.findParentByTagName(range.startContainer, ['td','th'], true)]:me.currentSelectedArr;
for(var i=0,td;td=tds[i++];){
domUtils.setAttributes(td,{
"bgColor":tdItems.bgColor,
"align":tdItems.align,
"vAlign":tdItems.vAlign
});
}
}
};
/**
* 删除表格
*/
me.commands['deletetable'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange();
return (domUtils.findParentByTagName(range.startContainer, 'table', true)
&& domUtils.findParentByTagName(range.endContainer, 'table', true)) || me.currentSelectedArr.length > 0 ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
table = domUtils.findParentByTagName(me.currentSelectedArr.length > 0 ? me.currentSelectedArr[0] : range.startContainer, 'table', true);
deleteTable(table,range);
reset();
}
};
/**
* 添加表格标题
*/
me.commands['addcaption'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange();
return (domUtils.findParentByTagName(range.startContainer, 'table', true)
&& domUtils.findParentByTagName(range.endContainer, 'table', true)) || me.currentSelectedArr.length > 0 ? 0 : -1;
},
execCommand:function(cmdName, opt) {
var range = this.selection.getRange(),
table = domUtils.findParentByTagName(me.currentSelectedArr.length > 0 ? me.currentSelectedArr[0] : range.startContainer, 'table', true);
if (opt == "on") {
var c = table.createCaption();
c.innerHTML = "请在此输入表格标题";
} else {
table.removeChild(table.caption);
}
}
};
/**
* 向右合并单元格
*/
me.commands['mergeright'] = {
queryCommandState : function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true);
if (!td || this.currentSelectedArr.length > 1)return -1;
var tr = td.parentNode;
//最右边行不能向右合并
var rightCellIndex = getIndex(td) + td.colSpan;
if (rightCellIndex >= tr.cells.length) {
return -1;
}
//单元格不在同一行不能向右合并
var rightCell = tr.cells[rightCellIndex];
if (_isHide(rightCell)) {
return -1;
}
return td.rowSpan == rightCell.rowSpan ? 0 : -1;
},
execCommand : function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true) || me.currentSelectedArr[0],
tr = td.parentNode,
rows = tr.parentNode.parentNode.rows;
//找到当前单元格右边的未隐藏单元格
var rightCellRowIndex = tr.rowIndex,
rightCellCellIndex = getIndex(td) + td.colSpan,
rightCell = rows[rightCellRowIndex].cells[rightCellCellIndex];
//在隐藏的原生td对象上增加两个属性,分别表示当前td对应的真实td坐标
for (var i = rightCellRowIndex; i < rightCellRowIndex + rightCell.rowSpan; i++) {
for (var j = rightCellCellIndex; j < rightCellCellIndex + rightCell.colSpan; j++) {
var tmpCell = rows[i].cells[j];
tmpCell.setAttribute('rootRowIndex', tr.rowIndex);
tmpCell.setAttribute('rootCellIndex', getIndex(td));
}
}
//合并单元格
td.colSpan += rightCell.colSpan || 1;
//合并内容
_moveContent(td, rightCell);
//删除被合并的单元格,此处用隐藏方式实现来提升性能
rightCell.style.display = "none";
//重新让单元格获取焦点
//trace:1565
if(domUtils.isEmptyBlock(td)){
range.setStart(td,0).setCursor();
}else{
range.selectNodeContents(td).setCursor(true,true);
}
//处理有寛高,导致ie的文字不能输入占满
browser.ie && domUtils.removeAttributes(td,['width','height']);
}
};
/**
* 向下合并单元格
*/
me.commands['mergedown'] = {
queryCommandState : function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, 'td', true);
if (!td || getCount(me.currentSelectedArr) > 1)return -1;
var tr = td.parentNode,
table = tr.parentNode.parentNode,
rows = table.rows;
//已经是最底行,不能向下合并
var downCellRowIndex = tr.rowIndex + td.rowSpan;
if (downCellRowIndex >= rows.length) {
return -1;
}
//如果下一个单元格是隐藏的,表明他是由左边span过来的,不能向下合并
var downCell = rows[downCellRowIndex].cells[getIndex(td)];
if (_isHide(downCell)) {
return -1;
}
//只有列span都相等时才能合并
return td.colSpan == downCell.colSpan ? 0 : -1;
},
execCommand : function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true) || me.currentSelectedArr[0];
var tr = td.parentNode,
rows = tr.parentNode.parentNode.rows;
var downCellRowIndex = tr.rowIndex + td.rowSpan,
downCellCellIndex = getIndex(td),
downCell = rows[downCellRowIndex].cells[downCellCellIndex];
//找到当前列的下一个未被隐藏的单元格
for (var i = downCellRowIndex; i < downCellRowIndex + downCell.rowSpan; i++) {
for (var j = downCellCellIndex; j < downCellCellIndex + downCell.colSpan; j++) {
var tmpCell = rows[i].cells[j];
tmpCell.setAttribute('rootRowIndex', tr.rowIndex);
tmpCell.setAttribute('rootCellIndex', getIndex(td));
}
}
//合并单元格
td.rowSpan += downCell.rowSpan || 1;
//合并内容
_moveContent(td, downCell);
//删除被合并的单元格,此处用隐藏方式实现来提升性能
downCell.style.display = "none";
//重新让单元格获取焦点
if(domUtils.isEmptyBlock(td)){
range.setStart(td,0).setCursor();
}else{
range.selectNodeContents(td).setCursor(true,true);
}
//处理有寛高,导致ie的文字不能输入占满
browser.ie && domUtils.removeAttributes(td,['width','height']);
}
};
/**
* 删除行
*/
me.commands['deleterow'] = {
queryCommandState : function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true);
if (!td && me.currentSelectedArr.length == 0)return -1;
},
execCommand : function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true),
tr,
table,
cells,
rows ,
rowIndex ,
cellIndex;
if (td && me.currentSelectedArr.length == 0) {
var count = (td.rowSpan || 1) - 1;
me.currentSelectedArr.push(td);
tr = td.parentNode,
table = tr.parentNode.parentNode;
rows = table.rows,
rowIndex = tr.rowIndex + 1,
cellIndex = getIndex(td);
while (count) {
me.currentSelectedArr.push(rows[rowIndex].cells[cellIndex]);
count--;
rowIndex++
}
}
while (td = me.currentSelectedArr.pop()) {
if (!domUtils.findParentByTagName(td, 'table')) {//|| _isHide(td)
continue;
}
tr = td.parentNode,
table = tr.parentNode.parentNode;
cells = tr.cells,
rows = table.rows,
rowIndex = tr.rowIndex,
cellIndex = getIndex(td);
/*
* 从最左边开始扫描并隐藏当前行的所有单元格
* 若当前单元格的display为none,往上找到它所在的真正单元格,获取colSpan和rowSpan,
* 将rowspan减一,并跳转到cellIndex+colSpan列继续处理
* 若当前单元格的display不为none,分两种情况:
* 1、rowspan == 1 ,直接设置display为none,跳转到cellIndex+colSpan列继续处理
* 2、rowspan > 1 , 修改当前单元格的下一个单元格的display为"",
* 并将当前单元格的rowspan-1赋给下一个单元格的rowspan,当前单元格的colspan赋给下一个单元格的colspan,
* 然后隐藏当前单元格,跳转到cellIndex+colSpan列继续处理
*/
for (var currentCellIndex = 0; currentCellIndex < cells.length;) {
var currentNode = cells[currentCellIndex];
if (_isHide(currentNode)) {
var topNode = rows[currentNode.getAttribute('rootRowIndex')].cells[currentNode.getAttribute('rootCellIndex')];
topNode.rowSpan--;
currentCellIndex += topNode.colSpan;
} else {
if (currentNode.rowSpan == 1) {
currentCellIndex += currentNode.colSpan;
} else {
var downNode = rows[rowIndex + 1].cells[currentCellIndex];
downNode.style.display = "";
downNode.rowSpan = currentNode.rowSpan - 1;
downNode.colSpan = currentNode.colSpan;
currentCellIndex += currentNode.colSpan;
}
}
}
//完成更新后再删除外层包裹的tr
domUtils.remove(tr);
//重新定位焦点
var topRowTd, focusTd, downRowTd;
if (rowIndex == rows.length) { //如果被删除的行是最后一行,这里之所以没有-1是因为已经删除了一行
//如果删除的行也是第一行,那么表格总共只有一行,删除整个表格
if (rowIndex == 0) {
deleteTable(table,range);
return;
}
//如果上一单元格未隐藏,则直接定位,否则定位到最近的上一个非隐藏单元格
var preRowIndex = rowIndex - 1;
topRowTd = rows[preRowIndex].cells[ cellIndex];
focusTd = _isHide(topRowTd) ? rows[topRowTd.getAttribute('rootRowIndex')].cells[topRowTd.getAttribute('rootCellIndex')] : topRowTd;
} else { //如果被删除的不是最后一行,则光标定位到下一行,此处未加1是因为已经删除了一行
downRowTd = rows[rowIndex].cells[cellIndex];
focusTd = _isHide(downRowTd) ? rows[downRowTd.getAttribute('rootRowIndex')].cells[downRowTd.getAttribute('rootCellIndex')] : downRowTd;
}
}
range.setStart(focusTd, 0).setCursor();
update(table)
}
};
/**
* 删除列
*/
me.commands['deletecol'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true);
if (!td && me.currentSelectedArr.length == 0)return -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true);
if (td && me.currentSelectedArr.length == 0) {
var count = (td.colSpan || 1) - 1;
me.currentSelectedArr.push(td);
while (count) {
do{
td = td.nextSibling
} while (td.nodeType == 3);
me.currentSelectedArr.push(td);
count--;
}
}
while (td = me.currentSelectedArr.pop()) {
if (!domUtils.findParentByTagName(td, 'table')) { //|| _isHide(td)
continue;
}
var tr = td.parentNode,
table = tr.parentNode.parentNode,
cellIndex = getIndex(td),
rows = table.rows,
cells = tr.cells,
rowIndex = tr.rowIndex;
/*
* 从第一行开始扫描并隐藏当前列的所有单元格
* 若当前单元格的display为none,表明它是由左边Span过来的,
* 将左边第一个非none单元格的colSpan减去1并删去对应的单元格后跳转到rowIndex + rowspan行继续处理;
* 若当前单元格的display不为none,分两种情况,
* 1、当前单元格的colspan == 1 , 则直接删除该节点,跳转到rowIndex + rowspan行继续处理
* 2、当前单元格的colsapn > 1, 修改当前单元格右边单元格的display为"",
* 并将当前单元格的colspan-1赋给它的colspan,当前单元格的rolspan赋给它的rolspan,
* 然后删除当前单元格,跳转到rowIndex+rowSpan行继续处理
*/
var rowSpan;
for (var currentRowIndex = 0; currentRowIndex < rows.length;) {
var currentNode = rows[currentRowIndex].cells[cellIndex];
if (_isHide(currentNode)) {
var leftNode = rows[currentNode.getAttribute('rootRowIndex')].cells[currentNode.getAttribute('rootCellIndex')];
//依次删除对应的单元格
rowSpan = leftNode.rowSpan;
for (var i = 0; i < leftNode.rowSpan; i++) {
var delNode = rows[currentRowIndex + i].cells[cellIndex];
domUtils.remove(delNode);
}
//修正被删后的单元格信息
leftNode.colSpan--;
currentRowIndex += rowSpan;
} else {
if (currentNode.colSpan == 1) {
rowSpan = currentNode.rowSpan;
for (var i = currentRowIndex,l = currentRowIndex + currentNode.rowSpan; i < l; i++) {
domUtils.remove(rows[i].cells[cellIndex]);
}
currentRowIndex += rowSpan;
} else {
var rightNode = rows[currentRowIndex].cells[cellIndex + 1];
rightNode.style.display = "";
rightNode.rowSpan = currentNode.rowSpan;
rightNode.colSpan = currentNode.colSpan - 1;
currentRowIndex += currentNode.rowSpan;
domUtils.remove(currentNode);
}
}
}
//重新定位焦点
var preColTd, focusTd, nextColTd;
if (cellIndex == cells.length) { //如果当前列是最后一列,光标定位到当前列的前一列,同样,这里没有减去1是因为已经被删除了一列
//如果当前列也是第一列,则删除整个表格
if (cellIndex == 0) {
deleteTable(table,range);
return;
}
//找到当前单元格前一列中和本单元格最近的一个未隐藏单元格
var preCellIndex = cellIndex - 1;
preColTd = rows[rowIndex].cells[preCellIndex];
focusTd = _isHide(preColTd) ? rows[preColTd.getAttribute('rootRowIndex')].cells[preColTd.getAttribute('rootCellIndex')] : preColTd;
} else { //如果当前列不是最后一列,则光标定位到当前列的后一列
nextColTd = rows[rowIndex].cells[cellIndex];
focusTd = _isHide(nextColTd) ? rows[nextColTd.getAttribute('rootRowIndex')].cells[nextColTd.getAttribute('rootCellIndex')] : nextColTd;
}
}
range.setStart(focusTd, 0).setCursor();
update(table)
}
};
/**
* 完全拆分单元格
*/
me.commands['splittocells'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true);
return td && ( td.rowSpan > 1 || td.colSpan > 1 ) && (!me.currentSelectedArr.length || getCount(me.currentSelectedArr) == 1) ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true),
tr = td.parentNode,
table = tr.parentNode.parentNode;
var rowIndex = tr.rowIndex,
cellIndex = getIndex(td),
rowSpan = td.rowSpan,
colSpan = td.colSpan;
for (var i = 0; i < rowSpan; i++) {
for (var j = 0; j < colSpan; j++) {
var cell = table.rows[rowIndex + i].cells[cellIndex + j];
cell.rowSpan = 1;
cell.colSpan = 1;
if (_isHide(cell)) {
cell.style.display = "";
cell.innerHTML = browser.ie ? '' : "<br/>";
}
}
}
}
};
/**
* 将单元格拆分成行
*/
me.commands['splittorows'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, 'td', true) || me.currentSelectedArr[0];
return td && ( td.rowSpan > 1) && (!me.currentSelectedArr.length || getCount(me.currentSelectedArr) == 1) ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, 'td', true) || me.currentSelectedArr[0],
tr = td.parentNode,
rows = tr.parentNode.parentNode.rows;
var rowIndex = tr.rowIndex,
cellIndex = getIndex(td),
rowSpan = td.rowSpan,
colSpan = td.colSpan;
for (var i = 0; i < rowSpan; i++) {
var cells = rows[rowIndex + i],
cell = cells.cells[cellIndex];
cell.rowSpan = 1;
cell.colSpan = colSpan;
if (_isHide(cell)) {
cell.style.display = "";
//原有的内容要清除掉
cell.innerHTML = browser.ie ? '' : '<br/>'
}
//修正被隐藏单元格中存储的rootRowIndex和rootCellIndex信息
for (var j = cellIndex + 1; j < cellIndex + colSpan; j++) {
cell = cells.cells[j];
cell.setAttribute('rootRowIndex', rowIndex + i)
}
}
clearSelectedTd(me.currentSelectedArr);
this.selection.getRange().setStart(td, 0).setCursor();
}
};
/**
* 在表格前插入行
*/
me.commands['insertparagraphbeforetable'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, 'td', true) || me.currentSelectedArr[0];
return td && domUtils.findParentByTagName(td, 'table') ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
table = domUtils.findParentByTagName(start, 'table', true);
start = me.document.createElement(me.options.enterTag);
table.parentNode.insertBefore(start, table);
clearSelectedTd(me.currentSelectedArr);
if (start.tagName == 'P') {
//trace:868
start.innerHTML = browser.ie ? '' : '<br/>';
range.setStart(start, 0)
} else {
range.setStartBefore(start)
}
range.setCursor();
}
};
/**
* 将单元格拆分成列
*/
me.commands['splittocols'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true) || me.currentSelectedArr[0];
return td && ( td.colSpan > 1) && (!me.currentSelectedArr.length || getCount(me.currentSelectedArr) == 1) ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true) || me.currentSelectedArr[0],
tr = td.parentNode,
rows = tr.parentNode.parentNode.rows;
var rowIndex = tr.rowIndex,
cellIndex = getIndex(td),
rowSpan = td.rowSpan,
colSpan = td.colSpan;
for (var i = 0; i < colSpan; i++) {
var cell = rows[rowIndex].cells[cellIndex + i];
cell.rowSpan = rowSpan;
cell.colSpan = 1;
if (_isHide(cell)) {
cell.style.display = "";
cell.innerHTML = browser.ie ? '' : '<br/>'
}
for (var j = rowIndex + 1; j < rowIndex + rowSpan; j++) {
var tmpCell = rows[j].cells[cellIndex + i];
tmpCell.setAttribute('rootCellIndex', cellIndex + i);
}
}
clearSelectedTd(me.currentSelectedArr);
this.selection.getRange().setStart(td, 0).setCursor();
}
};
/**
* 插入行
*/
me.commands['insertrow'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange();
return domUtils.findParentByTagName(range.startContainer, 'table', true)
|| domUtils.findParentByTagName(range.endContainer, 'table', true) || me.currentSelectedArr.length != 0 ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
tr = domUtils.findParentByTagName(start, 'tr', true) || me.currentSelectedArr[0].parentNode,
table = tr.parentNode.parentNode,
rows = table.rows;
//记录插入位置原来所有的单元格
var rowIndex = tr.rowIndex,
cells = rows[rowIndex].cells;
//插入新的一行
var newRow = table.insertRow(rowIndex);
var newCell;
//遍历表格中待插入位置中的所有单元格,检查其状态,并据此修正新插入行的单元格状态
for (var cellIndex = 0; cellIndex < cells.length;) {
var tmpCell = cells[cellIndex];
if (_isHide(tmpCell)) { //如果当前单元格是隐藏的,表明当前单元格由其上部span过来,找到其上部单元格
//找到被隐藏单元格真正所属的单元格
var topCell = rows[tmpCell.getAttribute('rootRowIndex')].cells[tmpCell.getAttribute('rootCellIndex')];
//增加一行,并将所有新插入的单元格隐藏起来
topCell.rowSpan++;
for (var i = 0; i < topCell.colSpan; i++) {
newCell = tmpCell.cloneNode(false);
domUtils.removeAttributes(newCell,["bgColor","valign","align"]);
newCell.rowSpan = newCell.colSpan = 1;
newCell.innerHTML = browser.ie ? '' : "<br/>";
newCell.className = '';
if (newRow.children[cellIndex + i]) {
newRow.insertBefore(newCell, newRow.children[cellIndex + i]);
} else {
newRow.appendChild(newCell)
}
newCell.style.display = "none";
}
cellIndex += topCell.colSpan;
} else {//若当前单元格未隐藏,则在其上行插入colspan个单元格
for (var j = 0; j < tmpCell.colSpan; j++) {
newCell = tmpCell.cloneNode(false);
domUtils.removeAttributes(newCell,["bgColor","valign","align"]);
newCell.rowSpan = newCell.colSpan = 1;
newCell.innerHTML = browser.ie ? '' : "<br/>";
newCell.className = '';
if (newRow.children[cellIndex + j]) {
newRow.insertBefore(newCell, newRow.children[cellIndex + j]);
} else {
newRow.appendChild(newCell)
}
}
cellIndex += tmpCell.colSpan;
}
}
update(table);
range.setStart(newRow.cells[0], 0).setCursor();
clearSelectedTd(me.currentSelectedArr);
}
};
/**
* 插入列
*/
me.commands['insertcol'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var range = this.selection.getRange();
return domUtils.findParentByTagName(range.startContainer, 'table', true)
|| domUtils.findParentByTagName(range.endContainer, 'table', true) || me.currentSelectedArr.length != 0 ? 0 : -1;
},
execCommand:function() {
var range = this.selection.getRange(),
start = range.startContainer,
td = domUtils.findParentByTagName(start, ['td','th'], true) || me.currentSelectedArr[0],
table = domUtils.findParentByTagName(td, 'table'),
rows = table.rows;
var cellIndex = getIndex(td),
newCell;
//遍历当前列中的所有单元格,检查其状态,并据此修正新插入列的单元格状态
for (var rowIndex = 0; rowIndex < rows.length;) {
var tmpCell = rows[rowIndex].cells[cellIndex],tr;
if (_isHide(tmpCell)) {//如果当前单元格是隐藏的,表明当前单元格由其左边span过来,找到其左边单元格
var leftCell = rows[tmpCell.getAttribute('rootRowIndex')].cells[tmpCell.getAttribute('rootCellIndex')];
leftCell.colSpan++;
for (var i = 0; i < leftCell.rowSpan; i++) {
newCell = td.cloneNode(false);
domUtils.removeAttributes(newCell,["bgColor","valign","align"]);
newCell.rowSpan = newCell.colSpan = 1;
newCell.innerHTML = browser.ie ? '' : "<br/>";
newCell.className = '';
tr = rows[rowIndex + i];
if (tr.children[cellIndex]) {
tr.insertBefore(newCell, tr.children[cellIndex]);
} else {
tr.appendChild(newCell)
}
newCell.style.display = "none";
}
rowIndex += leftCell.rowSpan;
} else { //若当前单元格未隐藏,则在其左边插入rowspan个单元格
for (var j = 0; j < tmpCell.rowSpan; j++) {
newCell = td.cloneNode(false);
domUtils.removeAttributes(newCell,["bgColor","valign","align"]);
newCell.rowSpan = newCell.colSpan = 1;
newCell.innerHTML = browser.ie ? '' : "<br/>";
newCell.className = '';
tr = rows[rowIndex + j];
if (tr.children[cellIndex]) {
tr.insertBefore(newCell, tr.children[cellIndex]);
} else {
tr.appendChild(newCell)
}
newCell.innerHTML = browser.ie ? '' : "<br/>";
}
rowIndex += tmpCell.rowSpan;
}
}
update(table);
range.setStart(rows[0].cells[cellIndex], 0).setCursor();
clearSelectedTd(me.currentSelectedArr);
}
};
/**
* 合并多个单元格,通过两个cell将当前包含的所有横纵单元格进行合并
*/
me.commands['mergecells'] = {
queryCommandState:function() {
if(this.highlight ){
return -1;
}
var count = 0;
for (var i = 0,ti; ti = this.currentSelectedArr[i++];) {
if (!_isHide(ti))
count++;
}
return count > 1 ? 0 : -1;
},
execCommand:function() {
var start = me.currentSelectedArr[0],
end = me.currentSelectedArr[me.currentSelectedArr.length - 1],
table = domUtils.findParentByTagName(start, 'table'),
rows = table.rows,
cellsRange = {
beginRowIndex:start.parentNode.rowIndex,
beginCellIndex:getIndex(start),
endRowIndex:end.parentNode.rowIndex,
endCellIndex:getIndex(end)
},
beginRowIndex = cellsRange.beginRowIndex,
beginCellIndex = cellsRange.beginCellIndex,
rowsLength = cellsRange.endRowIndex - cellsRange.beginRowIndex + 1,
cellLength = cellsRange.endCellIndex - cellsRange.beginCellIndex + 1,
tmp = rows[beginRowIndex].cells[beginCellIndex];
for (var i = 0, ri; (ri = rows[beginRowIndex + i++]) && i <= rowsLength;) {
for (var j = 0, ci; (ci = ri.cells[beginCellIndex + j++]) && j <= cellLength;) {
if (i == 1 && j == 1) {
ci.style.display = "";
ci.rowSpan = rowsLength;
ci.colSpan = cellLength;
} else {
ci.style.display = "none";
ci.rowSpan = 1;
ci.colSpan = 1;
ci.setAttribute('rootRowIndex', beginRowIndex);
ci.setAttribute('rootCellIndex', beginCellIndex);
//传递内容
_moveContent(tmp, ci);
}
}
}
this.selection.getRange().setStart(tmp, 0).setCursor();
//处理有寛高,导致ie的文字不能输入占满
browser.ie && domUtils.removeAttributes(tmp,['width','height']);
clearSelectedTd(me.currentSelectedArr);
}
};
/**
* 将cellFrom单元格中的内容移动到cellTo中
* @param cellTo 目标单元格
* @param cellFrom 源单元格
*/
function _moveContent(cellTo, cellFrom) {
if (_isEmpty(cellFrom)) return;
if (_isEmpty(cellTo)) {
cellTo.innerHTML = cellFrom.innerHTML;
return;
}
var child = cellTo.lastChild;
if (child.nodeType != 1 || child.tagName != 'BR') {
cellTo.appendChild(cellTo.ownerDocument.createElement('br'))
}
//依次移动内容
while (child = cellFrom.firstChild) {
cellTo.appendChild(child);
}
}
/**
* 根据两个单元格来获取中间包含的所有单元格集合选区
* @param cellA
* @param cellB
* @return {Object} 选区的左上和右下坐标
*/
function _getCellsRange(cellA, cellB) {
var trA = cellA.parentNode,
trB = cellB.parentNode,
aRowIndex = trA.rowIndex,
bRowIndex = trB.rowIndex,
rows = trA.parentNode.parentNode.rows,
rowsNum = rows.length,
cellsNum = rows[0].cells.length,
cellAIndex = getIndex(cellA),
cellBIndex = getIndex(cellB);
if (cellA == cellB) {
return {
beginRowIndex: aRowIndex,
beginCellIndex: cellAIndex,
endRowIndex: aRowIndex + cellA.rowSpan - 1,
endCellIndex: cellBIndex + cellA.colSpan - 1
}
}
var
beginRowIndex = Math.min(aRowIndex, bRowIndex),
beginCellIndex = Math.min(cellAIndex, cellBIndex),
endRowIndex = Math.max(aRowIndex + cellA.rowSpan - 1, bRowIndex + cellB.rowSpan - 1),
endCellIndex = Math.max(cellAIndex + cellA.colSpan - 1, cellBIndex + cellB.colSpan - 1);
while (1) {
var tmpBeginRowIndex = beginRowIndex,
tmpBeginCellIndex = beginCellIndex,
tmpEndRowIndex = endRowIndex,
tmpEndCellIndex = endCellIndex;
// 检查是否有超出TableRange上边界的情况
if (beginRowIndex > 0) {
for (cellIndex = beginCellIndex; cellIndex <= endCellIndex;) {
var currentTopTd = rows[beginRowIndex].cells[cellIndex];
if (_isHide(currentTopTd)) {
//overflowRowIndex = beginRowIndex == currentTopTd.rootRowIndex ? 1:0;
beginRowIndex = currentTopTd.getAttribute('rootRowIndex');
currentTopTd = rows[currentTopTd.getAttribute('rootRowIndex')].cells[currentTopTd.getAttribute('rootCellIndex')];
}
cellIndex = getIndex(currentTopTd) + (currentTopTd.colSpan || 1);
}
}
//检查是否有超出左边界的情况
if (beginCellIndex > 0) {
for (var rowIndex = beginRowIndex; rowIndex <= endRowIndex;) {
var currentLeftTd = rows[rowIndex].cells[beginCellIndex];
if (_isHide(currentLeftTd)) {
// overflowCellIndex = beginCellIndex== currentLeftTd.rootCellIndex ? 1:0;
beginCellIndex = currentLeftTd.getAttribute('rootCellIndex');
currentLeftTd = rows[currentLeftTd.getAttribute('rootRowIndex')].cells[currentLeftTd.getAttribute('rootCellIndex')];
}
rowIndex = currentLeftTd.parentNode.rowIndex + (currentLeftTd.rowSpan || 1);
}
}
// 检查是否有超出TableRange下边界的情况
if (endRowIndex < rowsNum) {
for (var cellIndex = beginCellIndex; cellIndex <= endCellIndex;) {
var currentDownTd = rows[endRowIndex].cells[cellIndex];
if (_isHide(currentDownTd)) {
currentDownTd = rows[currentDownTd.getAttribute('rootRowIndex')].cells[currentDownTd.getAttribute('rootCellIndex')];
}
endRowIndex = currentDownTd.parentNode.rowIndex + currentDownTd.rowSpan - 1;
cellIndex = getIndex(currentDownTd) + (currentDownTd.colSpan || 1);
}
}
//检查是否有超出右边界的情况
if (endCellIndex < cellsNum) {
for (rowIndex = beginRowIndex; rowIndex <= endRowIndex;) {
var currentRightTd = rows[rowIndex].cells[endCellIndex];
if (_isHide(currentRightTd)) {
currentRightTd = rows[currentRightTd.getAttribute('rootRowIndex')].cells[currentRightTd.getAttribute('rootCellIndex')];
}
endCellIndex = getIndex(currentRightTd) + currentRightTd.colSpan - 1;
rowIndex = currentRightTd.parentNode.rowIndex + (currentRightTd.rowSpan || 1);
}
}
if (tmpBeginCellIndex == beginCellIndex && tmpEndCellIndex == endCellIndex && tmpEndRowIndex == endRowIndex && tmpBeginRowIndex == beginRowIndex) {
break;
}
}
//返回选区的起始和结束坐标
return {
beginRowIndex: beginRowIndex,
beginCellIndex: beginCellIndex,
endRowIndex: endRowIndex,
endCellIndex: endCellIndex
}
}
/**
* 鼠标按下事件
* @param type
* @param evt
*/
function _mouseDownEvent(type, evt) {
anchorTd = evt.target || evt.srcElement;
if(me.queryCommandState('highlightcode')||domUtils.findParent(anchorTd,function(node){
return node.tagName == "DIV"&&/highlighter/.test(node.id);
})){
return;
}
if (evt.button == 2)return;
me.document.body.style.webkitUserSelect = '';
clearSelectedTd(me.currentSelectedArr);
domUtils.clearSelectedArr(me.currentSelectedArr);
//在td里边点击,anchorTd不是td
if (anchorTd.tagName !== 'TD') {
anchorTd = domUtils.findParentByTagName(anchorTd, 'td') || anchorTd;
}
if (anchorTd.tagName == 'TD') {
me.addListener('mouseover', function(type, evt) {
var tmpTd = evt.target || evt.srcElement;
_mouseOverEvent.call(me, tmpTd);
evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false);
});
} else {
reset();
}
}
/**
* 鼠标移动事件
* @param tmpTd
*/
function _mouseOverEvent(tmpTd) {
if (anchorTd && tmpTd.tagName == "TD") {
me.document.body.style.webkitUserSelect = 'none';
var table = tmpTd.parentNode.parentNode.parentNode;
me.selection.getNative()[browser.ie ? 'empty' : 'removeAllRanges']();
var range = _getCellsRange(anchorTd, tmpTd);
_toggleSelect(table, range);
}
}
/**
* 切换选区状态
* @param table
* @param cellsRange
*/
function _toggleSelect(table, cellsRange) {
var rows = table.rows;
clearSelectedTd(me.currentSelectedArr);
for (var i = cellsRange.beginRowIndex; i <= cellsRange.endRowIndex; i++) {
for (var j = cellsRange.beginCellIndex; j <= cellsRange.endCellIndex; j++) {
var td = rows[i].cells[j];
td.className = me.options.selectedTdClass;
me.currentSelectedArr.push(td);
}
}
}
//更新rootRowIndxe,rootCellIndex
function update(table) {
var tds = table.getElementsByTagName('td'),
rowIndex,cellIndex,rows = table.rows;
for (var j = 0,tj; tj = tds[j++];) {
if (!_isHide(tj)) {
rowIndex = tj.parentNode.rowIndex;
cellIndex = getIndex(tj);
for (var r = 0; r < tj.rowSpan; r++) {
var c = r == 0 ? 1 : 0;
for (; c < tj.colSpan; c++) {
var tmp = rows[rowIndex + r].children[cellIndex + c];
tmp.setAttribute('rootRowIndex', rowIndex);
tmp.setAttribute('rootCellIndex', cellIndex);
}
}
}
if(!_isHide(tj)){
domUtils.removeAttributes(tj,['rootRowIndex','rootCellIndex']);
}
if(tj.colSpan && tj.colSpan == 1){
tj.removeAttribute('colSpan')
}
if(tj.rowSpan && tj.rowSpan == 1){
tj.removeAttribute('rowSpan')
}
var width;
if(!_isHide(tj) && (width = tj.style.width) && /%/.test(width)){
tj.style.width = Math.floor(100/tj.parentNode.cells.length) + '%'
}
}
}
me.adjustTable = function(cont) {
var table = cont.getElementsByTagName('table');
for (var i = 0,ti; ti = table[i++];) {
//如果表格的align不是默认,将不占位,给后边的block元素设置clear:both
if (ti.getAttribute('align')) {
var next = ti.nextSibling;
while(next){
if(domUtils.isBlockElm(next)){
break;
}
next = next.nextSibling;
}
if(next){
next.style.clear = 'both';
}
}
ti.removeAttribute('_innerCreateTable')
var tds = domUtils.getElementsByTagName(ti, 'td'),
td,tmpTd;
for (var j = 0,tj; tj = tds[j++];) {
if (domUtils.isEmptyNode(tj)) {
tj.innerHTML = browser.ie ? domUtils.fillChar : '<br/>';
}
var index = getIndex(tj),
rowIndex = tj.parentNode.rowIndex,
rows = domUtils.findParentByTagName(tj, 'table').rows;
for (var r = 0; r < tj.rowSpan; r++) {
var c = r == 0 ? 1 : 0;
for (; c < tj.colSpan; c++) {
if (!td) {
td = tj.cloneNode(false);
td.rowSpan = td.colSpan = 1;
td.style.display = 'none';
td.innerHTML = browser.ie ? '' : '<br/>';
} else {
td = td.cloneNode(true)
}
td.setAttribute('rootRowIndex', tj.parentNode.rowIndex);
td.setAttribute('rootCellIndex', index);
if (r == 0) {
if (tj.nextSibling) {
tj.parentNode.insertBefore(td, tj.nextSibling);
} else {
tj.parentNode.appendChild(td)
}
} else {
tmpTd = rows[rowIndex + r].children[index];
if (tmpTd) {
tmpTd.parentNode.insertBefore(td, tmpTd)
} else {
//trace:1032
rows[rowIndex + r].appendChild(td)
}
}
}
}
}
}
me.fireEvent("afteradjusttable",cont);
};
// me.addListener('beforegetcontent',function(){
// for(var i=0,ti,ts=me.document.getElementsByTagName('table');ti=ts[i++];){
// var pN = ti.parentNode;
// if(pN && pN.getAttribute('dropdrag')){
// domUtils.remove(pN,true)
// }
// }
// });
//
// me.addListener('aftergetcontent',function(){
// if(!me.queryCommandState('source'))
// me.fireEvent('afteradjusttable',me.document)
// });
// //table拖拽
// me.addListener("afteradjusttable",function(type,cont){
// var table = cont.getElementsByTagName("table"),
// dragCont = me.document.createElement("div");
// domUtils.setAttributes(dragCont,{
// style:'margin:0;padding:5px;border:0;',
// dropdrag:true
// });
// for (var i = 0,ti; ti = table[i++];) {
// if(ti.parentNode && ti.parentNode.nodeType == 1){
//
//
// (function(ti){
// var div = dragCont.cloneNode(false);
// ti.parentNode.insertBefore(div,ti);
// div.appendChild(ti);
// var borderStyle;
// domUtils.on(div,'mousemove',function(evt){
// var tag = evt.srcElement || evt.target;
// if(tag.tagName.toLowerCase()=="div"){
// if(ie && me.body.getAttribute("contentEditable") == 'true')
// me.body.setAttribute("contentEditable","false");
// borderStyle = clickPosition(ti,this,evt)
//
// }
// });
// if(ie){
// domUtils.on(div,'mouseleave',function(evt){
//
// if(evt.srcElement.tagName.toLowerCase()=="div" && ie && me.body.getAttribute("contentEditable") == 'false'){
//
// me.body.setAttribute("contentEditable","true");
// }
//
//
// });
// }
//
// domUtils.on(div,"mousedown",function(evt){
// var tag = evt.srcElement || evt.target;
//
// if(tag.tagName.toLowerCase()=="div"){
// if(ie && me.body.getAttribute("contentEditable") == 'true')
// me.body.setAttribute("contentEditable","false");
// var tWidth = ti.offsetWidth,
// tHeight = ti.offsetHeight,
// align = ti.getAttribute('align');
//
//
// try{
// baidu.editor.ui.uiUtils.startDrag(evt, {
// ondragstart:function(){},
// ondragmove: function (x, y){
//
// if(align && align!="left" && /\w?w-/.test(borderStyle)){
// x = -x;
// }
// if(/^s?[we]/.test(borderStyle)){
// ti.setAttribute("width",(tWidth+x)>0?tWidth+x: 0);
// }
// if(/^s/.test(borderStyle)){
// ti.setAttribute("height",(tHeight+y)>0?tHeight+y:0);
// }
// },
// ondragstop: function (){}
// },me.document);
// }catch(e){
// alert("您没有引入uiUtils,无法拖动table");
// }
//
// }
// });
//
// domUtils.on(ti,"mouseover",function(){
// var div = ti.parentNode;
// if(div && div.parentNode && div.getAttribute('dropdrag')){
// domUtils.setStyle(div,"cursor","text");
// if(ie && me.body.getAttribute("contentEditable") == 'false')
// me.body.setAttribute("contentEditable","true");
// }
//
//
// });
// })(ti);
//
// }
// }
// });
// function clickPosition(table,div,evt){
// var pos = domUtils.getXY(table),
// tWidth = table.offsetWidth,
// tHeight = table.offsetHeight,
// evtPos = {
// top : evt.clientY,
// left : evt.clientX
// },
// borderStyle = "";
//
// if(Math.abs(pos.x-evtPos.left)<15){
//
// //左,左下
// borderStyle = Math.abs(evtPos.top-pos.y-tHeight)<15 ? "sw-resize" : "w-resize";
// }else if(Math.abs(evtPos.left-pos.x-tWidth)<15){
// //右,右下
// borderStyle = Math.abs(evtPos.top-pos.y-tHeight)<15 ? "se-resize" : "e-resize";
// }else if(Math.abs(evtPos.top-pos.y-tHeight)<15 && Math.abs(evtPos.left-pos.x)<tWidth){
// //下
// borderStyle = "s-resize";
// }
// domUtils.setStyle(div,"cursor",borderStyle||'text');
// return borderStyle;
// }
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/table.js | JavaScript | asf20 | 62,817 |
///import core
///import plugins\paragraph.js
///commands 段间距
///commandsName RowSpacingBottom,RowSpacingTop
///commandsTitle 段间距
/**
* @description 设置段前距,段后距
* @name baidu.editor.execCommand
* @param {String} cmdName rowspacing设置段间距
* @param {String} value 值,以px为单位
* @param {String} dir top或bottom段前后段后
* @author zhanyi
*/
UE.commands['rowspacing'] = {
execCommand : function( cmdName,value,dir ) {
this.execCommand('paragraph','p',{style:'margin-'+dir+':'+value + 'px'});
return true;
},
queryCommandValue : function(cmdName,dir) {
var pN = utils.findNode(this.selection.getStartElementPath(),null,function(node){return domUtils.isBlockElm(node) }),
value;
//trace:1026
if(pN){
value = domUtils.getComputedStyle(pN,'margin-'+dir).replace(/[^\d]/g,'');
return !value ? 0 : value;
}
return 0;
},
queryCommandState : function(){
return this.highlight ? -1 :0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/rowspacing.js | JavaScript | asf20 | 1,135 |
///import core
///import plugins\inserthtml.js
///commands 分割线
///commandsName Horizontal
///commandsTitle 分隔线
/**
* 分割线
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName horizontal插入分割线
*/
UE.commands['horizontal'] = {
execCommand : function( cmdName ) {
var me = this;
if(me.queryCommandState(cmdName)!==-1){
me.execCommand('insertHtml','<hr>');
var range = me.selection.getRange(),
start = range.startContainer;
if(start.nodeType == 1 && !start.childNodes[range.startOffset] ){
var tmp;
if(tmp = start.childNodes[range.startOffset - 1]){
if(tmp.nodeType == 1 && tmp.tagName == 'HR'){
if(me.options.enterTag == 'p'){
tmp = me.document.createElement('p');
range.insertNode(tmp);
range.setStart(tmp,0).setCursor();
}else{
tmp = me.document.createElement('br');
range.insertNode(tmp);
range.setStartBefore(tmp).setCursor();
}
}
}
}
return true;
}
},
//边界在table里不能加分隔线
queryCommandState : function() {
return this.highlight || utils.findNode(this.selection.getStartElementPath(),['table']) ? -1 : 0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/horizontal.js | JavaScript | asf20 | 1,592 |
///import core
///commands 删除
///commandsName Delete
///commandsTitle 删除
/**
* 删除
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName delete删除
*/
UE.commands['delete'] = {
execCommand : function (){
var range = this.selection.getRange(),
mStart = 0,
mEnd = 0,
me = this;
if(this.selectAll ){
//trace:1633
me.body.innerHTML = '<p>'+(browser.ie ? ' ' : '<br/>')+'</p>';
range.setStart(me.body.firstChild,0).setCursor(false,true);
me.selectAll = false;
return;
}
if(me.currentSelectedArr && me.currentSelectedArr.length > 0){
for(var i=0,ci;ci=me.currentSelectedArr[i++];){
if(ci.style.display != 'none'){
ci.innerHTML = browser.ie ? domUtils.fillChar : '<br/>'
}
}
range.setStart(me.currentSelectedArr[0],0).setCursor();
return;
}
if(range.collapsed)
return;
range.txtToElmBoundary();
//&& !domUtils.isBlockElm(range.startContainer)
while(!range.startOffset && !domUtils.isBody(range.startContainer) && !dtd.$tableContent[range.startContainer.tagName] ){
mStart = 1;
range.setStartBefore(range.startContainer);
}
//&& !domUtils.isBlockElm(range.endContainer)
while(!domUtils.isBody(range.endContainer)&& !dtd.$tableContent[range.endContainer.tagName] ){
var child,endContainer = range.endContainer,endOffset = range.endOffset;
// if(endContainer.nodeType == 3 && endOffset == endContainer.nodeValue.length){
// range.setEndAfter(endContainer);
// continue;
// }
child = endContainer.childNodes[endOffset];
if(!child || domUtils.isBr(child) && endContainer.lastChild === child){
range.setEndAfter(endContainer);
continue;
}
break;
}
if(mStart){
var start = me.document.createElement('span');
start.innerHTML = 'start';
start.id = '_baidu_cut_start';
range.insertNode(start).setStartBefore(start)
}
if(mEnd){
var end = me.document.createElement('span');
end.innerHTML = 'end';
end.id = '_baidu_cut_end';
range.cloneRange().collapse(false).insertNode(end);
range.setEndAfter(end)
}
range.deleteContents();
if(domUtils.isBody(range.startContainer) && domUtils.isEmptyBlock(me.body)){
me.body.innerHTML = '<p>'+(browser.ie?'':'<br/>')+'</p>';
range.setStart(me.body.firstChild,0).collapse(true);
}else if ( !browser.ie && domUtils.isEmptyBlock(range.startContainer)){
range.startContainer.innerHTML = '<br/>'
}
range.select(true)
},
queryCommandState : function(){
if(this.currentSelectedArr && this.currentSelectedArr.length > 0){
return 0;
}
return this.highlight || this.selection.getRange().collapsed ? -1 : 0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/delete.js | JavaScript | asf20 | 3,345 |
///import core
///commands 清空文档
///commandsName ClearDoc
///commandsTitle 清空文档
/**
*
* 清空文档
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName cleardoc清空文档
*/
UE.commands['cleardoc'] = {
execCommand : function( cmdName) {
var me = this,
enterTag = me.options.enterTag,
range = me.selection.getRange();
if(enterTag == "br"){
me.body.innerHTML = "<br/>";
range.setStart(me.body,0).setCursor();
}else{
me.body.innerHTML = "<p>"+(ie ? "" : "<br/>")+"</p>";
range.setStart(me.body.firstChild,0).setCursor(false,true);
}
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/cleardoc.js | JavaScript | asf20 | 729 |
///import core
///import plugins\inserthtml.js
///commands 日期,时间
///commandsName Date,Time
///commandsTitle 日期,时间
/**
* 插入日期
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName date插入日期
* @author zhuwenxuan
*/
/**
* 插入时间
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName time插入时间
* @author zhuwenxuan
*/
UE.commands['time'] = UE.commands["date"] = {
execCommand : function(cmd){
var date = new Date;
this.execCommand('insertHtml',cmd == "time" ?
(date.getHours()+":"+ (date.getMinutes()<10 ? "0"+date.getMinutes() : date.getMinutes())+":"+(date.getSeconds()<10 ? "0"+date.getSeconds() : date.getSeconds())) :
(date.getFullYear()+"-"+((date.getMonth()+1)<10 ? "0"+(date.getMonth()+1) : date.getMonth()+1)+"-"+(date.getDate()<10?"0"+date.getDate():date.getDate())));
},
queryCommandState : function(){
return this.highlight ? -1 :0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/time.js | JavaScript | asf20 | 1,054 |
///import core
///commands 锚点
///commandsName Anchor
///commandsTitle 锚点
///commandsDialog dialogs\anchor\anchor.html
/**
* 锚点
* @function
* @name baidu.editor.execCommands
* @param {String} cmdName cmdName="anchor"插入锚点
*/
UE.commands['anchor'] = {
execCommand:function (cmd, name) {
var range = this.selection.getRange(),img = range.getClosedNode();
if (img && img.getAttribute('anchorname')) {
if (name) {
img.setAttribute('anchorname', name);
} else {
range.setStartBefore(img).setCursor();
domUtils.remove(img);
}
} else {
if (name) {
//只在选区的开始插入
var anchor = this.document.createElement('img');
range.collapse(true);
domUtils.setAttributes(anchor,{
'anchorname':name,
'class':'anchorclass'
});
range.insertNode(anchor).setStartAfter(anchor).setCursor(false,true);
}
}
},
queryCommandState:function () {
return this.highlight ? -1 : 0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/anchor.js | JavaScript | asf20 | 1,245 |
///import core
///commands 字数统计
///commandsName WordCount,wordCount
///commandsTitle 字数统计
/**
* Created by JetBrains WebStorm.
* User: taoqili
* Date: 11-9-7
* Time: 下午8:18
* To change this template use File | Settings | File Templates.
*/
UE.commands["wordcount"]={
queryCommandValue:function(cmd,onlyCount){
var length,contentText,reg;
if(onlyCount){
reg = new RegExp("[\r\t\n]","g");
contentText = this.getContentTxt().replace(reg,"");
return contentText.length;
}
var open = this.options.wordCount,
max= this.options.maximumWords,
msg = this.options.messages.wordCountMsg,
errMsg=this.options.messages.wordOverFlowMsg;
if(!open) return "";
reg = new RegExp("[\r\t\n]","g");
contentText = this.getContentTxt().replace(reg,"");
length = contentText.length;
if(max-length<0){
return "<span style='color:red;direction: none'>"+errMsg+"</span> "
}
msg = msg.replace("{#leave}",max-length >= 0 ? max-length:0);
msg = msg.replace("{#count}",length);
return msg;
}
}; | 10npsite | trunk/guanli/system/ueditor/_src/plugins/wordcount.js | JavaScript | asf20 | 1,227 |
///import core
///commands 有序列表,无序列表
///commandsName InsertOrderedList,InsertUnorderedList
///commandsTitle 有序列表,无序列表
/**
* 有序列表
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName insertorderlist插入有序列表
* @param {String} style 值为:decimal,lower-alpha,lower-roman,upper-alpha,upper-roman
* @author zhanyi
*/
/**
* 无序链接
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName insertunorderlist插入无序列表
* * @param {String} style 值为:circle,disc,square
* @author zhanyi
*/
UE.plugins['list'] = function(){
var me = this,
notExchange = {
'TD':1,
'PRE':1,
'BLOCKQUOTE':1
};
function adjustList(list,tag,style){
var nextList = list.nextSibling;
if(nextList && nextList.nodeType == 1 && nextList.tagName.toLowerCase() == tag && (domUtils.getStyle(nextList,'list-style-type')||(tag == 'ol'?'decimal' : 'disc')) == style){
domUtils.moveChild(nextList,list);
if(nextList.childNodes.length == 0){
domUtils.remove(nextList);
}
}
var preList = list.previousSibling;
if(preList && preList.nodeType == 1 && preList.tagName.toLowerCase() == tag && (domUtils.getStyle(preList,'list-style-type')||(tag == 'ol'?'decimal' : 'disc')) == style){
domUtils.moveChild(list,preList)
}
if(list.childNodes.length == 0){
domUtils.remove(list);
}
}
me.addListener('keydown', function(type, evt) {
function preventAndSave(){
evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false)
me.undoManger && me.undoManger.save()
}
var keyCode = evt.keyCode || evt.which;
if (keyCode == 13) {//回车
var range = me.selection.getRange(),
start = domUtils.findParentByTagName(range.startContainer, ['ol','ul'], true,function(node){return node.tagName == 'TABLE'}),
end = domUtils.findParentByTagName(range.endContainer, ['ol','ul'], true,function(node){return node.tagName == 'TABLE'});
if (start && end && start === end) {
if(!range.collapsed){
start = domUtils.findParentByTagName(range.startContainer, 'li', true);
end = domUtils.findParentByTagName(range.endContainer, 'li', true);
if(start && end && start === end){
range.deleteContents();
li = domUtils.findParentByTagName(range.startContainer, 'li', true);
if(li && domUtils.isEmptyBlock(li)){
pre = li.previousSibling;
next = li.nextSibling;
p = me.document.createElement('p');
domUtils.fillNode(me.document,p);
parentList = li.parentNode;
if(pre && next){
range.setStart(next,0).collapse(true).select(true);
domUtils.remove(li);
}else{
if(!pre && !next || !pre){
parentList.parentNode.insertBefore(p,parentList);
} else{
li.parentNode.parentNode.insertBefore(p,parentList.nextSibling);
}
domUtils.remove(li);
if(!parentList.firstChild){
domUtils.remove(parentList)
}
range.setStart(p,0).setCursor();
}
preventAndSave();
return;
}
}else{
var tmpRange = range.cloneRange(),
bk = tmpRange.collapse(false).createBookmark();
range.deleteContents();
tmpRange.moveToBookmark(bk);
var li = domUtils.findParentByTagName(tmpRange.startContainer, 'li', true),
pre = li.previousSibling,
next = li.nextSibling;
if (pre ) {
li = pre;
if(pre.firstChild && domUtils.isBlockElm(pre.firstChild)){
pre = pre.firstChild;
}
if(domUtils.isEmptyNode(pre))
domUtils.remove(li);
}
if (next ) {
li = next;
if(next.firstChild && domUtils.isBlockElm(next.firstChild)){
next = next.firstChild;
}
if(domUtils.isEmptyNode(next))
domUtils.remove(li);
}
tmpRange.select();
preventAndSave();
return;
}
}
li = domUtils.findParentByTagName(range.startContainer, 'li', true);
if (li) {
if(domUtils.isEmptyBlock(li)){
bk = range.createBookmark();
var parentList = li.parentNode;
if(li!==parentList.lastChild){
domUtils.breakParent(li,parentList);
}else{
parentList.parentNode.insertBefore(li,parentList.nextSibling);
if(domUtils.isEmptyNode(parentList)){
domUtils.remove(parentList);
}
}
//嵌套不处理
if(!dtd.$list[li.parentNode.tagName]){
if(!domUtils.isBlockElm(li.firstChild)){
p = me.document.createElement('p');
li.parentNode.insertBefore(p,li);
while(li.firstChild){
p.appendChild(li.firstChild);
}
domUtils.remove(li);
}else{
domUtils.remove(li,true);
}
}
range.moveToBookmark(bk).select();
}else{
var first = li.firstChild;
if(!first || !domUtils.isBlockElm(first)){
var p = me.document.createElement('p');
!li.firstChild && domUtils.fillNode(me.document,p);
while(li.firstChild){
p.appendChild(li.firstChild);
}
li.appendChild(p);
first = p;
}
var span = me.document.createElement('span');
range.insertNode(span);
domUtils.breakParent(span, li);
var nextLi = span.nextSibling;
first = nextLi.firstChild;
if (!first) {
p = me.document.createElement('p');
domUtils.fillNode(me.document,p);
nextLi.appendChild(p);
first = p;
}
if (domUtils.isEmptyNode(first)) {
first.innerHTML = '';
domUtils.fillNode(me.document,first);
}
range.setStart(first, 0).collapse(true).shrinkBoundary().select();
domUtils.remove(span);
pre = nextLi.previousSibling;
if(pre && domUtils.isEmptyBlock(pre)){
pre.innerHTML = '<p></p>';
domUtils.fillNode(me.document,pre.firstChild);
}
}
// }
preventAndSave();
}
}
}
if(keyCode == 8){
//修中ie中li下的问题
range = me.selection.getRange();
if (range.collapsed && domUtils.isStartInblock(range)) {
tmpRange = range.cloneRange().trimBoundary();
li = domUtils.findParentByTagName(range.startContainer, 'li', true);
//要在li的最左边,才能处理
if (li && domUtils.isStartInblock(tmpRange)) {
if (li && (pre = li.previousSibling)) {
if (keyCode == 46 && li.childNodes.length)
return;
//有可能上边的兄弟节点是个2级菜单,要追加到2级菜单的最后的li
if(dtd.$list[pre.tagName]){
pre = pre.lastChild;
}
me.undoManger && me.undoManger.save();
first = li.firstChild;
if (domUtils.isBlockElm(first)) {
if (domUtils.isEmptyNode(first)) {
// range.setEnd(pre, pre.childNodes.length).shrinkBoundary().collapse().select(true);
pre.appendChild(first);
range.setStart(first,0).setCursor(false,true);
//first不是唯一的节点
while(li.firstChild){
pre.appendChild(li.firstChild)
}
} else {
start = domUtils.findParentByTagName(range.startContainer, 'p', true);
if(start && start !== first){
return;
}
span = me.document.createElement('span');
range.insertNode(span);
// if (domUtils.isBlockElm(pre.firstChild)) {
//
// pre.firstChild.appendChild(span);
// while (first.firstChild) {
// pre.firstChild.appendChild(first.firstChild);
// }
//
// } else {
// while (first.firstChild) {
// pre.appendChild(first.firstChild);
// }
// }
domUtils.moveChild(li,pre);
range.setStartBefore(span).collapse(true).select(true);
domUtils.remove(span)
}
} else {
if (domUtils.isEmptyNode(li)) {
var p = me.document.createElement('p');
pre.appendChild(p);
range.setStart(p,0).setCursor();
// range.setEnd(pre, pre.childNodes.length).shrinkBoundary().collapse().select(true);
} else {
range.setEnd(pre, pre.childNodes.length).collapse().select(true);
while (li.firstChild) {
pre.appendChild(li.firstChild)
}
}
}
domUtils.remove(li);
me.undoManger && me.undoManger.save();
domUtils.preventDefault(evt);
return;
}
//trace:980
if (li && !li.previousSibling) {
first = li.firstChild;
//trace:1648 要判断li下只有一个节点
if (!first || li.lastChild === first && domUtils.isEmptyNode(domUtils.isBlockElm(first) ? first : li)) {
var p = me.document.createElement('p');
li.parentNode.parentNode.insertBefore(p, li.parentNode);
domUtils.fillNode(me.document,p);
range.setStart(p, 0).setCursor();
domUtils.remove(!li.nextSibling ? li.parentNode : li);
me.undoManger && me.undoManger.save();
domUtils.preventDefault(evt);
return;
}
}
}
}
}
});
me.commands['insertorderedlist'] =
me.commands['insertunorderedlist'] = {
execCommand : function( command, style ) {
if(!style){
style = command.toLowerCase() == 'insertorderedlist' ? 'decimal' : 'disc'
}
var me = this,
range = this.selection.getRange(),
filterFn = function( node ) {
return node.nodeType == 1 ? node.tagName.toLowerCase() != 'br' : !domUtils.isWhitespace( node )
},
tag = command.toLowerCase() == 'insertorderedlist' ? 'ol' : 'ul',
frag = me.document.createDocumentFragment();
//去掉是因为会出现选到末尾,导致adjustmentBoundary缩到ol/ul的位置
//range.shrinkBoundary();//.adjustmentBoundary();
range.adjustmentBoundary().shrinkBoundary();
var bko = range.createBookmark(true),
start = domUtils.findParentByTagName(me.document.getElementById(bko.start),'li'),
modifyStart = 0,
end = domUtils.findParentByTagName(me.document.getElementById(bko.end),'li'),
modifyEnd = 0,
startParent,endParent,
list,tmp;
if(start || end){
start && (startParent = start.parentNode);
if(!bko.end){
end = start;
}
end && (endParent = end.parentNode);
if(startParent === endParent){
while(start !== end){
tmp = start;
start = start.nextSibling;
if(!domUtils.isBlockElm(tmp.firstChild)){
var p = me.document.createElement('p');
while(tmp.firstChild){
p.appendChild(tmp.firstChild)
}
tmp.appendChild(p);
}
frag.appendChild(tmp);
}
tmp = me.document.createElement('span');
startParent.insertBefore(tmp,end);
if(!domUtils.isBlockElm(end.firstChild)){
p = me.document.createElement('p');
while(end.firstChild){
p.appendChild(end.firstChild)
}
end.appendChild(p);
}
frag.appendChild(end);
domUtils.breakParent(tmp,startParent);
if(domUtils.isEmptyNode(tmp.previousSibling)){
domUtils.remove(tmp.previousSibling)
}
if(domUtils.isEmptyNode(tmp.nextSibling)){
domUtils.remove(tmp.nextSibling)
}
var nodeStyle = domUtils.getComputedStyle( startParent, 'list-style-type' ) || (command.toLowerCase() == 'insertorderedlist' ? 'decimal' : 'disc');
if(startParent.tagName.toLowerCase() == tag && nodeStyle == style){
for(var i=0,ci,tmpFrag = me.document.createDocumentFragment();ci=frag.childNodes[i++];){
while(ci.firstChild){
tmpFrag.appendChild(ci.firstChild);
}
}
tmp.parentNode.insertBefore(tmpFrag,tmp);
}else{
list = me.document.createElement(tag);
domUtils.setStyle(list,'list-style-type',style);
list.appendChild(frag);
tmp.parentNode.insertBefore(list,tmp);
}
domUtils.remove(tmp);
list && adjustList(list,tag,style);
range.moveToBookmark(bko).select();
return;
}
//开始
if(start){
while(start){
tmp = start.nextSibling;
var tmpfrag = me.document.createDocumentFragment(),
hasBlock = 0;
while(start.firstChild){
if(domUtils.isBlockElm(start.firstChild))
hasBlock = 1;
tmpfrag.appendChild(start.firstChild);
}
if(!hasBlock){
var tmpP = me.document.createElement('p');
tmpP.appendChild(tmpfrag);
frag.appendChild(tmpP)
}else{
frag.appendChild(tmpfrag);
}
domUtils.remove(start);
start = tmp;
}
startParent.parentNode.insertBefore(frag,startParent.nextSibling);
if(domUtils.isEmptyNode(startParent)){
range.setStartBefore(startParent);
domUtils.remove(startParent)
}else{
range.setStartAfter(startParent);
}
modifyStart = 1;
}
if(end){
//结束
start = endParent.firstChild;
while(start !== end){
tmp = start.nextSibling;
tmpfrag = me.document.createDocumentFragment();
hasBlock = 0;
while(start.firstChild){
if(domUtils.isBlockElm(start.firstChild))
hasBlock = 1;
tmpfrag.appendChild(start.firstChild);
}
if(!hasBlock){
tmpP = me.document.createElement('p');
tmpP.appendChild(tmpfrag);
frag.appendChild(tmpP)
}else{
frag.appendChild(tmpfrag);
}
domUtils.remove(start);
start = tmp;
}
frag.appendChild(end.firstChild);
domUtils.remove(end);
endParent.parentNode.insertBefore(frag,endParent);
range.setEndBefore(endParent);
if(domUtils.isEmptyNode(endParent)){
domUtils.remove(endParent)
}
modifyEnd = 1;
}
}
if(!modifyStart){
range.setStartBefore(me.document.getElementById(bko.start))
}
if(bko.end && !modifyEnd){
range.setEndAfter(me.document.getElementById(bko.end))
}
range.enlarge(true,function(node){return notExchange[node.tagName] });
frag = me.document.createDocumentFragment();
var bk = range.createBookmark(),
current = domUtils.getNextDomNode( bk.start, false, filterFn ),
tmpRange = range.cloneRange(),
tmpNode,
block = domUtils.isBlockElm;
while ( current && current !== bk.end && (domUtils.getPosition( current, bk.end ) & domUtils.POSITION_PRECEDING) ) {
if ( current.nodeType == 3 || dtd.li[current.tagName] ) {
if(current.nodeType == 1 && dtd.$list[current.tagName]){
while(current.firstChild){
frag.appendChild(current.firstChild)
}
tmpNode = domUtils.getNextDomNode( current, false, filterFn );
domUtils.remove(current);
current = tmpNode;
continue;
}
tmpNode = current;
tmpRange.setStartBefore( current );
while ( current && current !== bk.end && (!block(current) || domUtils.isBookmarkNode(current) )) {
tmpNode = current;
current = domUtils.getNextDomNode( current, false, null, function( node ) {
return !notExchange[node.tagName]
} );
}
if(current && block(current)){
tmp = domUtils.getNextDomNode( tmpNode, false, filterFn );
if(tmp && domUtils.isBookmarkNode(tmp)){
current = domUtils.getNextDomNode( tmp, false, filterFn );
tmpNode = tmp;
}
}
tmpRange.setEndAfter( tmpNode );
current = domUtils.getNextDomNode( tmpNode, false, filterFn );
var li = range.document.createElement( 'li' );
li.appendChild(tmpRange.extractContents());
frag.appendChild(li);
} else {
current = domUtils.getNextDomNode( current, true, filterFn );
}
}
range.moveToBookmark(bk).collapse(true);
list = me.document.createElement(tag);
domUtils.setStyle(list,'list-style-type',style);
list.appendChild(frag);
range.insertNode(list);
//当前list上下看能否合并
adjustList(list,tag,style);
range.moveToBookmark(bko).select();
},
queryCommandState : function( command ) {
return this.highlight ? -1 :
utils.findNode(this.selection.getStartElementPath(),[command.toLowerCase() == 'insertorderedlist' ? 'ol' : 'ul']) ? 1: 0;
},
queryCommandValue : function( command ) {
var node = utils.findNode(this.selection.getStartElementPath(),[command.toLowerCase() == 'insertorderedlist' ? 'ol' : 'ul']);
return node ? domUtils.getComputedStyle( node, 'list-style-type' ) : null;
}
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/list.js | JavaScript | asf20 | 26,399 |
///import core
///commands 当输入内容超过编辑器高度时,编辑器自动增高
///commandsName AutoHeight,autoHeightEnabled
///commandsTitle 自动增高
/**
* @description 自动伸展
* @author zhanyi
*/
UE.plugins['autoheight'] = function () {
var me = this;
//提供开关,就算加载也可以关闭
me.autoHeightEnabled = me.options.autoHeightEnabled;
if (!me.autoHeightEnabled)return;
var bakOverflow,
span, tmpNode,
lastHeight = 0,
currentHeight,
timer;
function adjustHeight() {
clearTimeout(timer);
timer = setTimeout(function () {
if (me.queryCommandState('source') != 1) {
if (!span) {
span = me.document.createElement('span');
//trace:1764
span.style.cssText = 'display:block;width:0;margin:0;padding:0;border:0;clear:both;';
span.innerHTML = '.';
}
tmpNode = span.cloneNode(true);
me.body.appendChild(tmpNode);
currentHeight = Math.max(domUtils.getXY(tmpNode).y + tmpNode.offsetHeight, me.options.minFrameHeight);
if (currentHeight != lastHeight) {
me.setHeight(currentHeight);
lastHeight = currentHeight;
}
domUtils.remove(tmpNode);
}
}, 50)
}
me.addListener('destroy', function () {
me.removeListener('contentchange', adjustHeight);
me.removeListener('keyup', adjustHeight);
me.removeListener('mouseup', adjustHeight);
});
me.enableAutoHeight = function () {
if(!me.autoHeightEnabled)return;
var doc = me.document;
me.autoHeightEnabled = true;
bakOverflow = doc.body.style.overflowY;
doc.body.style.overflowY = 'hidden';
me.addListener('contentchange', adjustHeight);
me.addListener('keyup', adjustHeight);
me.addListener('mouseup', adjustHeight);
//ff不给事件算得不对
setTimeout(function () {
adjustHeight();
}, browser.gecko ? 100 : 0);
me.fireEvent('autoheightchanged', me.autoHeightEnabled);
};
me.disableAutoHeight = function () {
me.body.style.overflowY = bakOverflow || '';
me.removeListener('contentchange', adjustHeight);
me.removeListener('keyup', adjustHeight);
me.removeListener('mouseup', adjustHeight);
me.autoHeightEnabled = false;
me.fireEvent('autoheightchanged', me.autoHeightEnabled);
};
me.addListener('ready', function () {
me.enableAutoHeight();
//trace:1764
var timer;
domUtils.on(browser.ie ? me.body : me.document,browser.webkit ? 'dragover' : 'drop',function(){
clearTimeout(timer);
timer = setTimeout(function(){
adjustHeight()
},100)
});
});
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/autoheight.js | JavaScript | asf20 | 3,089 |
///import core
///commands 添加分页功能
///commandsName PageBreak
///commandsTitle 分页
/**
* @description 添加分页功能
* @author zhanyi
*/
UE.plugins['pagebreak'] = function () {
var me = this,
notBreakTags = ['td'];
//重写了Editor.hasContents
// var hasContentsOrg = me.hasContents;
// me.hasContents = function (tags) {
// for (var i = 0, di, divs = me.document.getElementsByTagName('div'); di = divs[i++];) {
// if (domUtils.hasClass(di, 'pagebreak')) {
// return true;
// }
// }
// return hasContentsOrg.call(me, tags);
// };
function fillNode(node){
if(domUtils.isEmptyBlock(node)){
var firstChild = node.firstChild,tmpNode;
while(firstChild && firstChild.nodeType == 1 && domUtils.isEmptyBlock(firstChild)){
tmpNode = firstChild;
firstChild = firstChild.firstChild;
}
!tmpNode && (tmpNode = node);
domUtils.fillNode(me.document,tmpNode);
}
}
function isHr(node){
return node && node.nodeType == 1 && node.tagName == 'HR' && node.className == 'pagebreak';
}
me.commands['pagebreak'] = {
execCommand:function () {
var range = me.selection.getRange(),hr = me.document.createElement('hr');
domUtils.setAttributes(hr,{
'class' : 'pagebreak',
noshade:"noshade",
size:"5"
});
domUtils.unselectable(hr);
//table单独处理
var node = domUtils.findParentByTagName(range.startContainer, notBreakTags, true),
parents = [], pN;
if (node) {
switch (node.tagName) {
case 'TD':
pN = node.parentNode;
if (!pN.previousSibling) {
var table = domUtils.findParentByTagName(pN, 'table');
table.parentNode.insertBefore(hr, table);
parents = domUtils.findParents(hr, true);
} else {
pN.parentNode.insertBefore(hr, pN);
parents = domUtils.findParents(hr);
}
pN = parents[1];
if (hr !== pN) {
domUtils.breakParent(hr, pN);
}
domUtils.clearSelectedArr(me.currentSelectedArr);
}
} else {
if (!range.collapsed) {
range.deleteContents();
var start = range.startContainer;
while (domUtils.isBlockElm(start) && domUtils.isEmptyNode(start)) {
range.setStartBefore(start).collapse(true);
domUtils.remove(start);
start = range.startContainer;
}
}
range.insertNode(hr);
var pN = hr.parentNode, nextNode;
while (!domUtils.isBody(pN)) {
domUtils.breakParent(hr, pN);
nextNode = hr.nextSibling;
if (nextNode && domUtils.isEmptyBlock(nextNode)) {
domUtils.remove(nextNode)
}
pN = hr.parentNode;
}
nextNode = hr.nextSibling;
var pre = hr.previousSibling;
if(isHr(pre)){
domUtils.remove(pre)
}else{
fillNode(pre);
}
if(!nextNode){
var p = me.document.createElement('p');
hr.parentNode.appendChild(p);
domUtils.fillNode(me.document,p);
range.setStart(p,0).collapse(true)
}else{
if(isHr(nextNode)){
domUtils.remove(nextNode)
}else{
fillNode(nextNode);
}
range.setEndAfter(hr).collapse(false)
}
range.select(true)
}
},
queryCommandState:function () {
return this.highlight ? -1 : 0;
}
}
}; | 10npsite | trunk/guanli/system/ueditor/_src/plugins/pagebreak.js | JavaScript | asf20 | 4,532 |
/*
* 处理特殊键的兼容性问题
*/
UE.plugins['keystrokes'] = function() {
var me = this,
flag = 0,
keys = domUtils.keys,
trans = {
'B' : 'strong',
'I' : 'em',
'FONT' : 'span'
},
sizeMap = [0, 10, 12, 16, 18, 24, 32, 48],
listStyle = {
'OL':['decimal','lower-alpha','lower-roman','upper-alpha','upper-roman'],
'UL':[ 'circle','disc','square']
};
me.addListener('keydown', function(type, evt) {
var keyCode = evt.keyCode || evt.which;
if(this.selectAll){
this.selectAll = false;
if((keyCode == 8 || keyCode == 46)){
me.undoManger && me.undoManger.save();
//trace:1633
me.body.innerHTML = '<p>'+(browser.ie ? '' : '<br/>')+'</p>';
new dom.Range(me.document).setStart(me.body.firstChild,0).setCursor(false,true);
me.undoManger && me.undoManger.save();
//todo 对性能会有影响
browser.ie && me._selectionChange();
domUtils.preventDefault(evt);
return;
}
}
//处理backspace/del
if (keyCode == 8 ) {//|| keyCode == 46
var range = me.selection.getRange(),
tmpRange,
start,end;
//当删除到body最开始的位置时,会删除到body,阻止这个动作
if(range.collapsed){
start = range.startContainer;
//有可能是展位符号
if(domUtils.isWhitespace(start)){
start = start.parentNode;
}
if(domUtils.isEmptyNode(start) && start === me.body.firstChild){
if(start.tagName != 'P'){
p = me.document.createElement('p');
me.body.insertBefore(p,start);
domUtils.fillNode(me.document,p);
range.setStart(p,0).setCursor(false,true);
//trace:1645
domUtils.remove(start);
}
domUtils.preventDefault(evt);
return;
}
}
if (range.collapsed && range.startContainer.nodeType == 3 && range.startContainer.nodeValue.replace(new RegExp(domUtils.fillChar, 'g'), '').length == 0) {
range.setStartBefore(range.startContainer).collapse(true)
}
//解决选中control元素不能删除的问题
if (start = range.getClosedNode()) {
me.undoManger && me.undoManger.save();
range.setStartBefore(start);
domUtils.remove(start);
range.setCursor();
me.undoManger && me.undoManger.save();
domUtils.preventDefault(evt);
return;
}
//阻止在table上的删除
if (!browser.ie) {
start = domUtils.findParentByTagName(range.startContainer, 'table', true);
end = domUtils.findParentByTagName(range.endContainer, 'table', true);
if (start && !end || !start && end || start !== end) {
evt.preventDefault();
return;
}
if (browser.webkit && range.collapsed && start) {
tmpRange = range.cloneRange().txtToElmBoundary();
start = tmpRange.startContainer;
if (domUtils.isBlockElm(start) && start.nodeType == 1 && !dtd.$tableContent[start.tagName] && !domUtils.getChildCount(start, function(node) {
return node.nodeType == 1 ? node.tagName !== 'BR' : 1;
})) {
tmpRange.setStartBefore(start).setCursor();
domUtils.remove(start, true);
evt.preventDefault();
return;
}
}
}
if (me.undoManger) {
if (!range.collapsed) {
me.undoManger.save();
flag = 1;
}
}
}
//处理tab键的逻辑
if (keyCode == 9) {
range = me.selection.getRange();
me.undoManger && me.undoManger.save();
for (var i = 0,txt = ''; i < me.options.tabSize; i++) {
txt += me.options.tabNode;
}
var span = me.document.createElement('span');
span.innerHTML = txt;
if (range.collapsed) {
var li = domUtils.findParentByTagName(range.startContainer, 'li', true);
if (li && domUtils.isStartInblock(range)) {
bk = range.createBookmark();
var parentLi = li.parentNode,
list = me.document.createElement(parentLi.tagName);
var index = utils.indexOf(listStyle[list.tagName], domUtils.getComputedStyle(parentLi, 'list-style-type'));
index = index + 1 == listStyle[list.tagName].length ? 0 : index + 1;
domUtils.setStyle(list, 'list-style-type', listStyle[list.tagName][index]);
parentLi.insertBefore(list, li);
list.appendChild(li);
range.moveToBookmark(bk).select()
} else
range.insertNode(span.cloneNode(true).firstChild).setCursor(true);
} else {
//处理table
start = domUtils.findParentByTagName(range.startContainer, 'table', true);
end = domUtils.findParentByTagName(range.endContainer, 'table', true);
if (start || end) {
evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false);
return
}
//处理列表 再一个list里处理
start = domUtils.findParentByTagName(range.startContainer, ['ol','ul'], true);
end = domUtils.findParentByTagName(range.endContainer, ['ol','ul'], true);
if (start && end && start === end) {
var bk = range.createBookmark();
start = domUtils.findParentByTagName(range.startContainer, 'li', true);
end = domUtils.findParentByTagName(range.endContainer, 'li', true);
//在开始单独处理
if (start === start.parentNode.firstChild) {
var parentList = me.document.createElement(start.parentNode.tagName);
start.parentNode.parentNode.insertBefore(parentList, start.parentNode);
parentList.appendChild(start.parentNode);
} else {
parentLi = start.parentNode,
list = me.document.createElement(parentLi.tagName);
index = utils.indexOf(listStyle[list.tagName], domUtils.getComputedStyle(parentLi, 'list-style-type'));
index = index + 1 == listStyle[list.tagName].length ? 0 : index + 1;
domUtils.setStyle(list, 'list-style-type', listStyle[list.tagName][index]);
start.parentNode.insertBefore(list, start);
var nextLi;
while (start !== end) {
nextLi = start.nextSibling;
list.appendChild(start);
start = nextLi;
}
list.appendChild(end);
}
range.moveToBookmark(bk).select();
} else {
if (start || end) {
evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false);
return
}
//普通的情况
start = domUtils.findParent(range.startContainer, filterFn);
end = domUtils.findParent(range.endContainer, filterFn);
if (start && end && start === end) {
range.deleteContents();
range.insertNode(span.cloneNode(true).firstChild).setCursor(true);
} else {
var bookmark = range.createBookmark(),
filterFn = function(node) {
return domUtils.isBlockElm(node);
};
range.enlarge(true);
var bookmark2 = range.createBookmark(),
current = domUtils.getNextDomNode(bookmark2.start, false, filterFn);
while (current && !(domUtils.getPosition(current, bookmark2.end) & domUtils.POSITION_FOLLOWING)) {
current.insertBefore(span.cloneNode(true).firstChild, current.firstChild);
current = domUtils.getNextDomNode(current, false, filterFn);
}
range.moveToBookmark(bookmark2).moveToBookmark(bookmark).select();
}
}
}
me.undoManger && me.undoManger.save();
evt.preventDefault ? evt.preventDefault() : (evt.returnValue = false);
}
//trace:1634
//ff的del键在容器空的时候,也会删除
if(browser.gecko && keyCode == 46){
range = me.selection.getRange();
if(range.collapsed){
start = range.startContainer;
if(domUtils.isEmptyBlock(start)){
var parent = start.parentNode;
while(domUtils.getChildCount(parent) == 1 && !domUtils.isBody(parent)){
start = parent;
parent = parent.parentNode;
}
if(start === parent.lastChild)
evt.preventDefault();
return;
}
}
}
});
me.addListener('keyup', function(type, evt) {
var keyCode = evt.keyCode || evt.which;
//修复ie/chrome <strong><em>x|</em></strong> 当点退格后在输入文字后会出现 <b><i>x</i></b>
if (!browser.gecko && !keys[keyCode] && !evt.ctrlKey && !evt.metaKey && !evt.shiftKey && !evt.altKey) {
range = me.selection.getRange();
if (range.collapsed) {
var start = range.startContainer,
isFixed = 0;
while (!domUtils.isBlockElm(start)) {
if (start.nodeType == 1 && utils.indexOf(['FONT','B','I'], start.tagName) != -1) {
var tmpNode = me.document.createElement(trans[start.tagName]);
if (start.tagName == 'FONT') {
//chrome only remember color property
tmpNode.style.cssText = (start.getAttribute('size') ? 'font-size:' + (sizeMap[start.getAttribute('size')] || 12) + 'px' : '')
+ ';' + (start.getAttribute('color') ? 'color:' + start.getAttribute('color') : '')
+ ';' + (start.getAttribute('face') ? 'font-family:' + start.getAttribute('face') : '')
+ ';' + start.style.cssText;
}
while (start.firstChild) {
tmpNode.appendChild(start.firstChild)
}
start.parentNode.insertBefore(tmpNode, start);
domUtils.remove(start);
if (!isFixed) {
range.setEnd(tmpNode, tmpNode.childNodes.length).collapse(true)
}
start = tmpNode;
isFixed = 1;
}
start = start.parentNode;
}
isFixed && range.select()
}
}
if (keyCode == 8 ) {//|| keyCode == 46
//针对ff下在列表首行退格,不能删除空格行的问题
if(browser.gecko){
for(var i=0,li,lis = domUtils.getElementsByTagName(this.body,'li');li=lis[i++];){
if(domUtils.isEmptyNode(li) && !li.previousSibling){
var liOfPn = li.parentNode;
domUtils.remove(li);
if(domUtils.isEmptyNode(liOfPn)){
domUtils.remove(liOfPn)
}
}
}
}
var range,start,parent,
tds = this.currentSelectedArr;
if (tds && tds.length > 0) {
for (var i = 0,ti; ti = tds[i++];) {
ti.innerHTML = browser.ie ? ( browser.version < 9 ? '' : '' ) : '<br/>';
}
range = new dom.Range(this.document);
range.setStart(tds[0], 0).setCursor();
if (flag) {
me.undoManger.save();
flag = 0;
}
//阻止chrome执行默认的动作
if (browser.webkit) {
evt.preventDefault();
}
return;
}
range = me.selection.getRange();
//ctrl+a 后全部删除做处理
//
// if (domUtils.isEmptyBlock(me.body) && !range.startOffset) {
// //trace:1633
// me.body.innerHTML = '<p>'+(browser.ie ? ' ' : '<br/>')+'</p>';
// range.setStart(me.body.firstChild,0).setCursor(false,true);
// me.undoManger && me.undoManger.save();
// //todo 对性能会有影响
// browser.ie && me._selectionChange();
// return;
// }
//处理删除不干净的问题
start = range.startContainer;
if(domUtils.isWhitespace(start)){
start = start.parentNode
}
//标志位防止空的p无法删除
var removeFlag = 0;
while (start.nodeType == 1 && domUtils.isEmptyNode(start) && dtd.$removeEmpty[start.tagName]) {
removeFlag = 1;
parent = start.parentNode;
domUtils.remove(start);
start = parent;
}
if ( removeFlag && start.nodeType == 1 && domUtils.isEmptyNode(start)) {
//ie下的问题,虽然没有了相应的节点但一旦你输入文字还是会自动把删除的节点加上,
if (browser.ie) {
var span = range.document.createElement('span');
start.appendChild(span);
range.setStart(start,0).setCursor();
//for ie
li = domUtils.findParentByTagName(start,'li',true);
if(li){
var next = li.nextSibling;
while(next){
if(domUtils.isEmptyBlock(next)){
li = next;
next = next.nextSibling;
domUtils.remove(li);
continue;
}
break;
}
}
} else {
start.innerHTML = '<br/>';
range.setStart(start, 0).setCursor(false,true);
}
setTimeout(function() {
if (browser.ie) {
domUtils.remove(span);
}
if (flag) {
me.undoManger.save();
flag = 0;
}
}, 0)
} else {
if (flag) {
me.undoManger.save();
flag = 0;
}
}
}
})
}; | 10npsite | trunk/guanli/system/ueditor/_src/plugins/keystrokes.js | JavaScript | asf20 | 16,727 |
///import core
///commandsName catchRemoteImage
/**
* 远程图片抓取,当开启本插件时所有不符合本地域名的图片都将被抓取成为本地服务器上的图片
*
*/
UE.plugins['catchremoteimage'] = function (){
if(!this.options.catchRemoteImageEnable)return;
var ajax = UE.ajax,
me = this,
localDomain = me.options.localDomain,
catcherUrl = me.options.catcherUrl,
separater="ue_separate_ue";
function catchremoteimage(imgs,callbacks) {
var submitStr = imgs.join(separater);
ajax.request( catcherUrl, {
content:submitStr,
timeout:60000, //单位:毫秒,回调请求超时设置。目标用户如果网速不是很快的话此处建议设置一个较大的数值
onsuccess:callbacks["success"],
onerror:callbacks["error"]
} )
}
me.addListener("afterpaste",function(){
me.fireEvent("catchRemoteImage");
});
me.addListener( "catchRemoteImage", function () {
var remoteImages=[];
var imgs = domUtils.getElementsByTagName(me.document,"img");
for(var i = 0,ci;ci=imgs[i++];){
if(ci.getAttribute("word_img"))continue;
var src = ci.getAttribute("data_ue_src") || ci.src||"";
if(/^(https?|ftp):/i.test(src) && src.indexOf(localDomain)==-1 ) {
remoteImages.push(src);
}
}
if(remoteImages.length){
catchremoteimage(remoteImages,{
//成功抓取
success:function (xhr){
try{
var info = eval("("+xhr.responseText+")");
}catch(e){
return;
}
var srcUrls = info.srcUrl.split(separater),
urls = info.url.split(separater);
for(var i=0,ci;ci=imgs[i++];){
var src = ci.getAttribute("data_ue_src")||ci.src||"";
for(var j=0,cj;cj=srcUrls[j++];){
var url = urls[j-1];
if(src == cj && url!="error"){ //抓取失败时不做替换处理
//地址修正
var newSrc = me.options.UEDITOR_HOME_URL +"server/"+url;
domUtils.setAttributes(ci,{
"src":newSrc,
"data_ue_src":newSrc
});
break;
}
}
}
},
//回调失败,本次请求超时
error:function(){
me.fireEvent("catchremoteerror");
}
})
}
} )
}; | 10npsite | trunk/guanli/system/ueditor/_src/plugins/catchremoteimage.js | JavaScript | asf20 | 2,919 |
///import core
///commands 引用
///commandsName BlockQuote
///commandsTitle 引用
/**
*
* 引用模块实现
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName blockquote引用
*/
(function() {
var getObj = function(editor){
// var startNode = editor.selection.getStart();
// return domUtils.findParentByTagName( startNode, 'blockquote', true )
return utils.findNode(editor.selection.getStartElementPath(),['blockquote'])
};
UE.commands['blockquote'] = {
execCommand : function( cmdName, attrs ) {
var range = this.selection.getRange(),
obj = getObj(this),
blockquote = dtd.blockquote,
bookmark = range.createBookmark(),
tds = this.currentSelectedArr;
if ( obj ) {
if(tds && tds.length){
domUtils.remove(obj,true)
}else{
var start = range.startContainer,
startBlock = domUtils.isBlockElm(start) ? start : domUtils.findParent(start,function(node){return domUtils.isBlockElm(node)}),
end = range.endContainer,
endBlock = domUtils.isBlockElm(end) ? end : domUtils.findParent(end,function(node){return domUtils.isBlockElm(node)});
//处理一下li
startBlock = domUtils.findParentByTagName(startBlock,'li',true) || startBlock;
endBlock = domUtils.findParentByTagName(endBlock,'li',true) || endBlock;
if(startBlock.tagName == 'LI' || startBlock.tagName == 'TD' || startBlock === obj){
domUtils.remove(obj,true)
}else{
domUtils.breakParent(startBlock,obj);
}
if(startBlock !== endBlock){
obj = domUtils.findParentByTagName(endBlock,'blockquote');
if(obj){
if(endBlock.tagName == 'LI' || endBlock.tagName == 'TD'){
domUtils.remove(obj,true)
}else{
domUtils.breakParent(endBlock,obj);
}
}
}
var blockquotes = domUtils.getElementsByTagName(this.document,'blockquote');
for(var i=0,bi;bi=blockquotes[i++];){
if(!bi.childNodes.length){
domUtils.remove(bi)
}else if(domUtils.getPosition(bi,startBlock)&domUtils.POSITION_FOLLOWING && domUtils.getPosition(bi,endBlock)&domUtils.POSITION_PRECEDING){
domUtils.remove(bi,true)
}
}
}
} else {
var tmpRange = range.cloneRange(),
node = tmpRange.startContainer.nodeType == 1 ? tmpRange.startContainer : tmpRange.startContainer.parentNode,
preNode = node,
doEnd = 1;
//调整开始
while ( 1 ) {
if ( domUtils.isBody(node) ) {
if ( preNode !== node ) {
if ( range.collapsed ) {
tmpRange.selectNode( preNode );
doEnd = 0;
} else {
tmpRange.setStartBefore( preNode );
}
}else{
tmpRange.setStart(node,0)
}
break;
}
if ( !blockquote[node.tagName] ) {
if ( range.collapsed ) {
tmpRange.selectNode( preNode )
} else
tmpRange.setStartBefore( preNode);
break;
}
preNode = node;
node = node.parentNode;
}
//调整结束
if ( doEnd ) {
preNode = node = node = tmpRange.endContainer.nodeType == 1 ? tmpRange.endContainer : tmpRange.endContainer.parentNode;
while ( 1 ) {
if ( domUtils.isBody( node ) ) {
if ( preNode !== node ) {
tmpRange.setEndAfter( preNode );
} else {
tmpRange.setEnd( node, node.childNodes.length )
}
break;
}
if ( !blockquote[node.tagName] ) {
tmpRange.setEndAfter( preNode );
break;
}
preNode = node;
node = node.parentNode;
}
}
node = range.document.createElement( 'blockquote' );
domUtils.setAttributes( node, attrs );
node.appendChild( tmpRange.extractContents() );
tmpRange.insertNode( node );
//去除重复的
var childs = domUtils.getElementsByTagName(node,'blockquote');
for(var i=0,ci;ci=childs[i++];){
if(ci.parentNode){
domUtils.remove(ci,true)
}
}
}
range.moveToBookmark( bookmark ).select()
},
queryCommandState : function() {
if(this.highlight){
return -1;
}
return getObj(this) ? 1 : 0;
}
};
})();
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/blockquote.js | JavaScript | asf20 | 6,104 |
///import core
///commands 选区路径
///commandsName ElementPath,elementPathEnabled
///commandsTitle 选区路径
/**
* 选区路径
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName elementpath选区路径
*/
UE.plugins['elementpath'] = function(){
var currentLevel,
tagNames,
me = this;
me.commands['elementpath'] = {
execCommand : function( cmdName, level ) {
var start = tagNames[level],
range = me.selection.getRange();
me.currentSelectedArr && domUtils.clearSelectedArr(me.currentSelectedArr);
currentLevel = level*1;
if(dtd.$tableContent[start.tagName]){
switch (start.tagName){
case 'TD':me.currentSelectedArr = [start];
start.className = me.options.selectedTdClass;
break;
case 'TR':
var cells = start.cells;
for(var i=0,ti;ti=cells[i++];){
me.currentSelectedArr.push(ti);
ti.className = me.options.selectedTdClass;
}
break;
case 'TABLE':
case 'TBODY':
var rows = start.rows;
for(var i=0,ri;ri=rows[i++];){
cells = ri.cells;
for(var j=0,tj;tj=cells[j++];){
me.currentSelectedArr.push(tj);
tj.className = me.options.selectedTdClass;
}
}
}
start = me.currentSelectedArr[0];
if(domUtils.isEmptyNode(start)){
range.setStart(start,0).setCursor()
}else{
range.selectNodeContents(start).select()
}
}else{
range.selectNode(start).select()
}
},
queryCommandValue : function() {
//产生一个副本,不能修改原来的startElementPath;
var parents = [].concat(this.selection.getStartElementPath()).reverse(),
names = [];
tagNames = parents;
for(var i=0,ci;ci=parents[i];i++){
if(ci.nodeType == 3) continue;
var name = ci.tagName.toLowerCase();
if(name == 'img' && ci.getAttribute('anchorname')){
name = 'anchor'
}
names[i] = name;
if(currentLevel == i){
currentLevel = -1;
break;
}
}
return names;
}
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/elementpath.js | JavaScript | asf20 | 2,916 |
///import core
///commands 定制过滤规则
///commandsName Serialize
///commandsTitle 定制过滤规则
UE.plugins['serialize'] = function () {
var ie = browser.ie,
version = browser.version;
function ptToPx(value){
return /pt/.test(value) ? value.replace( /([\d.]+)pt/g, function( str ) {
return Math.round(parseFloat(str) * 96 / 72) + "px";
} ) : value;
}
var me = this,
EMPTY_TAG = dtd.$empty,
parseHTML = function () {
//干掉<a> 后便变得空格,保留</a> 这样的空格
var RE_PART = /<(?:(?:\/([^>]+)>)|(?:!--([\S|\s]*?)-->)|(?:([^\s\/>]+)\s*((?:(?:"[^"]*")|(?:'[^']*')|[^"'<>])*)\/?>))/g,
RE_ATTR = /([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,
EMPTY_ATTR = {checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1},
CDATA_TAG = {script:1,style: 1},
NEED_PARENT_TAG = {
"li": { "$": 'ul', "ul": 1, "ol": 1 },
"dd": { "$": "dl", "dl": 1 },
"dt": { "$": "dl", "dl": 1 },
"option": { "$": "select", "select": 1 },
"td": { "$": "tr", "tr": 1 },
"th": { "$": "tr", "tr": 1 },
"tr": { "$": "tbody", "tbody": 1, "thead": 1, "tfoot": 1, "table": 1 },
"tbody": { "$": "table", 'table':1,"colgroup": 1 },
"thead": { "$": "table", "table": 1 },
"tfoot": { "$": "table", "table": 1 },
"col": { "$": "colgroup","colgroup":1 }
};
var NEED_CHILD_TAG = {
"table": "td", "tbody": "td", "thead": "td", "tfoot": "td", "tr": "td",
"colgroup": "col",
"ul": "li", "ol": "li",
"dl": "dd",
"select": "option"
};
function parse( html, callbacks ) {
var match,
nextIndex = 0,
tagName,
cdata;
RE_PART.exec( "" );
while ( (match = RE_PART.exec( html )) ) {
var tagIndex = match.index;
if ( tagIndex > nextIndex ) {
var text = html.slice( nextIndex, tagIndex );
if ( cdata ) {
cdata.push( text );
} else {
callbacks.onText( text );
}
}
nextIndex = RE_PART.lastIndex;
if ( (tagName = match[1]) ) {
tagName = tagName.toLowerCase();
if ( cdata && tagName == cdata._tag_name ) {
callbacks.onCDATA( cdata.join( '' ) );
cdata = null;
}
if ( !cdata ) {
callbacks.onTagClose( tagName );
continue;
}
}
if ( cdata ) {
cdata.push( match[0] );
continue;
}
if ( (tagName = match[3]) ) {
if ( /="/.test( tagName ) ) {
continue;
}
tagName = tagName.toLowerCase();
var attrPart = match[4],
attrMatch,
attrMap = {},
selfClosing = attrPart && attrPart.slice( -1 ) == '/';
if ( attrPart ) {
RE_ATTR.exec( "" );
while ( (attrMatch = RE_ATTR.exec( attrPart )) ) {
var attrName = attrMatch[1].toLowerCase(),
attrValue = attrMatch[2] || attrMatch[3] || attrMatch[4] || '';
if ( !attrValue && EMPTY_ATTR[attrName] ) {
attrValue = attrName;
}
if ( attrName == 'style' ) {
if ( ie && version <= 6 ) {
attrValue = attrValue.replace( /(?!;)\s*([\w-]+):/g, function ( m, p1 ) {
return p1.toLowerCase() + ':';
} );
}
}
//没有值的属性不添加
if ( attrValue ) {
attrMap[attrName] = attrValue.replace( /:\s*/g, ':' )
}
}
}
callbacks.onTagOpen( tagName, attrMap, selfClosing );
if ( !cdata && CDATA_TAG[tagName] ) {
cdata = [];
cdata._tag_name = tagName;
}
continue;
}
if ( (tagName = match[2]) ) {
callbacks.onComment( tagName );
}
}
if ( html.length > nextIndex ) {
callbacks.onText( html.slice( nextIndex, html.length ) );
}
}
return function ( html, forceDtd ) {
var fragment = {
type: 'fragment',
parent: null,
children: []
};
var currentNode = fragment;
function addChild( node ) {
node.parent = currentNode;
currentNode.children.push( node );
}
function addElement( element, open ) {
var node = element;
// 遇到结构化标签的时候
if ( NEED_PARENT_TAG[node.tag] ) {
// 考虑这种情况的时候, 结束之前的标签
// e.g. <table><tr><td>12312`<tr>`4566
while ( NEED_PARENT_TAG[currentNode.tag] && NEED_PARENT_TAG[currentNode.tag][node.tag] ) {
currentNode = currentNode.parent;
}
// 如果前一个标签和这个标签是同一级, 结束之前的标签
// e.g. <ul><li>123<li>
if ( currentNode.tag == node.tag ) {
currentNode = currentNode.parent;
}
// 向上补齐父标签
while ( NEED_PARENT_TAG[node.tag] ) {
if ( NEED_PARENT_TAG[node.tag][currentNode.tag] ) break;
node = node.parent = {
type: 'element',
tag: NEED_PARENT_TAG[node.tag]['$'],
attributes: {},
children: [node]
};
}
}
if ( forceDtd ) {
// 如果遇到这个标签不能放在前一个标签内部,则结束前一个标签,span单独处理
while ( dtd[node.tag] && !(currentNode.tag == 'span' ? utils.extend( dtd['strong'], {'a':1,'A':1} ) : (dtd[currentNode.tag] || dtd['div']))[node.tag] ) {
if ( tagEnd( currentNode ) ) continue;
if ( !currentNode.parent ) break;
currentNode = currentNode.parent;
}
}
node.parent = currentNode;
currentNode.children.push( node );
if ( open ) {
currentNode = element;
}
if ( element.attributes.style ) {
element.attributes.style = element.attributes.style.toLowerCase();
}
return element;
}
// 结束一个标签的时候,需要判断一下它是否缺少子标签
// e.g. <table></table>
function tagEnd( node ) {
var needTag;
if ( !node.children.length && (needTag = NEED_CHILD_TAG[node.tag]) ) {
addElement( {
type: 'element',
tag: needTag,
attributes: {},
children: []
}, true );
return true;
}
return false;
}
parse( html, {
onText: function ( text ) {
while ( !(dtd[currentNode.tag] || dtd['div'])['#'] ) {
//节点之间的空白不能当作节点处理
// if(/^[ \t\r\n]+$/.test( text )){
// return;
// }
if ( tagEnd( currentNode ) ) continue;
currentNode = currentNode.parent;
}
//if(/^[ \t\n\r]*/.test(text))
addChild( {
type: 'text',
data: text
} );
},
onComment: function ( text ) {
addChild( {
type: 'comment',
data: text
} );
},
onCDATA: function ( text ) {
while ( !(dtd[currentNode.tag] || dtd['div'])['#'] ) {
if ( tagEnd( currentNode ) ) continue;
currentNode = currentNode.parent;
}
addChild( {
type: 'cdata',
data: text
} );
},
onTagOpen: function ( tag, attrs, closed ) {
closed = closed || EMPTY_TAG[tag] ;
addElement( {
type: 'element',
tag: tag,
attributes: attrs,
closed: closed,
children: []
}, !closed );
},
onTagClose: function ( tag ) {
var node = currentNode;
// 向上找匹配的标签, 这里不考虑dtd的情况是因为tagOpen的时候已经处理过了, 这里不会遇到
while ( node && tag != node.tag ) {
node = node.parent;
}
if ( node ) {
// 关闭中间的标签
for ( var tnode = currentNode; tnode !== node.parent; tnode = tnode.parent ) {
tagEnd( tnode );
}
//去掉空白的inline节点
//分页,锚点保留
//|| dtd.$removeEmptyBlock[node.tag])
// if ( !node.children.length && dtd.$removeEmpty[node.tag] && !node.attributes.anchorname && node.attributes['class'] != 'pagebreak' && node.tag != 'a') {
//
// node.parent.children.pop();
// }
currentNode = node.parent;
} else {
// 如果没有找到开始标签, 则创建新标签
// eg. </div> => <div></div>
//针对视屏网站embed会给结束符,这里特殊处理一下
if ( !(dtd.$removeEmpty[tag] || dtd.$removeEmptyBlock[tag] || tag == 'embed') ) {
node = {
type: 'element',
tag: tag,
attributes: {},
children: []
};
addElement( node, true );
tagEnd( node );
currentNode = node.parent;
}
}
}
} );
// 处理这种情况, 只有开始标签没有结束标签的情况, 需要关闭开始标签
// eg. <table>
while ( currentNode !== fragment ) {
tagEnd( currentNode );
currentNode = currentNode.parent;
}
return fragment;
};
}();
var unhtml1 = function () {
var map = { '<': '<', '>': '>', '"': '"', "'": ''' };
function rep( m ) {
return map[m];
}
return function ( str ) {
str = str + '';
return str ? str.replace( /[<>"']/g, rep ) : '';
};
}();
var toHTML = function () {
function printChildren( node, pasteplain ) {
var children = node.children;
var buff = [];
for ( var i = 0,ci; ci = children[i]; i++ ) {
buff.push( toHTML( ci, pasteplain ) );
}
return buff.join( '' );
}
function printAttrs( attrs ) {
var buff = [];
for ( var k in attrs ) {
var value = attrs[k];
if(k == 'style'){
//pt==>px
value = ptToPx(value);
//color rgb ==> hex
if(/rgba?\s*\([^)]*\)/.test(value)){
value = value.replace( /rgba?\s*\(([^)]*)\)/g, function( str ) {
return utils.fixColor('color',str);
} )
}
attrs[k] = utils.optCss(value.replace(/windowtext/g,'#000'));
}
buff.push( k + '="' + unhtml1( attrs[k] ) + '"' );
}
return buff.join( ' ' )
}
function printData( node, notTrans ) {
//trace:1399 输入html代码时空格转换成为
//node.data.replace(/ /g,' ') 针对pre中的空格和出现的 把他们在得到的html代码中都转换成为空格,为了在源码模式下显示为空格而不是
return notTrans ? node.data.replace(/ /g,' ') : unhtml1( node.data ).replace(/ /g,' ');
}
//纯文本模式下标签转换
var transHtml = {
'div':'p',
'li':'p',
'tr':'p',
'br':'br',
'p':'p'//trace:1398 碰到p标签自己要加上p,否则transHtml[tag]是undefined
};
function printElement( node, pasteplain ) {
var tag = node.tag;
if ( pasteplain && tag == 'td' ) {
if ( !html ) html = '';
html += printChildren( node, pasteplain ) + ' ';
} else {
var attrs = printAttrs( node.attributes );
var html = '<' + (pasteplain && transHtml[tag] ? transHtml[tag] : tag) + (attrs ? ' ' + attrs : '') + (EMPTY_TAG[tag] ? ' />' : '>');
if ( !EMPTY_TAG[tag] ) {
//trace:1627
//p标签在ie下为空,将不占位这里占位符不起作用,用
if(browser.ie && tag == 'p' && !node.children.length){
html += ' ';
}
html += printChildren( node, pasteplain );
html += '</' + (pasteplain && transHtml[tag] ? transHtml[tag] : tag) + '>';
}
}
return html;
}
return function ( node, pasteplain ) {
if ( node.type == 'fragment' ) {
return printChildren( node, pasteplain );
} else if ( node.type == 'element' ) {
return printElement( node, pasteplain );
} else if ( node.type == 'text' || node.type == 'cdata' ) {
return printData( node, dtd.$notTransContent[node.parent.tag] );
} else if ( node.type == 'comment' ) {
return '<!--' + node.data + '-->';
}
return '';
};
}();
//过滤word
var transformWordHtml = function () {
function isWordDocument( strValue ) {
var re = new RegExp( /(class="?Mso|style="[^"]*\bmso\-|w:WordDocument|<v:)/ig );
return re.test( strValue );
}
function ensureUnits( v ) {
v = v.replace( /([\d.]+)([\w]+)?/g, function ( m, p1, p2 ) {
return (Math.round( parseFloat( p1 ) ) || 1) + (p2 || 'px');
} );
return v;
}
function filterPasteWord( str ) {
str = str.replace( /<!--\s*EndFragment\s*-->[\s\S]*$/, '' )
//remove link break
.replace( /^(\r\n|\n|\r)|(\r\n|\n|\r)$/ig, "" )
//remove entities at the start of contents
.replace( /^\s*( )+/ig, "" )
//remove entities at the end of contents
.replace( /( |<br[^>]*>)+\s*$/ig, "" )
// Word comments like conditional comments etc
.replace( /<!--[\s\S]*?-->/ig, "" )
//转换图片
.replace(/<v:shape [^>]*>[\s\S]*?.<\/v:shape>/gi,function(str){
var width = str.match(/width:([ \d.]*p[tx])/i)[1],
height = str.match(/height:([ \d.]*p[tx])/i)[1],
src = str.match(/src=\s*"([^"]*)"/i)[1];
return '<img width="'+ptToPx(width)+'" height="'+ptToPx(height)+'" src="' + src + '" />'
})
//去掉多余的属性
.replace( /v:\w+=["']?[^'"]+["']?/g, '' )
// Remove comments, scripts (e.g., msoShowComment), XML tag, VML content, MS Office namespaced tags, and a few other tags
.replace( /<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|xml|meta|link|style|\w+:\w+)(?=[\s\/>]))[^>]*>/gi, "" )
//convert word headers to strong
.replace( /<p [^>]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi, "<p><strong>$1</strong></p>" )
//remove lang attribute
.replace( /(lang)\s*=\s*([\'\"]?)[\w-]+\2/ig, "" )
//清除多余的font不能匹配 有可能是空格
.replace( /<font[^>]*>\s*<\/font>/gi, '' )
//清除多余的class
.replace( /class\s*=\s*["']?(?:(?:MsoTableGrid)|(?:MsoNormal(Table)?))\s*["']?/gi, '' );
// Examine all styles: delete junk, transform some, and keep the rest
//修复了原有的问题, 比如style='fontsize:"宋体"'原来的匹配失效了
str = str.replace( /(<[a-z][^>]*)\sstyle=(["'])([^\2]*?)\2/gi, function( str, tag, tmp, style ) {
var n = [],
i = 0,
s = style.replace( /^\s+|\s+$/, '' ).replace( /"/gi, "'" ).split( /;\s*/g );
// Examine each style definition within the tag's style attribute
for ( var i = 0; i < s.length; i++ ) {
var v = s[i];
var name, value,
parts = v.split( ":" );
if ( parts.length == 2 ) {
name = parts[0].toLowerCase();
value = parts[1].toLowerCase();
// Translate certain MS Office styles into their CSS equivalents
switch ( name ) {
case "mso-padding-alt":
case "mso-padding-top-alt":
case "mso-padding-right-alt":
case "mso-padding-bottom-alt":
case "mso-padding-left-alt":
case "mso-margin-alt":
case "mso-margin-top-alt":
case "mso-margin-right-alt":
case "mso-margin-bottom-alt":
case "mso-margin-left-alt":
case "mso-table-layout-alt":
case "mso-height":
case "mso-width":
case "mso-vertical-align-alt":
//trace:1819 ff下会解析出padding在table上
if(!/<table/.test(tag))
n[i] = name.replace( /^mso-|-alt$/g, "" ) + ":" + ensureUnits( value );
continue;
case "horiz-align":
n[i] = "text-align:" + value;
continue;
case "vert-align":
n[i] = "vertical-align:" + value;
continue;
case "font-color":
case "mso-foreground":
n[i] = "color:" + value;
continue;
case "mso-background":
case "mso-highlight":
n[i] = "background:" + value;
continue;
case "mso-default-height":
n[i] = "min-height:" + ensureUnits( value );
continue;
case "mso-default-width":
n[i] = "min-width:" + ensureUnits( value );
continue;
case "mso-padding-between-alt":
n[i] = "border-collapse:separate;border-spacing:" + ensureUnits( value );
continue;
case "text-line-through":
if ( (value == "single") || (value == "double") ) {
n[i] = "text-decoration:line-through";
}
continue;
//trace:1870
// //word里边的字体统一干掉
// case 'font-family':
// continue;
case "mso-zero-height":
if ( value == "yes" ) {
n[i] = "display:none";
}
continue;
case 'margin':
if ( !/[1-9]/.test( parts[1] ) ) {
continue;
}
}
if ( /^(mso|column|font-emph|lang|layout|line-break|list-image|nav|panose|punct|row|ruby|sep|size|src|tab-|table-border|text-(?:decor|trans)|top-bar|version|vnd|word-break)/.test( name ) ) {
if ( !/mso\-list/.test( name ) )
continue;
}
n[i] = name + ":" + parts[1]; // Lower-case name, but keep value case
}
}
// If style attribute contained any valid styles the re-write it; otherwise delete style attribute.
if ( i > 0 ) {
return tag + ' style="' + n.join( ';' ) + '"';
} else {
return tag;
}
} );
str = str.replace( /([ ]+)<\/span>/ig, function ( m, p ) {
return new Array( p.length + 1 ).join( ' ' ) + '</span>';
} );
return str;
}
return function ( html ) {
//过了word,才能转p->li
first = null;
parentTag = '',liStyle = '',firstTag = '';
if ( isWordDocument( html ) ) {
html = filterPasteWord( html );
}
return html.replace( />[ \t\r\n]*</g, '><' );
};
}();
var NODE_NAME_MAP = {
'text': '#text',
'comment': '#comment',
'cdata': '#cdata-section',
'fragment': '#document-fragment'
};
function _likeLi( node ) {
var a;
if ( node && node.tag == 'p' ) {
//office 2011下有效
if ( node.attributes['class'] == 'MsoListParagraph' || /mso-list/.test( node.attributes.style ) ) {
a = 1;
} else {
var firstChild = node.children[0];
if ( firstChild && firstChild.tag == 'span' && /Wingdings/i.test( firstChild.attributes.style ) ) {
a = 1;
}
}
}
return a;
}
//为p==>li 做个标志
var first,
orderStyle = {
'decimal' : /\d+/,
'lower-roman': /^m{0,4}(cm|cd|d?c{0,3})(xc|xl|l?x{0,3})(ix|iv|v?i{0,3})$/,
'upper-roman': /^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$/,
'lower-alpha' : /^\(?[a-z]+\)?$/,
'upper-alpha': /^\(?[A-Z]+\)?$/
},
unorderStyle = { 'disc' : /^[l\u00B7\u2002]/, 'circle' : /^[\u006F\u00D8]/,'square' : /^[\u006E\u25C6]/},
parentTag = '',liStyle = '',firstTag;
//写入编辑器时,调用,进行转换操作
function transNode( node, word_img_flag ) {
//dtd.$removeEmptyBlock[node.tag]
if ( node.type == 'element' && !node.children.length && (dtd.$removeEmpty[node.tag]) && node.tag != 'a' ) {// 锚点保留
return {
type : 'fragment',
children:[]
}
}
var sizeMap = [0, 10, 12, 16, 18, 24, 32, 48],
attr,
indexOf = utils.indexOf;
switch ( node.tag ) {
case 'img':
//todo base64暂时去掉,后边做远程图片上传后,干掉这个
if(node.attributes.src && /^data:/.test(node.attributes.src)){
return {
type : 'fragment',
children:[]
}
}
if ( node.attributes.src && /^(?:file)/.test( node.attributes.src ) ) {
if ( !/(gif|bmp|png|jpg|jpeg)$/.test( node.attributes.src ) ) {
return {
type : 'fragment',
children:[]
}
}
node.attributes.word_img = node.attributes.src;
node.attributes.src = me.options.UEDITOR_HOME_URL + 'themes/default/images/spacer.gif';
var flag = parseInt(node.attributes.width)<128||parseInt(node.attributes.height)<43;
node.attributes.style="background:url(" + me.options.UEDITOR_HOME_URL +"themes/default/images/"+(flag?"word.gif":"localimage.png")+") no-repeat center center;border:1px solid #ddd";
//node.attributes.style = 'width:395px;height:173px;';
word_img_flag && (word_img_flag.flag = 1);
}
if(browser.ie && browser.version < 7 && me.options.relativePath)
node.attributes.orgSrc = node.attributes.src;
node.attributes.data_ue_src = node.attributes.data_ue_src || node.attributes.src;
break;
case 'li':
var child = node.children[0];
if ( !child || child.type != 'element' || child.tag != 'p' && dtd.p[child.tag] ) {
var tmpPNode = {
type: 'element',
tag: 'p',
attributes: {},
parent : node
};
tmpPNode.children = child ? node.children :[
browser.ie ? {
type:'text',
data:domUtils.fillChar,
parent : tmpPNode
}:
{
type : 'element',
tag : 'br',
attributes:{},
closed: true,
children: [],
parent : tmpPNode
}
];
node.children = [tmpPNode];
}
break;
case 'table':
case 'td':
optStyle( node );
break;
case 'a'://锚点,a==>img
if ( node.attributes['anchorname'] ) {
node.tag = 'img';
node.attributes = {
'class' : 'anchorclass',
'anchorname':node.attributes['name']
};
node.closed = 1;
}
node.attributes.href && (node.attributes.data_ue_src = node.attributes.href);
break;
case 'b':
node.tag = node.name = 'strong';
break;
case 'i':
node.tag = node.name = 'em';
break;
case 'u':
node.tag = node.name = 'span';
node.attributes.style = (node.attributes.style || '') + ';text-decoration:underline;';
break;
case 's':
case 'del':
node.tag = node.name = 'span';
node.attributes.style = (node.attributes.style || '') + ';text-decoration:line-through;';
if ( node.children.length == 1 ) {
child = node.children[0];
if ( child.tag == node.tag ) {
node.attributes.style += ";" + child.attributes.style;
node.children = child.children;
}
}
break;
case 'span':
if ( /mso-list/.test( node.attributes.style ) ) {
//判断了两次就不在判断了
if ( firstTag != 'end' ) {
var ci = node.children[0],p;
while ( ci.type == 'element' ) {
ci = ci.children[0];
}
for ( p in unorderStyle ) {
if ( unorderStyle[p].test( ci.data ) ) {
// ci.data = ci.data.replace(unorderStyle[p],'');
parentTag = 'ul';
liStyle = p;
break;
}
}
if ( !parentTag ) {
for ( p in orderStyle ) {
if ( orderStyle[p].test( ci.data.replace( /\.$/, '' ) ) ) {
// ci.data = ci.data.replace(orderStyle[p],'');
parentTag = 'ol';
liStyle = p;
break;
}
}
}
if ( firstTag ) {
if ( ci.data == firstTag ) {
if ( parentTag != 'ul' ) {
liStyle = '';
}
parentTag = 'ul'
} else {
if ( parentTag != 'ol' ) {
liStyle = '';
}
parentTag = 'ol'
}
firstTag = 'end'
} else {
firstTag = ci.data
}
if ( parentTag ) {
var tmpNode = node;
while ( tmpNode && tmpNode.tag != 'ul' && tmpNode.tag != 'ol' ) {
tmpNode = tmpNode.parent;
}
if(tmpNode ){
tmpNode.tag = parentTag;
tmpNode.attributes.style = 'list-style-type:' + liStyle;
}
}
}
node = {
type : 'fragment',
children : []
};
break;
}
var style = node.attributes.style;
if ( style ) {
//trace:1493
//ff3.6出来的是background: none repeat scroll %0 %0 颜色
style = style.match( /(?:\b(?:color|font-size|background(-color)?|font-family|text-decoration)\b\s*:\s*(&[^;]+;|[^;])+(?=;)?)/gi );
if ( style ) {
node.attributes.style = style.join( ';' );
if ( !node.attributes.style ) {
delete node.attributes.style;
}
}
}
//针对ff3.6span的样式不能正确继承的修复
if(browser.gecko && browser.version <= 10902 && node.parent){
var parent = node.parent;
if(parent.tag == 'span' && parent.attributes && parent.attributes.style){
node.attributes.style = parent.attributes.style + ';' + node.attributes.style;
}
}
if ( utils.isEmptyObject( node.attributes ) ) {
node.type = 'fragment'
}
break;
case 'font':
node.tag = node.name = 'span';
attr = node.attributes;
node.attributes = {
'style': (attr.size ? 'font-size:' + (sizeMap[attr.size] || 12) + 'px' : '')
+ ';' + (attr.color ? 'color:'+ attr.color : '')
+ ';' + (attr.face ? 'font-family:'+ attr.face : '')
+ ';' + (attr.style||'')
};
while(node.parent.tag == node.tag && node.parent.children.length == 1){
node.attributes.style && (node.parent.attributes.style ? (node.parent.attributes.style += ";" + node.attributes.style) : (node.parent.attributes.style = node.attributes.style));
node.parent.children = node.children;
node = node.parent;
}
break;
case 'p':
if ( node.attributes.align ) {
node.attributes.style = (node.attributes.style || '') + ';text-align:' +
node.attributes.align + ';';
delete node.attributes.align;
}
if ( _likeLi( node ) ) {
if ( !first ) {
var ulNode = {
type: 'element',
tag: 'ul',
attributes: {},
children: []
},
index = indexOf( node.parent.children, node );
node.parent.children[index] = ulNode;
ulNode.parent = node.parent;
ulNode.children[0] = node;
node.parent = ulNode;
while ( 1 ) {
node = ulNode.parent.children[index + 1];
if ( _likeLi( node ) ) {
ulNode.children[ulNode.children.length] = node;
node.parent = ulNode;
ulNode.parent.children.splice( index + 1, 1 );
} else {
break;
}
}
return ulNode;
}
node.tag = node.name = 'li';
//为chrome能找到标号做的处理
if ( browser.webkit ) {
var span = node.children[0];
while ( span && span.type == 'element' ) {
span = span.children[0]
}
span && (span.parent.attributes.style = (span.parent.attributes.style || '') + ';mso-list:10');
}
delete node.attributes['class'];
delete node.attributes.style;
}
}
return node;
}
function optStyle( node ) {
if ( ie && node.attributes.style ) {
var style = node.attributes.style;
node.attributes.style = style.replace(/;\s*/g,';');
node.attributes.style = node.attributes.style.replace( /^\s*|\s*$/, '' )
}
}
function transOutNode( node ) {
switch ( node.tag ) {
case 'table':
!node.attributes.style && delete node.attributes.style;
if ( ie && node.attributes.style ) {
optStyle( node );
}
break;
case 'td':
case 'th':
if ( /display\s*:\s*none/i.test( node.attributes.style ) ) {
return {
type: 'fragment',
children: []
};
}
if ( ie && !node.children.length ) {
var txtNode = {
type: 'text',
data:domUtils.fillChar,
parent : node
};
node.children[0] = txtNode;
}
if ( ie && node.attributes.style ) {
optStyle( node );
}
break;
case 'img'://锚点,img==>a
if ( node.attributes.anchorname ) {
node.tag = 'a';
node.attributes = {
name : node.attributes.anchorname,
anchorname : 1
};
node.closed = null;
}else{
if(node.attributes.data_ue_src){
node.attributes.src = node.attributes.data_ue_src;
delete node.attributes.data_ue_src;
}
}
break;
case 'a':
if(node.attributes.data_ue_src){
node.attributes.href = node.attributes.data_ue_src;
delete node.attributes.data_ue_src;
}
}
return node;
}
function childrenAccept( node, visit, ctx ) {
if ( !node.children || !node.children.length ) {
return node;
}
var children = node.children;
for ( var i = 0; i < children.length; i++ ) {
var newNode = visit( children[i], ctx );
if ( newNode.type == 'fragment' ) {
var args = [i, 1];
args.push.apply( args, newNode.children );
children.splice.apply( children, args );
//节点为空的就干掉,不然后边的补全操作会添加多余的节点
if ( !children.length ) {
node = {
type: 'fragment',
children: []
}
}
i --;
} else {
children[i] = newNode;
}
}
return node;
}
function Serialize( rules ) {
this.rules = rules;
}
Serialize.prototype = {
// NOTE: selector目前只支持tagName
rules: null,
// NOTE: node必须是fragment
filter: function ( node, rules, modify ) {
rules = rules || this.rules;
var whiteList = rules && rules.whiteList;
var blackList = rules && rules.blackList;
function visitNode( node, parent ) {
node.name = node.type == 'element' ?
node.tag : NODE_NAME_MAP[node.type];
if ( parent == null ) {
return childrenAccept( node, visitNode, node );
}
if ( blackList && blackList[node.name] ) {
modify && (modify.flag = 1);
return {
type: 'fragment',
children: []
};
}
if ( whiteList ) {
if ( node.type == 'element' ) {
if ( parent.type == 'fragment' ? whiteList[node.name] : whiteList[node.name] && whiteList[parent.name][node.name] ) {
var props;
if ( (props = whiteList[node.name].$) ) {
var oldAttrs = node.attributes;
var newAttrs = {};
for ( var k in props ) {
if ( oldAttrs[k] ) {
newAttrs[k] = oldAttrs[k];
}
}
node.attributes = newAttrs;
}
} else {
modify && (modify.flag = 1);
node.type = 'fragment';
// NOTE: 这里算是一个hack
node.name = parent.name;
}
} else {
// NOTE: 文本默认允许
}
}
if ( blackList || whiteList ) {
childrenAccept( node, visitNode, node );
}
return node;
}
return visitNode( node, null );
},
transformInput: function ( node, word_img_flag ) {
function visitNode( node ) {
node = transNode( node, word_img_flag );
if ( node.tag == 'ol' || node.tag == 'ul' ) {
first = 1;
}
node = childrenAccept( node, visitNode, node );
if ( node.tag == 'ol' || node.tag == 'ul' ) {
first = 0;
parentTag = '',liStyle = '',firstTag = '';
}
if ( node.type == 'text' && node.data.replace( /\s/g, '' ) == me.options.pageBreakTag ) {
node.type = 'element';
node.name = node.tag = 'hr';
delete node.data;
node.attributes = {
'class' : 'pagebreak',
noshade:"noshade",
size:"5",
'unselectable' : 'on',
'style' : 'moz-user-select:none;-khtml-user-select: none;'
};
node.children = [];
}
//去掉多余的空格和换行
if(node.type == 'text' && !dtd.$notTransContent[node.parent.tag]){
node.data = node.data.replace(/[\r\t\n]*/g,'')//.replace(/[ ]*$/g,'')
}
return node;
}
return visitNode( node );
},
transformOutput: function ( node ) {
function visitNode( node ) {
if ( node.tag == 'hr' && node.attributes['class'] == 'pagebreak' ) {
delete node.tag;
node.type = 'text';
node.data = me.options.pageBreakTag;
delete node.children;
}
node = transOutNode( node );
if ( node.tag == 'ol' || node.tag == 'ul' ) {
first = 1;
}
node = childrenAccept( node, visitNode, node );
if ( node.tag == 'ol' || node.tag == 'ul' ) {
first = 0;
}
return node;
}
return visitNode( node );
},
toHTML: toHTML,
parseHTML: parseHTML,
word: transformWordHtml
};
me.serialize = new Serialize( me.options.serialize );
UE.serialize = new Serialize( {} );
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/serialize.js | JavaScript | asf20 | 48,636 |
///import core
///commands 输入的方向
///commandsName DirectionalityLtr,DirectionalityRtl
///commandsTitle 从左向右输入,从右向左输入
/**
* 输入的方向
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName directionality执行函数的参数
* @param {String} forward ltr从左向右输入,rtl从右向左输入
*/
(function() {
var block = domUtils.isBlockElm ,
getObj = function(editor){
// var startNode = editor.selection.getStart(),
// parents;
// if ( startNode ) {
// //查找所有的是block的父亲节点
// parents = domUtils.findParents( startNode, true, block, true );
// for ( var i = 0,ci; ci = parents[i++]; ) {
// if ( ci.getAttribute( 'dir' ) ) {
// return ci;
// }
// }
// }
return utils.findNode(editor.selection.getStartElementPath(),null,function(n){return n.getAttribute('dir')});
},
doDirectionality = function(range,editor,forward){
var bookmark,
filterFn = function( node ) {
return node.nodeType == 1 ? !domUtils.isBookmarkNode(node) : !domUtils.isWhitespace(node)
},
obj = getObj( editor );
if ( obj && range.collapsed ) {
obj.setAttribute( 'dir', forward );
return range;
}
bookmark = range.createBookmark();
range.enlarge( true );
var bookmark2 = range.createBookmark(),
current = domUtils.getNextDomNode( bookmark2.start, false, filterFn ),
tmpRange = range.cloneRange(),
tmpNode;
while ( current && !(domUtils.getPosition( current, bookmark2.end ) & domUtils.POSITION_FOLLOWING) ) {
if ( current.nodeType == 3 || !block( current ) ) {
tmpRange.setStartBefore( current );
while ( current && current !== bookmark2.end && !block( current ) ) {
tmpNode = current;
current = domUtils.getNextDomNode( current, false, null, function( node ) {
return !block( node )
} );
}
tmpRange.setEndAfter( tmpNode );
var common = tmpRange.getCommonAncestor();
if ( !domUtils.isBody( common ) && block( common ) ) {
//遍历到了block节点
common.setAttribute( 'dir', forward );
current = common;
} else {
//没有遍历到,添加一个block节点
var p = range.document.createElement( 'p' );
p.setAttribute( 'dir', forward );
var frag = tmpRange.extractContents();
p.appendChild( frag );
tmpRange.insertNode( p );
current = p;
}
current = domUtils.getNextDomNode( current, false, filterFn );
} else {
current = domUtils.getNextDomNode( current, true, filterFn );
}
}
return range.moveToBookmark( bookmark2 ).moveToBookmark( bookmark );
};
UE.commands['directionality'] = {
execCommand : function( cmdName,forward ) {
var range = new dom.Range(this.document);
if(this.currentSelectedArr && this.currentSelectedArr.length > 0){
for(var i=0,ti;ti=this.currentSelectedArr[i++];){
if(ti.style.display != 'none')
doDirectionality(range.selectNode(ti),this,forward);
}
range.selectNode(this.currentSelectedArr[0]).select()
}else{
range = this.selection.getRange();
//闭合时单独处理
if(range.collapsed){
var txt = this.document.createTextNode('d');
range.insertNode(txt);
}
doDirectionality(range,this,forward);
if(txt){
range.setStartBefore(txt).collapse(true);
domUtils.remove(txt);
}
range.select();
}
return true;
},
queryCommandValue : function() {
var node = getObj(this);
return node ? node.getAttribute('dir') : 'ltr'
},
queryCommandState : function(){
return this.highlight ? -1 :0;
}
}
})();
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/directionality.js | JavaScript | asf20 | 4,948 |
///import core
///import plugins/inserthtml.js
///commands 插入代码
///commandsName HighlightCode
///commandsTitle 插入代码
///commandsDialog dialogs\code\code.html
UE.plugins['highlight'] = function() {
var me = this;
me.commands['highlightcode'] = {
execCommand: function (cmdName, code, syntax) {
if(code && syntax){
var pre = document.createElement("pre");
pre.className = "brush: "+syntax+";toolbar:false;";
pre.style.display = "";
pre.appendChild(document.createTextNode(code));
document.body.appendChild(pre);
if(me.queryCommandState("highlightcode")){
me.execCommand("highlightcode");
}
me.execCommand('inserthtml', SyntaxHighlighter.highlight(pre,null,true));
var div = me.document.getElementById(SyntaxHighlighter.getHighlighterDivId());
div.setAttribute('highlighter',pre.className);
domUtils.remove(pre);
adjustHeight()
}else{
var range = this.selection.getRange(),
start = domUtils.findParentByTagName(range.startContainer, 'table', true),
end = domUtils.findParentByTagName(range.endContainer, 'table', true),
codediv;
if(start && end && start === end && start.parentNode.className.indexOf("syntaxhighlighter")>-1){
codediv = start.parentNode;
if(domUtils.isBody(codediv.parentNode)){
var p = me.document.createElement('p');
p.innerHTML = browser.ie ? '' : '<br/>';
me.body.insertBefore(p,codediv);
range.setStart(p,0)
}else{
range.setStartBefore(codediv)
}
range.setCursor();
domUtils.remove(codediv);
}
}
},
queryCommandState: function(){
var range = this.selection.getRange(),start,end;
range.adjustmentBoundary();
start = domUtils.findParent(range.startContainer,function(node){
return node.nodeType == 1 && node.tagName == 'DIV' && domUtils.hasClass(node,'syntaxhighlighter')
},true);
end = domUtils.findParent(range.endContainer,function(node){
return node.nodeType == 1 && node.tagName == 'DIV' && domUtils.hasClass(node,'syntaxhighlighter')
},true);
return start && end && start == end ? 1 : 0;
}
};
me.addListener('beforeselectionchange',function(){
me.highlight = me.queryCommandState('highlightcode');
});
me.addListener('afterselectionchange',function(){
me.highlight = 0;
});
me.addListener("ready",function(){
//避免重复加载高亮文件
if(typeof XRegExp == "undefined"){
var obj = {
id : "syntaxhighlighter_js",
src : me.options.highlightJsUrl,
tag : "script",
type : "text/javascript",
defer : "defer"
};
utils.loadFile(document,obj,function(){
changePre();
});
}
if(!me.document.getElementById("syntaxhighlighter_css")){
var obj = {
id : "syntaxhighlighter_css",
tag : "link",
rel : "stylesheet",
type : "text/css",
href : me.options.highlightCssUrl
};
utils.loadFile(me.document,obj);
}
});
me.addListener("beforegetcontent",function(type,cmd){
for(var i=0,di,divs=domUtils.getElementsByTagName(me.body,'div');di=divs[i++];){
if(di.className == 'container'){
var pN = di.parentNode;
while(pN){
if(pN.tagName == 'DIV' && /highlighter/.test(pN.id)){
break;
}
pN = pN.parentNode;
}
if(!pN)return;
var pre = me.document.createElement('pre');
for(var str=[],c=0,ci;ci=di.childNodes[c++];){
str.push(ci[browser.ie?'innerText':'textContent']);
}
pre.appendChild(me.document.createTextNode(str.join('\n')));
pre.className = pN.getAttribute('highlighter');
pN.parentNode.insertBefore(pre,pN);
domUtils.remove(pN);
}
}
});
me.addListener("aftergetcontent",function(type,cmd){
changePre();
});
function adjustHeight(){
var div = me.document.getElementById(SyntaxHighlighter.getHighlighterDivId());
if(div){
var tds = div.getElementsByTagName('td');
for(var i=0,li,ri;li=tds[0].childNodes[i];i++){
ri = tds[1].firstChild.childNodes[i];
ri.style.height = li.style.height = ri.offsetHeight + 'px';
}
}
}
function changePre(){
for(var i=0,pr,pres = domUtils.getElementsByTagName(me.document,"pre");pr=pres[i++];){
if(pr.className.indexOf("brush")>-1){
var pre = document.createElement("pre"),txt,div;
pre.className = pr.className;
pre.style.display = "none";
pre.appendChild(document.createTextNode(pr[browser.ie?'innerText':'textContent']));
document.body.appendChild(pre);
try{
txt = SyntaxHighlighter.highlight(pre,null,true);
}catch(e){
domUtils.remove(pre);
return ;
}
div = me.document.createElement("div");
div.innerHTML = txt;
div.firstChild.setAttribute('highlighter',pre.className);
pr.parentNode.insertBefore(div.firstChild,pr);
domUtils.remove(pre);
domUtils.remove(pr);
adjustHeight()
}
}
}
me.addListener("aftersetcontent",function(){
changePre();
});
//全屏时,重新算一下宽度
me.addListener('fullscreenchanged',function(){
var div = domUtils.getElementsByTagName(me.document,'div');
for(var j=0,di;di=div[j++];){
if(/^highlighter/.test(di.id)){
var tds = di.getElementsByTagName('td');
for(var i=0,li,ri;li=tds[0].childNodes[i];i++){
ri = tds[1].firstChild.childNodes[i];
ri.style.height = li.style.height = ri.offsetHeight + 'px';
}
}
}
})
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/highlight.js | JavaScript | asf20 | 7,109 |
///import core
///import plugins/inserthtml.js
///import plugins/undo.js
///import plugins/serialize.js
///commands 粘贴
///commandsName PastePlain
///commandsTitle 纯文本粘贴模式
/*
** @description 粘贴
* @author zhanyi
*/
(function() {
function getClipboardData( callback ) {
var doc = this.document;
if ( doc.getElementById( 'baidu_pastebin' ) ) {
return;
}
var range = this.selection.getRange(),
bk = range.createBookmark(),
//创建剪贴的容器div
pastebin = doc.createElement( 'div' );
pastebin.id = 'baidu_pastebin';
// Safari 要求div必须有内容,才能粘贴内容进来
browser.webkit && pastebin.appendChild( doc.createTextNode( domUtils.fillChar + domUtils.fillChar ) );
doc.body.appendChild( pastebin );
//trace:717 隐藏的span不能得到top
//bk.start.innerHTML = ' ';
bk.start.style.display = '';
pastebin.style.cssText = "position:absolute;width:1px;height:1px;overflow:hidden;left:-1000px;white-space:nowrap;top:" +
//要在现在光标平行的位置加入,否则会出现跳动的问题
domUtils.getXY( bk.start ).y + 'px';
range.selectNodeContents( pastebin ).select( true );
setTimeout( function() {
if (browser.webkit) {
for(var i=0,pastebins = doc.querySelectorAll('#baidu_pastebin'),pi;pi=pastebins[i++];){
if(domUtils.isEmptyNode(pi)){
domUtils.remove(pi)
}else{
pastebin = pi;
break;
}
}
}
try{
pastebin.parentNode.removeChild(pastebin);
}catch(e){}
range.moveToBookmark( bk ).select(true);
callback( pastebin );
}, 0 );
}
UE.plugins['paste'] = function() {
var me = this;
var word_img_flag = {flag:""};
var pasteplain = me.options.pasteplain;
var modify_num = {flag:""};
me.commands['pasteplain'] = {
queryCommandState: function (){
return pasteplain;
},
execCommand: function (){
pasteplain = !pasteplain|0;
},
notNeedUndo : 1
};
function filter(div){
var html;
if ( div.firstChild ) {
//去掉cut中添加的边界值
var nodes = domUtils.getElementsByTagName(div,'span');
for(var i=0,ni;ni=nodes[i++];){
if(ni.id == '_baidu_cut_start' || ni.id == '_baidu_cut_end'){
domUtils.remove(ni)
}
}
if(browser.webkit){
var brs = div.querySelectorAll('div br');
for(var i=0,bi;bi=brs[i++];){
var pN = bi.parentNode;
if(pN.tagName == 'DIV' && pN.childNodes.length ==1){
pN.innerHTML = '<p><br/></p>';
domUtils.remove(pN)
}
}
var divs = div.querySelectorAll('#baidu_pastebin');
for(var i=0,di;di=divs[i++];){
var tmpP = me.document.createElement('p');
di.parentNode.insertBefore(tmpP,di);
while(di.firstChild){
tmpP.appendChild(di.firstChild)
}
domUtils.remove(di)
}
var metas = div.querySelectorAll('meta');
for(var i=0,ci;ci=metas[i++];){
domUtils.remove(ci);
}
var brs = div.querySelectorAll('br');
for(i=0;ci=brs[i++];){
if(/^apple-/.test(ci)){
domUtils.remove(ci)
}
}
}
if(browser.gecko){
var dirtyNodes = div.querySelectorAll('[_moz_dirty]')
for(i=0;ci=dirtyNodes[i++];){
ci.removeAttribute( '_moz_dirty' )
}
}
if(!browser.ie ){
var spans = div.querySelectorAll('span.apple-style-span');
for(var i=0,ci;ci=spans[i++];){
domUtils.remove(ci,true);
}
}
html = div.innerHTML;
var f = me.serialize;
if(f){
//如果过滤出现问题,捕获它,直接插入内容,避免出现错误导致粘贴整个失败
try{
var node = f.transformInput(
f.parseHTML(
//todo: 暂时不走dtd的过滤
f.word(html)//, true
),word_img_flag
);
//trace:924
//纯文本模式也要保留段落
node = f.filter(node,pasteplain ? {
whiteList: {
'p': {'br':1,'BR':1},
'br':{'$':{}},
'div':{'br':1,'BR':1,'$':{}},
'li':{'$':{}},
'tr':{'td':1,'$':{}},
'td':{'$':{}}
},
blackList: {
'style':1,
'script':1,
'object':1
}
} : null, !pasteplain ? modify_num : null);
if(browser.webkit){
var length = node.children.length,
child;
while((child = node.children[length-1]) && child.tag == 'br'){
node.children.splice(length-1,1);
length = node.children.length;
}
}
html = f.toHTML(node,pasteplain)
}catch(e){}
}
//自定义的处理
html = {'html':html};
me.fireEvent('beforepaste',html);
me.execCommand( 'insertHtml',html.html);
me.fireEvent("afterpaste");
}
}
me.addListener('ready',function(){
domUtils.on(me.body,'cut',function(){
var range = me.selection.getRange();
if(!range.collapsed && me.undoManger){
me.undoManger.save()
}
});
//ie下beforepaste在点击右键时也会触发,所以用监控键盘才处理
domUtils.on(me.body, browser.ie ? 'keydown' : 'paste',function(e){
if(browser.ie && (!e.ctrlKey || e.keyCode != '86'))
return;
getClipboardData.call( me, function( div ) {
filter(div);
function hideMsg(){
me.ui.hideToolbarMsg();
me.removeListener("selectionchange",hideMsg);
}
if ( modify_num.flag && me.ui){
me.ui.showToolbarMsg( me.options.messages.pasteMsg, word_img_flag.flag );
modify_num.flag = "";
//trance:为了解决fireevent (selectionchange)事件的延时
setTimeout(function(){
me.addListener("selectionchange",hideMsg);
},100);
}
if ( word_img_flag.flag && !me.queryCommandState("pasteplain") && me.ui){
me.ui.showToolbarMsg( me.options.messages.pasteWordImgMsg,true);
word_img_flag.flag = '';
//trance:为了解决fireevent (selectionchange)事件的延时
setTimeout(function(){
me.addListener("selectionchange",hideMsg);
},100);
}
} );
})
});
}
})();
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/paste.js | JavaScript | asf20 | 9,230 |
///import core
///import plugins\inserthtml.js
///commands 地图
///commandsName Map,GMap
///commandsTitle Baidu地图,Google地图
///commandsDialog dialogs\map\map.html,dialogs\gmap\gmap.html
UE.commands['gmap'] =
UE.commands['map'] = {
queryCommandState : function(){
return this.highlight ? -1 :0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/map.js | JavaScript | asf20 | 328 |
///import core
///import plugins\paragraph.js
///commands 首行缩进
///commandsName Outdent,Indent
///commandsTitle 取消缩进,首行缩进
/**
* 首行缩进
* @function
* @name baidu.editor.execCommand
* @param {String} cmdName outdent取消缩进,indent缩进
*/
UE.commands['indent'] = {
execCommand : function() {
var me = this,value = me.queryCommandState("indent") ? "0em" : me.options.indentValue || '2em';
me.execCommand('Paragraph','p',{style:'text-indent:'+ value});
},
queryCommandState : function() {
if(this.highlight){return -1;}
var //start = this.selection.getStart(),
// pN = domUtils.findParentByTagName(start,['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'],true),
pN = utils.findNode(this.selection.getStartElementPath(),['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6']),
indent = pN && pN.style.textIndent ? parseInt(pN.style.textIndent) : '';
return indent ? 1 : 0;
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/indent.js | JavaScript | asf20 | 1,023 |
///import core
///commands 加粗,斜体,上标,下标
///commandsName Bold,Italic,Subscript,Superscript
///commandsTitle 加粗,加斜,下标,上标
/**
* b u i等基础功能实现
* @function
* @name baidu.editor.execCommands
* @param {String} cmdName bold加粗。italic斜体。subscript上标。superscript下标。
*/
UE.plugins['basestyle'] = function(){
var basestyles = {
'bold':['strong','b'],
'italic':['em','i'],
'subscript':['sub'],
'superscript':['sup']
},
getObj = function(editor,tagNames){
//var start = editor.selection.getStart();
var path = editor.selection.getStartElementPath();
// return domUtils.findParentByTagName( start, tagNames, true )
return utils.findNode(path,tagNames);
},
me = this;
for ( var style in basestyles ) {
(function( cmd, tagNames ) {
me.commands[cmd] = {
execCommand : function( cmdName ) {
var range = new dom.Range(me.document),obj = '';
//table的处理
if(me.currentSelectedArr && me.currentSelectedArr.length > 0){
for(var i=0,ci;ci=me.currentSelectedArr[i++];){
if(ci.style.display != 'none'){
range.selectNodeContents(ci).select();
//trace:943
!obj && (obj = getObj(this,tagNames));
if(cmdName == 'superscript' || cmdName == 'subscript'){
if(!obj || obj.tagName.toLowerCase() != cmdName)
range.removeInlineStyle(['sub','sup'])
}
obj ? range.removeInlineStyle( tagNames ) : range.applyInlineStyle( tagNames[0] )
}
}
range.selectNodeContents(me.currentSelectedArr[0]).select();
}else{
range = me.selection.getRange();
obj = getObj(this,tagNames);
if ( range.collapsed ) {
if ( obj ) {
var tmpText = me.document.createTextNode('');
range.insertNode( tmpText ).removeInlineStyle( tagNames );
range.setStartBefore(tmpText);
domUtils.remove(tmpText);
} else {
var tmpNode = range.document.createElement( tagNames[0] );
if(cmdName == 'superscript' || cmdName == 'subscript'){
tmpText = me.document.createTextNode('');
range.insertNode(tmpText)
.removeInlineStyle(['sub','sup'])
.setStartBefore(tmpText)
.collapse(true);
}
range.insertNode( tmpNode ).setStart( tmpNode, 0 );
}
range.collapse( true )
} else {
if(cmdName == 'superscript' || cmdName == 'subscript'){
if(!obj || obj.tagName.toLowerCase() != cmdName)
range.removeInlineStyle(['sub','sup'])
}
obj ? range.removeInlineStyle( tagNames ) : range.applyInlineStyle( tagNames[0] )
}
range.select();
}
return true;
},
queryCommandState : function() {
if(this.highlight){
return -1;
}
return getObj(this,tagNames) ? 1 : 0;
}
}
})( style, basestyles[style] );
}
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/basestyle.js | JavaScript | asf20 | 4,421 |
///import core
///import plugins/inserthtml.js
///commands 视频
///commandsName InsertVideo
///commandsTitle 插入视频
///commandsDialog dialogs\video\video.html
UE.plugins['video'] = function (){
var me =this,
div;
/**
* 创建插入视频字符窜
* @param url 视频地址
* @param width 视频宽度
* @param height 视频高度
* @param align 视频对齐
* @param toEmbed 是否以图片代替显示
* @param addParagraph 是否需要添加P 标签
*/
function creatInsertStr(url,width,height,align,toEmbed,addParagraph){
return !toEmbed ?
(addParagraph? ('<p '+ (align !="none" ? ( align == "center"? ' style="text-align:center;" ':' style="float:"'+ align ) : '') + '>'): '') +
'<img align="'+align+'" width="'+ width +'" height="' + height + '" _url="'+url+'" class="edui-faked-video"' +
' src="'+me.options.UEDITOR_HOME_URL+'themes/default/images/spacer.gif" style="background:url('+me.options.UEDITOR_HOME_URL+'themes/default/images/videologo.gif) no-repeat center center; border:1px solid gray;" />' +
(addParagraph?'</p>':'')
:
'<embed type="application/x-shockwave-flash" class="edui-faked-video" pluginspage="http://www.macromedia.com/go/getflashplayer"' +
' src="' + url + '" width="' + width + '" height="' + height + '" align="' + align + '"' +
( align !="none" ? ' style= "'+ ( align == "center"? "display:block;":" float: "+ align ) + '"' :'' ) +
' wmode="transparent" play="true" loop="false" menu="false" allowscriptaccess="never" allowfullscreen="true" >';
}
function switchImgAndEmbed(img2embed){
var tmpdiv,
nodes =domUtils.getElementsByTagName(me.document, !img2embed ? "embed" : "img");
for(var i=0,node;node = nodes[i++];){
if(node.className!="edui-faked-video")continue;
tmpdiv = me.document.createElement("div");
//先看float在看align,浮动有的是时候是在float上定义的
var align = node.style.cssFloat;
tmpdiv.innerHTML = creatInsertStr(img2embed ? node.getAttribute("_url"):node.getAttribute("src"),node.width,node.height,align || node.getAttribute("align"),img2embed);
node.parentNode.replaceChild(tmpdiv.firstChild,node);
}
}
me.addListener("beforegetcontent",function(){
switchImgAndEmbed(true);
});
me.addListener('aftersetcontent',function(){
switchImgAndEmbed(false);
});
me.addListener('aftergetcontent',function(cmdName){
if(cmdName == 'aftergetcontent' && me.queryCommandState('source'))
return;
switchImgAndEmbed(false);
});
me.commands["insertvideo"] = {
execCommand: function (cmd, videoObjs){
videoObjs = utils.isArray(videoObjs)?videoObjs:[videoObjs];
var html = [];
for(var i=0,vi,len = videoObjs.length;i<len;i++){
vi = videoObjs[i];
html.push(creatInsertStr( vi.url, vi.width || 420, vi.height || 280, vi.align||"none",false,true));
}
me.execCommand("inserthtml",html.join(""));
},
queryCommandState : function(){
var img = me.selection.getRange().getClosedNode(),
flag = img && (img.className == "edui-faked-video");
return this.highlight ? -1 :(flag?1:0);
}
}
}; | 10npsite | trunk/guanli/system/ueditor/_src/plugins/video.js | JavaScript | asf20 | 3,587 |
///import core
///commands 自动排版
///commandsName autotypeset
///commandsTitle 自动排版
/**
* 自动排版
* @function
* @name baidu.editor.execCommands
*/
UE.plugins['autotypeset'] = function(){
//升级了版本,但配置项目里没有autotypeset
if(!this.options.autotypeset){
return;
}
var me = this,
opt = me.options.autotypeset,
remainClass = {
'selectTdClass':1,
'pagebreak':1,
'anchorclass':1
},
remainTag = {
'li':1
},
tags = {
div:1,
p:1
},
highlightCont;
function isLine(node,notEmpty){
if(node && node.parentNode && tags[node.tagName.toLowerCase()]){
if(highlightCont && highlightCont.contains(node)
||
node.getAttribute('pagebreak')
){
return 0;
}
return notEmpty ? !domUtils.isEmptyBlock(node) : domUtils.isEmptyBlock(node);
}
}
function removeNotAttributeSpan(node){
if(!node.style.cssText){
domUtils.removeAttributes(node,['style']);
if(node.tagName.toLowerCase() == 'span' && domUtils.hasNoAttributes(node)){
domUtils.remove(node,true)
}
}
}
function autotype(type,html){
var cont;
if(html){
if(!opt.pasteFilter)return;
cont = me.document.createElement('div');
cont.innerHTML = html.html;
}else{
cont = me.document.body;
}
var nodes = domUtils.getElementsByTagName(cont,'*');
// 行首缩进,段落方向,段间距,段内间距
for(var i=0,ci;ci=nodes[i++];){
if(!highlightCont && ci.tagName == 'DIV' && ci.getAttribute('highlighter')){
highlightCont = ci;
}
//font-size
if(opt.clearFontSize && ci.style.fontSize){
ci.style.fontSize = '';
removeNotAttributeSpan(ci)
}
//font-family
if(opt.clearFontFamily && ci.style.fontFamily){
ci.style.fontFamily = '';
removeNotAttributeSpan(ci)
}
if(isLine(ci)){
//合并空行
if(opt.mergeEmptyline ){
var next = ci.nextSibling,tmpNode;
while(isLine(next)){
tmpNode = next;
next = tmpNode.nextSibling;
domUtils.remove(tmpNode);
}
}
//去掉空行,保留占位的空行
if(opt.removeEmptyline && domUtils.inDoc(ci,cont) && !remainTag[ci.parentNode.tagName.toLowerCase()] ){
domUtils.remove(ci);
continue;
}
}
if(isLine(ci,true) ){
if(opt.indent)
ci.style.textIndent = opt.indentValue;
if(opt.textAlign)
ci.style.textAlign = opt.textAlign;
// if(opt.lineHeight)
// ci.style.lineHeight = opt.lineHeight + 'cm';
}
//去掉class,保留的class不去掉
if(opt.removeClass && ci.className && !remainClass[ci.className.toLowerCase()]){
if(highlightCont && highlightCont.contains(ci)){
continue;
}
domUtils.removeAttributes(ci,['class'])
}
//表情不处理
if(opt.imageBlockLine && ci.tagName.toLowerCase() == 'img' && !ci.getAttribute('emotion')){
if(html){
var img = ci;
switch (opt.imageBlockLine){
case 'left':
case 'right':
case 'none':
var pN = img.parentNode,tmpNode,pre,next;
while(dtd.$inline[pN.tagName] || pN.tagName == 'A'){
pN = pN.parentNode;
}
tmpNode = pN;
if(tmpNode.tagName == 'P' && domUtils.getStyle(tmpNode,'text-align') == 'center'){
if(!domUtils.isBody(tmpNode) && domUtils.getChildCount(tmpNode,function(node){return !domUtils.isBr(node) && !domUtils.isWhitespace(node)}) == 1){
pre = tmpNode.previousSibling;
next = tmpNode.nextSibling;
if(pre && next && pre.nodeType == 1 && next.nodeType == 1 && pre.tagName == next.tagName && domUtils.isBlockElm(pre)){
pre.appendChild(tmpNode.firstChild);
while(next.firstChild){
pre.appendChild(next.firstChild)
}
domUtils.remove(tmpNode);
domUtils.remove(next);
}else{
domUtils.setStyle(tmpNode,'text-align','')
}
}
}
domUtils.setStyle(img,'float',opt.imageBlockLine);
break;
case 'center':
if(me.queryCommandValue('imagefloat') != 'center'){
pN = img.parentNode;
domUtils.setStyle(img,'float','none');
tmpNode = img;
while(pN && domUtils.getChildCount(pN,function(node){return !domUtils.isBr(node) && !domUtils.isWhitespace(node)}) == 1
&& (dtd.$inline[pN.tagName] || pN.tagName == 'A')){
tmpNode = pN;
pN = pN.parentNode;
}
var pNode = me.document.createElement('p');
domUtils.setAttributes(pNode,{
style:'text-align:center'
});
tmpNode.parentNode.insertBefore(pNode,tmpNode);
pNode.appendChild(tmpNode);
domUtils.setStyle(tmpNode,'float','');
}
}
}else{
var range = me.selection.getRange();
range.selectNode(ci).select();
me.execCommand('imagefloat',opt.imageBlockLine);
}
}
//去掉冗余的标签
if(opt.removeEmptyNode){
if(opt.removeTagNames[ci.tagName.toLowerCase()] && domUtils.hasNoAttributes(ci) && domUtils.isEmptyBlock(ci)){
domUtils.remove(ci)
}
}
}
if(html)
html.html = cont.innerHTML
}
if(opt.pasteFilter){
me.addListener('beforepaste',autotype);
}
me.commands['autotypeset'] = {
execCommand:function () {
me.removeListener('beforepaste',autotype);
if(opt.pasteFilter){
me.addListener('beforepaste',autotype);
}
autotype();
}
};
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/autotypeset.js | JavaScript | asf20 | 7,867 |
///import core
///commands 撤销和重做
///commandsName Undo,Redo
///commandsTitle 撤销,重做
/**
* @description 回退
* @author zhanyi
*/
UE.plugins['undo'] = function() {
var me = this,
maxUndoCount = me.options.maxUndoCount,
maxInputCount = me.options.maxInputCount,
fillchar = new RegExp(domUtils.fillChar + '|<\/hr>','gi'),// ie会产生多余的</hr>
//在比较时,需要过滤掉这些属性
specialAttr = /\b(?:href|src|name)="[^"]*?"/gi;
function UndoManager() {
this.list = [];
this.index = 0;
this.hasUndo = false;
this.hasRedo = false;
this.undo = function() {
if ( this.hasUndo ) {
var currentScene = this.getScene(),
lastScene = this.list[this.index];
if ( lastScene.content.replace(specialAttr,'') != currentScene.content.replace(specialAttr,'') ) {
this.save();
}
if(!this.list[this.index - 1] && this.list.length == 1){
this.reset();
return;
}
while ( this.list[this.index].content == this.list[this.index - 1].content ) {
this.index--;
if ( this.index == 0 ) {
return this.restore( 0 )
}
}
this.restore( --this.index );
}
};
this.redo = function() {
if ( this.hasRedo ) {
while ( this.list[this.index].content == this.list[this.index + 1].content ) {
this.index++;
if ( this.index == this.list.length - 1 ) {
return this.restore( this.index )
}
}
this.restore( ++this.index );
}
};
this.restore = function() {
var scene = this.list[this.index];
//trace:873
//去掉展位符
me.document.body.innerHTML = scene.bookcontent.replace(fillchar,'');
//处理undo后空格不展位的问题
if(browser.ie){
for(var i=0,pi,ps = me.document.getElementsByTagName('p');pi = ps[i++];){
if(pi.innerHTML == ''){
domUtils.fillNode(me.document,pi);
}
}
}
var range = new dom.Range( me.document );
range.moveToBookmark( {
start : '_baidu_bookmark_start_',
end : '_baidu_bookmark_end_',
id : true
//去掉true 是为了<b>|</b>,回退后还能在b里
//todo safari里输入中文时,会因为改变了dom而导致丢字
} );
//trace:1278 ie9block元素为空,将出现光标定位的问题,必须填充内容
if(browser.ie && browser.version == 9 && range.collapsed && domUtils.isBlockElm(range.startContainer) && domUtils.isEmptyNode(range.startContainer)){
domUtils.fillNode(range.document,range.startContainer);
}
range.select(!browser.gecko);
setTimeout(function(){
range.scrollToView(me.autoHeightEnabled,me.autoHeightEnabled ? domUtils.getXY(me.iframe).y:0);
},200);
this.update();
//table的单独处理
if(me.currentSelectedArr){
me.currentSelectedArr = [];
var tds = me.document.getElementsByTagName('td');
for(var i=0,td;td=tds[i++];){
if(td.className == me.options.selectedTdClass){
me.currentSelectedArr.push(td);
}
}
}
this.clearKey();
//不能把自己reset了
me.fireEvent('reset',true);
me.fireEvent('contentchange')
};
this.getScene = function() {
var range = me.selection.getRange(),
cont = me.body.innerHTML.replace(fillchar,'');
//有可能边界落到了<table>|<tbody>这样的位置,所以缩一下位置
range.shrinkBoundary();
browser.ie && (cont = cont.replace(/> </g,'><').replace(/\s*</g,'').replace(/>\s*/g,'>'));
var bookmark = range.createBookmark( true, true ),
bookCont = me.body.innerHTML.replace(fillchar,'');
range.moveToBookmark( bookmark ).select( true );
return {
bookcontent : bookCont,
content : cont
}
};
this.save = function() {
var currentScene = this.getScene(),
lastScene = this.list[this.index];
//内容相同位置相同不存
if ( lastScene && lastScene.content == currentScene.content &&
lastScene.bookcontent == currentScene.bookcontent
) {
return;
}
this.list = this.list.slice( 0, this.index + 1 );
this.list.push( currentScene );
//如果大于最大数量了,就把最前的剔除
if ( this.list.length > maxUndoCount ) {
this.list.shift();
}
this.index = this.list.length - 1;
this.clearKey();
//跟新undo/redo状态
this.update();
me.fireEvent('contentchange')
};
this.update = function() {
this.hasRedo = this.list[this.index + 1] ? true : false;
this.hasUndo = this.list[this.index - 1] || this.list.length == 1 ? true : false;
};
this.reset = function() {
this.list = [];
this.index = 0;
this.hasUndo = false;
this.hasRedo = false;
this.clearKey();
};
this.clearKey = function(){
keycont = 0;
lastKeyCode = null;
}
}
me.undoManger = new UndoManager();
function saveScene() {
this.undoManger.save()
}
me.addListener( 'beforeexeccommand', saveScene );
me.addListener( 'afterexeccommand', saveScene );
me.addListener('reset',function(type,exclude){
if(!exclude)
me.undoManger.reset();
});
me.commands['redo'] = me.commands['undo'] = {
execCommand : function( cmdName ) {
me.undoManger[cmdName]();
},
queryCommandState : function( cmdName ) {
return me.undoManger['has' + (cmdName.toLowerCase() == 'undo' ? 'Undo' : 'Redo')] ? 0 : -1;
},
notNeedUndo : 1
};
var keys = {
// /*Backspace*/ 8:1, /*Delete*/ 46:1,
/*Shift*/ 16:1, /*Ctrl*/ 17:1, /*Alt*/ 18:1,
37:1, 38:1, 39:1, 40:1,
13:1 /*enter*/
},
keycont = 0,
lastKeyCode;
me.addListener( 'keydown', function( type, evt ) {
var keyCode = evt.keyCode || evt.which;
if ( !keys[keyCode] && !evt.ctrlKey && !evt.metaKey && !evt.shiftKey && !evt.altKey ) {
if ( me.undoManger.list.length == 0 || ((keyCode == 8 ||keyCode == 46) && lastKeyCode != keyCode) ) {
me.undoManger.save();
lastKeyCode = keyCode;
return
}
//trace:856
//修正第一次输入后,回退,再输入要到keycont>maxInputCount才能在回退的问题
if(me.undoManger.list.length == 2 && me.undoManger.index == 0 && keycont == 0){
me.undoManger.list.splice(1,1);
me.undoManger.update();
}
lastKeyCode = keyCode;
keycont++;
if ( keycont > maxInputCount ) {
setTimeout( function() {
me.undoManger.save();
}, 0 );
}
}
} )
};
| 10npsite | trunk/guanli/system/ueditor/_src/plugins/undo.js | JavaScript | asf20 | 8,210 |