Ticket #1593: 1593_3.2.patch
File 1593_3.2.patch, 3.9 KB (added by , 15 years ago) |
---|
-
_samples/asp/sampleposteddata.asp
28 28 <title>FCKeditor - Samples - Posted Data</title> 29 29 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 30 30 <meta name="robots" content="noindex, nofollow"> 31 <link href="../sample.css" rel="stylesheet" type="text/css" />31 <link href="../sample.css" rel="stylesheet" type="text/css" > 32 32 </head> 33 33 <body> 34 34 <h1>FCKeditor - Samples - Posted Data</h1> 35 35 This page lists all data posted by the form. 36 36 <hr> 37 <table width="100%" border="1" cellspacing="0" bordercolor="#999999"> 38 <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999"> 39 <td noWrap>Field Name </td> 40 <td>Value</td> 41 </tr> 37 <table width="100%" border="1" cellspacing="0"> 38 <thead> 39 <tr> 40 <th>Field Name</th> 41 <th>Value</th> 42 </tr> 43 </thead> 42 44 <% 43 45 Dim sForm 44 46 For Each sForm in Request.Form 45 47 %> 46 48 <tr> 47 <t d valign="top" nowrap><b><%=sForm%></b></td>48 <td width="100%" style="white-space:pre"><%=Server.HTMLEncode( Request.Form(sForm) )%></td>49 <th><%=sForm%></th> 50 <td><%=Server.HTMLEncode( Request.Form(sForm) )%></td> 49 51 </tr> 50 52 <% Next %> 51 53 </table> -
_samples/php/sampleposteddata.php
28 28 <title>FCKeditor - Samples - Posted Data</title> 29 29 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 30 30 <meta name="robots" content="noindex, nofollow"> 31 <link href="../sample.css" rel="stylesheet" type="text/css" />31 <link href="../sample.css" rel="stylesheet" type="text/css" > 32 32 </head> 33 33 <body> 34 34 <h1>FCKeditor - Samples - Posted Data</h1> 35 35 This page lists all data posted by the form. 36 36 <hr> 37 <table width="100%" border="1" cellspacing="0" bordercolor="#999999"> 38 <tr style="FONT-WEIGHT: bold; COLOR: #dddddd; BACKGROUND-COLOR: #999999"> 39 <td nowrap>Field Name </td> 40 <td>Value</td> 41 </tr> 37 <table width="100%" border="1" cellspacing="0"> 38 <thead> 39 <tr> 40 <th>Field Name</th> 41 <th>Value</th> 42 </tr> 43 </thead> 42 44 <?php 43 45 44 46 if ( isset( $_POST ) ) … … 55 57 56 58 ?> 57 59 <tr> 58 <t d valign="top" nowrap><b><?=$sForm?></b></td>59 <td width="100%" style="white-space:pre"><?=$postedValue?></td>60 <th><?php echo $sForm?></th> 61 <td><?php echo $postedValue?></td> 60 62 </tr> 61 63 <?php 62 64 } -
_samples/sample.css
21 21 * Styles used in the samples pages. 22 22 */ 23 23 24 body, td, input, select, textarea24 body, td, th, input, select, textarea 25 25 { 26 26 font-size: 12px; 27 27 font-family: Arial, Verdana, Sans-Serif; … … 48 48 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ 49 49 word-wrap: break-word; /* Internet Explorer 5.5+ */ 50 50 } 51 52 thead th { 53 color: #dddddd; 54 background-color: #999999; 55 padding: 4px; 56 white-space: nowrap; 57 } 58 No newline at end of file -
_whatsnew.html
88 88 paragraphs in the output.</li> 89 89 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2184">#2184</a>] Fixed several validation 90 90 errors in the File Browser.</li> 91 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1593">#1593</a>] Samplepostdata in html, php 92 and asp examples will now properly wrap the text.</li> 91 93 </ul> 92 94 <h3> 93 95 Version 2.6</h3>