Ticket #6994: 6994.patch
File 6994.patch, 14.4 KB (added by , 12 years ago) |
---|
-
_samples/asp/advanced.asp
38 38 <legend>Output</legend> 39 39 <form action="sample_posteddata.asp" method="post"> 40 40 <p> 41 <label >Editor 1:</label><br/>41 <label class="sampleLabel">Editor 1:</label><br/> 42 42 </p> 43 43 <% 44 44 ' Create class instance. … … 71 71 response.write code 72 72 %> 73 73 <p> 74 <label >Editor 2:</label><br/>74 <label class="sampleLabel">Editor 2:</label><br/> 75 75 </p> 76 76 <% 77 77 ' Configuration that will be used only by the second editor. -
_samples/asp/events.asp
38 38 <legend>Output</legend> 39 39 <form action="sample_posteddata.asp" method="post"> 40 40 <p> 41 <label >Editor 1:</label><br/>41 <label class="sampleLabel">Editor 1:</label><br/> 42 42 </p> 43 43 <% 44 44 … … 100 100 editor.clearEventHandlers empty 101 101 %> 102 102 <p> 103 <label >Editor 2:</label><br/>103 <label class="sampleLabel">Editor 2:</label><br/> 104 104 </p> 105 105 <% 106 106 ' Configuration that will be used only by the second editor. -
_samples/asp/replace.asp
38 38 <legend>Output</legend> 39 39 <form action="sample_posteddata.asp" method="post"> 40 40 <p> 41 <label for="editor1" >41 <label for="editor1" class="sampleLabel"> 42 42 Editor 1:</label><br/> 43 43 <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> 44 44 </p> -
_samples/asp/replaceall.asp
38 38 <legend>Output</legend> 39 39 <form action="sample_posteddata.asp" method="post"> 40 40 <p> 41 <label for="editor1" >41 <label for="editor1" class="sampleLabel"> 42 42 Editor 1:</label><br/> 43 43 <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> 44 44 </p> 45 45 <p> 46 <label for="editor2" >46 <label for="editor2" class="sampleLabel"> 47 47 Editor 2:</label><br/> 48 48 <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> 49 49 </p> -
_samples/autogrow.html
61 61 </div> 62 62 <form action="sample_posteddata.php" method="post"> 63 63 <p> 64 <label for="editor1" >64 <label for="editor1" class="sampleLabel"> 65 65 CKEditor using the <strong>autogrow</strong> plugin with its default configuration:</label> 66 66 <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> 67 67 <script type="text/javascript"> … … 75 75 </script> 76 76 </p> 77 77 <p> 78 <label for="editor2" >78 <label for="editor2" class="sampleLabel"> 79 79 CKEditor using the <strong>autogrow</strong> plugin with maximum height set to 400:</label> 80 80 <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> 81 81 <script type="text/javascript"> -
_samples/fullpage.html
48 48 </noscript> 49 49 </div> 50 50 <form action="sample_posteddata.php" method="post"> 51 <label for="editor1" >51 <label for="editor1" class="sampleLabel"> 52 52 Editor 1:</label> 53 53 <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> 54 54 <script type="text/javascript"> -
_samples/jqueryadapter.html
82 82 pages. --> 83 83 <form action="sample_posteddata.php" method="post"> 84 84 <p> 85 <label for="editor1" >85 <label for="editor1" class="sampleLabel"> 86 86 Editor 1:</label> 87 87 <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> 88 88 </p> -
_samples/output_html.html
62 62 </div> 63 63 <form action="sample_posteddata.php" method="post"> 64 64 <p> 65 <label for="editor1" >65 <label for="editor1" class="sampleLabel"> 66 66 Editor 1:</label> 67 67 <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> 68 68 <script type="text/javascript"> -
_samples/output_xhtml.html
57 57 </div> 58 58 <form action="sample_posteddata.php" method="post"> 59 59 <p> 60 <label for="editor1" >60 <label for="editor1" class="sampleLabel"> 61 61 Editor 1:</label> 62 62 <textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <span class="Bold">sample text</span>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea> 63 63 <script type="text/javascript"> -
_samples/php/advanced.php
58 58 </noscript> 59 59 </div> 60 60 <form action="../sample_posteddata.php" method="post"> 61 <label >Editor 1:</label>61 <label class="sampleLabel">Editor 1:</label> 62 62 <?php 63 63 // Include the CKEditor class. 64 64 include("../../ckeditor.php"); … … 89 89 echo $code; 90 90 ?> 91 91 <br /> 92 <label >Editor 2:</label>92 <label class="sampleLabel">Editor 2:</label> 93 93 <?php 94 94 // Configuration that will only be used by the second editor. 95 95 $config['toolbar'] = array( -
_samples/php/events.php
54 54 </noscript> 55 55 </div> 56 56 <form action="../sample_posteddata.php" method="post"> 57 <label >Editor 1:</label>57 <label class="sampleLabel">Editor 1:</label> 58 58 <?php 59 59 60 60 /** … … 116 116 $CKEditor->clearEventHandlers(); 117 117 ?> 118 118 <br /> 119 <label >Editor 2:</label>119 <label class="sampleLabel">Editor 2:</label> 120 120 <?php 121 121 // Configuration that will only be used by the second editor. 122 122 $config['width'] = '600'; -
_samples/php/replace.php
53 53 </div> 54 54 <form action="../sample_posteddata.php" method="post"> 55 55 <p> 56 <label for="editor1" >56 <label for="editor1" class="sampleLabel"> 57 57 Editor 1:</label> 58 58 <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> 59 59 </p> -
_samples/php/replaceall.php
49 49 </div> 50 50 <form action="../sample_posteddata.php" method="post"> 51 51 <p> 52 <label for="editor1" >52 <label for="editor1" class="sampleLabel"> 53 53 Editor 1:</label> 54 54 <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> 55 55 </p> 56 56 <p> 57 <label for="editor2" >57 <label for="editor2" class="sampleLabel"> 58 58 Editor 2:</label> 59 59 <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> 60 60 </p> -
_samples/php/standalone.php
48 48 <!-- This <fieldset> holds the HTML code that you will usually find in your pages. --> 49 49 <form action="../sample_posteddata.php" method="post"> 50 50 <p> 51 <label for="editor1" >51 <label for="editor1" class="sampleLabel"> 52 52 Editor 1:</label> 53 53 </p> 54 54 <p> -
_samples/placeholder.html
53 53 </div> 54 54 <form action="sample_posteddata.php" method="post"> 55 55 <p> 56 <label for="editor1" >56 <label for="editor1" class="sampleLabel"> 57 57 CKEditor using the <strong>placeholder</strong> plugin with its default configuration:</label> 58 58 <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> 59 59 <script type="text/javascript"> -
_samples/replacebyclass.html
46 46 </div> 47 47 <form action="sample_posteddata.php" method="post"> 48 48 <p> 49 <label for="editor1" >49 <label for="editor1" class="sampleLabel"> 50 50 Editor 1:</label> 51 51 <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> 52 52 </p> -
_samples/replacebycode.html
48 48 </div> 49 49 <form action="sample_posteddata.php" method="post"> 50 50 <p> 51 <label for="editor1" >51 <label for="editor1" class="sampleLabel"> 52 52 Editor 1:</label> 53 53 <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> 54 54 <script type="text/javascript"> … … 66 66 </script> 67 67 </p> 68 68 <p> 69 <label for="editor2" >69 <label for="editor2" class="sampleLabel"> 70 70 Editor 2:</label> 71 71 <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> 72 72 <script type="text/javascript"> -
_samples/sample.css
173 173 padding: 10px 10px 0; 174 174 } 175 175 176 label {176 .sampleLabel { 177 177 display: block; 178 178 margin-bottom:6px; 179 179 } -
_samples/sharedspaces.html
67 67 </div> 68 68 <form action="sample_posteddata.php" id="editorsForm" method="post"> 69 69 <p> 70 <label for="editor1" >70 <label for="editor1" class="sampleLabel"> 71 71 Editor 1 (uses the shared toolbar and elements path):</label> 72 72 <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> 73 73 </p> 74 74 <p> 75 <label for="editor2" >75 <label for="editor2" class="sampleLabel"> 76 76 Editor 2 (uses the shared toolbar and elements path):</label> 77 77 <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> 78 78 </p> 79 79 <p> 80 <label for="editor3" >80 <label for="editor3" class="sampleLabel"> 81 81 Editor 3 (uses the shared toolbar only):</label> 82 82 <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> 83 83 </p> 84 84 <p> 85 <label for="editor4" >85 <label for="editor4" class="sampleLabel"> 86 86 Editor 4 (no shared spaces):</label> 87 87 <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> 88 88 </p>