server/php/basic/public_html/static/lib/ckeditor/samples/api.html
author rougeronj
Thu, 18 Jun 2015 16:54:57 +0200
changeset 504 3329b413db18
permissions -rw-r--r--
add the new client libraries server side
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
504
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     1
<!DOCTYPE html>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     2
<!--
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     3
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     4
For licensing, see LICENSE.md or http://ckeditor.com/license
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     5
-->
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     6
<html>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     7
<head>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     8
	<meta charset="utf-8">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     9
	<title>API Usage &mdash; CKEditor Sample</title>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    10
	<script src="../ckeditor.js"></script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    11
	<link href="sample.css" rel="stylesheet">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    12
	<script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    13
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    14
// The instanceReady event is fired, when an instance of CKEditor has finished
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    15
// its initialization.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    16
CKEDITOR.on( 'instanceReady', function( ev ) {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    17
	// Show the editor name and description in the browser status bar.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    18
	document.getElementById( 'eMessage' ).innerHTML = 'Instance <code>' + ev.editor.name + '<\/code> loaded.';
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    19
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    20
	// Show this sample buttons.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    21
	document.getElementById( 'eButtons' ).style.display = 'block';
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    22
});
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    23
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    24
function InsertHTML() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    25
	// Get the editor instance that we want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    26
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    27
	var value = document.getElementById( 'htmlArea' ).value;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    28
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    29
	// Check the active editing mode.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    30
	if ( editor.mode == 'wysiwyg' )
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    31
	{
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    32
		// Insert HTML code.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    33
		// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertHtml
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    34
		editor.insertHtml( value );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    35
	}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    36
	else
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    37
		alert( 'You must be in WYSIWYG mode!' );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    38
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    39
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    40
function InsertText() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    41
	// Get the editor instance that we want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    42
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    43
	var value = document.getElementById( 'txtArea' ).value;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    44
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    45
	// Check the active editing mode.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    46
	if ( editor.mode == 'wysiwyg' )
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    47
	{
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    48
		// Insert as plain text.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    49
		// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-insertText
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    50
		editor.insertText( value );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    51
	}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    52
	else
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    53
		alert( 'You must be in WYSIWYG mode!' );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    54
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    55
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    56
function SetContents() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    57
	// Get the editor instance that we want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    58
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    59
	var value = document.getElementById( 'htmlArea' ).value;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    60
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    61
	// Set editor contents (replace current contents).
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    62
	// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-setData
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    63
	editor.setData( value );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    64
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    65
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    66
function GetContents() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    67
	// Get the editor instance that you want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    68
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    69
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    70
	// Get editor contents
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    71
	// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-getData
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    72
	alert( editor.getData() );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    73
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    74
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    75
function ExecuteCommand( commandName ) {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    76
	// Get the editor instance that we want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    77
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    78
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    79
	// Check the active editing mode.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    80
	if ( editor.mode == 'wysiwyg' )
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    81
	{
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    82
		// Execute the command.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    83
		// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-execCommand
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    84
		editor.execCommand( commandName );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    85
	}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    86
	else
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    87
		alert( 'You must be in WYSIWYG mode!' );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    88
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    89
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    90
function CheckDirty() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    91
	// Get the editor instance that we want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    92
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    93
	// Checks whether the current editor contents present changes when compared
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    94
	// to the contents loaded into the editor at startup
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    95
	// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-checkDirty
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    96
	alert( editor.checkDirty() );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    97
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    98
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    99
function ResetDirty() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   100
	// Get the editor instance that we want to interact with.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   101
	var editor = CKEDITOR.instances.editor1;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   102
	// Resets the "dirty state" of the editor (see CheckDirty())
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   103
	// http://docs.ckeditor.com/#!/api/CKEDITOR.editor-method-resetDirty
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   104
	editor.resetDirty();
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   105
	alert( 'The "IsDirty" status has been reset' );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   106
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   107
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   108
function Focus() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   109
	CKEDITOR.instances.editor1.focus();
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   110
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   111
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   112
function onFocus() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   113
	document.getElementById( 'eMessage' ).innerHTML = '<b>' + this.name + ' is focused </b>';
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   114
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   115
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   116
function onBlur() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   117
	document.getElementById( 'eMessage' ).innerHTML = this.name + ' lost focus';
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   118
}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   119
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   120
	</script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   121
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   122
</head>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   123
<body>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   124
	<h1 class="samples">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   125
		<a href="index.html">CKEditor Samples</a> &raquo; Using CKEditor JavaScript API
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   126
	</h1>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   127
	<div class="description">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   128
	<p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   129
		This sample shows how to use the
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   130
		<a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR.editor">CKEditor JavaScript API</a>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   131
		to interact with the editor at runtime.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   132
	</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   133
	<p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   134
		For details on how to create this setup check the source code of this sample page.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   135
	</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   136
	</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   137
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   138
	<!-- This <div> holds alert messages to be display in the sample page. -->
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   139
	<div id="alerts">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   140
		<noscript>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   141
			<p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   142
				<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   143
				support, like yours, you should still see the contents (HTML data) and you should
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   144
				be able to edit it normally, without a rich editor interface.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   145
			</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   146
		</noscript>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   147
	</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   148
	<form action="../../../samples/sample_posteddata.php" method="post">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   149
		<textarea cols="100" id="editor1" name="editor1" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   150
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   151
		<script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   152
			// Replace the <textarea id="editor1"> with an CKEditor instance.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   153
			CKEDITOR.replace( 'editor1', {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   154
				on: {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   155
					focus: onFocus,
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   156
					blur: onBlur,
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   157
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   158
					// Check for availability of corresponding plugins.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   159
					pluginsLoaded: function( evt ) {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   160
						var doc = CKEDITOR.document, ed = evt.editor;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   161
						if ( !ed.getCommand( 'bold' ) )
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   162
							doc.getById( 'exec-bold' ).hide();
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   163
						if ( !ed.getCommand( 'link' ) )
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   164
							doc.getById( 'exec-link' ).hide();
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   165
					}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   166
				}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   167
			});
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   168
		</script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   169
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   170
		<p id="eMessage">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   171
		</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   172
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   173
		<div id="eButtons" style="display: none">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   174
			<input id="exec-bold" onclick="ExecuteCommand('bold');" type="button" value="Execute &quot;bold&quot; Command">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   175
			<input id="exec-link" onclick="ExecuteCommand('link');" type="button" value="Execute &quot;link&quot; Command">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   176
			<input onclick="Focus();" type="button" value="Focus">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   177
			<br><br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   178
			<input onclick="InsertHTML();" type="button" value="Insert HTML">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   179
			<input onclick="SetContents();" type="button" value="Set Editor Contents">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   180
			<input onclick="GetContents();" type="button" value="Get Editor Contents (HTML)">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   181
			<br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   182
			<textarea cols="100" id="htmlArea" rows="3">&lt;h2&gt;Test&lt;/h2&gt;&lt;p&gt;This is some &lt;a href="/Test1.html"&gt;sample&lt;/a&gt; HTML code.&lt;/p&gt;</textarea>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   183
			<br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   184
			<br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   185
			<input onclick="InsertText();" type="button" value="Insert Text">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   186
			<br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   187
			<textarea cols="100" id="txtArea" rows="3">   First line with some leading whitespaces.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   188
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   189
Second line of text preceded by two line breaks.</textarea>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   190
			<br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   191
			<br>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   192
			<input onclick="CheckDirty();" type="button" value="checkDirty()">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   193
			<input onclick="ResetDirty();" type="button" value="resetDirty()">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   194
		</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   195
	</form>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   196
	<div id="footer">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   197
		<hr>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   198
		<p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   199
			CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   200
		</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   201
		<p id="copy">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   202
			Copyright &copy; 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   203
			Knabben. All rights reserved.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   204
		</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   205
	</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   206
</body>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   207
</html>