-
-
-
-
- Output for Flash — CKEditor Sample
-
-
-
-
-
-
-
-
-
-
-
-
- CKEditor Samples » Producing Flash Compliant HTML Output
-
-
-
- This sample shows how to configure CKEditor to output
- HTML code that can be used with
-
- Adobe Flash .
- The code will contain a subset of standard HTML elements like <b>
,
- <i>
, and <p>
as well as HTML attributes.
-
-
- 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.
-
-
- For details on how to create this setup check the source code of this sample page.
-
-
-
- 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
- Send to Flash button.
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html
deleted file mode 100644
index f25697df4..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/plugins/htmlwriter/outputhtml.html
+++ /dev/null
@@ -1,221 +0,0 @@
-
-
-
-
-
- HTML Compliant Output — CKEditor Sample
-
-
-
-
-
-
-
-
-
-
- CKEditor Samples » Producing HTML Compliant Output
-
-
-
- This sample shows how to configure CKEditor to output valid
- HTML 4.01 code.
- Traditional HTML elements like <b>
,
- <i>
, and <font>
are used in place of
- <strong>
, <em>
, and CSS styles.
-
-
- To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard
- JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes.
-
-
- A snippet of the configuration code can be seen below; check the source of this page for
- full definition:
-
-
-CKEDITOR.replace( 'textarea_id ', {
- coreStyles_bold: { element: 'b' },
- coreStyles_italic: { element: 'i' },
-
- fontSize_style: {
- element: 'font',
- attributes: { 'size': '#(size)' }
- }
-
- ...
-});
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html b/web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html
deleted file mode 100644
index 800fbb3b1..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/plugins/magicline/magicline.html
+++ /dev/null
@@ -1,206 +0,0 @@
-
-
-
-
-
- Using Magicline plugin — CKEditor Sample
-
-
-
-
-
-
-
-
-
-
- This sample shows the advantages of Magicline plugin
- which is to enhance the editing process. Thanks to this plugin,
- a number of difficult focus spaces which are inaccessible due to
- browser issues can now be focused.
-
-
- Magicline plugin shows a red line with a handler
- which, when clicked, inserts a paragraph and allows typing. To see this,
- focus an editor and move your mouse above the focus space you want
- to access. The plugin is enabled by default so no additional
- configuration is necessary.
-
-
-
-
- Editor 1:
-
-
-
- This editor uses a default Magicline setup.
-
-
-
- <table border="1" cellpadding="1" cellspacing="1" style="width: 100%; ">
- <tbody>
- <tr>
- <td>This table</td>
- <td>is the</td>
- <td>very first</td>
- <td>element of the document.</td>
- </tr>
- <tr>
- <td>We are still</td>
- <td>able to acces</td>
- <td>the space before it.</td>
- <td>
- <table border="1" cellpadding="1" cellspacing="1" style="width: 100%; ">
- <tbody>
- <tr>
- <td>This table is inside of a cell of another table.</td>
- </tr>
- <tr>
- <td>We can type either before or after it though.</td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
-
- <p>Two succesive horizontal lines (<tt>HR</tt> tags). We can access the space in between:</p>
-
- <hr />
- <hr />
- <ol>
- <li>This numbered list...</li>
- <li>...is a neighbour of a horizontal line...</li>
- <li>...and another list.</li>
- </ol>
-
- <ul>
- <li>We can type between the lists...</li>
- <li>...thanks to <strong>Magicline</strong>.</li>
- </ul>
-
- <p>Lorem ipsum dolor sit amet dui. Morbi vel turpis. Nullam et leo. Etiam rutrum, urna tellus dui vel tincidunt mattis egestas, justo fringilla vel, massa. Phasellus.</p>
-
- <p>Quisque iaculis, dui lectus varius vitae, tortor. Proin lacus. Pellentesque ac lacus. Aenean nonummy commodo nec, pede. Etiam blandit risus elit.</p>
-
- <p>Ut pretium. Vestibulum rutrum in, adipiscing elit. Sed in quam in purus sem vitae pede. Pellentesque bibendum, urna sem vel risus. Vivamus posuere metus. Aliquam gravida iaculis nisl. Nam enim. Aliquam erat ac lacus tellus ac felis.</p>
-
- <div style="border: 2px dashed green; background: #ddd; text-align: center;">
- <p>This text is wrapped in a <tt>DIV</tt> element. We can type after this element though.</p>
- </div>
-
-
-
-
-
-
- Editor 2:
-
-
-
- This editor is using a blue line.
-
-
-CKEDITOR.replace( 'editor2', {
- magicline_color: 'blue'
-});
-
-
- <table border="1" cellpadding="1" cellspacing="1" style="width: 100%; ">
- <tbody>
- <tr>
- <td>This table</td>
- <td>is the</td>
- <td>very first</td>
- <td>element of the document.</td>
- </tr>
- <tr>
- <td>We are still</td>
- <td>able to acces</td>
- <td>the space before it.</td>
- <td>
- <table border="1" cellpadding="1" cellspacing="1" style="width: 100%; ">
- <tbody>
- <tr>
- <td>This table is inside of a cell of another table.</td>
- </tr>
- <tr>
- <td>We can type either before or after it though.</td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
-
- <p>Two succesive horizontal lines (<tt>HR</tt> tags). We can access the space in between:</p>
-
- <hr />
- <hr />
- <ol>
- <li>This numbered list...</li>
- <li>...is a neighbour of a horizontal line...</li>
- <li>...and another list.</li>
- </ol>
-
- <ul>
- <li>We can type between the lists...</li>
- <li>...thanks to <strong>Magicline</strong>.</li>
- </ul>
-
- <p>Lorem ipsum dolor sit amet dui. Morbi vel turpis. Nullam et leo. Etiam rutrum, urna tellus dui vel tincidunt mattis egestas, justo fringilla vel, massa. Phasellus.</p>
-
- <p>Quisque iaculis, dui lectus varius vitae, tortor. Proin lacus. Pellentesque ac lacus. Aenean nonummy commodo nec, pede. Etiam blandit risus elit.</p>
-
- <p>Ut pretium. Vestibulum rutrum in, adipiscing elit. Sed in quam in purus sem vitae pede. Pellentesque bibendum, urna sem vel risus. Vivamus posuere metus. Aliquam gravida iaculis nisl. Nam enim. Aliquam erat ac lacus tellus ac felis.</p>
-
- <div style="border: 2px dashed green; background: #ddd; text-align: center;">
- <p>This text is wrapped in a <tt>DIV</tt> element. We can type after this element though.</p>
- </div>
-
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html b/web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html
deleted file mode 100644
index 6cf2ddf13..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/plugins/toolbar/toolbar.html
+++ /dev/null
@@ -1,232 +0,0 @@
-
-
-
-
-
- Toolbar Configuration — CKEditor Sample
-
-
-
-
-
-
-
-
-
-
- This sample page demonstrates editor with loaded full toolbar (all registered buttons) and, if
- current editor's configuration modifies default settings, also editor with modified toolbar .
-
-
-
Since CKEditor 4 there are two ways to configure toolbar buttons.
-
-
-
-
- You can explicitly define which buttons are displayed in which groups and in which order.
- This is the more precise setting, but less flexible. If newly added plugin adds its
- own button you'll have to add it manually to your config.toolbar
setting as well.
-
-
-
To add a CKEditor instance with custom toolbar setting, insert the following JavaScript call to your code:
-
-
-CKEDITOR.replace( 'textarea_id' , {
- toolbar: [
- { name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] }, // Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
- [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name.
- '/', // Line break - next group will be placed in new line.
- { name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
- ]
-});
-
-
-
-
- You can define which groups of buttons (like e.g. basicstyles
, clipboard
- and forms
) are displayed and in which order. Registered buttons are associated
- with toolbar groups by toolbar
property in their definition.
- This setting's advantage is that you don't have to modify toolbar configuration
- when adding/removing plugins which register their own buttons.
-
-
-
To add a CKEditor instance with custom toolbar groups setting, insert the following JavaScript call to your code:
-
-
-CKEDITOR.replace( 'textarea_id' , {
- toolbarGroups: [
- { name: 'document', groups: [ 'mode', 'document' ] }, // Displays document group with its two subgroups.
- { name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, // Group's name will be used to create voice label.
- '/', // Line break - next group will be placed in new line.
- { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
- { name: 'links' }
- ]
-
- // NOTE: Remember to leave 'toolbar' property with the default value (null).
-});
-
-
-
-
-
-
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html
deleted file mode 100644
index 174a25f35..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/plugins/wysiwygarea/fullpage.html
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
- Full Page Editing — CKEditor Sample
-
-
-
-
-
-
-
-
-
-
-
-
- This sample shows how to configure CKEditor to edit entire HTML pages, from the
- <html>
tag to the </html>
tag.
-
-
- The CKEditor instance below is inserted with a JavaScript call using the following code:
-
-
-CKEDITOR.replace( 'textarea_id ', {
- fullPage: true ,
- allowedContent: true
-});
-
-
- Note that textarea_id
in the code above is the id
attribute of
- the <textarea>
element to be replaced.
-
-
- The allowedContent
in the code above is set to true
to disable content filtering.
- Setting this option is not obligatory, but in full page mode there is a strong chance that one may want be able to freely enter any HTML content in source mode without any limitations.
-
-
-
-
- CKEditor output the entire page including content outside of
- <body>
element, so content like meta and title can be changed:
-
-
- <h1><img align="right" alt="Saturn V carrying Apollo 11" src="../../../samples/assets/sample.jpg"/> Apollo 11</h1> <p><b>Apollo 11</b> was the spaceflight that landed the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.</p> <p>Armstrong spent about <s>three and a half</s> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p> <h2>Broadcasting and <em>quotes</em> <a id="quotes" name="quotes"></a></h2> <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p> <blockquote><p>One small step for [a] man, one giant leap for mankind.</p></blockquote> <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> <blockquote><p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p></blockquote> <h2>Technical details <a id="tech-details" name="tech-details"></a></h2> <table align="right" border="1" bordercolor="#ccc" cellpadding="5" cellspacing="0" style="border-collapse:collapse;margin:10px 0 10px 15px;"> <caption><strong>Mission crew</strong></caption> <thead> <tr> <th scope="col">Position</th> <th scope="col">Astronaut</th> </tr> </thead> <tbody> <tr> <td>Commander</td> <td>Neil A. Armstrong</td> </tr> <tr> <td>Command Module Pilot</td> <td>Michael Collins</td> </tr> <tr> <td>Lunar Module Pilot</td> <td>Edwin "Buzz" E. Aldrin, Jr.</td> </tr> </tbody> </table> <p>Launched by a <strong>Saturn V</strong> rocket from <a href="http://en.wikipedia.org/wiki/Kennedy_Space_Center" title="Kennedy Space Center">Kennedy Space Center</a> in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of <a href="http://en.wikipedia.org/wiki/NASA" title="NASA">NASA</a>'s Apollo program. The Apollo spacecraft had three parts:</p> <ol> <li><strong>Command Module</strong> with a cabin for the three astronauts which was the only part which landed back on Earth</li> <li><strong>Service Module</strong> which supported the Command Module with propulsion, electrical power, oxygen and water</li> <li><strong>Lunar Module</strong> for landing on the Moon.</li> </ol> <p>After being sent to the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the <a href="http://en.wikipedia.org/wiki/Mare_Tranquillitatis" title="Mare Tranquillitatis">Sea of Tranquility</a>. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the <a href="http://en.wikipedia.org/wiki/Pacific_Ocean" title="Pacific Ocean">Pacific Ocean</a> on July 24.</p> <hr/> <p style="text-align: right;"><small>Source: <a href="http://en.wikipedia.org/wiki/Apollo_11">Wikipedia.org</a></small></p>
-
-
-
-
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/readonly.html b/web_ckeditor4/static/lib/ckeditor/samples/readonly.html
deleted file mode 100644
index 58f97069c..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/readonly.html
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
- Using the CKEditor Read-Only API — CKEditor Sample
-
-
-
-
-
-
- CKEditor Samples » Using the CKEditor Read-Only API
-
-
-
- This sample shows how to use the
- setReadOnly
- API to put editor into the read-only state that makes it impossible for users to change the editor contents.
-
-
- For details on how to create this setup check the source code of this sample page.
-
-
-
-
- <p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>
-
-
-
-
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html b/web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html
deleted file mode 100644
index 6fc3e6fed..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/replacebyclass.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-
-
- Replace Textareas by Class Name — CKEditor Sample
-
-
-
-
-
- CKEditor Samples » Replace Textarea Elements by Class Name
-
-
-
- This sample shows how to automatically replace all <textarea>
elements
- of a given class with a CKEditor instance.
-
-
- To replace a <textarea>
element, simply assign it the ckeditor
- class, as in the code below:
-
-
-<textarea class="ckeditor " name="editor1"></textarea>
-
-
- Note that other <textarea>
attributes (like id
or name
) need to be adjusted to your document.
-
-
-
-
-
- Editor 1:
-
-
- <h1><img alt="Saturn V carrying Apollo 11" class="right" src="assets/sample.jpg"/> Apollo 11</h1> <p><b>Apollo 11</b> was the spaceflight that landed the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.</p> <p>Armstrong spent about <s>three and a half</s> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p> <h2>Broadcasting and <em>quotes</em> <a id="quotes" name="quotes"></a></h2> <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p> <blockquote><p>One small step for [a] man, one giant leap for mankind.</p></blockquote> <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> <blockquote><p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p></blockquote> <h2>Technical details <a id="tech-details" name="tech-details"></a></h2> <table align="right" border="1" bordercolor="#ccc" cellpadding="5" cellspacing="0" style="border-collapse:collapse;margin:10px 0 10px 15px;"> <caption><strong>Mission crew</strong></caption> <thead> <tr> <th scope="col">Position</th> <th scope="col">Astronaut</th> </tr> </thead> <tbody> <tr> <td>Commander</td> <td>Neil A. Armstrong</td> </tr> <tr> <td>Command Module Pilot</td> <td>Michael Collins</td> </tr> <tr> <td>Lunar Module Pilot</td> <td>Edwin "Buzz" E. Aldrin, Jr.</td> </tr> </tbody> </table> <p>Launched by a <strong>Saturn V</strong> rocket from <a href="http://en.wikipedia.org/wiki/Kennedy_Space_Center" title="Kennedy Space Center">Kennedy Space Center</a> in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of <a href="http://en.wikipedia.org/wiki/NASA" title="NASA">NASA</a>'s Apollo program. The Apollo spacecraft had three parts:</p> <ol> <li><strong>Command Module</strong> with a cabin for the three astronauts which was the only part which landed back on Earth</li> <li><strong>Service Module</strong> which supported the Command Module with propulsion, electrical power, oxygen and water</li> <li><strong>Lunar Module</strong> for landing on the Moon.</li> </ol> <p>After being sent to the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the <a href="http://en.wikipedia.org/wiki/Mare_Tranquillitatis" title="Mare Tranquillitatis">Sea of Tranquility</a>. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the <a href="http://en.wikipedia.org/wiki/Pacific_Ocean" title="Pacific Ocean">Pacific Ocean</a> on July 24.</p> <hr/> <p style="text-align: right;"><small>Source: <a href="http://en.wikipedia.org/wiki/Apollo_11">Wikipedia.org</a></small></p>
-
-
-
-
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html b/web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html
deleted file mode 100644
index e5a4c5baf..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/replacebycode.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
- Replace Textarea by Code — CKEditor Sample
-
-
-
-
-
- CKEditor Samples » Replace Textarea Elements Using JavaScript Code
-
-
-
-
- This editor is using an <iframe>
element-based editing area, provided by the Wysiwygarea plugin.
-
-
-CKEDITOR.replace( 'textarea_id ' )
-
-
-
- <h1><img alt="Saturn V carrying Apollo 11" class="right" src="assets/sample.jpg"/> Apollo 11</h1> <p><b>Apollo 11</b> was the spaceflight that landed the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.</p> <p>Armstrong spent about <s>three and a half</s> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. A third member of the mission, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.</p> <h2>Broadcasting and <em>quotes</em> <a id="quotes" name="quotes"></a></h2> <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p> <blockquote><p>One small step for [a] man, one giant leap for mankind.</p></blockquote> <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> <blockquote><p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p></blockquote> <h2>Technical details <a id="tech-details" name="tech-details"></a></h2> <table align="right" border="1" bordercolor="#ccc" cellpadding="5" cellspacing="0" style="border-collapse:collapse;margin:10px 0 10px 15px;"> <caption><strong>Mission crew</strong></caption> <thead> <tr> <th scope="col">Position</th> <th scope="col">Astronaut</th> </tr> </thead> <tbody> <tr> <td>Commander</td> <td>Neil A. Armstrong</td> </tr> <tr> <td>Command Module Pilot</td> <td>Michael Collins</td> </tr> <tr> <td>Lunar Module Pilot</td> <td>Edwin "Buzz" E. Aldrin, Jr.</td> </tr> </tbody> </table> <p>Launched by a <strong>Saturn V</strong> rocket from <a href="http://en.wikipedia.org/wiki/Kennedy_Space_Center" title="Kennedy Space Center">Kennedy Space Center</a> in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of <a href="http://en.wikipedia.org/wiki/NASA" title="NASA">NASA</a>'s Apollo program. The Apollo spacecraft had three parts:</p> <ol> <li><strong>Command Module</strong> with a cabin for the three astronauts which was the only part which landed back on Earth</li> <li><strong>Service Module</strong> which supported the Command Module with propulsion, electrical power, oxygen and water</li> <li><strong>Lunar Module</strong> for landing on the Moon.</li> </ol> <p>After being sent to the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the <a href="http://en.wikipedia.org/wiki/Mare_Tranquillitatis" title="Mare Tranquillitatis">Sea of Tranquility</a>. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the <a href="http://en.wikipedia.org/wiki/Pacific_Ocean" title="Pacific Ocean">Pacific Ocean</a> on July 24.</p> <hr/> <p style="text-align: right;"><small>Source: <a href="http://en.wikipedia.org/wiki/Apollo_11">Wikipedia.org</a></small></p>
-
-
-
-
-
-
-
-
-
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/sample.css b/web_ckeditor4/static/lib/ckeditor/samples/sample.css
deleted file mode 100644
index 8fd71aaac..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/sample.css
+++ /dev/null
@@ -1,365 +0,0 @@
-/*
-Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
-For licensing, see LICENSE.md 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.5;
-}
-
-body
-{
- padding: 10px 30px;
-}
-
-input, textarea, select, option, optgroup, button, td, th
-{
- font-size: 100%;
-}
-
-pre
-{
- -moz-tab-size: 4;
- -o-tab-size: 4;
- -webkit-tab-size: 4;
- tab-size: 4;
-}
-
-pre, code, kbd, samp, tt
-{
- font-family: monospace,monospace;
- font-size: 1em;
-}
-
-body {
- width: 960px;
- margin: 0 auto;
-}
-
-code
-{
- background: #f3f3f3;
- border: 1px solid #ddd;
- padding: 1px 4px;
-
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-abbr
-{
- border-bottom: 1px dotted #555;
- cursor: pointer;
-}
-
-.new, .beta
-{
- text-transform: uppercase;
- font-size: 10px;
- font-weight: bold;
- padding: 1px 4px;
- margin: 0 0 0 5px;
- color: #fff;
- float: right;
-
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.new
-{
- background: #FF7E00;
- border: 1px solid #DA8028;
- text-shadow: 0 1px 0 #C97626;
-
- -moz-box-shadow: 0 2px 3px 0 #FFA54E inset;
- -webkit-box-shadow: 0 2px 3px 0 #FFA54E inset;
- box-shadow: 0 2px 3px 0 #FFA54E inset;
-}
-
-.beta
-{
- background: #18C0DF;
- border: 1px solid #19AAD8;
- text-shadow: 0 1px 0 #048CAD;
- font-style: italic;
-
- -moz-box-shadow: 0 2px 3px 0 #50D4FD inset;
- -webkit-box-shadow: 0 2px 3px 0 #50D4FD inset;
- box-shadow: 0 2px 3px 0 #50D4FD inset;
-}
-
-h1.samples
-{
- color: #0782C1;
- font-size: 200%;
- font-weight: normal;
- margin: 0;
- padding: 0;
-}
-
-h1.samples a
-{
- color: #0782C1;
- text-decoration: none;
- border-bottom: 1px dotted #0782C1;
-}
-
-.samples a:hover
-{
- border-bottom: 1px dotted #0782C1;
-}
-
-h2.samples
-{
- color: #000000;
- font-size: 130%;
- margin: 15px 0 0 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;
-}
-
-form
-{
- margin: 0;
- padding: 0;
-}
-
-pre.samples
-{
- background-color: #F7F7F7;
- border: 1px solid #D7D7D7;
- overflow: auto;
- padding: 0.25em;
- white-space: pre-wrap; /* CSS 2.1 */
- word-wrap: break-word; /* IE7 */
-}
-
-#footer
-{
- clear: both;
- padding-top: 10px;
-}
-
-#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;
-}
-
-.description
-{
- border: 1px dotted #B7B7B7;
- margin-bottom: 10px;
- padding: 10px 10px 0;
- overflow: hidden;
-}
-
-label
-{
- display: block;
- margin-bottom: 6px;
-}
-
-/**
- * CKEditor editables are automatically set with the "cke_editable" class
- * plus cke_editable_(inline|themed) depending on the editor type.
- */
-
-/* Style a bit the inline editables. */
-.cke_editable.cke_editable_inline
-{
- cursor: pointer;
-}
-
-/* Once an editable element gets focused, the "cke_focus" class is
- added to it, so we can style it differently. */
-.cke_editable.cke_editable_inline.cke_focus
-{
- box-shadow: inset 0px 0px 20px 3px #ddd, inset 0 0 1px #000;
- outline: none;
- background: #eee;
- cursor: text;
-}
-
-/* Avoid pre-formatted overflows inline editable. */
-.cke_editable_inline pre
-{
- white-space: pre-wrap;
- word-wrap: break-word;
-}
-
-/**
- * Samples index styles.
- */
-
-.twoColumns,
-.twoColumnsLeft,
-.twoColumnsRight
-{
- overflow: hidden;
-}
-
-.twoColumnsLeft,
-.twoColumnsRight
-{
- width: 45%;
-}
-
-.twoColumnsLeft
-{
- float: left;
-}
-
-.twoColumnsRight
-{
- float: right;
-}
-
-dl.samples
-{
- padding: 0 0 0 40px;
-}
-dl.samples > dt
-{
- display: list-item;
- list-style-type: disc;
- list-style-position: outside;
- margin: 0 0 3px;
-}
-dl.samples > dd
-{
- margin: 0 0 3px;
-}
-.warning
-{
- color: #ff0000;
- background-color: #FFCCBA;
- border: 2px dotted #ff0000;
- padding: 15px 10px;
- margin: 10px 0;
-}
-
-/* Used on inline samples */
-
-blockquote
-{
- font-style: italic;
- font-family: Georgia, Times, "Times New Roman", serif;
- padding: 2px 0;
- border-style: solid;
- border-color: #ccc;
- border-width: 0;
-}
-
-.cke_contents_ltr blockquote
-{
- padding-left: 20px;
- padding-right: 8px;
- border-left-width: 5px;
-}
-
-.cke_contents_rtl blockquote
-{
- padding-left: 8px;
- padding-right: 20px;
- border-right-width: 5px;
-}
-
-img.right {
- border: 1px solid #ccc;
- float: right;
- margin-left: 15px;
- padding: 5px;
-}
-
-img.left {
- border: 1px solid #ccc;
- float: left;
- margin-right: 15px;
- padding: 5px;
-}
-
-.marker
-{
- background-color: Yellow;
-}
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/sample.js b/web_ckeditor4/static/lib/ckeditor/samples/sample.js
deleted file mode 100644
index b25482d3a..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/sample.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
- * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or http://ckeditor.com/license
- */
-
-// Tool scripts for the sample pages.
-// This file can be ignored and is not required to make use of CKEditor.
-
-( function() {
- CKEDITOR.on( 'instanceReady', function( ev ) {
- // Check for sample compliance.
- var editor = ev.editor,
- meta = CKEDITOR.document.$.getElementsByName( 'ckeditor-sample-required-plugins' ),
- requires = meta.length ? CKEDITOR.dom.element.get( meta[ 0 ] ).getAttribute( 'content' ).split( ',' ) : [],
- missing = [],
- i;
-
- if ( requires.length ) {
- for ( i = 0; i < requires.length; i++ ) {
- if ( !editor.plugins[ requires[ i ] ] )
- missing.push( '' + requires[ i ] + '
' );
- }
-
- if ( missing.length ) {
- var warn = CKEDITOR.dom.element.createFromHtml(
- '' +
- 'To fully experience this demo, the ' + missing.join( ', ' ) + ' plugin' + ( missing.length > 1 ? 's are' : ' is' ) + ' required. ' +
- '
'
- );
- warn.insertBefore( editor.container );
- }
- }
-
- // Set icons.
- var doc = new CKEDITOR.dom.document( document ),
- icons = doc.find( '.button_icon' );
-
- for ( i = 0; i < icons.count(); i++ ) {
- var icon = icons.getItem( i ),
- name = icon.getAttribute( 'data-icon' ),
- style = CKEDITOR.skin.getIconStyle( name, ( CKEDITOR.lang.dir == 'rtl' ) );
-
- icon.addClass( 'cke_button_icon' );
- icon.addClass( 'cke_button__' + name + '_icon' );
- icon.setAttribute( 'style', style );
- icon.setStyle( 'float', 'none' );
-
- }
- } );
-} )();
diff --git a/web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php b/web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php
deleted file mode 100644
index e4869b7cd..000000000
--- a/web_ckeditor4/static/lib/ckeditor/samples/sample_posteddata.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
--------------------------------------------------------------------------------------------
- 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 the database.
-
- Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
- For licensing, see LICENSE.md or http://ckeditor.com/license
--------------------------------------------------------------------------------------------
-
-