Changeset 884
- Timestamp:
- 09/26/07 22:51:53 (6 years ago)
- Location:
- FCKeditor/trunk/_samples
- Files:
-
- 7 edited
-
asp/sampleposteddata.asp (modified) (1 diff)
-
cfm/sampleposteddata.cfm (modified) (1 diff)
-
html/sampleposteddata.asp (modified) (1 diff)
-
lasso/sampleposteddata.lasso (modified) (1 diff)
-
perl/sampleposteddata.cgi (modified) (1 diff)
-
php/sampleposteddata.php (modified) (1 diff)
-
py/sampleposteddata.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_samples/asp/sampleposteddata.asp
r132 r884 46 46 <tr> 47 47 <td valign="top" nowrap><b><%=sForm%></b></td> 48 <td width="100%" ><%=Server.HTMLEncode( Request.Form(sForm) )%></td>48 <td width="100%" style="white-space:pre"><%=Server.HTMLEncode( Request.Form(sForm) )%></td> 49 49 </tr> 50 50 <% Next %> -
FCKeditor/trunk/_samples/cfm/sampleposteddata.cfm
r697 r884 55 55 <tr> 56 56 <td valign="top" bgcolor="lightskyblue">#key#</td> 57 <td >#HTMLEditFormat( evaluate( "FORM.#key#" ) )#</td>57 <td style="white-space:pre">#HTMLEditFormat( evaluate( "FORM.#key#" ) )#</td> 58 58 </tr> 59 59 </cfloop> -
FCKeditor/trunk/_samples/html/sampleposteddata.asp
r132 r884 66 66 Function ModifyForOutput( value ) 67 67 68 ModifyForOutput = Server.HTMLEncode( Request.Form(sForm))68 ModifyForOutput = Server.HTMLEncode( value ) 69 69 70 70 End Function -
FCKeditor/trunk/_samples/lasso/sampleposteddata.lasso
r132 r884 43 43 <tr> 44 44 <td valign="top" nowrap><b>[#this->first]</b></td> 45 <td width="100%" >[#this->second]</td>45 <td width="100%" style="white-space:pre">[#this->second]</td> 46 46 </tr> 47 47 [/iterate] -
FCKeditor/trunk/_samples/perl/sampleposteddata.cgi
r132 r884 95 95 <tr> 96 96 <td valign="top" nowrap><b>$key</b></td> 97 <td width="100%" >$postedValue</td>97 <td width="100%" style="white-space:pre">$postedValue</td> 98 98 </tr> 99 99 _HTML_TAG_ -
FCKeditor/trunk/_samples/php/sampleposteddata.php
r132 r884 57 57 <tr> 58 58 <td valign="top" nowrap><b><?=$sForm?></b></td> 59 <td width="100%" ><?=$postedValue?></td>59 <td width="100%" style="white-space:pre"><?=$postedValue?></td> 60 60 </tr> 61 61 <?php -
FCKeditor/trunk/_samples/py/sampleposteddata.py
r132 r884 66 66 <tr> 67 67 <td valign="top" nowrap><b>%s</b></td> 68 <td width="100%%" >%s</td>68 <td width="100%%" style="white-space:pre">%s</td> 69 69 </tr> 70 70 """ % (key, value)
Note: See TracChangeset
for help on using the changeset viewer.
