Changeset 705
- Timestamp:
- 2007-08-23 01:18:10 (17 months ago)
- Location:
- FCKeditor/trunk/_samples
- Files:
-
- 32 modified
-
afp/sample01.afp (modified) (1 diff)
-
afp/sample02.afp (modified) (1 diff)
-
afp/sample03.afp (modified) (1 diff)
-
afp/sample04.afp (modified) (1 diff)
-
asp/sample01.asp (modified) (1 diff)
-
asp/sample02.asp (modified) (1 diff)
-
asp/sample03.asp (modified) (1 diff)
-
asp/sample04.asp (modified) (1 diff)
-
html/sample01.html (modified) (1 diff)
-
html/sample02.html (modified) (1 diff)
-
html/sample03.html (modified) (1 diff)
-
html/sample04.html (modified) (1 diff)
-
html/sample05.html (modified) (1 diff)
-
html/sample06.html (modified) (1 diff)
-
html/sample07.html (modified) (1 diff)
-
html/sample08.html (modified) (1 diff)
-
html/sample09.html (modified) (2 diffs)
-
html/sample10.html (modified) (2 diffs)
-
html/sample11_frame.html (modified) (2 diffs)
-
lasso/sample01.lasso (modified) (1 diff)
-
lasso/sample02.lasso (modified) (1 diff)
-
lasso/sample03.lasso (modified) (1 diff)
-
lasso/sample04.lasso (modified) (1 diff)
-
perl/sample01.cgi (modified) (1 diff)
-
perl/sample02.cgi (modified) (1 diff)
-
perl/sample03.cgi (modified) (1 diff)
-
perl/sample04.cgi (modified) (1 diff)
-
php/sample01.php (modified) (1 diff)
-
php/sample02.php (modified) (1 diff)
-
php/sample03.php (modified) (1 diff)
-
php/sample04.php (modified) (1 diff)
-
py/sample01.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_samples/afp/sample01.afp
r132 r705 39 39 sBasePath="../../../fckeditor/" && Change this to your local path 40 40 41 lcText=[ This is some <strong>sample text</strong>. You are using ]41 lcText=[<p>This is some <strong>sample text</strong>. You are using ] 42 42 lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] 43 43 -
FCKeditor/trunk/_samples/afp/sample02.afp
r132 r705 98 98 ENDIF 99 99 100 lcText=[ This is some <strong>sample text</strong>. You are using ]100 lcText=[<p>This is some <strong>sample text</strong>. You are using ] 101 101 lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] 102 102 -
FCKeditor/trunk/_samples/afp/sample03.afp
r132 r705 76 76 ENDIF 77 77 78 lcText=[ This is some <strong>sample text</strong>. You are using ]78 lcText=[<p>This is some <strong>sample text</strong>. You are using ] 79 79 lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] 80 80 -
FCKeditor/trunk/_samples/afp/sample04.afp
r132 r705 83 83 ENDIF 84 84 85 lcText=[ This is some <strong>sample text</strong>. You are using ]85 lcText=[<p>This is some <strong>sample text</strong>. You are using ] 86 86 lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] 87 87 -
FCKeditor/trunk/_samples/asp/sample01.asp
r132 r705 53 53 Set oFCKeditor = New FCKeditor 54 54 oFCKeditor.BasePath = sBasePath 55 oFCKeditor.Value = " This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."55 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>." 56 56 oFCKeditor.Create "FCKeditor1" 57 57 %> -
FCKeditor/trunk/_samples/asp/sample02.asp
r132 r705 99 99 End If 100 100 101 oFCKeditor.Value = " This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."101 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>." 102 102 oFCKeditor.Create "FCKeditor1" 103 103 %> -
FCKeditor/trunk/_samples/asp/sample03.asp
r132 r705 83 83 End If 84 84 85 oFCKeditor.Value = " This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."85 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>." 86 86 oFCKeditor.Create "FCKeditor1" 87 87 %> -
FCKeditor/trunk/_samples/asp/sample04.asp
r132 r705 89 89 End If 90 90 91 oFCKeditor.Value = " This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>."91 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://www.fckeditor.net/"">FCKeditor</a>." 92 92 oFCKeditor.Create "FCKeditor1" 93 93 %> -
FCKeditor/trunk/_samples/html/sample01.html
r132 r705 49 49 oFCKeditor.BasePath = sBasePath ; 50 50 oFCKeditor.Height = 300 ; 51 oFCKeditor.Value = ' This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.' ;51 oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.</p>' ; 52 52 oFCKeditor.Create() ; 53 53 //--> -
FCKeditor/trunk/_samples/html/sample02.html
r132 r705 55 55 <form action="sampleposteddata.asp" method="post" target="_blank"> 56 56 <div> 57 <textarea name="FCKeditor1" rows="10" cols="80" style="width: 100%; height: 200px"> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</textarea>57 <textarea name="FCKeditor1" rows="10" cols="80" style="width: 100%; height: 200px"><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p></textarea> 58 58 </div> 59 59 <br /> -
FCKeditor/trunk/_samples/html/sample03.html
r132 r705 126 126 oFCKeditor.Config["DefaultLanguage"] = sLang ; 127 127 } 128 oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;128 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 129 129 oFCKeditor.Create() ; 130 130 //--> -
FCKeditor/trunk/_samples/html/sample04.html
r132 r705 85 85 oFCKeditor.ToolbarSet = sToolbar ; 86 86 87 oFCKeditor.Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;87 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 88 88 oFCKeditor.Create() ; 89 89 //--> -
FCKeditor/trunk/_samples/html/sample05.html
r132 r705 115 115 } 116 116 117 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;117 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 118 118 oFCKeditor.Create() ; 119 119 //--> -
FCKeditor/trunk/_samples/html/sample06.html
r132 r705 63 63 oFCKeditor.ToolbarSet = 'PluginTest' ; 64 64 65 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;65 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 66 66 oFCKeditor.Create() ; 67 67 //--> -
FCKeditor/trunk/_samples/html/sample07.html
r132 r705 49 49 oFCKeditor.BasePath = sBasePath ; 50 50 oFCKeditor.Config['FullPage'] = true ; 51 oFCKeditor.Value = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Full Page Test</title><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/></head><body> This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</body></html>' ;51 oFCKeditor.Value = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Full Page Test</title><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/></head><body><p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</body></html>' ; 52 52 oFCKeditor.Create() ; 53 53 //--> -
FCKeditor/trunk/_samples/html/sample08.html
r302 r705 159 159 var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ; 160 160 oFCKeditor.BasePath = sBasePath ; 161 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;161 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 162 162 oFCKeditor.Create() ; 163 163 //--> -
FCKeditor/trunk/_samples/html/sample09.html
r132 r705 77 77 oFCKeditor.BasePath = sBasePath ; 78 78 oFCKeditor.ToolbarSet = 'Basic' ; 79 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;79 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 80 80 oFCKeditor.Create() ; 81 81 //--> … … 90 90 91 91 oFCKeditor.BasePath = sBasePath ; 92 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;92 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 93 93 oFCKeditor.Create() ; 94 94 //--> -
FCKeditor/trunk/_samples/html/sample10.html
r132 r705 57 57 oFCKeditor.Height = 100 ; 58 58 oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:xToolbar' ; 59 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;59 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 60 60 oFCKeditor.Create() ; 61 61 //--> … … 69 69 oFCKeditor.Height = 100 ; 70 70 oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:xToolbar' ; 71 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;71 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 72 72 oFCKeditor.Create() ; 73 73 //--> -
FCKeditor/trunk/_samples/html/sample11_frame.html
r132 r705 47 47 oFCKeditor.Height = 100 ; 48 48 oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ; 49 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;49 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 50 50 oFCKeditor.Create() ; 51 51 //--> … … 59 59 oFCKeditor.Height = 100 ; 60 60 oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ; 61 oFCKeditor.Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;61 oFCKeditor.Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 62 62 oFCKeditor.Create() ; 63 63 //--> -
FCKeditor/trunk/_samples/lasso/sample01.lasso
r132 r705 44 44 -instancename='FCKeditor1', 45 45 -basepath=$basepath, 46 -initialvalue=' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'46 -initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' 47 47 ); 48 48 -
FCKeditor/trunk/_samples/lasso/sample02.lasso
r132 r705 98 98 -basepath=$basepath, 99 99 -config=$config, 100 -initialvalue=' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'100 -initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' 101 101 ); 102 102 -
FCKeditor/trunk/_samples/lasso/sample03.lasso
r132 r705 72 72 -instancename='FCKeditor1', 73 73 -basepath=$basepath, 74 -initialvalue=' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'74 -initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' 75 75 ); 76 76 -
FCKeditor/trunk/_samples/lasso/sample04.lasso
r132 r705 78 78 -instancename='FCKeditor1', 79 79 -basepath=$basepath, 80 -initialvalue=' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.'80 -initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' 81 81 ); 82 82 -
FCKeditor/trunk/_samples/perl/sample01.cgi
r132 r705 85 85 &FCKeditor('FCKeditor1'); 86 86 $BasePath = $sBasePath; 87 $Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.';87 $Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'; 88 88 &Create(); 89 89 -
FCKeditor/trunk/_samples/perl/sample02.cgi
r132 r705 150 150 $Config{'DefaultLanguage'} = 'en' ; 151 151 } 152 $Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;152 $Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 153 153 &Create(); 154 154 -
FCKeditor/trunk/_samples/perl/sample03.cgi
r132 r705 135 135 $ToolbarSet = &specialchar_cnv( $FORM{'Toolbar'} ); 136 136 } 137 $Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;137 $Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 138 138 &Create(); 139 139 -
FCKeditor/trunk/_samples/perl/sample04.cgi
r132 r705 142 142 $Config{'SkinPath'} = $sBasePath . 'editor/skins/' . &specialchar_cnv( $FORM{'Skin'} ) . '/' ; 143 143 } 144 $Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;144 $Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 145 145 &Create() ; 146 146 -
FCKeditor/trunk/_samples/php/sample01.php
r132 r705 48 48 $oFCKeditor = new FCKeditor('FCKeditor1') ; 49 49 $oFCKeditor->BasePath = $sBasePath ; 50 $oFCKeditor->Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;50 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 51 51 $oFCKeditor->Create() ; 52 52 ?> -
FCKeditor/trunk/_samples/php/sample02.php
r132 r705 100 100 } 101 101 102 $oFCKeditor->Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;102 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 103 103 $oFCKeditor->Create() ; 104 104 ?> <br> -
FCKeditor/trunk/_samples/php/sample03.php
r132 r705 80 80 $oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']); 81 81 82 $oFCKeditor->Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;82 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 83 83 $oFCKeditor->Create() ; 84 84 ?> -
FCKeditor/trunk/_samples/php/sample04.php
r132 r705 86 86 $oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/' . htmlspecialchars($_GET['Skin']) . '/' ; 87 87 88 $oFCKeditor->Value = ' This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.' ;88 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; 89 89 $oFCKeditor->Create() ; 90 90 ?> -
FCKeditor/trunk/_samples/py/sample01.py
r132 r705 58 58 oFCKeditor = fckeditor.FCKeditor('FCKeditor1') 59 59 oFCKeditor.BasePath = sBasePath 60 oFCKeditor.Value = """ This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>."""60 oFCKeditor.Value = """<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>""" 61 61 print oFCKeditor.Create() 62 62 except Exception, e: