| /plugin/wysiwyg/fckeditor/_samples/php/ |
| D | sample02.php | 88 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 89 $oFCKeditor->BasePath = $sBasePath ; 93 $oFCKeditor->Config['AutoDetectLanguage'] = false ; 94 $oFCKeditor->Config['DefaultLanguage'] = $_GET['Lang'] ; 98 $oFCKeditor->Config['AutoDetectLanguage'] = true ; 99 $oFCKeditor->Config['DefaultLanguage'] = 'en' ; 102 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://w… 103 $oFCKeditor->Create() ;
|
| D | sample03.php | 76 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 77 $oFCKeditor->BasePath = $sBasePath ; 80 $oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']); 82 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://w… 83 $oFCKeditor->Create() ;
|
| D | sample04.php | 82 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 83 $oFCKeditor->BasePath = $sBasePath ; 86 …$oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/' . htmlspecialchars($_GET['Skin']) .… 88 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://w… 89 $oFCKeditor->Create() ;
|
| D | sample01.php | 48 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 49 $oFCKeditor->BasePath = $sBasePath ; 50 $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://… 51 $oFCKeditor->Create() ;
|
| /plugin/grensladawritezor/fckeditor/_samples/php/ |
| D | sample02.php | 88 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 89 $oFCKeditor->BasePath = $sBasePath ; 93 $oFCKeditor->Config['AutoDetectLanguage'] = false ; 94 $oFCKeditor->Config['DefaultLanguage'] = $_GET['Lang'] ; 98 $oFCKeditor->Config['AutoDetectLanguage'] = true ; 99 $oFCKeditor->Config['DefaultLanguage'] = 'en' ; 102 $oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.… 103 $oFCKeditor->Create() ;
|
| D | sample03.php | 76 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 77 $oFCKeditor->BasePath = $sBasePath ; 80 $oFCKeditor->ToolbarSet = htmlspecialchars($_GET['Toolbar']); 82 $oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.… 83 $oFCKeditor->Create() ;
|
| D | sample04.php | 82 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 83 $oFCKeditor->BasePath = $sBasePath ; 86 …$oFCKeditor->Config['SkinPath'] = $sBasePath . 'editor/skins/' . htmlspecialchars($_GET['Skin']) .… 88 $oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www.… 89 $oFCKeditor->Create() ;
|
| D | sample01.php | 48 $oFCKeditor = new FCKeditor('FCKeditor1') ; variable 49 $oFCKeditor->BasePath = $sBasePath ; 50 $oFCKeditor->Value = 'This is some <strong>sample text</strong>. You are using <a href="http://www… 51 $oFCKeditor->Create() ;
|
| /plugin/grensladawritezor/fckeditor/_samples/afp/ |
| D | sample02.afp | 82 oFCKeditor = CREATEOBJECT("FCKeditor") 83 oFCKeditor.fckeditor("FCKeditor1") 87 lcLanguage=oFCKeditor.StripAttacks(lcLanguage) && Remove special escape characters 89 oFCKeditor.aconfig[1,1]="AutoDetectLanguage" 90 oFCKeditor.aconfig[1,2]="true" 91 oFCKeditor.aconfig[2,1]="DefaultLanguage" 92 oFCKeditor.aconfig[2,2]="en" 94 oFCKeditor.aconfig[1,1]="AutoDetectLanguage" 95 oFCKeditor.aconfig[1,2]="false" 96 oFCKeditor.aconfig[2,1]="DefaultLanguage" [all …]
|
| D | sample04.afp | 75 oFCKeditor = CREATEOBJECT("FCKeditor") 76 oFCKeditor.fckeditor("FCKeditor1") 79 lcSkin=oFCKeditor.StripAttacks(lcSkin) && Remove special escape characters 81 oFCKeditor.aconfig[1,1]="SkinPath" 82 …oFCKeditor.aconfig[1,2]="/fckeditor/editor/skins/"+lcSkin+"/" && <-- Change this to your local path 88 oFCKeditor.BasePath = sBasePath 89 oFCKeditor.cValue = lcText 91 ? oFCKeditor.Create()
|
| D | sample03.afp | 69 oFCKeditor = CREATEOBJECT("FCKeditor") 70 oFCKeditor.fckeditor("FCKeditor1") 73 lcToolbar=oFCKeditor.StripAttacks(lcToolbar) && Remove special escape characters 75 oFCKeditor.ToolbarSet=lcToolbar 81 oFCKeditor.BasePath = sBasePath 82 oFCKeditor.cValue = lcText 84 ? oFCKeditor.Create()
|
| D | sample01.afp | 44 oFCKeditor = CREATEOBJECT("FCKeditor") 45 oFCKeditor.fckeditor("FCKeditor1") 46 oFCKeditor.BasePath = sBasePath 47 oFCKeditor.cValue = lcText 49 ? oFCKeditor.Create()
|
| /plugin/wysiwyg/fckeditor/_samples/afp/ |
| D | sample02.afp | 82 oFCKeditor = CREATEOBJECT("FCKeditor") 83 oFCKeditor.fckeditor("FCKeditor1") 87 lcLanguage=oFCKeditor.StripAttacks(lcLanguage) && Remove special escape characters 89 oFCKeditor.aconfig[1,1]="AutoDetectLanguage" 90 oFCKeditor.aconfig[1,2]="true" 91 oFCKeditor.aconfig[2,1]="DefaultLanguage" 92 oFCKeditor.aconfig[2,2]="en" 94 oFCKeditor.aconfig[1,1]="AutoDetectLanguage" 95 oFCKeditor.aconfig[1,2]="false" 96 oFCKeditor.aconfig[2,1]="DefaultLanguage" [all …]
|
| D | sample04.afp | 75 oFCKeditor = CREATEOBJECT("FCKeditor") 76 oFCKeditor.fckeditor("FCKeditor1") 79 lcSkin=oFCKeditor.StripAttacks(lcSkin) && Remove special escape characters 81 oFCKeditor.aconfig[1,1]="SkinPath" 82 …oFCKeditor.aconfig[1,2]="/fckeditor/editor/skins/"+lcSkin+"/" && <-- Change this to your local path 88 oFCKeditor.BasePath = sBasePath 89 oFCKeditor.cValue = lcText 91 ? oFCKeditor.Create()
|
| D | sample03.afp | 69 oFCKeditor = CREATEOBJECT("FCKeditor") 70 oFCKeditor.fckeditor("FCKeditor1") 73 lcToolbar=oFCKeditor.StripAttacks(lcToolbar) && Remove special escape characters 75 oFCKeditor.ToolbarSet=lcToolbar 81 oFCKeditor.BasePath = sBasePath 82 oFCKeditor.cValue = lcText 84 ? oFCKeditor.Create()
|
| D | sample01.afp | 44 oFCKeditor = CREATEOBJECT("FCKeditor") 45 oFCKeditor.fckeditor("FCKeditor1") 46 oFCKeditor.BasePath = sBasePath 47 oFCKeditor.cValue = lcText 49 ? oFCKeditor.Create()
|
| /plugin/wysiwyg/ |
| D | syntax.php | 107 $oFCKeditor = new FCKeditor($name) ; 108 $oFCKeditor->BasePath = DOKU_BASE."lib/plugins/wysiwyg/fckeditor/"; 109 $oFCKeditor->Value = $html; 110 $oFCKeditor->ToolbarSet = 'dokuwiki'; 111 $oFCKeditor->Height = '150'; 112 return $oFCKeditor->CreateHtml() ;
|
| /plugin/wysiwyg/fckeditor/_samples/py/ |
| D | sample01.py | 58 oFCKeditor = fckeditor.FCKeditor('FCKeditor1') variable 59 oFCKeditor.BasePath = sBasePath 60 …oFCKeditor.Value = """<p>This is some <strong>sample text</strong>. You are using <a href="http://… 61 print oFCKeditor.Create()
|
| /plugin/grensladawritezor/fckeditor/_samples/py/ |
| D | sample01.py | 58 oFCKeditor = fckeditor.FCKeditor('FCKeditor1') variable 59 oFCKeditor.BasePath = sBasePath 60 …oFCKeditor.Value = """This is some <strong>sample text</strong>. You are using <a href="http://www… 61 print oFCKeditor.Create()
|
| /plugin/wysiwyg/fckeditor/_samples/asp/ |
| D | sample02.asp | 84 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. 89 Dim oFCKeditor variable 90 Set oFCKeditor = New FCKeditor 91 oFCKeditor.BasePath = sBasePath 94 oFCKeditor.Config("AutoDetectLanguage") = True 95 oFCKeditor.Config("DefaultLanguage") = "en" 97 oFCKeditor.Config("AutoDetectLanguage") = False 98 oFCKeditor.Config("DefaultLanguage") = Request.QueryString("Lang") 101 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww… 102 oFCKeditor.Create "FCKeditor1"
|
| D | sample03.asp | 72 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. 77 Dim oFCKeditor variable 78 Set oFCKeditor = New FCKeditor 79 oFCKeditor.BasePath = sBasePath 82 oFCKeditor.ToolbarSet = Server.HTMLEncode( Request.QueryString("Toolbar") ) 85 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww… 86 oFCKeditor.Create "FCKeditor1"
|
| D | sample04.asp | 78 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. 83 Dim oFCKeditor variable 84 Set oFCKeditor = New FCKeditor 85 oFCKeditor.BasePath = sBasePath 88 …oFCKeditor.Config("SkinPath") = sBasePath + "editor/skins/" & Server.HTMLEncode( Request.QueryStri… 91 oFCKeditor.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=""http://ww… 92 oFCKeditor.Create "FCKeditor1"
|
| /plugin/grensladawritezor/fckeditor/_samples/asp/ |
| D | sample02.asp | 84 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. 89 Dim oFCKeditor variable 90 Set oFCKeditor = New FCKeditor 91 oFCKeditor.BasePath = sBasePath 94 oFCKeditor.Config("AutoDetectLanguage") = True 95 oFCKeditor.Config("DefaultLanguage") = "en" 97 oFCKeditor.Config("AutoDetectLanguage") = False 98 oFCKeditor.Config("DefaultLanguage") = Request.QueryString("Lang") 101 oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.f… 102 oFCKeditor.Create "FCKeditor1"
|
| D | sample03.asp | 72 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. 77 Dim oFCKeditor variable 78 Set oFCKeditor = New FCKeditor 79 oFCKeditor.BasePath = sBasePath 82 oFCKeditor.ToolbarSet = Server.HTMLEncode( Request.QueryString("Toolbar") ) 85 oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.f… 86 oFCKeditor.Create "FCKeditor1"
|
| D | sample04.asp | 78 ' oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value. 83 Dim oFCKeditor variable 84 Set oFCKeditor = New FCKeditor 85 oFCKeditor.BasePath = sBasePath 88 …oFCKeditor.Config("SkinPath") = sBasePath + "editor/skins/" & Server.HTMLEncode( Request.QueryStri… 91 oFCKeditor.Value = "This is some <strong>sample text</strong>. You are using <a href=""http://www.f… 92 oFCKeditor.Create "FCKeditor1"
|