server/php/basic/public_html/static/lib/ckeditor/samples/replacebyclass.html
author ymh <ymh.work@gmail.com>
Fri, 19 Jun 2015 13:35:23 +0200
changeset 489 7f25a4453865
permissions -rw-r--r--
update renkan server deploiement
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
489
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<!DOCTYPE html>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<!--
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
For licensing, see LICENSE.md or http://ckeditor.com/license
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
-->
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
<html>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
<head>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
	<meta charset="utf-8">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
	<title>Replace Textareas by Class Name &mdash; CKEditor Sample</title>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
	<script src="../ckeditor.js"></script>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
	<link rel="stylesheet" href="sample.css">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
</head>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
<body>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
	<h1 class="samples">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
		<a href="index.html">CKEditor Samples</a> &raquo; Replace Textarea Elements by Class Name
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
	</h1>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
	<div class="description">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
		<p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
			This sample shows how to automatically replace all <code>&lt;textarea&gt;</code> elements
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
			of a given class with a CKEditor instance.
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
		<p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
			To replace a <code>&lt;textarea&gt;</code> element, simply assign it the <code>ckeditor</code>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
			class, as in the code below:
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
<pre class="samples">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
&lt;textarea <strong>class="ckeditor</strong>" name="editor1"&gt;&lt;/textarea&gt;
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
</pre>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
		<p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
			Note that other <code>&lt;textarea&gt;</code> attributes (like <code>id</code> or <code>name</code>) need to be adjusted to your document.
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
	</div>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
	<form action="sample_posteddata.php" method="post">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
		<p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    35
			<label for="editor1">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
				Editor 1:
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
			</label>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
			<textarea class="ckeditor" cols="80" id="editor1" name="editor1" rows="10">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
				&lt;h1&gt;&lt;img alt=&quot;Saturn V carrying Apollo 11&quot; class=&quot;right&quot; src=&quot;assets/sample.jpg&quot;/&gt; Apollo 11&lt;/h1&gt; &lt;p&gt;&lt;b&gt;Apollo 11&lt;/b&gt; was the spaceflight that landed the first humans, Americans &lt;a href=&quot;http://en.wikipedia.org/wiki/Neil_Armstrong&quot; title=&quot;Neil Armstrong&quot;&gt;Neil Armstrong&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/Buzz_Aldrin&quot; title=&quot;Buzz Aldrin&quot;&gt;Buzz Aldrin&lt;/a&gt;, 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.&lt;/p&gt; &lt;p&gt;Armstrong spent about &lt;s&gt;three and a half&lt;/s&gt; two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5&amp;nbsp;kg) of lunar material for return to Earth. A third member of the mission, &lt;a href=&quot;http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)&quot; title=&quot;Michael Collins (astronaut)&quot;&gt;Michael Collins&lt;/a&gt;, piloted the &lt;a href=&quot;http://en.wikipedia.org/wiki/Apollo_Command/Service_Module&quot; title=&quot;Apollo Command/Service Module&quot;&gt;command&lt;/a&gt; spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.&lt;/p&gt; &lt;h2&gt;Broadcasting and &lt;em&gt;quotes&lt;/em&gt; &lt;a id=&quot;quotes&quot; name=&quot;quotes&quot;&gt;&lt;/a&gt;&lt;/h2&gt; &lt;p&gt;Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;One small step for [a] man, one giant leap for mankind.&lt;/p&gt;&lt;/blockquote&gt; &lt;p&gt;Apollo 11 effectively ended the &lt;a href=&quot;http://en.wikipedia.org/wiki/Space_Race&quot; title=&quot;Space Race&quot;&gt;Space Race&lt;/a&gt; and fulfilled a national goal proposed in 1961 by the late U.S. President &lt;a href=&quot;http://en.wikipedia.org/wiki/John_F._Kennedy&quot; title=&quot;John F. Kennedy&quot;&gt;John F. Kennedy&lt;/a&gt; in a speech before the United States Congress:&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.&lt;/p&gt;&lt;/blockquote&gt; &lt;h2&gt;Technical details &lt;a id=&quot;tech-details&quot; name=&quot;tech-details&quot;&gt;&lt;/a&gt;&lt;/h2&gt; &lt;table align=&quot;right&quot; border=&quot;1&quot; bordercolor=&quot;#ccc&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse:collapse;margin:10px 0 10px 15px;&quot;&gt; &lt;caption&gt;&lt;strong&gt;Mission crew&lt;/strong&gt;&lt;/caption&gt; &lt;thead&gt; &lt;tr&gt; &lt;th scope=&quot;col&quot;&gt;Position&lt;/th&gt; &lt;th scope=&quot;col&quot;&gt;Astronaut&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;Commander&lt;/td&gt; &lt;td&gt;Neil A. Armstrong&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Command Module Pilot&lt;/td&gt; &lt;td&gt;Michael Collins&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Lunar Module Pilot&lt;/td&gt; &lt;td&gt;Edwin &amp;quot;Buzz&amp;quot; E. Aldrin, Jr.&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;p&gt;Launched by a &lt;strong&gt;Saturn V&lt;/strong&gt; rocket from &lt;a href=&quot;http://en.wikipedia.org/wiki/Kennedy_Space_Center&quot; title=&quot;Kennedy Space Center&quot;&gt;Kennedy Space Center&lt;/a&gt; in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of &lt;a href=&quot;http://en.wikipedia.org/wiki/NASA&quot; title=&quot;NASA&quot;&gt;NASA&lt;/a&gt;&amp;#39;s Apollo program. The Apollo spacecraft had three parts:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;&lt;strong&gt;Command Module&lt;/strong&gt; with a cabin for the three astronauts which was the only part which landed back on Earth&lt;/li&gt; &lt;li&gt;&lt;strong&gt;Service Module&lt;/strong&gt; which supported the Command Module with propulsion, electrical power, oxygen and water&lt;/li&gt; &lt;li&gt;&lt;strong&gt;Lunar Module&lt;/strong&gt; for landing on the Moon.&lt;/li&gt; &lt;/ol&gt; &lt;p&gt;After being sent to the Moon by the Saturn V&amp;#39;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 &lt;a href=&quot;http://en.wikipedia.org/wiki/Mare_Tranquillitatis&quot; title=&quot;Mare Tranquillitatis&quot;&gt;Sea of Tranquility&lt;/a&gt;. 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 &lt;a href=&quot;http://en.wikipedia.org/wiki/Pacific_Ocean&quot; title=&quot;Pacific Ocean&quot;&gt;Pacific Ocean&lt;/a&gt; on July 24.&lt;/p&gt; &lt;hr/&gt; &lt;p style=&quot;text-align: right;&quot;&gt;&lt;small&gt;Source: &lt;a href=&quot;http://en.wikipedia.org/wiki/Apollo_11&quot;&gt;Wikipedia.org&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
			</textarea>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
		<p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
			<input type="submit" value="Submit">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
	</form>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
	<div id="footer">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
		<hr>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
		<p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
			CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    51
		<p id="copy">
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
			Copyright &copy; 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
			Knabben. All rights reserved.
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
		</p>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
	</div>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
</body>
7f25a4453865 update renkan server deploiement
ymh <ymh.work@gmail.com>
parents:
diff changeset
    57
</html>