INSTALL.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <!--
  3. Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
  4. For licensing, see LICENSE.html or http://ckeditor.com/license
  5. -->
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <title>Installation Guide - CKEditor</title>
  9. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  10. <style type="text/css">
  11. h3
  12. {
  13. border-bottom: 1px solid #AAAAAA;
  14. }
  15. pre
  16. {
  17. background-color: #F9F9F9;
  18. border: 1px dashed #2F6FAB;
  19. padding: 1em;
  20. line-height: 1.1em;
  21. }
  22. #footer hr
  23. {
  24. margin: 10px 0 15px 0;
  25. height: 1px;
  26. border: solid 1px gray;
  27. border-bottom: none;
  28. }
  29. #footer p
  30. {
  31. margin: 0 10px 10px 10px;
  32. float: left;
  33. }
  34. #footer #copy
  35. {
  36. float: right;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <h1>
  42. CKEditor Installation Guide</h1>
  43. <h3>
  44. What&#39;s CKEditor?</h3>
  45. <p>
  46. CKEditor is a text editor to be used inside web pages. It&#39;s not a replacement
  47. for desktop text editors like Word or OpenOffice, but a component to be used as
  48. part of web applications and web sites.</p>
  49. <h3>
  50. Installation</h3>
  51. <p>
  52. Installing CKEditor is an easy task. Just follow these simple steps:</p>
  53. <ol>
  54. <li><strong>Download</strong> the latest version of the editor from our web site: <a
  55. href="http://ckeditor.com">http://ckeditor.com</a>. You should have already completed
  56. this step, but be sure you have the very latest version.</li>
  57. <li><strong>Extract</strong> (decompress) the downloaded file into the root of your
  58. web site.</li>
  59. </ol>
  60. <p>
  61. <strong>Note:</strong> CKEditor is by default installed in the &quot;ckeditor&quot;
  62. folder. You can place the files in whichever you want though.</p>
  63. <h3>
  64. Checking Your Installation
  65. </h3>
  66. <p>
  67. The editor comes with a few sample pages that can be used to verify that installation
  68. proceeded properly. Take a look at the <a href="_samples">_samples</a> directory.</p>
  69. <p>
  70. To test your installation, just call the following page at your web site:</p>
  71. <pre>
  72. http://&lt;your site&gt;/&lt;CKEditor installation path&gt;/_samples/index.html
  73. For example:
  74. http://www.example.com/ckeditor/_samples/index.html</pre>
  75. <h3>
  76. Documentation</h3>
  77. <p>
  78. The full editor documentation is available online at the following address:<br />
  79. <a href="http://docs.cksource.com/ckeditor">http://docs.cksource.com/ckeditor</a></p>
  80. <div id="footer">
  81. <hr />
  82. <p>
  83. CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
  84. </p>
  85. <p id="copy">
  86. Copyright &copy; 2003-2011, <a href="http://cksource.com/">CKSource</a> - Frederico
  87. Knabben. All rights reserved.
  88. </p>
  89. </div>
  90. </body>
  91. </html>