mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-20 23:37:05 +01:00
Compare commits
84 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0027259e67 | ||
|
|
5337ff5fe9 | ||
|
|
749dc212d9 | ||
|
|
9d7565c317 | ||
|
|
9efbe9a9bf | ||
|
|
67e929dc75 | ||
|
|
a0e48b5088 | ||
|
|
667417262c | ||
|
|
83e7c62b9b | ||
|
|
8797e8f5e0 | ||
|
|
ee90c48a1c | ||
|
|
93c33162a1 | ||
|
|
068ec67c9d | ||
|
|
761f39407a | ||
|
|
227eefa332 | ||
|
|
1d6c60c19a | ||
|
|
a9402eb4ae | ||
|
|
d449623153 | ||
|
|
31d96eca3b | ||
|
|
3d8644ae4c | ||
|
|
893894f97b | ||
|
|
d992173967 | ||
|
|
483ac6cd6c | ||
|
|
e3868fb285 | ||
|
|
410ef385d5 | ||
|
|
d5c019d05a | ||
|
|
76b782535c | ||
|
|
2a998016eb | ||
|
|
f1a4710aea | ||
|
|
f8bbe45de7 | ||
|
|
f5d8384469 | ||
|
|
1266f73f64 | ||
|
|
cfee2c0182 | ||
|
|
afe4222eb6 | ||
|
|
f2017c17b3 | ||
|
|
f15a1b1d8e | ||
|
|
41f52cc3be | ||
|
|
3bfbc918f0 | ||
|
|
2c7a338dfb | ||
|
|
db518cf2c6 | ||
|
|
8e790bec60 | ||
|
|
f3edf9e2ae | ||
|
|
95a3d09672 | ||
|
|
1a654ec172 | ||
|
|
78117d52d0 | ||
|
|
157d9a40fa | ||
|
|
b5e78fb04c | ||
|
|
a2dea59b24 | ||
|
|
cc300f7edd | ||
|
|
1f0acdfe5f | ||
|
|
76c03cffff | ||
|
|
ae1188f81d | ||
|
|
313002e4a0 | ||
|
|
63364001ea | ||
|
|
1af9d60dd3 | ||
|
|
76fce1c2b8 | ||
|
|
67e28106f9 | ||
|
|
191990ffdb | ||
|
|
af318dd703 | ||
|
|
f83929584f | ||
|
|
c967325b7d | ||
|
|
11fe0ad17a | ||
|
|
8da4352ee4 | ||
|
|
8a1fec4e18 | ||
|
|
d686faf8a7 | ||
|
|
e8ef9e5195 | ||
|
|
6735caae36 | ||
|
|
eabae9bed4 | ||
|
|
5d23115c95 | ||
|
|
55692d3c49 | ||
|
|
3391b60836 | ||
|
|
2727bcb3e8 | ||
|
|
f6d19d2650 | ||
|
|
22bca280f5 | ||
|
|
20614885de | ||
|
|
6831cea155 | ||
|
|
9a4e93fc43 | ||
|
|
d44bc40c85 | ||
|
|
f8c1fbfbec | ||
|
|
94fe55cc14 | ||
|
|
e2f63a1d3b | ||
|
|
ed7bde9d14 | ||
|
|
a10eb21d70 | ||
|
|
df78d5bb61 |
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
ICEcoder is a web IDE / browser based code editor, which allows you to develop websites directly within the web browser. It uses the brilliant CodeMirror for code highlighting & editing, with a slick IDE wrapped around it to make the whole thing work.
|
ICEcoder is a web IDE / browser based code editor, which allows you to develop websites directly within the web browser. It uses the brilliant CodeMirror for code highlighting & editing, with a slick IDE wrapped around it to make the whole thing work.
|
||||||
|
|
||||||
<img src="https://icecoder.net/images/icecoder-v5-5-browser-code-editor.png" alt="ICEcoder web IDE">
|
<img src="https://icecoder.net/images/icecoder-v5-7-browser-code-editor.png" alt="ICEcoder web IDE">
|
||||||
|
|
||||||
###Requirements
|
###Requirements
|
||||||
You can run ICEcoder either online or locally, on Linux, Windows or Mac based platforms. The only requirement is to have PHP 5 available (5.3 recommended). You can have this either as a vanilla installation or via a program such as WAMP or XAMPP (for Windows) or MAMP (for Mac).
|
You can run ICEcoder either online or locally, on Linux, Windows or Mac based platforms. The only requirement is to have PHP 5 available (5.3 recommended). You can have this either as a vanilla installation or via a program such as WAMP or XAMPP (for Windows) or MAMP (for Mac).
|
||||||
|
|||||||
14
editor.php
14
editor.php
@@ -228,7 +228,7 @@ function createNewCMInstance(num) {
|
|||||||
// Define our CodeMirror options
|
// Define our CodeMirror options
|
||||||
var cMOptions = {
|
var cMOptions = {
|
||||||
mode: "application/x-httpd-php",
|
mode: "application/x-httpd-php",
|
||||||
lineNumbers: true,
|
lineNumbers: top.ICEcoder.lineNumbers,
|
||||||
gutters: ["CodeMirror-foldgutter","CodeMirror-lint-markers","CodeMirror-linenumbers"],
|
gutters: ["CodeMirror-foldgutter","CodeMirror-lint-markers","CodeMirror-linenumbers"],
|
||||||
foldGutter: {gutter: "CodeMirror-foldgutter"},
|
foldGutter: {gutter: "CodeMirror-foldgutter"},
|
||||||
foldOptions: {minFoldSize: 1},
|
foldOptions: {minFoldSize: 1},
|
||||||
@@ -236,12 +236,12 @@ function createNewCMInstance(num) {
|
|||||||
indentWithTabs: top.ICEcoder.indentWithTabs,
|
indentWithTabs: top.ICEcoder.indentWithTabs,
|
||||||
indentUnit: top.ICEcoder.indentSize,
|
indentUnit: top.ICEcoder.indentSize,
|
||||||
tabSize: top.ICEcoder.indentSize,
|
tabSize: top.ICEcoder.indentSize,
|
||||||
matchBrackets: true,
|
matchBrackets: top.ICEcoder.matchBrackets,
|
||||||
electricChars: false,
|
electricChars: false,
|
||||||
autoCloseTags: true,
|
autoCloseTags: top.ICEcoder.autoCloseTags,
|
||||||
autoCloseBrackets: true,
|
autoCloseBrackets: top.ICEcoder.autoCloseBrackets,
|
||||||
highlightSelectionMatches: true,
|
highlightSelectionMatches: true,
|
||||||
showTrailingSpace: true,
|
showTrailingSpace: top.ICEcoder.showTrailingSpace,
|
||||||
lint: false,
|
lint: false,
|
||||||
keyMap: "ICEcoder"
|
keyMap: "ICEcoder"
|
||||||
};
|
};
|
||||||
@@ -273,8 +273,8 @@ function createNewCMInstance(num) {
|
|||||||
window['cM'+num+'diff'] .on("beforeSelectionChange", function(thisCM, changeObj) {top.ICEcoder.prevLineDiff = thisCM.getCursor().line;});
|
window['cM'+num+'diff'] .on("beforeSelectionChange", function(thisCM, changeObj) {top.ICEcoder.prevLineDiff = thisCM.getCursor().line;});
|
||||||
|
|
||||||
// Change
|
// Change
|
||||||
window['cM'+num] .on("change", function(thisCM, changeObj) {top.ICEcoder.cMonChange(thisCM,'cM'+num,changeObj)});
|
window['cM'+num] .on("change", function(thisCM, changeObj) {top.ICEcoder.cMonChange(thisCM,'cM'+num,changeObj,CodeMirror)});
|
||||||
window['cM'+num+'diff'] .on("change", function(thisCM, changeObj) {top.ICEcoder.cMonChange(thisCM,'cM'+num+'diff',changeObj)});
|
window['cM'+num+'diff'] .on("change", function(thisCM, changeObj) {top.ICEcoder.cMonChange(thisCM,'cM'+num+'diff',changeObj,CodeMirror)});
|
||||||
|
|
||||||
// Before change
|
// Before change
|
||||||
window['cM'+num] .on("beforeChange", function(thisCM, changeObj) {top.ICEcoder.cMonBeforeChange(thisCM,'cM'+num,changeObj,CodeMirror)});
|
window['cM'+num] .on("beforeChange", function(thisCM, changeObj) {top.ICEcoder.cMonBeforeChange(thisCM,'cM'+num,changeObj,CodeMirror)});
|
||||||
|
|||||||
34
index.php
34
index.php
@@ -3,28 +3,11 @@ include("lib/headers.php");
|
|||||||
include("lib/settings.php");
|
include("lib/settings.php");
|
||||||
$t = $text['index'];
|
$t = $text['index'];
|
||||||
|
|
||||||
// Check IP permissions
|
|
||||||
if (!in_array($_SERVER["REMOTE_ADDR"], $_SESSION['allowedIPs']) && !in_array("*", $_SESSION['allowedIPs'])) {
|
|
||||||
header('Location: /');
|
|
||||||
die("Sorry, not in allowed IPs list");
|
|
||||||
};
|
|
||||||
|
|
||||||
$updateMsg = '';
|
$updateMsg = '';
|
||||||
// Check for updates
|
// Check for updates
|
||||||
if ($ICEcoder["checkUpdates"]) {
|
if ($ICEcoder["checkUpdates"]) {
|
||||||
$icv_url = "https://icecoder.net/latest-version?thisVersion=".$ICEcoder["versionNo"];
|
$icv_url = "https://icecoder.net/latest-version?thisVersion=".$ICEcoder["versionNo"];
|
||||||
if (ini_get('allow_url_fopen')) {
|
$icvInfo = explode("\n", getData($icv_url,'curl'));
|
||||||
$icvInfo = @file_get_contents($icv_url,false,$context);
|
|
||||||
if (!$icvInfo) {
|
|
||||||
$icvInfo = file_get_contents(str_replace("https:","http:",$icv_url), false, $context);
|
|
||||||
}
|
|
||||||
$icvInfo = explode("\n",$icvInfo);
|
|
||||||
} elseif (function_exists('curl_init')) {
|
|
||||||
$ch = curl_init($icv_url);
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
||||||
$icvInfo = explode("\n", curl_exec($ch));
|
|
||||||
}
|
|
||||||
$icv = $icvInfo[0];
|
$icv = $icvInfo[0];
|
||||||
$icvI = str_replace('"','\\\'',$icvInfo[1]);
|
$icvI = str_replace('"','\\\'',$icvInfo[1]);
|
||||||
$thisV = $ICEcoder["versionNo"];
|
$thisV = $ICEcoder["versionNo"];
|
||||||
@@ -102,6 +85,11 @@ $t = $text['index'];
|
|||||||
"top.ICEcoder.codeAssist = ".($ICEcoder["codeAssist"] ? 'true' : 'false').";".
|
"top.ICEcoder.codeAssist = ".($ICEcoder["codeAssist"] ? 'true' : 'false').";".
|
||||||
"top.ICEcoder.lockedNav = ".($ICEcoder["lockedNav"] ? 'true' : 'false').";".
|
"top.ICEcoder.lockedNav = ".($ICEcoder["lockedNav"] ? 'true' : 'false').";".
|
||||||
"top.ICEcoder.lineWrapping = ".($ICEcoder["lineWrapping"] ? 'true' : 'false').";".
|
"top.ICEcoder.lineWrapping = ".($ICEcoder["lineWrapping"] ? 'true' : 'false').";".
|
||||||
|
"top.ICEcoder.lineNumbers = ".($ICEcoder["lineNumbers"] ? 'true' : 'false').";".
|
||||||
|
"top.ICEcoder.showTrailingSpace = ".($ICEcoder["showTrailingSpace"] ? 'true' : 'false').";".
|
||||||
|
"top.ICEcoder.matchBrackets = ".($ICEcoder["matchBrackets"] ? 'true' : 'false').";".
|
||||||
|
"top.ICEcoder.autoCloseTags = ".($ICEcoder["autoCloseTags"] ? 'true' : 'false').";".
|
||||||
|
"top.ICEcoder.autoCloseBrackets = ".($ICEcoder["autoCloseBrackets"] ? 'true' : 'false').";".
|
||||||
"top.ICEcoder.indentWithTabs = ".($ICEcoder["indentWithTabs"] ? 'true' : 'false').";".
|
"top.ICEcoder.indentWithTabs = ".($ICEcoder["indentWithTabs"] ? 'true' : 'false').";".
|
||||||
"top.ICEcoder.indentAuto = ".($ICEcoder["indentAuto"] ? 'true' : 'false').";".
|
"top.ICEcoder.indentAuto = ".($ICEcoder["indentAuto"] ? 'true' : 'false').";".
|
||||||
"top.ICEcoder.indentSize = ".$ICEcoder["indentSize"].";".
|
"top.ICEcoder.indentSize = ".$ICEcoder["indentSize"].";".
|
||||||
@@ -170,7 +158,7 @@ $t = $text['index'];
|
|||||||
<span id="singleFileMenuItems">
|
<span id="singleFileMenuItems">
|
||||||
<a href="javascript:top.ICEcoder.renameFile(top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1])" onMouseOver="ICEcoder.showFileMenu()"><?php echo $t['Rename'];?></a>
|
<a href="javascript:top.ICEcoder.renameFile(top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1])" onMouseOver="ICEcoder.showFileMenu()"><?php echo $t['Rename'];?></a>
|
||||||
<div onMouseOver="ICEcoder.showFileMenu()" style="padding: 2px 0"><hr></div>
|
<div onMouseOver="ICEcoder.showFileMenu()" style="padding: 2px 0"><hr></div>
|
||||||
<a nohref onClick="window.open(iceRoot + top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,'/'))" onMouseOver="ICEcoder.showFileMenu()" style="cursor: pointer"><?php echo $t['View Webpage'];?></a>
|
<a nohref onClick="window.open('//<?php echo $_SERVER['HTTP_HOST'];?>' + iceRoot + top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,'/'))" onMouseOver="ICEcoder.showFileMenu()" style="cursor: pointer"><?php echo $t['View Webpage'];?></a>
|
||||||
</span>
|
</span>
|
||||||
<div onMouseOver="ICEcoder.showFileMenu()" style="padding: 2px 0"><hr></div>
|
<div onMouseOver="ICEcoder.showFileMenu()" style="padding: 2px 0"><hr></div>
|
||||||
<?php
|
<?php
|
||||||
@@ -236,14 +224,16 @@ $t = $text['index'];
|
|||||||
</div>
|
</div>
|
||||||
<div id="optionsSource" class="optionsList" onmouseover="top.ICEcoder.showHideFileNav('show',this.id)" onmouseout="top.ICEcoder.showHideFileNav('hide',this.id);top.ICEcoder.canShowFMNav=false">
|
<div id="optionsSource" class="optionsList" onmouseover="top.ICEcoder.showHideFileNav('show',this.id)" onmouseout="top.ICEcoder.showHideFileNav('hide',this.id);top.ICEcoder.canShowFMNav=false">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a nohref onclick="ICEcoder.refreshFileManager()">Localhost</a></li>
|
<li><a nohref onclick="ICEcoder.goLocalhostRoot()">Localhost</a></li>
|
||||||
|
<li><a nohref onclick="ICEcoder.ftpManager()">FTP</a></li>
|
||||||
<li><a nohref onclick="ICEcoder.githubManager()">GitHub</a></li>
|
<li><a nohref onclick="ICEcoder.githubManager()">GitHub</a></li>
|
||||||
|
<!--
|
||||||
<li><a nohref onclick="ICEcoder.message('SVN integration coming soon')">SVN</a></li>
|
<li><a nohref onclick="ICEcoder.message('SVN integration coming soon')">SVN</a></li>
|
||||||
<li><a nohref onclick="ICEcoder.message('Bitbucket integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">Bitbucket</a></li>
|
<li><a nohref onclick="ICEcoder.message('Bitbucket integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">Bitbucket</a></li>
|
||||||
<li><a nohref onclick="ICEcoder.message('Amazon AWS integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">Amazon AWS</a></li>
|
<li><a nohref onclick="ICEcoder.message('Amazon AWS integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">Amazon AWS</a></li>
|
||||||
<li><a nohref onclick="ICEcoder.message('Dropbox integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">Dropbox</a></li>
|
<li><a nohref onclick="ICEcoder.message('Dropbox integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">Dropbox</a></li>
|
||||||
<li><a nohref onclick="ICEcoder.message('FTP integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">FTP</a></li>
|
|
||||||
<li><a nohref onclick="ICEcoder.message('SSH integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">SSH</a></li>
|
<li><a nohref onclick="ICEcoder.message('SSH integration coming soon\n\nCan you help with this? Get involved at icecoder.net')">SSH</a></li>
|
||||||
|
//-->
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="optionsHelp" class="optionsList" onmouseover="top.ICEcoder.showHideFileNav('show',this.id)" onmouseout="top.ICEcoder.showHideFileNav('hide',this.id);top.ICEcoder.canShowFMNav=false">
|
<div id="optionsHelp" class="optionsList" onmouseover="top.ICEcoder.showHideFileNav('show',this.id)" onmouseout="top.ICEcoder.showHideFileNav('hide',this.id);top.ICEcoder.canShowFMNav=false">
|
||||||
@@ -323,6 +313,8 @@ $t = $text['index'];
|
|||||||
<div class="nesting" id="nestValid"></div>
|
<div class="nesting" id="nestValid"></div>
|
||||||
<div class="versionsDisplay" id="versionsDisplay" onclick="top.ICEcoder.versionsScreen(top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1].replace(/\//g,'|'))"></div>
|
<div class="versionsDisplay" id="versionsDisplay" onclick="top.ICEcoder.versionsScreen(top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1].replace(/\//g,'|'))"></div>
|
||||||
<div class="splitPaneControls" id="splitPaneControls"><div class="off" id="splitPaneControlsOff" title="<?php echo $t['Single pane'];?>" onclick="top.ICEcoder.setSplitPane('off')"></div><div class="on" id="splitPaneControlsOn" title="<?php echo $t['Diff pane also'];?>" onclick="top.ICEcoder.setSplitPane('on')" style="opacity: 0.5"></div></div>
|
<div class="splitPaneControls" id="splitPaneControls"><div class="off" id="splitPaneControlsOff" title="<?php echo $t['Single pane'];?>" onclick="top.ICEcoder.setSplitPane('off')"></div><div class="on" id="splitPaneControlsOn" title="<?php echo $t['Diff pane also'];?>" onclick="top.ICEcoder.setSplitPane('on')" style="opacity: 0.5"></div></div>
|
||||||
|
<div class="splitPaneNames" id="splitPaneNamesMain">Main Pane</div>
|
||||||
|
<div class="splitPaneNames" id="splitPaneNamesDiff">Diff Pane</div>
|
||||||
<div class="byteDisplay" id="byteDisplay" style="display: none" onClick="top.ICEcoder.showDisplay('char')"></div>
|
<div class="byteDisplay" id="byteDisplay" style="display: none" onClick="top.ICEcoder.showDisplay('char')"></div>
|
||||||
<div class="charDisplay" id="charDisplay" style="display: inline-block" onClick="top.ICEcoder.showDisplay('byte')"></div>
|
<div class="charDisplay" id="charDisplay" style="display: inline-block" onClick="top.ICEcoder.showDisplay('byte')"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
117
lang/dutch.php
117
lang/dutch.php
@@ -12,7 +12,6 @@ $text = array(
|
|||||||
|
|
||||||
"editor" =>
|
"editor" =>
|
||||||
array(
|
array(
|
||||||
"Click icons for..." => "<strong>Klik op de icoontjes<br>voor hulp &<br>gebruiks info</strong>",
|
|
||||||
"server" => "server",
|
"server" => "server",
|
||||||
"Server name, OS..." => "Server naam, besturingssysteem & IP:",
|
"Server name, OS..." => "Server naam, besturingssysteem & IP:",
|
||||||
"Root" => "Root:",
|
"Root" => "Root:",
|
||||||
@@ -22,6 +21,8 @@ $text = array(
|
|||||||
"your device" => "Uw apparaat",
|
"your device" => "Uw apparaat",
|
||||||
"Browser" => "Browser:",
|
"Browser" => "Browser:",
|
||||||
"Your IP" => "Uw IP:",
|
"Your IP" => "Uw IP:",
|
||||||
|
"trial remaining" => "Resterende demo tijd",
|
||||||
|
"days left" => "dagen",
|
||||||
"files" => "bestanden",
|
"files" => "bestanden",
|
||||||
"Last 10 files..." => "Laatste 10 geopende bestanden:",
|
"Last 10 files..." => "Laatste 10 geopende bestanden:",
|
||||||
"none" => "[none]",
|
"none" => "[none]",
|
||||||
@@ -30,9 +31,7 @@ $text = array(
|
|||||||
"dev mode" => "Ontwikkelaars modus",
|
"dev mode" => "Ontwikkelaars modus",
|
||||||
"Status" => "Status",
|
"Status" => "Status",
|
||||||
"Using" => "Gebruikt",
|
"Using" => "Gebruikt",
|
||||||
"You can switch..." => "U kunt de ontwikkelaars modus aan/uit zetten
|
"You can switch..." => "U kunt de ontwikkelaars modus aan/uit zetten in lib/config__settings.php",
|
||||||
in lib/config__settings.php",
|
|
||||||
"results" => "resultaten"
|
|
||||||
|
|
||||||
),
|
),
|
||||||
|
|
||||||
@@ -40,6 +39,7 @@ in lib/config__settings.php",
|
|||||||
array(
|
array(
|
||||||
"Lock" => "Vergrendelen",
|
"Lock" => "Vergrendelen",
|
||||||
"Refresh" => "Vernieuwen",
|
"Refresh" => "Vernieuwen",
|
||||||
|
"Plugins" => "Plugins",
|
||||||
"ROOT" => "[ROOT]"
|
"ROOT" => "[ROOT]"
|
||||||
|
|
||||||
),
|
),
|
||||||
@@ -51,9 +51,10 @@ in lib/config__settings.php",
|
|||||||
"Your version is" => "Uw versie is",
|
"Your version is" => "Uw versie is",
|
||||||
"Update now" => "Nu updaten",
|
"Update now" => "Nu updaten",
|
||||||
"You have some..." => "Er zijn wijzigingen die niet opgeslagen zijn",
|
"You have some..." => "Er zijn wijzigingen die niet opgeslagen zijn",
|
||||||
"Are you sure you want to close?" => "Weet u zeker dat u wilt sluiten ?",
|
"Are you sure..." => "Weet u zeker dat u wilt sluiten ?",
|
||||||
"working" => "bezig",
|
"working" => "bezig",
|
||||||
"Color picker" => "Kleuren kiezer",
|
"Color picker" => "Kleuren kiezer",
|
||||||
|
"Plugins Manager" => "Plugin beheer",
|
||||||
"New File" => "Nieuw bestand",
|
"New File" => "Nieuw bestand",
|
||||||
"New Folder" => "Nieuwe map",
|
"New Folder" => "Nieuwe map",
|
||||||
"Upload File(s)" => "Upload bestand(en)",
|
"Upload File(s)" => "Upload bestand(en)",
|
||||||
@@ -68,7 +69,7 @@ in lib/config__settings.php",
|
|||||||
"Properties" => "Eigenschappen",
|
"Properties" => "Eigenschappen",
|
||||||
"File" => "Bestand",
|
"File" => "Bestand",
|
||||||
"Edit" => "Bewerken",
|
"Edit" => "Bewerken",
|
||||||
"Remote" => "Extern",
|
"Source" => "Bron",
|
||||||
"Help" => "Help",
|
"Help" => "Help",
|
||||||
"Save" => "Opslaan",
|
"Save" => "Opslaan",
|
||||||
"Save As" => "Opslaan als",
|
"Save As" => "Opslaan als",
|
||||||
@@ -92,24 +93,33 @@ in lib/config__settings.php",
|
|||||||
"website" => "website",
|
"website" => "website",
|
||||||
"Close all tabs" => "Sluit alle tabbladen",
|
"Close all tabs" => "Sluit alle tabbladen",
|
||||||
"Alphabetize tabs" => "Sorteer tabbladen",
|
"Alphabetize tabs" => "Sorteer tabbladen",
|
||||||
// "Find" => "Zoek",
|
"Find" => "Zoek",
|
||||||
// "in" => "in",
|
"in" => "in",
|
||||||
// "and" => "en",
|
"and" => "en",
|
||||||
// "replace" => "vervangen",
|
"replace" => "vervangen",
|
||||||
// "replace all" => "alles vervangen",
|
"replace all" => "alles vervangen",
|
||||||
// "this document" => "dit document",
|
"this document" => "dit document",
|
||||||
// "open documents" => "open documenten",
|
"open documents" => "open documenten",
|
||||||
// "all files" => "alle bestanden",
|
"all files" => "alle bestanden",
|
||||||
// "all filenames" => "alle bestandsnamen",
|
"all filenames" => "alle bestandsnamen",
|
||||||
"Turn on/off..." => "Schakel codehulp aan/uit",
|
"Turn on/off..." => "Schakel codehulp aan/uit",
|
||||||
"Code Assist" => "Codehulp",
|
"Code Assist" => "Codehulp",
|
||||||
"Go to Line" => "Ga naar regel",
|
"Go to Line" => "Ga naar regel",
|
||||||
"View" => "Beeld",
|
"View" => "Beeld",
|
||||||
"Bug reporting not active" => "Bug rapportage niet actief"
|
"Bug reporting not active" => "Bug rapportage niet actief",
|
||||||
|
"Single pane" => "Enkel pane",
|
||||||
|
"Diff pane also" => "Ook diff pane"
|
||||||
),
|
),
|
||||||
|
|
||||||
// /LIB
|
// /LIB
|
||||||
|
|
||||||
|
"auto-logout-warning" =>
|
||||||
|
array(
|
||||||
|
"Auto Logout Warning" => "Auto logout waarschuwing",
|
||||||
|
"You will be..." => "U wordt uitgelogd na",
|
||||||
|
"seconds due to..." => "seconden ivm inactiviteit, voor veiligheids doeleinden. Gebruik de muis of druk op een toets om door te gaan.<br><br>U kunt deze functie aanpassen of uitschakelen in Bewerken > Opties."
|
||||||
|
),
|
||||||
|
|
||||||
"backup-versions" =>
|
"backup-versions" =>
|
||||||
array(
|
array(
|
||||||
"backup" => "backup",
|
"backup" => "backup",
|
||||||
@@ -124,25 +134,26 @@ in lib/config__settings.php",
|
|||||||
|
|
||||||
"file-control" =>
|
"file-control" =>
|
||||||
array(
|
array(
|
||||||
"Sorry, bad filename..." => "Sorry, ongeldige bestandsnaam opgegeven. Bekijk de dev tools console voor meer informatie.",
|
"Sorry, bad filename..." => "Er is een ongeldige bestandsnaam opgegeven. Bekijk de dev tools console voor meer informatie.",
|
||||||
"Sorry" => "Sorry",
|
"Sorry" => "Sorry",
|
||||||
"does not seem..." => "bestaat niet op de server",
|
"does not seem..." => "bestaat niet op de server",
|
||||||
"Sorry, could not..." => "Sorry, kan geen gegevens ophalen van",
|
"Sorry, could not..." => "Het is niet mogelijk om de gegevens op te halen van",
|
||||||
"Sorry, cannot create..." => "Sorry, kan geen map aanmaken op",
|
"Sorry, cannot create..." => "Er kan geen map worden aangemaakt op",
|
||||||
"Sorry, cannot copy" => "Sorry, kan niet het volgende niet kopiëren",
|
"Sorry, cannot copy" => "Kan niet worden gekopieërd",
|
||||||
"into" => "naar",
|
"into" => "naar",
|
||||||
"Uploaded file(s) OK" => "Geüploade bestand(en)",
|
"Uploaded file(s) OK" => "Geüploade bestand(en)",
|
||||||
"Sorry, cannot upload" => "Sorry, kan niet uploaden",
|
"Sorry, cannot upload" => "Kan niet uploaden",
|
||||||
"Sorry, cannot upload..." => "Sorry, kan niet uploaden in de demo modus",
|
"Sorry, cannot upload..." => "Kan niet uploaden in de demo modus",
|
||||||
"Sorry, cannot rename" => "Sorry, kan niet hernoemen",
|
"Sorry, cannot rename" => "Kan niet hernoemen",
|
||||||
"Maybe public write..." => "Misschien zijn er publieke schrijfrechten nodig voor deze, of de bovenliggende map?",
|
"Maybe public write..." => "Misschien zijn er publieke schrijfrechten nodig voor deze, of de bovenliggende map?",
|
||||||
"Sorry, cannot move" => "Sorry, kan niet worden verplaatst",
|
"Sorry, cannot move" => "Kan niet worden verplaatst",
|
||||||
"Sorry, cannot save" => "Sorry, kan niet opslaan",
|
"Sorry, cannot save" => "Kan niet opslaan",
|
||||||
"Sorry, cannot replace..." => "Sorry, Kan geen tekst vervangen in",
|
"Sorry, cannot replace..." => "Kan geen tekst vervangen in",
|
||||||
"Sorry, cannot change..." => "Sorry, kan de rechten niet wijzigen voor",
|
"Sorry, cannot change..." => "Kan de rechten niet wijzigen voor",
|
||||||
"Sorry, cannot delete..." => "Sorry, kan de root level niet verwijderen",
|
"Sorry, cannot delete more..." => "U kunt niet meer dan een bestand tegelijkertijd verwijderen in FTP modus",
|
||||||
"Sorry, cannot delete" => "Sorry, kan niet verwijderd worden",
|
"Sorry, cannot delete..." => "Kan de root level niet verwijderen",
|
||||||
"Sorry, this file..." => "Sorry, het bestand is gewijzigd, maar kan niet worden opgeslagen",
|
"Sorry, cannot delete" => "Kan niet verwijderd worden",
|
||||||
|
"Sorry, this file..." => "Het bestand is gewijzigd, maar kan niet worden opgeslagen",
|
||||||
"Reload this file..." => "Vernieuw dit bestand en kopieer de huidige versie naar een nieuw bestand?",
|
"Reload this file..." => "Vernieuw dit bestand en kopieer de huidige versie naar een nieuw bestand?",
|
||||||
"There was a..." => "Er was een technisch probleem, mogelijk was er iets niet gereed. ICEcodeer heeft bestandsbeheer opnieuw geladen.",
|
"There was a..." => "Er was een technisch probleem, mogelijk was er iets niet gereed. ICEcodeer heeft bestandsbeheer opnieuw geladen.",
|
||||||
"displayed at" => "weergegeven op",
|
"displayed at" => "weergegeven op",
|
||||||
@@ -167,7 +178,9 @@ in lib/config__settings.php",
|
|||||||
"github paths" => "Github paden",
|
"github paths" => "Github paden",
|
||||||
"Choose existing path" => "Kies een bestaand pad",
|
"Choose existing path" => "Kies een bestaand pad",
|
||||||
"Local path" => "Lokaal pad",
|
"Local path" => "Lokaal pad",
|
||||||
|
"Slash prefixed" => "Slash prefix",
|
||||||
"Remote GitHub path" => "Extern Github pad",
|
"Remote GitHub path" => "Extern Github pad",
|
||||||
|
"Absolute URL beginning..." => "Absolute link, beginnend met https://github.com",
|
||||||
"Choose" => "Kies",
|
"Choose" => "Kies",
|
||||||
"Set local and..." => "Maak het lokale en externe pad leeg, om te verwijderen",
|
"Set local and..." => "Maak het lokale en externe pad leeg, om te verwijderen",
|
||||||
"Update" => "Update",
|
"Update" => "Update",
|
||||||
@@ -218,6 +231,8 @@ in lib/config__settings.php",
|
|||||||
"Jump to definition" => "Spring naar definitie / spring terug",
|
"Jump to definition" => "Spring naar definitie / spring terug",
|
||||||
"Comment uncomment" => "Commentaar (ongedaan) maken",
|
"Comment uncomment" => "Commentaar (ongedaan) maken",
|
||||||
"Insert tab indent" => "Invoegen tab / verspringen geselecteerd",
|
"Insert tab indent" => "Invoegen tab / verspringen geselecteerd",
|
||||||
|
"Insert more" => "Inspringen verruimen",
|
||||||
|
"Insert less" => "Inspringen verkleinen",
|
||||||
"Wrap with div" => "Omhullen met <div>",
|
"Wrap with div" => "Omhullen met <div>",
|
||||||
"Wrap with span" => "Omhullen met <span>",
|
"Wrap with span" => "Omhullen met <span>",
|
||||||
"Wrap unwrap p" => "Omhullen / onthullen met <p>",
|
"Wrap unwrap p" => "Omhullen / onthullen met <p>",
|
||||||
@@ -242,6 +257,7 @@ in lib/config__settings.php",
|
|||||||
"Close current tab" => "Sluit huidige tab",
|
"Close current tab" => "Sluit huidige tab",
|
||||||
"Open file prompt" => "Open bestands prompt",
|
"Open file prompt" => "Open bestands prompt",
|
||||||
"Find" => "Zoek",
|
"Find" => "Zoek",
|
||||||
|
"Previous" => "Vorige",
|
||||||
"Focus on Go..." => "Focus op ga naar regel invoer",
|
"Focus on Go..." => "Focus op ga naar regel invoer",
|
||||||
"Save" => "Opslaan",
|
"Save" => "Opslaan",
|
||||||
"Save as" => "Opslaan als...",
|
"Save as" => "Opslaan als...",
|
||||||
@@ -254,12 +270,18 @@ in lib/config__settings.php",
|
|||||||
|
|
||||||
"ice-coder" =>
|
"ice-coder" =>
|
||||||
array(
|
array(
|
||||||
|
"results" => "resultaten",
|
||||||
"No text selected..." => "Geen tekst geselecteerd om te zoeken",
|
"No text selected..." => "Geen tekst geselecteerd om te zoeken",
|
||||||
|
"all files" => "alle bestanden",
|
||||||
|
"all filenames" => "alle bestandsnamen",
|
||||||
|
"selected files" => "geselecteerde bestanden",
|
||||||
|
"selected filenames" => "geselecteerde bestandsnamaen",
|
||||||
"Creating Folder" => "Aanmaken map",
|
"Creating Folder" => "Aanmaken map",
|
||||||
"Sorry you can..." => "Sorry, je kan maximaal 100 bestanden open hebben staan!",
|
"Sorry you can..." => "Sorry, je kan maximaal 100 bestanden open hebben staan!",
|
||||||
"Opening File" => "Openen bestand",
|
"Opening File" => "Openen bestand",
|
||||||
"Enter relative file..." => "Geef relatieve bestands pad (voorafgaand door een slash) of een externe URL",
|
"Enter relative file..." => "Geef relatieve bestands pad (voorafgaand door een slash) of een externe URL",
|
||||||
"Getting" => "Ophalen",
|
"Getting" => "Ophalen",
|
||||||
|
"Saving" => "Opslaan:",
|
||||||
"Please enter the..." => "Voer de nieuwe naam in voor",
|
"Please enter the..." => "Voer de nieuwe naam in voor",
|
||||||
"Renaming to" => "Hernoemen naar",
|
"Renaming to" => "Hernoemen naar",
|
||||||
"Moving to" => "Verplaatsen naar",
|
"Moving to" => "Verplaatsen naar",
|
||||||
@@ -267,7 +289,13 @@ in lib/config__settings.php",
|
|||||||
"Pasting File" => "Bestand plakken",
|
"Pasting File" => "Bestand plakken",
|
||||||
"Sorry cannot paste..." => "Sorry, kan niet de gehele root plakken",
|
"Sorry cannot paste..." => "Sorry, kan niet de gehele root plakken",
|
||||||
"Nothing to paste..." => "Er is niets om te plakken, kopieer eerst een bestand of map!",
|
"Nothing to paste..." => "Er is niets om te plakken, kopieer eerst een bestand of map!",
|
||||||
|
"and" => "en",
|
||||||
|
"this document" => "dit bestand",
|
||||||
|
"replace" => "vervang",
|
||||||
|
"replace all" => "vervang alle",
|
||||||
|
"file" => "bestand",
|
||||||
"Replacing text in" => "Wijzig de tekst in",
|
"Replacing text in" => "Wijzig de tekst in",
|
||||||
|
"Sorry there was..." => "Helaas er is een fout opgetreden met uw aanvraag.\\n\\nKijk in de dev tools console voor meer informatie.",
|
||||||
"Cancelled tasks" => "Geannuleerde taken",
|
"Cancelled tasks" => "Geannuleerde taken",
|
||||||
"Open previous files" => "Open voorgaande bestand(en)?",
|
"Open previous files" => "Open voorgaande bestand(en)?",
|
||||||
"Please enter your..." => "Voer alstublieft uw GitHub token (personal access token of client/secret pair token). Zie ook de tooltip bij Github Auth Token binnen Bewerken > Opties voor meer informatie.",
|
"Please enter your..." => "Voer alstublieft uw GitHub token (personal access token of client/secret pair token). Zie ook de tooltip bij Github Auth Token binnen Bewerken > Opties voor meer informatie.",
|
||||||
@@ -286,16 +314,17 @@ in lib/config__settings.php",
|
|||||||
"login" => "login",
|
"login" => "login",
|
||||||
"To disable registration..." => "Om de registratie modus uit te zetten, open het menu opties of open lib/config___settings.php en wijzig enableRegistration naar false",
|
"To disable registration..." => "Om de registratie modus uit te zetten, open het menu opties of open lib/config___settings.php en wijzig enableRegistration naar false",
|
||||||
"Registration mode enabled" => "Registratie modus aan",
|
"Registration mode enabled" => "Registratie modus aan",
|
||||||
|
"disable further registrations" => "uitschakelen van verdere registraties",
|
||||||
"auto-check for updates" => "automatisch controleren op updates",
|
"auto-check for updates" => "automatisch controleren op updates",
|
||||||
"To put into..." => "Om de multi-user modus te gebruiken, open het menu opties of open lib/config___settings.php en verander multiUser naar true",
|
"To put into..." => "Om de multi-user modus te gebruiken, open het menu opties of open lib/config___settings.php en verander multiUser naar true",
|
||||||
"multi-user" => "multi-user"
|
"multi-user" => "multi-user"
|
||||||
),
|
),
|
||||||
|
|
||||||
"multiple-results" =>
|
"multiple-results" =>
|
||||||
array(
|
array(
|
||||||
"rename all" => "hernoem alles",
|
"rename all" => "hernoem alles",
|
||||||
"replace all" => "vervang alles",
|
"replace all" => "vervang alles",
|
||||||
"document" => "document",
|
"document" => "bestand",
|
||||||
"Found" => "Gevonden",
|
"Found" => "Gevonden",
|
||||||
"times" => "keer",
|
"times" => "keer",
|
||||||
"replace" => "vervang",
|
"replace" => "vervang",
|
||||||
@@ -368,14 +397,20 @@ in lib/config__settings.php",
|
|||||||
"version" => "versie",
|
"version" => "versie",
|
||||||
"website" => "website",
|
"website" => "website",
|
||||||
"git" => "git",
|
"git" => "git",
|
||||||
"codemirror dir" => "codemirror dir",
|
"codemirror dir" => "codemirror map",
|
||||||
"codemirror version" => "codemirror versie",
|
"codemirror version" => "codemirror versie",
|
||||||
"file manager root" => "bestandsbeheer root",
|
"file manager root" => "bestandsbeheer root",
|
||||||
"Free to use..." => "Vrij voor eigen gebruik, commercieel of persoonlijk. :)<br><br>Wij zijn niet aansprakelijk en bieden geen garantie, gebruik op eigen risico.<br><br>Een hoop fantastische mensen, en bedrijven hebben meegeholpen aan de ontwikkeling van ICEcoder waarvoor bedankt. Zie wie er allemaal heeft bijgedragen op",
|
"backups" => "backups",
|
||||||
|
"keep version control..." => "gebruik versiebeheer backups voor",
|
||||||
|
"day" => "dag",
|
||||||
|
"days" => "dagen",
|
||||||
|
"of backups stored..." => "of backups stored currently",
|
||||||
|
"Get in contact..." => "Kom in contact via...",
|
||||||
|
"You may use..." => "Vrij voor eigen gebruik, commercieel of persoonlijk. Laat het ons weten als je toffe aanpassingen maakt :)<br><br>Wij zijn niet aansprakelijk en bieden geen garantie, gebruik op eigen risico.",
|
||||||
"functionality" => "functionaliteit",
|
"functionality" => "functionaliteit",
|
||||||
"check for updates..." => "check voor updates bij laden",
|
"check for updates..." => "check voor updates bij laden",
|
||||||
"auto open last..." => "automatisch openen laatst geopende bestanden na inloggen",
|
"auto open last..." => "automatisch openen laatst geopende bestanden na inloggen",
|
||||||
"when finding in..." => "when finding in files, exclude",
|
"when finding in..." => "Uitgesloten bestand typen",
|
||||||
"assisting" => "assisteren",
|
"assisting" => "assisteren",
|
||||||
"code assist" => "codehulp",
|
"code assist" => "codehulp",
|
||||||
"visible tabs" => "zichtbare tabs",
|
"visible tabs" => "zichtbare tabs",
|
||||||
@@ -389,19 +424,27 @@ in lib/config__settings.php",
|
|||||||
"banned files/folders" => "uitgesloten bestanden/mappen",
|
"banned files/folders" => "uitgesloten bestanden/mappen",
|
||||||
"banned paths" => "uitgesloten paden",
|
"banned paths" => "uitgesloten paden",
|
||||||
"ip addresses" => "ip adressen",
|
"ip addresses" => "ip adressen",
|
||||||
|
"auto-logout after" => "auto-logout na",
|
||||||
|
"mins of inactivity..." => "minuten in actief, tenzij er niet opgeslagen bestanden geopend zijn",
|
||||||
"Slash prefixed comma..." => "Slash prefixed, komma gescheiden",
|
"Slash prefixed comma..." => "Slash prefixed, komma gescheiden",
|
||||||
"Comma delimited" => "komma gescheiden",
|
"Comma delimited" => "komma gescheiden",
|
||||||
"style" => "style",
|
"style" => "style",
|
||||||
"theme" => "thema",
|
"theme" => "thema",
|
||||||
"line wrapping" => "regel omslag",
|
"line wrapping" => "regel omslag",
|
||||||
|
"line numbers" => "regel nummers",
|
||||||
"indent type" => "inspring type",
|
"indent type" => "inspring type",
|
||||||
"indent size" => "inspring size",
|
"indent size" => "inspring size",
|
||||||
|
"match brackets" => "match brackets",
|
||||||
|
"show trailing space" => "show trailing space",
|
||||||
"font size" => "lettergrootte",
|
"font size" => "lettergrootte",
|
||||||
"auto indent" => "auto indent",
|
"auto indent" => "automatisch inspringen",
|
||||||
|
"auto close tags" => "automatisch tags sluiten",
|
||||||
|
"auto close brackets" => "automatsich brackets sluiten",
|
||||||
"layout" => "lay-out",
|
"layout" => "lay-out",
|
||||||
"plugin panel aligned" => "plug-in paneel positie",
|
"plugin panel aligned" => "plug-in paneel positie",
|
||||||
"file manager" => "bestandsbeheer",
|
"file manager" => "bestandsbeheer",
|
||||||
"root" => "root",
|
"root" => "root",
|
||||||
|
"Set 0 to..." => "Set 0 to disable",
|
||||||
"Slash prefixed" => "Slash prefixed",
|
"Slash prefixed" => "Slash prefixed",
|
||||||
"bug reporting" => "bug rapportage",
|
"bug reporting" => "bug rapportage",
|
||||||
"check in files" => "check in bestanden",
|
"check in files" => "check in bestanden",
|
||||||
@@ -440,7 +483,7 @@ in lib/config__settings.php",
|
|||||||
"Type of text" => "Type tekst",
|
"Type of text" => "Type tekst",
|
||||||
"Fixed text" => "Fixed tekst",
|
"Fixed text" => "Fixed tekst",
|
||||||
"Regular expression" => "Reguliere expressie",
|
"Regular expression" => "Reguliere expressie",
|
||||||
"Case sensitive" => "Case sensitive",
|
"Case sensitive" => "Hoofdletter gevoelig",
|
||||||
"Yes" => "Ja",
|
"Yes" => "Ja",
|
||||||
"No" => "Nee",
|
"No" => "Nee",
|
||||||
"Search" => "Zoek",
|
"Search" => "Zoek",
|
||||||
|
|||||||
@@ -115,7 +115,8 @@ $text = array(
|
|||||||
"auto-logout-warning" =>
|
"auto-logout-warning" =>
|
||||||
array(
|
array(
|
||||||
"Auto Logout Warning" => "Auto logout warning",
|
"Auto Logout Warning" => "Auto logout warning",
|
||||||
"You will be..." => "You will be logged out after 60 seconds due to inactivity, for security purposes. Use the mouse or hit a key to continue.<br><br>You can adjust or disable this from the Edit > Settings section."
|
"You will be..." => "You will be logged out after",
|
||||||
|
"seconds due to..." => "seconds due to inactivity, for security purposes. Use the mouse or hit a key to continue.<br><br>You can adjust or disable this from the Edit > Settings section."
|
||||||
),
|
),
|
||||||
|
|
||||||
"backup-versions" =>
|
"backup-versions" =>
|
||||||
@@ -151,8 +152,8 @@ $text = array(
|
|||||||
"Sorry, cannot delete more..." => "Sorry, cannot delete more then one item at a time under FTP mode",
|
"Sorry, cannot delete more..." => "Sorry, cannot delete more then one item at a time under FTP mode",
|
||||||
"Sorry, cannot delete..." => "Sorry, cannot delete the root level",
|
"Sorry, cannot delete..." => "Sorry, cannot delete the root level",
|
||||||
"Sorry, cannot delete" => "Sorry, cannot delete",
|
"Sorry, cannot delete" => "Sorry, cannot delete",
|
||||||
"Sorry, this file..." => "Sorry, this file has changed, cannot save",
|
"Sorry, this file..." => "Sorry, this file has changed outside of ICEcoder, cannot save",
|
||||||
"Reload this file..." => "Reload this file and copy your version to a diff pane?",
|
"Reload this file..." => "Reload this file and copy your version to a diff pane?\\\\n(left side = file from server, right side = unsaved file)",
|
||||||
"There was a..." => "There was a tech hiccup, likely something was not quite ready. So ICEcoder reloaded its file control again.",
|
"There was a..." => "There was a tech hiccup, likely something was not quite ready. So ICEcoder reloaded its file control again.",
|
||||||
"displayed at" => "displayed at",
|
"displayed at" => "displayed at",
|
||||||
"Enter filename to..." => "Enter filename to save at",
|
"Enter filename to..." => "Enter filename to save at",
|
||||||
@@ -160,6 +161,37 @@ $text = array(
|
|||||||
"Saving" => "Saving"
|
"Saving" => "Saving"
|
||||||
),
|
),
|
||||||
|
|
||||||
|
"ftp-manager" =>
|
||||||
|
array(
|
||||||
|
"Saving FTP sites" => "Saving FTP sites",
|
||||||
|
"Cannot update config..." => "Cannot update config file. Please set public write permissions on",
|
||||||
|
"and try again" => "and try again",
|
||||||
|
"ftp manager" => "ftp manager",
|
||||||
|
"Choose existing site" => "Choose existing site",
|
||||||
|
"Are you sure..." => "Are you sure you wish to remove this site?",
|
||||||
|
"Add new site" => "Add new site",
|
||||||
|
"Edit site" => "Edit site",
|
||||||
|
"Site base" => "Site base",
|
||||||
|
"Host" => "Host",
|
||||||
|
"Username" => "Username",
|
||||||
|
"Password" => "Password",
|
||||||
|
"PASV and mode" => "PASV and mode",
|
||||||
|
"Root" => "Root",
|
||||||
|
"eg http://yourdomain.com" => "eg http://yourdomain.com",
|
||||||
|
"eg ftp.yourdomain.com" => "eg ftp.yourdomain.com",
|
||||||
|
"eg user123" => "eg user123",
|
||||||
|
"eg pass123" => "eg pass123",
|
||||||
|
"Use PASV mode..." => "Use PASV mode if your FTP site requires it and choose the data transfer type - ASCII or binary",
|
||||||
|
"eg /htdocs" => "eg /htdocs",
|
||||||
|
"PASV connection off" => "PASV connection off",
|
||||||
|
"PASV connection on" => "PASV connection on",
|
||||||
|
"ASCII transfer" => "ASCII transfer",
|
||||||
|
"Binary transfer" => "Binary transfer",
|
||||||
|
"Add" => "Add",
|
||||||
|
"Choose" => "Choose",
|
||||||
|
"Update" => "Update"
|
||||||
|
),
|
||||||
|
|
||||||
"get-branch" =>
|
"get-branch" =>
|
||||||
array(
|
array(
|
||||||
"There are no..." => "There are no differences between the local and GitHub repo. Switch back to regular mode?",
|
"There are no..." => "There are no differences between the local and GitHub repo. Switch back to regular mode?",
|
||||||
@@ -429,10 +461,15 @@ $text = array(
|
|||||||
"style" => "style",
|
"style" => "style",
|
||||||
"theme" => "theme",
|
"theme" => "theme",
|
||||||
"line wrapping" => "line wrapping",
|
"line wrapping" => "line wrapping",
|
||||||
|
"line numbers" => "line numbers",
|
||||||
"indent type" => "indent type",
|
"indent type" => "indent type",
|
||||||
"indent size" => "indent size",
|
"indent size" => "indent size",
|
||||||
|
"match brackets" => "match brackets",
|
||||||
|
"show trailing space" => "show trailing space",
|
||||||
"font size" => "font size",
|
"font size" => "font size",
|
||||||
"auto indent" => "auto indent",
|
"auto indent" => "auto indent",
|
||||||
|
"auto close tags" => "auto close tags",
|
||||||
|
"auto close brackets" => "auto close brackets",
|
||||||
"layout" => "layout",
|
"layout" => "layout",
|
||||||
"plugin panel aligned" => "plugin panel aligned",
|
"plugin panel aligned" => "plugin panel aligned",
|
||||||
"file manager" => "file manager",
|
"file manager" => "file manager",
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ $t = $text['auto-logout-warning'];
|
|||||||
|
|
||||||
<h1 id="title"><?php echo $t['Auto Logout Warning'];?></h1>
|
<h1 id="title"><?php echo $t['Auto Logout Warning'];?></h1>
|
||||||
|
|
||||||
<?php echo $t['You will be...'];?>
|
<?php echo $t['You will be...'];?> <span id="timeRemaning">60</span> <?php echo $t['seconds due to...'];?>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ include("settings.php");
|
|||||||
$file = str_replace("|","/",xssClean($_GET['file'],'html'));
|
$file = str_replace("|","/",xssClean($_GET['file'],'html'));
|
||||||
|
|
||||||
// Get contents
|
// Get contents
|
||||||
$loadedFile = toUTF8noBOM(file_get_contents("../backups/".$file,false,$context),true);
|
$loadedFile = toUTF8noBOM(getData("../backups/".$file),true);
|
||||||
$encoding=ini_get("default_charset");
|
$encoding=ini_get("default_charset");
|
||||||
if($encoding=="")
|
if($encoding=="")
|
||||||
$encoding="UTF-8";
|
$encoding="UTF-8";
|
||||||
|
|||||||
@@ -24,8 +24,25 @@ $versions = $fileCountInfo['count'];
|
|||||||
.CodeMirror {position: absolute; width: 409px; height: 180px; font-size: <?php echo $ICEcoder["fontSize"];?>}
|
.CodeMirror {position: absolute; width: 409px; height: 180px; font-size: <?php echo $ICEcoder["fontSize"];?>}
|
||||||
.CodeMirror-scroll {overflow: hidden}
|
.CodeMirror-scroll {overflow: hidden}
|
||||||
/* Make sure this next one remains the 3rd item, updated with JS */
|
/* Make sure this next one remains the 3rd item, updated with JS */
|
||||||
.cm-tab {border-left-width: <?php echo $ICEcoder["visibleTabs"] ? "1px" : "0";?>; margin-left: <?php echo $ICEcoder["visibleTabs"] ? "-1px" : "0";?>; border-left-style: solid; border-left-color: rgba(255,255,255,0.2)}
|
.cm-tab {border-left-width: <?php echo $ICEcoder["visibleTabs"] ? "1px" : "0";?>; margin-left: <?php echo $ICEcoder["visibleTabs"] ? "-1px" : "0";?>; border-left-style: solid; border-left-color: rgba(255,255,255,0.15)}
|
||||||
|
.cm-trailingspace {
|
||||||
|
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==);
|
||||||
|
background-position: bottom left;
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
}
|
||||||
|
.CodeMirror-foldmarker {font-family: arial; line-height: .3; color: #b00; cursor: pointer;
|
||||||
|
text-shadow: #fff 1px 1px 2px, #fff -1px -1px 2px, #fff 1px -1px 2px, #fff -1px 1px 2px;
|
||||||
|
}
|
||||||
|
.CodeMirror-foldgutter {display: inline-block; width: 13px}
|
||||||
|
.CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded {position: absolute; display: inline-block; width: 13px; height: 13px; font-size: 14px; text-align: center; cursor: pointer}
|
||||||
|
.CodeMirror-foldgutter-open {background: rgba(255,255,255,0.04); color: #666}
|
||||||
|
.CodeMirror-foldgutter-open:after {position: relative; top: -2px}
|
||||||
|
.CodeMirror-foldgutter-folded {background: #800; color: #ddd}
|
||||||
|
.CodeMirror-foldgutter-folded:after {position: relative; top: -3px}
|
||||||
</style>
|
</style>
|
||||||
|
<script src="../<?php echo $ICEcoder["codeMirrorDir"]; ?>/addon/fold/foldcode.js?microtime=<?php echo microtime(true);?>"></script>
|
||||||
|
<script src="../<?php echo $ICEcoder["codeMirrorDir"]; ?>/addon/fold/foldgutter.js?microtime=<?php echo microtime(true);?>"></script>
|
||||||
|
<link rel="stylesheet" href="../<?php echo $ICEcoder["codeMirrorDir"]; ?>/addon/fold/foldgutter.css?microtime=<?php echo microtime(true);?>">
|
||||||
<link rel="stylesheet" href="editor.css?microtime=<?php echo microtime(true);?>">
|
<link rel="stylesheet" href="editor.css?microtime=<?php echo microtime(true);?>">
|
||||||
<?php
|
<?php
|
||||||
$themeArray = array();
|
$themeArray = array();
|
||||||
@@ -74,9 +91,7 @@ foreach ($dateCounts as $key => $value) {
|
|||||||
<div style="display: none; width: 180px; margin-left: 30px" id="buttonsContainer">
|
<div style="display: none; width: 180px; margin-left: 30px" id="buttonsContainer">
|
||||||
<div class="button" onclick="openNew()">Open in new tab</div>
|
<div class="button" onclick="openNew()">Open in new tab</div>
|
||||||
<div class="button" onclick="openDiff()">Open in diff mode</div>
|
<div class="button" onclick="openDiff()">Open in diff mode</div>
|
||||||
<!--
|
<div class="button" onclick="restoreVersion()">Restore as new version</div>
|
||||||
<div class="button" onclick="alert('Function not available yet - Coming in v5.4')">Restore as new version</div>
|
|
||||||
//-->
|
|
||||||
<div id="infoContainer"></div>
|
<div id="infoContainer"></div>
|
||||||
</div>
|
</div>
|
||||||
<div style="display: none">
|
<div style="display: none">
|
||||||
@@ -93,12 +108,27 @@ var highlightVersion = function(elem) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<?php
|
||||||
|
echo "fileName = '".basename($file)."';";
|
||||||
|
include(dirname(__FILE__)."/language-modes-partial.js");
|
||||||
|
?>
|
||||||
|
|
||||||
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
||||||
lineNumbers: true,
|
mode: mode,
|
||||||
readOnly: "nocursor",
|
lineNumbers: top.ICEcoder.lineNumbers,
|
||||||
|
gutters: ["CodeMirror-foldgutter","CodeMirror-lint-markers","CodeMirror-linenumbers"],
|
||||||
|
foldGutter: {gutter: "CodeMirror-foldgutter"},
|
||||||
|
foldOptions: {minFoldSize: 1},
|
||||||
|
lineWrapping: top.ICEcoder.lineWrapping,
|
||||||
|
indentWithTabs: top.ICEcoder.indentWithTabs,
|
||||||
indentUnit: top.ICEcoder.indentSize,
|
indentUnit: top.ICEcoder.indentSize,
|
||||||
tabSize: top.ICEcoder.indentSize,
|
tabSize: top.ICEcoder.indentSize,
|
||||||
mode: "javascript",
|
matchBrackets: top.ICEcoder.matchBrackets,
|
||||||
|
electricChars: false,
|
||||||
|
highlightSelectionMatches: true,
|
||||||
|
showTrailingSpace: top.ICEcoder.showTrailingSpace,
|
||||||
|
lint: false,
|
||||||
|
readOnly: "nocursor",
|
||||||
theme: "<?php echo $ICEcoder["theme"]=="default" ? 'icecoder' : $ICEcoder["theme"];?>"
|
theme: "<?php echo $ICEcoder["theme"]=="default" ? 'icecoder' : $ICEcoder["theme"];?>"
|
||||||
});
|
});
|
||||||
editor.setSize("480px","500px");
|
editor.setSize("480px","500px");
|
||||||
@@ -121,6 +151,18 @@ var openDiff = function() {
|
|||||||
top.ICEcoder.focus('diff');
|
top.ICEcoder.focus('diff');
|
||||||
cMDiff.setValue(editor.getValue());
|
cMDiff.setValue(editor.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var restoreVersion = function() {
|
||||||
|
var cM;
|
||||||
|
|
||||||
|
if (top.ICEcoder.ask("To confirm - this will paste the displayed backup content to your current tab and save, OK?")) {
|
||||||
|
top.ICEcoder.showHide('hide',top.document.getElementById('blackMask'))
|
||||||
|
cM = top.ICEcoder.getcMInstance();
|
||||||
|
top.ICEcoder.focus();
|
||||||
|
cM.setValue(editor.getValue());
|
||||||
|
top.ICEcoder.saveFile();
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$ICEcoderUserSettings = array(
|
$ICEcoderUserSettings = array(
|
||||||
"versionNo" => "5.5",
|
"versionNo" => "5.7",
|
||||||
"licenseEmail" => "",
|
"licenseEmail" => "",
|
||||||
"licenseCode" => "",
|
"licenseCode" => "",
|
||||||
"configCreateDate" => 0,
|
"configCreateDate" => 0,
|
||||||
@@ -25,6 +25,11 @@ $ICEcoderUserSettings = array(
|
|||||||
"theme" => "default",
|
"theme" => "default",
|
||||||
"fontSize" => "13px",
|
"fontSize" => "13px",
|
||||||
"lineWrapping" => true,
|
"lineWrapping" => true,
|
||||||
|
"lineNumbers" => true,
|
||||||
|
"showTrailingSpace" => true,
|
||||||
|
"matchBrackets" => true,
|
||||||
|
"autoCloseTags" => true,
|
||||||
|
"autoCloseBrackets" => true,
|
||||||
"indentWithTabs" => true,
|
"indentWithTabs" => true,
|
||||||
"indentAuto" => true,
|
"indentAuto" => true,
|
||||||
"indentSize" => 4,
|
"indentSize" => 4,
|
||||||
@@ -34,6 +39,7 @@ $ICEcoderUserSettings = array(
|
|||||||
"bugFileMaxLines" => 0,
|
"bugFileMaxLines" => 0,
|
||||||
"githubAuthToken" => "",
|
"githubAuthToken" => "",
|
||||||
"plugins" => array(),
|
"plugins" => array(),
|
||||||
|
"ftpSites" => array(),
|
||||||
"githubLocalPaths" => array(),
|
"githubLocalPaths" => array(),
|
||||||
"githubRemotePaths" => array(),
|
"githubRemotePaths" => array(),
|
||||||
"previousFiles" => "",
|
"previousFiles" => "",
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ include("settings.php");
|
|||||||
$file = realpath($docRoot.$iceRoot.str_replace("|","/",strClean($_GET['file'])));
|
$file = realpath($docRoot.$iceRoot.str_replace("|","/",strClean($_GET['file'])));
|
||||||
// If it doesn't exist, or doesn't start with the $docRoot, stop here
|
// If it doesn't exist, or doesn't start with the $docRoot, stop here
|
||||||
if (!file_exists($file) || strpos(str_replace("\\","/",$file),$docRoot) !== 0) {
|
if (!file_exists($file) || strpos(str_replace("\\","/",$file),$docRoot) !== 0) {
|
||||||
die("<script>alert('Sorry, that file doesn\'t appear to exist');</script>");
|
die("<script>top.ICEcoder.message('Sorry, that file doesn\'t appear to exist');</script>");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (file_exists($file)) {
|
if (file_exists($file)) {
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ if (!$error) {
|
|||||||
// Die if the file requested isn't something we expect
|
// Die if the file requested isn't something we expect
|
||||||
if(
|
if(
|
||||||
// On the banned file/dir list
|
// On the banned file/dir list
|
||||||
($_SESSION['bannedFiles'][$i] != "" && strpos($allFiles[$i],$_SESSION['bannedFiles'][$i])!==false) ||
|
(str_replace("*","",$_SESSION['bannedFiles'][$i]) != "" && strpos($allFiles[$i],str_replace("*","",$_SESSION['bannedFiles'][$i]))!==false) ||
|
||||||
// A local folder that isn't the doc root or starts with the doc root
|
// A local folder that isn't the doc root or starts with the doc root
|
||||||
($_GET['action']!="getRemoteFile" && !isset($ftpSite) &&
|
($_GET['action']!="getRemoteFile" && !isset($ftpSite) &&
|
||||||
rtrim($allFiles[$i],"/") !== rtrim($docRoot,"/") &&
|
rtrim($allFiles[$i],"/") !== rtrim($docRoot,"/") &&
|
||||||
@@ -230,7 +230,7 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
/* console.log(\'Calling \'+saveURL+\' via XHR\'); */
|
/* console.log(\'Calling \'+saveURL+\' via XHR\'); */
|
||||||
xhr.open("POST",saveURL,true);
|
xhr.open("POST",saveURL,true);
|
||||||
xhr.setRequestHeader(\'Content-type\', \'application/x-www-form-urlencoded\');
|
xhr.setRequestHeader(\'Content-type\', \'application/x-www-form-urlencoded\');
|
||||||
xhr.send(\'timeStart='.$_POST["timeStart"].'&file='.$fileURL.'&newFileName=\'+newFileName.replace(/\\\+/g,"%2B")+\'&contents=\'+encodeURIComponent(top.ICEcoder.saveAsContent));
|
xhr.send(\'timeStart='.numClean($_POST["timeStart"]).'&file='.$fileURL.'&newFileName=\'+newFileName.replace(/\\\+/g,"%2B")+\'&contents=\'+encodeURIComponent(top.ICEcoder.saveAsContent));
|
||||||
top.ICEcoder.serverMessage("<b>'.$t['Saving'].'</b><br>" + "'.($finalAction == "Save" ? "newFileName" : "'".$fileName."'").'");
|
top.ICEcoder.serverMessage("<b>'.$t['Saving'].'</b><br>" + "'.($finalAction == "Save" ? "newFileName" : "'".$fileName."'").'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -270,7 +270,7 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
if (isset($_POST['changes'])) {
|
if (isset($_POST['changes'])) {
|
||||||
// Get existing file contents as lines
|
// Get existing file contents as lines
|
||||||
$loadedFile = toUTF8noBOM(ftpGetContents($ftpConn, $ftpRoot.$fileLoc."/".$fileName, $ftpMode));
|
$loadedFile = toUTF8noBOM(ftpGetContents($ftpConn, $ftpRoot.$fileLoc."/".$fileName, $ftpMode));
|
||||||
$fileLines = explode("\n",$loadedFile);
|
$fileLines = explode("\n",str_replace("\r","",$loadedFile));
|
||||||
// Need to add a new line at the end of each because explode will lose them,
|
// Need to add a new line at the end of each because explode will lose them,
|
||||||
// want want to end up with same array that 'file($file)' produces for a local file
|
// want want to end up with same array that 'file($file)' produces for a local file
|
||||||
// - it keeps the line endings at the end of each array item
|
// - it keeps the line endings at the end of each array item
|
||||||
@@ -305,9 +305,10 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
// Write our file contents
|
// Write our file contents
|
||||||
if (!ftpWriteFile($ftpConn, $ftpFilepath, $contents, $ftpMode)) {
|
if (!ftpWriteFile($ftpConn, $ftpFilepath, $contents, $ftpMode)) {
|
||||||
$doNext .= 'top.ICEcoder.message("Sorry, could not write '.$ftpFilepath.' at '.$ftpHost.'");';
|
$doNext .= 'top.ICEcoder.message("Sorry, could not write '.$ftpFilepath.' at '.$ftpHost.'");';
|
||||||
|
} else {
|
||||||
|
$doNext .= 'top.ICEcoder.openFileMDTs[top.ICEcoder.selectedTab-1]="'.$filemtime.'";';
|
||||||
|
$doNext .= '(function() {var x=top.ICEcoder.openFileVersions; var y=top.ICEcoder.selectedTab-1; x[y] = "undefined" != typeof x[y] ? x[y]+1 : 1})();top.ICEcoder.updateVersionsDisplay();';
|
||||||
}
|
}
|
||||||
$doNext .= 'top.ICEcoder.openFileMDTs[top.ICEcoder.selectedTab-1]="'.$filemtime.'";';
|
|
||||||
$doNext .= '(function() {var x=top.ICEcoder.openFileVersions; var y=top.ICEcoder.selectedTab-1; x[y] = "undefined" != typeof x[y] ? x[y]+1 : 1})();top.ICEcoder.updateVersionsDisplay();';
|
|
||||||
// Local saving
|
// Local saving
|
||||||
} else {
|
} else {
|
||||||
if (isset($_POST['changes'])) {
|
if (isset($_POST['changes'])) {
|
||||||
@@ -318,7 +319,7 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
// get old file contents, and count stats on usage \n and \r there
|
// get old file contents, and count stats on usage \n and \r there
|
||||||
// in this case we can keep line endings, which file had before, without
|
// in this case we can keep line endings, which file had before, without
|
||||||
// making code version control systems going crazy about line endings change in whole file.
|
// making code version control systems going crazy about line endings change in whole file.
|
||||||
$oldContents = file_exists($file)?file_get_contents($file):'';
|
$oldContents = file_exists($file)?getData($file):'';
|
||||||
$unixNewLines = preg_match_all('/[^\r][\n]/u', $oldContents);
|
$unixNewLines = preg_match_all('/[^\r][\n]/u', $oldContents);
|
||||||
$windowsNewLines = preg_match_all('/[\r][\n]/u', $oldContents);
|
$windowsNewLines = preg_match_all('/[\r][\n]/u', $oldContents);
|
||||||
} else {
|
} else {
|
||||||
@@ -398,7 +399,7 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
// Have a version index already? Update contents
|
// Have a version index already? Update contents
|
||||||
if (file_exists($backupIndex)) {
|
if (file_exists($backupIndex)) {
|
||||||
$versionsInfo = "";
|
$versionsInfo = "";
|
||||||
$versionsInfoOrig = file_get_contents($backupIndex,false,$context);
|
$versionsInfoOrig = getData($backupIndex);
|
||||||
$versionsInfoOrig = explode("\n",$versionsInfoOrig);
|
$versionsInfoOrig = explode("\n",$versionsInfoOrig);
|
||||||
$replacedLine = false;
|
$replacedLine = false;
|
||||||
// For each line, either re-set number or simply include the line
|
// For each line, either re-set number or simply include the line
|
||||||
@@ -450,7 +451,7 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
// Reload previewWindow window if not a Markdown file
|
// Reload previewWindow window if not a Markdown file
|
||||||
// In doing this, we check on an interval for the page to be complete and if we last saw it loading
|
// In doing this, we check on an interval for the page to be complete and if we last saw it loading
|
||||||
// When we are done loading, so set the loading status to false and load plugins ontop...
|
// When we are done loading, so set the loading status to false and load plugins ontop...
|
||||||
$doNext .= 'if (top.ICEcoder.previewWindow.location && top.ICEcoder.previewWindow.location.pathname.indexOf(".md")==-1) {
|
$doNext .= 'if (top.ICEcoder.previewWindow.location && top.ICEcoder.previewWindow.location.pathname && top.ICEcoder.previewWindow.location.pathname.indexOf(".md")==-1) {
|
||||||
top.ICEcoder.previewWindowLoading = false;
|
top.ICEcoder.previewWindowLoading = false;
|
||||||
top.ICEcoder.previewWindow.location.reload(true);
|
top.ICEcoder.previewWindow.location.reload(true);
|
||||||
|
|
||||||
@@ -494,7 +495,7 @@ if (!$error && $_GET['action']=="save") {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
// Only applicable for local files
|
// Only applicable for local files
|
||||||
$loadedFile = toUTF8noBOM(file_get_contents($file,false,$context),true);
|
$loadedFile = toUTF8noBOM(getData($file),true);
|
||||||
$fileCountInfo = getVersionsCount($fileLoc,$fileName);
|
$fileCountInfo = getVersionsCount($fileLoc,$fileName);
|
||||||
$doNext .= '
|
$doNext .= '
|
||||||
var loadedFile = document.createElement("textarea");
|
var loadedFile = document.createElement("textarea");
|
||||||
@@ -851,7 +852,7 @@ function rrmdir($dir) {
|
|||||||
|
|
||||||
if (!isset($ftpSite) && !$error && $_GET['action']=="replaceText") {
|
if (!isset($ftpSite) && !$error && $_GET['action']=="replaceText") {
|
||||||
if (!$demoMode && is_writable($file)) {
|
if (!$demoMode && is_writable($file)) {
|
||||||
$loadedFile = toUTF8noBOM(file_get_contents($file,false,$context),true);
|
$loadedFile = toUTF8noBOM(getData($file),true);
|
||||||
$newContent = str_replace(strClean($_GET['find']),strClean($_GET['replace']),$loadedFile);
|
$newContent = str_replace(strClean($_GET['find']),strClean($_GET['replace']),$loadedFile);
|
||||||
$fh = fopen($file, 'w') or die($t['Sorry, cannot save']);
|
$fh = fopen($file, 'w') or die($t['Sorry, cannot save']);
|
||||||
fwrite($fh, $newContent);
|
fwrite($fh, $newContent);
|
||||||
@@ -872,7 +873,7 @@ if (!isset($ftpSite) && !$error && $_GET['action']=="replaceText") {
|
|||||||
|
|
||||||
if (!isset($ftpSite) && !$error && $_GET['action']=="getRemoteFile") {
|
if (!isset($ftpSite) && !$error && $_GET['action']=="getRemoteFile") {
|
||||||
$lineNumber = max(isset($_REQUEST['lineNumber'])?intval($_REQUEST['lineNumber']):1, 1);
|
$lineNumber = max(isset($_REQUEST['lineNumber'])?intval($_REQUEST['lineNumber']):1, 1);
|
||||||
if ($remoteFile = toUTF8noBOM(file_get_contents($file,false,$context),true)) {
|
if ($remoteFile = toUTF8noBOM(getData($file,'curl'),true)) {
|
||||||
// replace \r\n (Windows), \r (old Mac) and \n (Linux) line endings with whatever we chose to be lineEnding
|
// replace \r\n (Windows), \r (old Mac) and \n (Linux) line endings with whatever we chose to be lineEnding
|
||||||
$remoteFile = str_replace("\r\n", $ICEcoder["lineEnding"], $remoteFile);
|
$remoteFile = str_replace("\r\n", $ICEcoder["lineEnding"], $remoteFile);
|
||||||
$remoteFile = str_replace("\r", $ICEcoder["lineEnding"], $remoteFile);
|
$remoteFile = str_replace("\r", $ICEcoder["lineEnding"], $remoteFile);
|
||||||
@@ -945,7 +946,7 @@ if (!isset($filemtime) && !is_dir($file)) {
|
|||||||
$filemtime = $serverType=="Linux" ? filemtime($file) : "1000000";
|
$filemtime = $serverType=="Linux" ? filemtime($file) : "1000000";
|
||||||
}
|
}
|
||||||
// Set $timeStart, use 0 if not available
|
// Set $timeStart, use 0 if not available
|
||||||
$timeStart = isset($_POST["timeStart"]) ? $_POST["timeStart"] : 0;
|
$timeStart = isset($_POST["timeStart"]) ? numClean($_POST["timeStart"]) : 0;
|
||||||
|
|
||||||
if (isset($ftpSite)) {
|
if (isset($ftpSite)) {
|
||||||
// Get info on dir/file now
|
// Get info on dir/file now
|
||||||
@@ -978,12 +979,12 @@ echo '{
|
|||||||
"exists": '.$itemExists.'
|
"exists": '.$itemExists.'
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"initial" : "'.$_GET["action"].'",
|
"initial" : "'.xssClean($_GET['action'],"html").'",
|
||||||
"final" : "'.$finalAction.'",
|
"final" : "'.$finalAction.'",
|
||||||
"timeStart": '.$timeStart.',
|
"timeStart": '.$timeStart.',
|
||||||
"timeEnd": 0,
|
"timeEnd": 0,
|
||||||
"timeTaken": 0,
|
"timeTaken": 0,
|
||||||
"csrf": "'.$_GET["csrf"].'",
|
"csrf": "'.xssClean($_GET['csrf'],"html").'",
|
||||||
"doNext" : "'.preg_replace('/\r|\n/','',str_replace(' ','',str_replace('"','\"',$doNext))).'top.ICEcoder.switchMode();"
|
"doNext" : "'.preg_replace('/\r|\n/','',str_replace(' ','',str_replace('"','\"',$doNext))).'top.ICEcoder.switchMode();"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ for ($i=0; $i<count($allFiles); $i++) {
|
|||||||
// Or a remote URL that doesn't start http
|
// Or a remote URL that doesn't start http
|
||||||
($_GET['action']=="getRemoteFile" && strpos($allFiles[$i],"http") !== 0)
|
($_GET['action']=="getRemoteFile" && strpos($allFiles[$i],"http") !== 0)
|
||||||
) {
|
) {
|
||||||
die("alert('Sorry! - problem with file requested');</script>");
|
die("top.ICEcoder.message('Sorry! - problem with file requested');</script>");
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@ if ($_GET['action']=="load") {
|
|||||||
// Check this file isn't on the banned list at all
|
// Check this file isn't on the banned list at all
|
||||||
$canOpen = true;
|
$canOpen = true;
|
||||||
for ($i=0;$i<count($_SESSION['bannedFiles']);$i++) {
|
for ($i=0;$i<count($_SESSION['bannedFiles']);$i++) {
|
||||||
if($_SESSION['bannedFiles'][$i] != "" && strpos($file,$_SESSION['bannedFiles'][$i])!==false) {$canOpen = false;}
|
if(str_replace("*","",$_SESSION['bannedFiles'][$i]) != "" && strpos($file,str_replace("*","",$_SESSION['bannedFiles'][$i]))!==false) {$canOpen = false;}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$canOpen) {
|
if (!$canOpen) {
|
||||||
@@ -97,7 +97,7 @@ if ($_GET['action']=="load") {
|
|||||||
ftpStart();
|
ftpStart();
|
||||||
// Show user warning if no good connection
|
// Show user warning if no good connection
|
||||||
if (!$ftpConn || !$ftpLogin) {
|
if (!$ftpConn || !$ftpLogin) {
|
||||||
die('alert("Sorry, no FTP connection to '.$ftpHost.' for user '.$ftpUser.'");top.ICEcoder.serverMessage();top.ICEcoder.serverQueue("del",0);</script>');
|
die('top.ICEcoder.message("Sorry, no FTP connection to '.$ftpHost.' for user '.$ftpUser.'");top.ICEcoder.serverMessage();top.ICEcoder.serverQueue("del",0);</script>');
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
// Get our file contents and close the FTP connection
|
// Get our file contents and close the FTP connection
|
||||||
@@ -105,7 +105,7 @@ if ($_GET['action']=="load") {
|
|||||||
ftpEnd();
|
ftpEnd();
|
||||||
// Get local file
|
// Get local file
|
||||||
} else {
|
} else {
|
||||||
$loadedFile = toUTF8noBOM(file_get_contents($file,false,$context),true);
|
$loadedFile = toUTF8noBOM(getData($file),true);
|
||||||
}
|
}
|
||||||
$encoding=ini_get("default_charset");
|
$encoding=ini_get("default_charset");
|
||||||
if($encoding=="")
|
if($encoding=="")
|
||||||
@@ -216,10 +216,13 @@ if (action=="load") {
|
|||||||
"<div class=\"whiteGlow\" style=\"display: inline-block; margin-top: -10px; border: solid 10px #fff; color: #000; background-color: #fff\" id=\"imgInfo\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\">" +
|
"<div class=\"whiteGlow\" style=\"display: inline-block; margin-top: -10px; border: solid 10px #fff; color: #000; background-color: #fff\" id=\"imgInfo\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\">" +
|
||||||
"<b><?php echo $fileLoc."/".$fileName;?></b>" +
|
"<b><?php echo $fileLoc."/".$fileName;?></b>" +
|
||||||
"</div><br>" +
|
"</div><br>" +
|
||||||
|
"<div id=\"canvasPickerColorInfo\">"+
|
||||||
"<input type=\"text\" id=\"hexMouseXY\" style=\"border: 1px solid #888; border-right: 0; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>" +
|
"<input type=\"text\" id=\"hexMouseXY\" style=\"border: 1px solid #888; border-right: 0; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>" +
|
||||||
"<input type=\"text\" id=\"rgbMouseXY\" style=\"border: 1px solid #888; margin-right: 10px; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>" +
|
"<input type=\"text\" id=\"rgbMouseXY\" style=\"border: 1px solid #888; margin-right: 10px; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>" +
|
||||||
"<input type=\"text\" id=\"hex\" style=\"border: 1px solid #888; border-right: 0; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>" +
|
"<input type=\"text\" id=\"hex\" style=\"border: 1px solid #888; border-right: 0; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>" +
|
||||||
"<input type=\"text\" id=\"rgb\" style=\"border: 1px solid #888; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>";
|
"<input type=\"text\" id=\"rgb\" style=\"border: 1px solid #888; width: 70px\" onmouseover=\"top.ICEcoder.overPopup=true\" onmouseout=\"top.ICEcoder.overPopup=false\"></input>"+
|
||||||
|
"</div>"+
|
||||||
|
"<div id=\"canvasPickerCORSInfo\" style=\"display: none; padding-top: 4px\">CORS not enabled on resource site</div>";
|
||||||
top.document.getElementById('floatingContainer').style.background = "#fff url('<?php echo $fileLoc."/".$fileName;?>') no-repeat 0 0";
|
top.document.getElementById('floatingContainer').style.background = "#fff url('<?php echo $fileLoc."/".$fileName;?>') no-repeat 0 0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
37
lib/ftp-manager.css
Normal file
37
lib/ftp-manager.css
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
/* First, reset everything to a standard */
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
outline: 0;
|
||||||
|
font-size: 12px;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {overflow: hidden;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {font-size: 36px; font-weight: normal; color: #888; margin-bottom: 20px}
|
||||||
|
a {color: #2187e7; text-decoration: none}
|
||||||
|
input {padding: 4px; border: 1px solid #555; background-color: #444; color: #fff}
|
||||||
|
input:focus {
|
||||||
|
outline: none;
|
||||||
|
-webkit-box-shadow: 0 0 10px 1px rgba(0,198,255,0.7);
|
||||||
|
-moz-box-shadow: 0 0 10px 1px rgba(0,198,255,0.7);
|
||||||
|
box-shadow: 0 0 10px 1px rgba(0,198,255,0.7);
|
||||||
|
}
|
||||||
|
|
||||||
|
.ftpManager {font-family: arial, verdana, helvetica, sans-serif; background-color: #1c1c19; color: #fff; padding: 20px}
|
||||||
|
.ftpManager .info {font-size: 10px; color: rgba(0,198,255,0.7); cursor: help}
|
||||||
212
lib/ftp-manager.php
Normal file
212
lib/ftp-manager.php
Normal file
@@ -0,0 +1,212 @@
|
|||||||
|
<?php
|
||||||
|
include("headers.php");
|
||||||
|
include("settings.php");
|
||||||
|
$t = $text['ftp-manager'];
|
||||||
|
|
||||||
|
// If we have an action to perform
|
||||||
|
if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset($_GET['action'])) {
|
||||||
|
|
||||||
|
// Get our old FTP sites & user settings
|
||||||
|
$oldFTPSites = $ICEcoder["ftpSites"];
|
||||||
|
$settingsContents = getData($settingsFile);
|
||||||
|
|
||||||
|
// ========
|
||||||
|
// CHOOSING
|
||||||
|
// ========
|
||||||
|
if ($_GET['action']=="choose") {
|
||||||
|
|
||||||
|
// Set the site ref in session, hide the popup and reload the file manager
|
||||||
|
$_SESSION['ftpSiteRef'] = numClean($_GET['ftpSiteRef']);
|
||||||
|
// Hide this popup and reload file manager
|
||||||
|
echo "<script>top.ICEcoder.showHide('hide',top.document.getElementById('blackMask'));top.ICEcoder.refreshFileManager();</script>";
|
||||||
|
} else {
|
||||||
|
// Start creating a new chunk for the FTP sites
|
||||||
|
$settingsNew = '"ftpSites" => array(
|
||||||
|
';
|
||||||
|
}
|
||||||
|
|
||||||
|
// ======
|
||||||
|
// ADDING
|
||||||
|
// ======
|
||||||
|
|
||||||
|
if ($_GET['action']=="add") {
|
||||||
|
|
||||||
|
// Add the new FTP site
|
||||||
|
if ($_POST['ftpSiteNEW'] != "") {
|
||||||
|
$settingsNew .= ' array(
|
||||||
|
"site" => "'.injClean($_POST['ftpSiteNEW']).'",
|
||||||
|
"host" => "'.injClean($_POST['ftpHostNEW']).'",
|
||||||
|
"user" => "'.injClean($_POST['ftpUserNEW']).'",
|
||||||
|
"pass" => "'.injClean($_POST['ftpPassNEW']).'",
|
||||||
|
"pasv" => '.injClean($_POST['ftpPASVNEW']).',
|
||||||
|
"mode" => "'.injClean($_POST['ftpModeNEW']).'",
|
||||||
|
"root" => "'.injClean($_POST['ftpRootNEW']).'"
|
||||||
|
),
|
||||||
|
';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// ===============================================
|
||||||
|
// UPDATING & REMOVING PLUS UPDATE CONFIG SETTINGS
|
||||||
|
// ===============================================
|
||||||
|
|
||||||
|
if ($_GET['action']!="choose" && $_GET['action']!="edit") {
|
||||||
|
|
||||||
|
// Look at each of the existing FTP sites
|
||||||
|
for ($i=0; $i<count($oldFTPSites); $i++) {
|
||||||
|
|
||||||
|
// Updating
|
||||||
|
if ($_GET['action']=="update" && $i == $_GET['ftpSiteRef']) {
|
||||||
|
$settingsNew .= ' array(
|
||||||
|
"site" => "'.injClean($_POST['ftpSiteNEW']).'",
|
||||||
|
"host" => "'.injClean($_POST['ftpHostNEW']).'",
|
||||||
|
"user" => "'.injClean($_POST['ftpUserNEW']).'",
|
||||||
|
"pass" => "'.injClean($_POST['ftpPassNEW']).'",
|
||||||
|
"pasv" => '.injClean($_POST['ftpPASVNEW']).',
|
||||||
|
"mode" => "'.injClean($_POST['ftpModeNEW']).'",
|
||||||
|
"root" => "'.injClean($_POST['ftpRootNEW']).'"
|
||||||
|
),
|
||||||
|
';
|
||||||
|
// Deleting
|
||||||
|
} elseif ($_GET['action']=="remove" && $i == $_GET['ftpSiteRef']) {
|
||||||
|
// Do nothing, so we ignore this entry now
|
||||||
|
|
||||||
|
// Entry is as before
|
||||||
|
} else {
|
||||||
|
$settingsNew .= ' array(
|
||||||
|
"site" => "'.$oldFTPSites[$i]['site'].'",
|
||||||
|
"host" => "'.$oldFTPSites[$i]['host'].'",
|
||||||
|
"user" => "'.$oldFTPSites[$i]['user'].'",
|
||||||
|
"pass" => "'.$oldFTPSites[$i]['pass'].'",
|
||||||
|
"pasv" => '.($oldFTPSites[$i]['pasv'] ? 'true' : 'false').',
|
||||||
|
"mode" => "'.($oldFTPSites[$i]['mode'] == 'FTP_ASCII' ? 'FTP_ASCII' : 'FTP_BINARY').'",
|
||||||
|
"root" => "'.$oldFTPSites[$i]['root'].'"
|
||||||
|
),
|
||||||
|
';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Rtrim off the last comma
|
||||||
|
$settingsNew = rtrim($settingsNew,',
|
||||||
|
');
|
||||||
|
$settingsNew .= '
|
||||||
|
),'.PHP_EOL;
|
||||||
|
|
||||||
|
// Now we have a new settingsNew string to use
|
||||||
|
// we can update the FTP sites in the settings file
|
||||||
|
|
||||||
|
// Identify the bit to replace
|
||||||
|
$repPosStart = strpos($settingsContents,'"ftpSites"');
|
||||||
|
$repPosEnd = strpos($settingsContents,'"githubLocalPaths"');
|
||||||
|
|
||||||
|
// Compile our new settings
|
||||||
|
$settingsContents = substr($settingsContents,0,$repPosStart).$settingsNew.substr($settingsContents,$repPosEnd,strlen($settingsContents));
|
||||||
|
|
||||||
|
// Now update the config file
|
||||||
|
if (is_writeable($settingsFile)) {
|
||||||
|
$fh = fopen($settingsFile, 'w');
|
||||||
|
fwrite($fh, $settingsContents);
|
||||||
|
fclose($fh);
|
||||||
|
// Finally, reload the iFrame screen for the user
|
||||||
|
header("Location: ftp-manager.php?updatedFTPSites&csrf=".$_SESSION["csrf"]);
|
||||||
|
echo "<script>window.location='ftp-manager.php?updatedFTPSites&csrf='+top.ICEcoder.csrf;</script>";
|
||||||
|
die($t['Saving FTP sites']);
|
||||||
|
} else {
|
||||||
|
echo "<script>top.ICEcoder.message('".$t['Cannot update config...']." lib/".$settingsFile." ".$t['and try again']."');</script>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>ICEcoder <?php echo $ICEcoder["versionNo"];?> FTP manager</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||||
|
<meta name="robots" content="noindex, nofollow">
|
||||||
|
<link rel="stylesheet" type="text/css" href="ftp-manager.css?microtime=<?php echo microtime(true);?>">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="ftpManager">
|
||||||
|
|
||||||
|
<h1><?php echo $t['ftp manager'];?></h1>
|
||||||
|
|
||||||
|
<div style="display: inline-block; width: 620px; height: 440px; overflow-y: auto">
|
||||||
|
<?php
|
||||||
|
$ftpSites = $ICEcoder['ftpSites'];
|
||||||
|
if (count($ftpSites) > 0) {
|
||||||
|
?>
|
||||||
|
<div style="display: inline-block; width: 600px; margin-bottom: 30px">
|
||||||
|
<h2><?php echo $t['Choose existing site'];?></h2><br>
|
||||||
|
|
||||||
|
<form id="ftpUpdateForm" action="ftp-manager.php?action=update" method="POST">
|
||||||
|
<table style="width: 100%">
|
||||||
|
<?php
|
||||||
|
for ($i=0; $i<count($ftpSites); $i++) {
|
||||||
|
echo '<tr>';
|
||||||
|
echo '<td style="padding: 10px 10px 8px 0">'.$ftpSites[$i]['site'].'</td>';
|
||||||
|
echo '<td style="padding: 10px 10px 8px 0">'.$ftpSites[$i]['host'].'</td>';
|
||||||
|
echo '<td style="padding: 10px 10px 8px 0"><a href="ftp-manager.php?action=edit&ftpSiteRef='.$i.'&csrf='.$_SESSION["csrf"].'" class="blue">Edit</a></td>';
|
||||||
|
echo '<td style="padding: 10px 10px 8px 0"><a href="ftp-manager.php?action=remove&ftpSiteRef='.$i.'&csrf='.$_SESSION["csrf"].'" class="blue" onclick="return top.ICEcoder.ask(\''.$t['Are you sure...'].'\')">Delete</a></td>';
|
||||||
|
echo '<td style="padding: 2px 20px 8px 0; text-align: right"><div style="display: inline-block; padding: 5px; margin-top: 4px; background: #2187e7; color: #fff; font-size: 12px; cursor: pointer" onclick="window.location=\'ftp-manager.php?action=choose&ftpSiteRef='.$i.'&csrf='.$_SESSION["csrf"].'\'">'.$t['Choose'].'</div></td>';
|
||||||
|
echo '</tr>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="csrf" value="<?php echo $_SESSION["csrf"]; ?>">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<div style="display: inline-block; width: 600px">
|
||||||
|
<h2><?php echo isset($_GET['action']) && $_GET['action']=="edit" ? $t['Edit site'] : $t['Add new site'];?></h2><br>
|
||||||
|
|
||||||
|
<form id="ftpAddEditForm" action="ftp-manager.php?action=<?php echo isset($_GET['action']) && $_GET['action']=="edit" ? "update&ftpSiteRef=".numClean($_GET['ftpSiteRef']) : "add";?>" method="POST">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-left: 5px"><?php echo $t['Site base'];?> <span class="info" title="<?php echo $t['eg http://yourdomain.com'];?>">[?]</span></td>
|
||||||
|
<td style="padding-left: 5px"><?php echo $t['Host'];?> <span class="info" title="<?php echo $t['eg ftp.yourdomain.com'];?>">[?]</span></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 0 10px 8px 0"><input type="text" name="ftpSiteNEW" value="<?php if (isset($_GET['action']) && $_GET['action']=="edit") {echo $ICEcoder['ftpSites'][numClean($_GET['ftpSiteRef'])]['site'];};?>" style="width: 272px"></td>
|
||||||
|
<td style="padding: 0 0 8px 0"><input type="text" name="ftpHostNEW" value="<?php if (isset($_GET['action']) && $_GET['action']=="edit") {echo $ICEcoder['ftpSites'][numClean($_GET['ftpSiteRef'])]['host'];};?>" style="width: 272px"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-left: 5px"><?php echo $t['Username'];?> <span class="info" title="<?php echo $t['eg user123'];?>">[?]</span></td>
|
||||||
|
<td style="padding-left: 5px"><?php echo $t['Password'];?> <span class="info" title="<?php echo $t['eg pass123'];?>">[?]</span></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 0 10px 8px 0"><input type="text" name="ftpUserNEW" value="<?php if (isset($_GET['action']) && $_GET['action']=="edit") {echo $ICEcoder['ftpSites'][numClean($_GET['ftpSiteRef'])]['user'];};?>" style="width: 272px"></td>
|
||||||
|
<td style="padding: 0 0 8px 0"><input type="password" name="ftpPassNEW" value="<?php if (isset($_GET['action']) && $_GET['action']=="edit") {echo $ICEcoder['ftpSites'][numClean($_GET['ftpSiteRef'])]['pass'];};?>" style="width: 272px"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding-left: 5px"><?php echo $t['PASV and mode'];?> <span class="info" title="<?php echo $t['Use PASV mode...'];?>">[?]</span></td>
|
||||||
|
<td style="padding-left: 5px"><?php echo $t['Root'];?> <span class="info" title="<?php echo $t['eg /htdocs'];?>">[?]</span></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 0 10px 8px 0">
|
||||||
|
<select name="ftpPASVNEW">
|
||||||
|
<option value="false"<?php echo isset($_GET['action']) && $_GET['action']=="edit" && $ICEcoder['ftpSites'][$_GET['ftpSiteRef']]['pasv'] == false ? " selected" : "";?>><?php echo $t['PASV connection off'];?></option>
|
||||||
|
<option value="true"<?php echo isset($_GET['action']) && $_GET['action']=="edit" && $ICEcoder['ftpSites'][$_GET['ftpSiteRef']]['pasv'] == true ? " selected" : "";?>><?php echo $t['PASV connection on'];?></option>
|
||||||
|
</select>
|
||||||
|
<select name="ftpModeNEW">
|
||||||
|
<option value="FTP_ASCII"<?php echo isset($_GET['action']) && $_GET['action']=="edit" && $ICEcoder['ftpSites'][$_GET['ftpSiteRef']]['mode'] == "FTP_ASCII" ? " selected" : "";?>><?php echo $t['ASCII transfer'];?></option>
|
||||||
|
<option value="FTP_BINARY"<?php echo isset($_GET['action']) && $_GET['action']=="edit" && $ICEcoder['ftpSites'][$_GET['ftpSiteRef']]['mode'] == "FTP_BINARY" ? " selected" : "";?>><?php echo $t['Binary transfer'];?></option>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
<td style="padding: 0 0 8px 0"><input type="text" name="ftpRootNEW" value="<?php if (isset($_GET['action']) && $_GET['action']=="edit") {echo $ICEcoder['ftpSites'][numClean($_GET['ftpSiteRef'])]['root'];};?>" style="width: 272px"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" style="padding: 3px 0 8px 0; text-align: right"><div style="display: inline-block; padding: 5px; background: #2187e7; color: #fff; font-size: 12px; cursor: pointer" onclick="document.getElementById('ftpAddEditForm').submit()"><?php echo isset($_GET['action']) && $_GET['action']=="edit" ? $t['Update'] : $t['Add'];?></div></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="csrf" value="<?php echo $_SESSION["csrf"]; ?>">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
@@ -143,7 +143,7 @@ if (isset($ftpSite)) {
|
|||||||
foreach($finalArray as $entry) {
|
foreach($finalArray as $entry) {
|
||||||
$canAdd = true;
|
$canAdd = true;
|
||||||
for ($i=0;$i<count($_SESSION['bannedFiles']);$i++) {
|
for ($i=0;$i<count($_SESSION['bannedFiles']);$i++) {
|
||||||
if($_SESSION['bannedFiles'][$i] != "" && strpos($entry,$_SESSION['bannedFiles'][$i])!==false) {$canAdd = false;}
|
if(str_replace("*","",$_SESSION['bannedFiles'][$i]) != "" && strpos($entry,str_replace("*","",$_SESSION['bannedFiles'][$i]))!==false) {$canAdd = false;}
|
||||||
}
|
}
|
||||||
// Only applicable for local dir, ignoring ICEcoder's dir
|
// Only applicable for local dir, ignoring ICEcoder's dir
|
||||||
if (!isset($ftpSite) && $docRoot.$iceRoot.$location."/".$entry == $docRoot.$ICEcoderDir) {
|
if (!isset($ftpSite) && $docRoot.$iceRoot.$location."/".$entry == $docRoot.$ICEcoderDir) {
|
||||||
@@ -230,7 +230,7 @@ if (!isset($ftpSite) && $_SESSION['githubDiff']) {
|
|||||||
// If we're not looking at a .git dir, it's not a .gitignore excluded path and not a dir
|
// If we're not looking at a .git dir, it's not a .gitignore excluded path and not a dir
|
||||||
if (strpos($fileFolderName,".git/") == false && !in_array($docRoot.$iceRoot.$fileFolderName, $excluded) && !is_dir($docRoot.$iceRoot.$fileFolderName)) {
|
if (strpos($fileFolderName,".git/") == false && !in_array($docRoot.$iceRoot.$fileFolderName, $excluded) && !is_dir($docRoot.$iceRoot.$fileFolderName)) {
|
||||||
// Get contents of file
|
// Get contents of file
|
||||||
$contents = file_get_contents($docRoot.$iceRoot.$fileFolderName);
|
$contents = getData($docRoot.$iceRoot.$fileFolderName);
|
||||||
|
|
||||||
$finfo = "text";
|
$finfo = "text";
|
||||||
// Determine if we should remove \r line endings based on mime type (text files yes, others no)
|
// Determine if we should remove \r line endings based on mime type (text files yes, others no)
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
// Get our old paths & user settings
|
// Get our old paths & user settings
|
||||||
$oldLocal = $ICEcoder["githubLocalPaths"];
|
$oldLocal = $ICEcoder["githubLocalPaths"];
|
||||||
$oldRemote = $ICEcoder["githubRemotePaths"];
|
$oldRemote = $ICEcoder["githubRemotePaths"];
|
||||||
$settingsContents = file_get_contents($settingsFile,false,$context);
|
$settingsContents = getData($settingsFile);
|
||||||
|
|
||||||
// ========
|
// ========
|
||||||
// CHOOSING
|
// CHOOSING
|
||||||
@@ -52,6 +52,10 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
$fh = fopen($settingsFile, 'w');
|
$fh = fopen($settingsFile, 'w');
|
||||||
fwrite($fh, $settingsContents);
|
fwrite($fh, $settingsContents);
|
||||||
fclose($fh);
|
fclose($fh);
|
||||||
|
|
||||||
|
// Clear any FTP session we may have
|
||||||
|
$_SESSION['ftpSiteRef'] = false;
|
||||||
|
|
||||||
// Hide this popup and reload file manager
|
// Hide this popup and reload file manager
|
||||||
echo "<script>top.ICEcoder.showHide('hide',top.document.getElementById('blackMask'));top.ICEcoder.refreshFileManager();</script>";
|
echo "<script>top.ICEcoder.showHide('hide',top.document.getElementById('blackMask'));top.ICEcoder.refreshFileManager();</script>";
|
||||||
} else {
|
} else {
|
||||||
@@ -73,7 +77,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
|
|
||||||
// Add the new one
|
// Add the new one
|
||||||
if ($_POST['githubLocalPathNEW'] != "" && $_POST['githubRemotePathNEW'] != "") {
|
if ($_POST['githubLocalPathNEW'] != "" && $_POST['githubRemotePathNEW'] != "") {
|
||||||
$settingsNew .= '"'.xssClean($_POST['githubLocalPathNEW'],"html").'",';
|
$settingsNew .= '"'.injClean(xssClean($_POST['githubLocalPathNEW'],"html")).'",';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Then set all the old local paths
|
// Then set all the old local paths
|
||||||
@@ -89,7 +93,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
|
|
||||||
// Add the new one
|
// Add the new one
|
||||||
if ($_POST['githubLocalPathNEW'] != "" && $_POST['githubRemotePathNEW'] != "") {
|
if ($_POST['githubLocalPathNEW'] != "" && $_POST['githubRemotePathNEW'] != "") {
|
||||||
$settingsNew .= '"'.xssClean($_POST['githubRemotePathNEW'],"html").'",';
|
$settingsNew .= '"'.injClean(xssClean($_POST['githubRemotePathNEW'],"html")).'",';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Then set all the old remote paths
|
// Then set all the old remote paths
|
||||||
@@ -114,7 +118,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
// Redo the arrays using the form data
|
// Redo the arrays using the form data
|
||||||
for ($i=0; $i<count($oldLocal); $i++) {
|
for ($i=0; $i<count($oldLocal); $i++) {
|
||||||
if ($_POST['githubLocalPath'.$i] != "") {
|
if ($_POST['githubLocalPath'.$i] != "") {
|
||||||
$settingsNew .= '"'.xssClean($_POST['githubLocalPath'.$i],"html").'",';
|
$settingsNew .= '"'.injClean(xssClean($_POST['githubLocalPath'.$i],"html")).'",';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Rtrim off the last comma
|
// Rtrim off the last comma
|
||||||
@@ -127,7 +131,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
// Redo the arrays using the form data
|
// Redo the arrays using the form data
|
||||||
for ($i=0; $i<count($oldRemote); $i++) {
|
for ($i=0; $i<count($oldRemote); $i++) {
|
||||||
if ($_POST['githubRemotePath'.$i] != "") {
|
if ($_POST['githubRemotePath'.$i] != "") {
|
||||||
$settingsNew .= '"'.xssClean($_POST['githubRemotePath'.$i],"html").'",';
|
$settingsNew .= '"'.injClean(xssClean($_POST['githubRemotePath'.$i],"html")).'",';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Rtrim off the last comma
|
// Rtrim off the last comma
|
||||||
|
|||||||
@@ -88,14 +88,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
$zipURL = $iceGithubRemotePaths[$pathPos].'/zipball/master';
|
$zipURL = $iceGithubRemotePaths[$pathPos].'/zipball/master';
|
||||||
$zipFile = "../tmp/".basename($zipURL);
|
$zipFile = "../tmp/".basename($zipURL);
|
||||||
|
|
||||||
if (ini_get('allow_url_fopen')) {
|
$fileData = getData($zipURL,'curl');
|
||||||
$fileData = file_get_contents($zipURL, false, $context);
|
|
||||||
} elseif (function_exists('curl_init')) {
|
|
||||||
$client = curl_init($zipURL);
|
|
||||||
curl_setopt($client, CURLOPT_SSL_VERIFYPEER, false);
|
|
||||||
curl_setopt($client, CURLOPT_RETURNTRANSFER, 1); //fixed this line
|
|
||||||
$fileData = curl_exec($client);
|
|
||||||
}
|
|
||||||
file_put_contents($zipFile, $fileData);
|
file_put_contents($zipFile, $fileData);
|
||||||
|
|
||||||
// Now unpack the zip
|
// Now unpack the zip
|
||||||
@@ -189,10 +182,10 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
|
|
||||||
// Only get the file if it exists and begins with our $docRoot
|
// Only get the file if it exists and begins with our $docRoot
|
||||||
if (file_exists($file) && strpos($file,$docRoot) === 0) {
|
if (file_exists($file) && strpos($file,$docRoot) === 0) {
|
||||||
$loadedFile = toUTF8noBOM(file_get_contents($file,false,$context),true);
|
$loadedFile = toUTF8noBOM(getData($file),true);
|
||||||
echo '<textarea name="loadedFile'.$i.'" id="loadedFile'.$i.'" style="display: none">'.str_replace("</textarea>","<ICEcoder:/:textarea>",str_replace("&","&",$loadedFile)).'</textarea><br><br>'.PHP_EOL.PHP_EOL;
|
echo '<textarea name="loadedFile'.$i.'" id="loadedFile'.$i.'" style="display: none">'.str_replace("</textarea>","<ICEcoder:/:textarea>",str_replace("&","&",$loadedFile)).'</textarea><br><br>'.PHP_EOL.PHP_EOL;
|
||||||
} else {
|
} else {
|
||||||
die("<script>alert('Sorry, that file doesn\'t appear to exist');</script>");
|
die("<script>top.ICEcoder.message('Sorry, that file doesn\'t appear to exist');</script>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
37
lib/go-localhost-root.php
Normal file
37
lib/go-localhost-root.php
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
<?php
|
||||||
|
include_once("settings.php");
|
||||||
|
$text = $_SESSION['text'];
|
||||||
|
$t = $text['settings-update'];
|
||||||
|
|
||||||
|
// Update our 'root' value to be blank
|
||||||
|
// which resets the file manager to localhost root again
|
||||||
|
if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn']) {
|
||||||
|
$settingsContents = getData($settingsFile);
|
||||||
|
// Replace our root var
|
||||||
|
$repPosStart = strpos($settingsContents,'"root"');
|
||||||
|
$repPosEnd = strpos($settingsContents,'"checkUpdates"');
|
||||||
|
|
||||||
|
// Compile our new settings
|
||||||
|
$settingsContents =
|
||||||
|
substr($settingsContents,0,$repPosStart).
|
||||||
|
'"root" => "",'.PHP_EOL.
|
||||||
|
substr($settingsContents,($repPosEnd),strlen($settingsContents));
|
||||||
|
|
||||||
|
// Now update the config file
|
||||||
|
if (is_writeable($settingsFile)) {
|
||||||
|
$fh = fopen($settingsFile, 'w');
|
||||||
|
fwrite($fh, $settingsContents);
|
||||||
|
fclose($fh);
|
||||||
|
|
||||||
|
// Clear any FTP session we may have
|
||||||
|
$_SESSION['ftpSiteRef'] = false;
|
||||||
|
|
||||||
|
// Now we've reset the root path to localhost root, refresh the file manager to show it
|
||||||
|
echo "<script>top.ICEcoder.refreshFileManager();</script>";
|
||||||
|
} else {
|
||||||
|
echo "<script>top.ICEcoder.message('".$t['Cannot update config']." lib/".$settingsFile." ".$t['and try again']."');</script>";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
;};
|
||||||
|
?>
|
||||||
@@ -141,6 +141,7 @@ h2 {font-size: 18px; font-weight: normal; color: #fff}
|
|||||||
.footer .splitPaneControls {position: absolute; display: inline-block; width: 50px; text-align: center; padding: 6px}
|
.footer .splitPaneControls {position: absolute; display: inline-block; width: 50px; text-align: center; padding: 6px}
|
||||||
.footer .splitPaneControls .off {display: inline-block; width: 18px; height: 18px; margin-right: 10px; background: url('../images/split-pane-controls.gif') no-repeat 0 0; cursor: pointer}
|
.footer .splitPaneControls .off {display: inline-block; width: 18px; height: 18px; margin-right: 10px; background: url('../images/split-pane-controls.gif') no-repeat 0 0; cursor: pointer}
|
||||||
.footer .splitPaneControls .on {display: inline-block; width: 19px; height: 18px; background: url('../images/split-pane-controls.gif') no-repeat -18px 0; cursor: pointer}
|
.footer .splitPaneControls .on {display: inline-block; width: 19px; height: 18px; background: url('../images/split-pane-controls.gif') no-repeat -18px 0; cursor: pointer}
|
||||||
|
.footer .splitPaneNames {position: absolute; display: inline-block; width: 100px; text-align: center; margin-top: 9px; color: #555; opacity: 0; transition: opacity 0.3s ease-in-out}
|
||||||
.footer .charDisplay, .footer .byteDisplay {position: absolute; display: inline-block; padding: 5px 0 0 8px; margin-top: 3px; margin-right: 10px; right: 0; font-weight: bold; font-size: 12px; color: #fff; text-align: right; text-align: right; cursor: pointer}
|
.footer .charDisplay, .footer .byteDisplay {position: absolute; display: inline-block; padding: 5px 0 0 8px; margin-top: 3px; margin-right: 10px; right: 0; font-weight: bold; font-size: 12px; color: #fff; text-align: right; text-align: right; cursor: pointer}
|
||||||
|
|
||||||
.fileMenu {position: absolute; display: none; left: 0; top: 0; background-color: #333; z-index: 10;
|
.fileMenu {position: absolute; display: none; left: 0; top: 0; background-color: #333; z-index: 10;
|
||||||
|
|||||||
253
lib/ice-coder.js
253
lib/ice-coder.js
@@ -47,7 +47,7 @@ var ICEcoder = {
|
|||||||
pluginIntervalRefs: [], // Array of plugin interval refs
|
pluginIntervalRefs: [], // Array of plugin interval refs
|
||||||
overPopup: false, // Indicates if we're over a popup or not
|
overPopup: false, // Indicates if we're over a popup or not
|
||||||
cmdKey: false, // Tracking apple Command key up/down state
|
cmdKey: false, // Tracking apple Command key up/down state
|
||||||
endTagReplaceData: [], // Will contain data for automatic end tag replacement
|
oppTagReplaceData: [], // Will contain data for automatic opposite tag replacement to sync them
|
||||||
fmReady: false, // Indicates if the file manager is ready for action
|
fmReady: false, // Indicates if the file manager is ready for action
|
||||||
bugReportStatus: "off", // Values of: off, error, ok, bugs
|
bugReportStatus: "off", // Values of: off, error, ok, bugs
|
||||||
bugReportPath: "", // Bug report file path
|
bugReportPath: "", // Bug report file path
|
||||||
@@ -56,6 +56,7 @@ var ICEcoder = {
|
|||||||
githubDiff: false, // Toggle for viewing GitHub/FM diff view
|
githubDiff: false, // Toggle for viewing GitHub/FM diff view
|
||||||
githubAuthTokenSet: false, // Has the user set their GitHub token yet
|
githubAuthTokenSet: false, // Has the user set their GitHub token yet
|
||||||
splitPane: false, // Single or split pane editing
|
splitPane: false, // Single or split pane editing
|
||||||
|
splitPaneLeftPerc: 100, // Width of left pane as a percentage
|
||||||
renderLineStyle: [], // Array of styles to apply on renderLine event
|
renderLineStyle: [], // Array of styles to apply on renderLine event
|
||||||
renderPaneShiftAmount: 0, // Shift comparison main (negative) vs diff pane (positive)
|
renderPaneShiftAmount: 0, // Shift comparison main (negative) vs diff pane (positive)
|
||||||
debounce: "", // Contains debounce timeout object
|
debounce: "", // Contains debounce timeout object
|
||||||
@@ -65,7 +66,7 @@ var ICEcoder = {
|
|||||||
|
|
||||||
// Set our aliases
|
// Set our aliases
|
||||||
initAliases: function() {
|
initAliases: function() {
|
||||||
var aliasArray = ["header","files", "fileOptions", "optionsFile", "optionsEdit", "optionsSource", "optionsHelp", "filesFrame","editor","tabsBar","findBar","content","footer","nestValid","versionsDisplay","splitPaneControls","charDisplay","byteDisplay"];
|
var aliasArray = ["header","files", "fileOptions", "optionsFile", "optionsEdit", "optionsSource", "optionsHelp", "filesFrame", "editor", "tabsBar", "findBar", "content", "footer", "nestValid", "versionsDisplay", "splitPaneControls", "splitPaneNamesMain", "splitPaneNamesDiff", "charDisplay", "byteDisplay"];
|
||||||
|
|
||||||
// Create our ID aliases
|
// Create our ID aliases
|
||||||
for (var i=0;i<aliasArray.length;i++) {
|
for (var i=0;i<aliasArray.length;i++) {
|
||||||
@@ -121,6 +122,12 @@ var ICEcoder = {
|
|||||||
if(!unsavedFiles && top.ICEcoder.autoLogoutMins > 1 && top.ICEcoder.autoLogoutTimer == (top.ICEcoder.autoLogoutMins*60)-60) {
|
if(!unsavedFiles && top.ICEcoder.autoLogoutMins > 1 && top.ICEcoder.autoLogoutTimer == (top.ICEcoder.autoLogoutMins*60)-60) {
|
||||||
top.ICEcoder.autoLogoutWarningScreen();
|
top.ICEcoder.autoLogoutWarningScreen();
|
||||||
}
|
}
|
||||||
|
if (get('autoLogoutIFrame') && get('autoLogoutIFrame').contentWindow.document.getElementById('timeRemaning')) {
|
||||||
|
get('autoLogoutIFrame').contentWindow.document.getElementById('timeRemaning').innerHTML =
|
||||||
|
top.ICEcoder.autoLogoutTimer > 0
|
||||||
|
? (top.ICEcoder.autoLogoutMins*60) - top.ICEcoder.autoLogoutTimer
|
||||||
|
: 0;
|
||||||
|
}
|
||||||
// If there aren't any unsaved files, we have a timeout period > 0 and the time is up, we can logout
|
// If there aren't any unsaved files, we have a timeout period > 0 and the time is up, we can logout
|
||||||
if(!unsavedFiles && ICEcoder.autoLogoutMins > 0 && top.ICEcoder.autoLogoutTimer >= top.ICEcoder.autoLogoutMins*60) {
|
if(!unsavedFiles && ICEcoder.autoLogoutMins > 0 && top.ICEcoder.autoLogoutTimer >= top.ICEcoder.autoLogoutMins*60) {
|
||||||
top.ICEcoder.logout('autoLogout');
|
top.ICEcoder.logout('autoLogout');
|
||||||
@@ -158,6 +165,8 @@ var ICEcoder = {
|
|||||||
this.nestValid.style.left = (this.filesW+10) + "px";
|
this.nestValid.style.left = (this.filesW+10) + "px";
|
||||||
this.versionsDisplay.style.left = (this.filesW+25) + "px";
|
this.versionsDisplay.style.left = (this.filesW+25) + "px";
|
||||||
this.splitPaneControls.style.left = (parseInt((winW-this.filesW)/2,10)-25-4+this.filesW) + "px";
|
this.splitPaneControls.style.left = (parseInt((winW-this.filesW)/2,10)-25-4+this.filesW) + "px";
|
||||||
|
this.splitPaneNamesMain.style.left = (parseInt((winW-this.filesW)*0.25,10)-50+this.filesW) + "px";
|
||||||
|
this.splitPaneNamesDiff.style.left = (parseInt((winW-this.filesW)*0.75,10)-50+this.filesW) + "px";
|
||||||
top.ICEcoder.setTabWidths();
|
top.ICEcoder.setTabWidths();
|
||||||
|
|
||||||
// If we need to set the editor sizes
|
// If we need to set the editor sizes
|
||||||
@@ -169,12 +178,13 @@ var ICEcoder = {
|
|||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
for (var i=0;i<top.ICEcoder.openFiles.length;i++) {
|
for (var i=0;i<top.ICEcoder.openFiles.length;i++) {
|
||||||
// Done the long way here as we need to call them in specific order to stop showing background and so avoiding a flicker effect
|
// Done the long way here as we need to call them in specific order to stop showing background and so avoiding a flicker effect
|
||||||
|
if (!top.ICEcoder.splitPane) {
|
||||||
|
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setSize(top.ICEcoder.splitPaneLeftPerc+"%",top.ICEcoder.content.style.height);
|
||||||
|
}
|
||||||
|
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setSize((100-top.ICEcoder.splitPaneLeftPerc)+"%",top.ICEcoder.content.style.height);
|
||||||
|
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].getWrapperElement().style.left = top.ICEcoder.splitPaneLeftPerc+"%";
|
||||||
if (top.ICEcoder.splitPane) {
|
if (top.ICEcoder.splitPane) {
|
||||||
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setSize("50%",top.ICEcoder.content.style.height);
|
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setSize(top.ICEcoder.splitPaneLeftPerc+"%",top.ICEcoder.content.style.height);
|
||||||
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setSize("50%",top.ICEcoder.content.style.height);
|
|
||||||
} else {
|
|
||||||
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setSize("100%",top.ICEcoder.content.style.height);
|
|
||||||
top.ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setSize("0",top.ICEcoder.content.style.height);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Place resultsBar to edge of pane or it's scrollbar
|
// Place resultsBar to edge of pane or it's scrollbar
|
||||||
@@ -194,6 +204,7 @@ var ICEcoder = {
|
|||||||
top.ICEcoder.splitPane = onOff == "on" ? true : false;
|
top.ICEcoder.splitPane = onOff == "on" ? true : false;
|
||||||
top.get('splitPaneControlsOff').style.opacity = top.ICEcoder.splitPane ? 0.5 : 1;
|
top.get('splitPaneControlsOff').style.opacity = top.ICEcoder.splitPane ? 0.5 : 1;
|
||||||
top.get('splitPaneControlsOn').style.opacity = top.ICEcoder.splitPane ? 1 : 0.5;
|
top.get('splitPaneControlsOn').style.opacity = top.ICEcoder.splitPane ? 1 : 0.5;
|
||||||
|
top.get('splitPaneNamesMain').style.opacity = top.get('splitPaneNamesDiff').style.opacity = top.ICEcoder.splitPane ? 1 : 0;
|
||||||
top.ICEcoder.setLayout();
|
top.ICEcoder.setLayout();
|
||||||
|
|
||||||
// Also clear marks (if going to a single pane) or redo the marks (if split pane)
|
// Also clear marks (if going to a single pane) or redo the marks (if split pane)
|
||||||
@@ -206,17 +217,40 @@ var ICEcoder = {
|
|||||||
cM = top.ICEcoder.getcMInstance();
|
cM = top.ICEcoder.getcMInstance();
|
||||||
cMdiff = top.ICEcoder.getcMdiffInstance();
|
cMdiff = top.ICEcoder.getcMdiffInstance();
|
||||||
|
|
||||||
// Clear all main pane marks
|
if (cM) {
|
||||||
cMmarks = cM.getAllMarks();
|
// Clear all main pane marks
|
||||||
for (var i=0; i<cMmarks.length; i++) {
|
cMmarks = cM.getAllMarks();
|
||||||
cMmarks[i].clear();
|
for (var i=0; i<cMmarks.length; i++) {
|
||||||
}
|
cMmarks[i].clear();
|
||||||
// Clear all diff pane marks
|
}
|
||||||
cMdiffMarks = cMdiff.getAllMarks();
|
// Clear all diff pane marks
|
||||||
for (var i=0; i<cMdiffMarks.length; i++) {
|
cMdiffMarks = cMdiff.getAllMarks();
|
||||||
cMdiffMarks[i].clear();
|
for (var i=0; i<cMdiffMarks.length; i++) {
|
||||||
|
cMdiffMarks[i].clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Animate in/out the split pane
|
||||||
|
// First, clear any existing split pane interval anim
|
||||||
|
if ("undefined" != typeof top.ICEcoder.animSplitPaneInt) {
|
||||||
|
clearInterval(top.ICEcoder.animSplitPaneInt);
|
||||||
|
}
|
||||||
|
// Now set the interval to animate it in/out
|
||||||
|
top.ICEcoder.animSplitPaneInt = setInterval(function() {
|
||||||
|
// Animate split pane in
|
||||||
|
if (top.ICEcoder.splitPane && top.ICEcoder.splitPaneLeftPerc > 50.1) {
|
||||||
|
top.ICEcoder.splitPaneLeftPerc = ((top.ICEcoder.splitPaneLeftPerc-50)/1.8)+50;
|
||||||
|
// Animate split pane out
|
||||||
|
} else if (!top.ICEcoder.splitPane && top.ICEcoder.splitPaneLeftPerc < 99.9) {
|
||||||
|
top.ICEcoder.splitPaneLeftPerc = (50-((100-top.ICEcoder.splitPaneLeftPerc)/1.8))+50;
|
||||||
|
// Finish animating split pane in/out
|
||||||
|
} else {
|
||||||
|
top.ICEcoder.splitPaneLeftPerc = top.ICEcoder.splitPane ? 50 : 100;
|
||||||
|
clearInterval(top.ICEcoder.animSplitPaneInt);
|
||||||
|
}
|
||||||
|
top.ICEcoder.setLayout();
|
||||||
|
},4);
|
||||||
},
|
},
|
||||||
|
|
||||||
// Set the width of the file manager on demand
|
// Set the width of the file manager on demand
|
||||||
@@ -360,34 +394,25 @@ var ICEcoder = {
|
|||||||
|
|
||||||
// On before change
|
// On before change
|
||||||
cMonBeforeChange: function(thisCM,cMinstance,changeObj,cM) {
|
cMonBeforeChange: function(thisCM,cMinstance,changeObj,cM) {
|
||||||
var sels, tokenString, range, canMaybeReplace, thisData;
|
var sels, tagInfo, tagOpp, thisData;
|
||||||
|
|
||||||
|
// Get the selections
|
||||||
|
sels = thisCM.listSelections();
|
||||||
|
|
||||||
// For each of the user selections
|
// For each of the user selections
|
||||||
sels = thisCM.listSelections();
|
|
||||||
for (var i=0; i<sels.length; i++) {
|
for (var i=0; i<sels.length; i++) {
|
||||||
// Get the token at the cursor start (anchor) position
|
// Get the matching tagInfo for current cursor position
|
||||||
tokenString = thisCM.getTokenAt(sels[i].anchor);
|
tagInfo = cM.findMatchingTag(thisCM, sels[i].anchor);
|
||||||
// If we're just inside a tag, move along 1 char pos and get token info at that position
|
// If we're not ending a tag (autocompletion) and we have tagInfo and not undoing/redoing (which handles changes itself)
|
||||||
if (tokenString.type == "tag bracket" && tokenString.string == "<") {
|
if (changeObj.text[0].indexOf(">") !== 0 && "undefined" != typeof tagInfo && changeObj.origin != "undo" && changeObj.origin != "redo") {
|
||||||
tokenString = thisCM.getTokenAt({line: sels[i].anchor.line, ch: sels[i].anchor.ch+1});
|
// If we also have both open and close tag info
|
||||||
}
|
if ("undefined" != typeof tagInfo.open && "undefined" != typeof tagInfo.close) {
|
||||||
// If we're inside a tag now
|
// Log the opposite tag info
|
||||||
if (tokenString.type == "tag") {
|
tagOpp = tagInfo.at == "open" ? "close" : "open";
|
||||||
// Test for range info
|
thisData = tagInfo[tagOpp].tag + ";" + tagInfo[tagOpp].from.line + ":" + tagInfo[tagOpp].from.ch;
|
||||||
range = cM.fold['xml'](thisCM, sels[i].anchor);
|
// Check that string firstly isn't in array and if not, push it in
|
||||||
canMaybeReplace = true;
|
if (top.ICEcoder.oppTagReplaceData.indexOf(thisData) == -1) {
|
||||||
for (var j=0; j<top.ICEcoder.endTagReplaceData.length; j++) {
|
top.ICEcoder.oppTagReplaceData.push(thisData);
|
||||||
// If we have range info and we're start and end are on the same line
|
|
||||||
if ("undefined" != typeof range && top.ICEcoder.endTagReplaceData[j].split(";")[1] == range.to.line + ":" + range.to.ch) {
|
|
||||||
canMaybeReplace = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// If we can still replace and have range info and not undoing/redoing (as that replaces chunks itself)
|
|
||||||
if (canMaybeReplace && "undefined" != typeof range && changeObj.origin != "undo" && changeObj.origin != "redo") {
|
|
||||||
// Work out the data string to set and if not in array, push in ready to handle on change event
|
|
||||||
thisData = tokenString.string + ";" + range.to.line + ":" + range.to.ch;
|
|
||||||
if (top.ICEcoder.endTagReplaceData.indexOf(thisData) == -1) {
|
|
||||||
top.ICEcoder.endTagReplaceData.push(thisData);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -395,8 +420,11 @@ var ICEcoder = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
// On change
|
// On change
|
||||||
cMonChange: function(thisCM,cMinstance,changeObj) {
|
cMonChange: function(thisCM,cMinstance,changeObj,cM) {
|
||||||
var rData, thisToken, repl1, repl2, tTS, filepath, filename, fileExt;
|
var sels, rData, theTag, thisLine, thisChar, tagInfo, charDiff, closeDiff, repl1, repl2, thisToken, tTS, filepath, filename, fileExt;
|
||||||
|
|
||||||
|
// Get the selections
|
||||||
|
sels = thisCM.listSelections();
|
||||||
|
|
||||||
// If we're not loading the file, it's a change, so update tab
|
// If we're not loading the file, it's a change, so update tab
|
||||||
if (!top.ICEcoder.loadingFile) {
|
if (!top.ICEcoder.loadingFile) {
|
||||||
@@ -409,34 +437,55 @@ var ICEcoder = {
|
|||||||
top.ICEcoder.setLayout();
|
top.ICEcoder.setLayout();
|
||||||
},0);
|
},0);
|
||||||
|
|
||||||
// If we're replacing end tag strings, do that
|
// If we're replacing opposite tag strings, do that
|
||||||
if (top.ICEcoder.endTagReplaceData.length > 0) {
|
if ("undefined" != typeof top.ICEcoder.oppTagReplaceData[0]) {
|
||||||
|
|
||||||
// For each one of them, grab our data to work with
|
// For each one of them, grab our data to work with
|
||||||
for (var i=0; i<top.ICEcoder.endTagReplaceData.length; i++) {
|
for (var i=0; i<top.ICEcoder.oppTagReplaceData.length; i++) {
|
||||||
rData = top.ICEcoder.endTagReplaceData[i].split(";");
|
// Extract data from that string
|
||||||
|
rData = top.ICEcoder.oppTagReplaceData[i].split(";");
|
||||||
|
theTag = rData[0];
|
||||||
|
thisLine = rData[1].split(":")[0]*1;
|
||||||
|
thisChar = rData[1].split(":")[1]*1;
|
||||||
|
|
||||||
// Don't do anything if it's the same line, as we can't rely on fold range data due to nested tags
|
// Get the tag info for matching tag
|
||||||
if (rData[1].split(":")[0]*1 == changeObj.from.line) {
|
if (sels[i]) {
|
||||||
continue;
|
tagInfo = cM.findMatchingTag(thisCM, sels[i].anchor);
|
||||||
}
|
}
|
||||||
// Otherwise, work out the replace ranges
|
|
||||||
repl1 = {line: rData[1].split(":")[0]*1, ch: (rData[1].split(":")[1]*1)+2};
|
// If we have tagInfo
|
||||||
repl2 = {line: rData[1].split(":")[0]*1, ch: (rData[1].split(":")[1]*1)+2+rData[0].length};
|
if ("undefined" != typeof tagInfo) {
|
||||||
// Establish the string to replace with
|
// Get the opposite tag string
|
||||||
thisToken = thisCM.getTokenAt(thisCM.listSelections()[i].anchor);
|
theTag = tagInfo.at == "open" ? tagInfo.open.tag : tagInfo.close.tag;
|
||||||
tTS = thisToken.string;
|
// If we have changeObj.from info to work with
|
||||||
if (tTS == "<" ) {
|
if ("undefined" != typeof changeObj.from) {
|
||||||
tTS = "";
|
// Same line changing needs a chararacter pos shift
|
||||||
|
charDiff = thisLine == changeObj.from.line
|
||||||
|
? changeObj.text[0].length - changeObj.removed[0].length
|
||||||
|
: 0;
|
||||||
|
// Also need to adjust if we're in the close tag on same line
|
||||||
|
closeDiff = tagInfo.at == "close" && thisLine == changeObj.from.line
|
||||||
|
? changeObj.removed[0].length - changeObj.text[0].length + 1
|
||||||
|
: 1
|
||||||
|
// Work out the replace from and to positions
|
||||||
|
repl1 = {line: thisLine, ch: thisChar+charDiff+(tagInfo.at == "open" ? 2 : closeDiff)};
|
||||||
|
repl2 = {line: thisLine, ch: thisChar+charDiff+(tagInfo.at == "open" ? 2 : closeDiff)+rData[0].length};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Replace our string over the range
|
|
||||||
// Disabled for now, as buggy
|
// Replace our string over the range, if this token string isn't blank and the end tag matches our original tag
|
||||||
// thisCM.replaceRange(tTS, repl1, repl2);
|
if (theTag.trim() != "" && "undefined" != typeof repl1 && "undefined" != typeof repl2 && thisCM.getRange(repl1,repl2) == rData[0]) {
|
||||||
|
thisCM.replaceRange(theTag, repl1, repl2);
|
||||||
|
// If at the close tag, don't autocomplete
|
||||||
|
if (tagInfo.at == "close") {
|
||||||
|
top.ICEcoder.autocompleteSkip = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
// Reset the array ready for next time
|
// Reset our array for next time
|
||||||
top.ICEcoder.endTagReplaceData = [];
|
top.ICEcoder.oppTagReplaceData = [];
|
||||||
|
|
||||||
top.ICEcoder.getCaretPosition();
|
top.ICEcoder.getCaretPosition();
|
||||||
top.ICEcoder.updateCharDisplay();
|
top.ICEcoder.updateCharDisplay();
|
||||||
@@ -478,8 +527,10 @@ var ICEcoder = {
|
|||||||
cMdiff = top.ICEcoder.getcMdiffInstance();
|
cMdiff = top.ICEcoder.getcMdiffInstance();
|
||||||
otherCM = cMinstance.indexOf('diff') > -1 ? cM : cMdiff;
|
otherCM = cMinstance.indexOf('diff') > -1 ? cM : cMdiff;
|
||||||
|
|
||||||
// Scroll other pane x & y to match this one we're scrolling, after a 0ms tickover to avoid judder
|
if (cM) {
|
||||||
setTimeout(function(){otherCM.scrollTo(thisCM.getScrollInfo().left, thisCM.getScrollInfo().top);},0);
|
// Scroll other pane x & y to match this one we're scrolling, after a 0ms tickover to avoid judder
|
||||||
|
setTimeout(function(){otherCM.scrollTo(thisCM.getScrollInfo().left, thisCM.getScrollInfo().top);},0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -491,7 +542,11 @@ var ICEcoder = {
|
|||||||
// clearTimeout(top.ICEcoder.debounce);
|
// clearTimeout(top.ICEcoder.debounce);
|
||||||
if (!thisCM.state.completionActive) {
|
if (!thisCM.state.completionActive) {
|
||||||
// top.ICEcoder.debounce = setTimeout(function() {
|
// top.ICEcoder.debounce = setTimeout(function() {
|
||||||
top.ICEcoder.autocomplete();
|
if (!top.ICEcoder.autocompleteSkip) {
|
||||||
|
top.ICEcoder.autocomplete();
|
||||||
|
} else {
|
||||||
|
top.ICEcoder.autocompleteSkip = false;
|
||||||
|
}
|
||||||
// },0);
|
// },0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2415,10 +2470,33 @@ var ICEcoder = {
|
|||||||
img = new Image();
|
img = new Image();
|
||||||
img.crossOrigin = "Anonymous";
|
img.crossOrigin = "Anonymous";
|
||||||
img.src = imgThis.src;
|
img.src = imgThis.src;
|
||||||
|
|
||||||
|
// Issue with loading, display CORS error info
|
||||||
|
img.onerror = function() {
|
||||||
|
get('floatingContainer').style.visibility = "hidden";
|
||||||
|
get('canvasPickerColorInfo').style.display = "none";
|
||||||
|
get('canvasPickerCORSInfo').style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
// On image load
|
||||||
img.onload = function() {
|
img.onload = function() {
|
||||||
|
// Get width and height and draw this image into the canvas
|
||||||
top.get('canvasPicker').width = imgThis.width;
|
top.get('canvasPicker').width = imgThis.width;
|
||||||
top.get('canvasPicker').height = imgThis.height;
|
top.get('canvasPicker').height = imgThis.height;
|
||||||
canvas.drawImage(img,0,0,imgThis.width,imgThis.height);
|
canvas.drawImage(img,0,0,imgThis.width,imgThis.height);
|
||||||
|
|
||||||
|
// Display color picker info and hide CORS message
|
||||||
|
get('canvasPickerColorInfo').style.display = "block";
|
||||||
|
get('canvasPickerCORSInfo').style.display = "none";
|
||||||
|
|
||||||
|
// Show image preview box on mouse over
|
||||||
|
top.get('canvasPicker').onmouseover = function(event) {
|
||||||
|
get('floatingContainer').style.visibility = "visible";
|
||||||
|
};
|
||||||
|
// Hide image preview box on mouse out
|
||||||
|
top.get('canvasPicker').onmouseout = function(event) {
|
||||||
|
get('floatingContainer').style.visibility = "hidden";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
top.document.getElementById('floatingContainer').style.backgroundSize = (imgThis.naturalWidth*5)+"px "+(imgThis.naturalHeight*5)+"px";
|
top.document.getElementById('floatingContainer').style.backgroundSize = (imgThis.naturalWidth*5)+"px "+(imgThis.naturalHeight*5)+"px";
|
||||||
@@ -2461,18 +2539,11 @@ var ICEcoder = {
|
|||||||
fcBGY = -((y*5)*(imgThis.naturalHeight/imgThis.height))+25;
|
fcBGY = -((y*5)*(imgThis.naturalHeight/imgThis.height))+25;
|
||||||
fcElem.style.backgroundPosition = fcBGX+"px "+fcBGY+"px";
|
fcElem.style.backgroundPosition = fcBGX+"px "+fcBGY+"px";
|
||||||
};
|
};
|
||||||
// Show image preview box on mouse over
|
|
||||||
top.get('canvasPicker').onmouseover = function(event) {
|
|
||||||
get('floatingContainer').style.visibility = "visible";
|
|
||||||
};
|
|
||||||
// Hide image preview box on mouse out
|
|
||||||
top.get('canvasPicker').onmouseout = function(event) {
|
|
||||||
get('floatingContainer').style.visibility = "hidden";
|
|
||||||
};
|
|
||||||
// Set pointer colors on clicking canvas
|
// Set pointer colors on clicking canvas
|
||||||
top.get('canvasPicker').onclick = function() {
|
top.get('canvasPicker').onclick = function() {
|
||||||
top.get('rgb').value = top.get('rgbMouseXY').value;
|
top.get('rgb').value = top.get('rgbMouseXY').value;
|
||||||
top.get('hex').value = top.get('hexMouseXY').value;
|
top.get('hex').value = top.get('hexMouseXY').value;
|
||||||
top.get('hex').style.backgroundColor = top.get('rgb').style.backgroundColor = top.get('hex').value;
|
top.get('hex').style.backgroundColor = top.get('rgb').style.backgroundColor = top.get('hex').value;
|
||||||
top.get('hex').style.color = top.get('rgb').style.color = textColor;
|
top.get('hex').style.color = top.get('rgb').style.color = textColor;
|
||||||
}
|
}
|
||||||
@@ -2801,7 +2872,7 @@ var ICEcoder = {
|
|||||||
|
|
||||||
// Show the auto-logout warning screen
|
// Show the auto-logout warning screen
|
||||||
autoLogoutWarningScreen: function() {
|
autoLogoutWarningScreen: function() {
|
||||||
top.get('mediaContainer').innerHTML = '<iframe src="lib/auto-logout-warning.php" class="whiteGlow" style="width: 400px; height: 160px"></iframe>';
|
top.get('mediaContainer').innerHTML = '<iframe src="lib/auto-logout-warning.php" id="autoLogoutIFrame" class="whiteGlow" style="width: 400px; height: 160px"></iframe>';
|
||||||
top.ICEcoder.showHide('show',top.get('blackMask'));
|
top.ICEcoder.showHide('show',top.get('blackMask'));
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -2811,6 +2882,11 @@ var ICEcoder = {
|
|||||||
top.ICEcoder.showHide('show',top.get('blackMask'));
|
top.ICEcoder.showHide('show',top.get('blackMask'));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Go to localhost root
|
||||||
|
goLocalhostRoot: function() {
|
||||||
|
top.ICEcoder.filesFrame.contentWindow.frames['fileControl'].location.href = "lib/go-localhost-root.php";
|
||||||
|
},
|
||||||
|
|
||||||
// Show the GitHub commit screen
|
// Show the GitHub commit screen
|
||||||
githubAction: function(action) {
|
githubAction: function(action) {
|
||||||
top.get('mediaContainer').innerHTML = '<iframe src="lib/github.php?action='+action+'&selectedFiles='+top.ICEcoder.selectedFiles.join(";")+'&csrf='+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 340px; height: 340px"></iframe>';
|
top.get('mediaContainer').innerHTML = '<iframe src="lib/github.php?action='+action+'&selectedFiles='+top.ICEcoder.selectedFiles.join(";")+'&csrf='+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 340px; height: 340px"></iframe>';
|
||||||
@@ -2857,8 +2933,14 @@ var ICEcoder = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Show the FTP manager
|
||||||
|
ftpManager: function() {
|
||||||
|
top.get('mediaContainer').innerHTML = '<iframe src="lib/ftp-manager.php" class="whiteGlow" style="width: 660px; height: 550px"></iframe>';
|
||||||
|
top.ICEcoder.showHide('show',top.get('blackMask'));
|
||||||
|
},
|
||||||
|
|
||||||
// Update the settings used when we make a change to them
|
// Update the settings used when we make a change to them
|
||||||
useNewSettings: function(themeURL,codeAssist,lockedNav,tagWrapperCommand,autoComplete,visibleTabs,fontSize,lineWrapping,indentWithTabs,indentAuto,indentSize,pluginPanelAligned,bugFilePaths,bugFileCheckTimer,bugFileMaxLines,githubAuthTokenSet,updateDiffOnSave,autoLogoutMins,refreshFM) {
|
useNewSettings: function(themeURL,codeAssist,lockedNav,tagWrapperCommand,autoComplete,visibleTabs,fontSize,lineWrapping,lineNumbers,showTrailingSpace,matchBrackets,autoCloseTags,autoCloseBrackets,indentWithTabs,indentAuto,indentSize,pluginPanelAligned,bugFilePaths,bugFileCheckTimer,bugFileMaxLines,githubAuthTokenSet,updateDiffOnSave,autoLogoutMins,refreshFM) {
|
||||||
var styleNode, thisCSS, strCSS, activeLineBG;
|
var styleNode, thisCSS, strCSS, activeLineBG;
|
||||||
|
|
||||||
// cut out ?microtime= at the end
|
// cut out ?microtime= at the end
|
||||||
@@ -2917,18 +2999,33 @@ var ICEcoder = {
|
|||||||
thisCSS[strCSS][2].style.cssText = "background-color: " + activeLineBG + " !important";
|
thisCSS[strCSS][2].style.cssText = "background-color: " + activeLineBG + " !important";
|
||||||
|
|
||||||
top.ICEcoder.lineWrapping = lineWrapping;
|
top.ICEcoder.lineWrapping = lineWrapping;
|
||||||
|
top.ICEcoder.lineNumbers = lineNumbers;
|
||||||
|
top.ICEcoder.showTrailingSpace = showTrailingSpace;
|
||||||
|
top.ICEcoder.matchBrackets = matchBrackets;
|
||||||
|
top.ICEcoder.autoCloseTags = autoCloseTags;
|
||||||
|
top.ICEcoder.autoCloseBrackets = autoCloseBrackets;
|
||||||
top.ICEcoder.indentWithTabs = indentWithTabs;
|
top.ICEcoder.indentWithTabs = indentWithTabs;
|
||||||
top.ICEcoder.indentSize = indentSize;
|
top.ICEcoder.indentSize = indentSize;
|
||||||
top.ICEcoder.indentAuto = indentAuto;
|
top.ICEcoder.indentAuto = indentAuto;
|
||||||
for (var i=0;i<ICEcoder.cMInstances.length;i++) {
|
for (var i=0;i<ICEcoder.cMInstances.length;i++) {
|
||||||
// Main pane
|
// Main pane
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("lineWrapping", top.ICEcoder.lineWrapping);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("lineWrapping", top.ICEcoder.lineWrapping);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("lineNumbers", top.ICEcoder.lineNumbers);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("showTrailingSpace", top.ICEcoder.showTrailingSpace);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("matchBrackets", top.ICEcoder.matchBrackets);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("autoCloseTags", top.ICEcoder.autoCloseTags);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("autoCloseBrackets", top.ICEcoder.autoCloseBrackets);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("indentWithTabs", top.ICEcoder.indentWithTabs);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("indentWithTabs", top.ICEcoder.indentWithTabs);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("indentUnit", top.ICEcoder.indentSize);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("indentUnit", top.ICEcoder.indentSize);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("tabSize", top.ICEcoder.indentSize);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].setOption("tabSize", top.ICEcoder.indentSize);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].refresh();
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]].refresh();
|
||||||
// Diff pane
|
// Diff pane
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("lineWrapping", top.ICEcoder.lineWrapping);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("lineWrapping", top.ICEcoder.lineWrapping);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("lineNumbers", top.ICEcoder.lineNumbers);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("showTrailingSpace", top.ICEcoder.showTrailingSpace);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("matchBrackets", top.ICEcoder.matchBrackets);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("autoCloseTags", top.ICEcoder.autoCloseTags);
|
||||||
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("autoCloseBrackets", top.ICEcoder.autoCloseBrackets);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("indentWithTabs", top.ICEcoder.indentWithTabs);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("indentWithTabs", top.ICEcoder.indentWithTabs);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("indentUnit", top.ICEcoder.indentSize);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("indentUnit", top.ICEcoder.indentSize);
|
||||||
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("tabSize", top.ICEcoder.indentSize);
|
ICEcoder.content.contentWindow['cM'+ICEcoder.cMInstances[i]+'diff'].setOption("tabSize", top.ICEcoder.indentSize);
|
||||||
|
|||||||
204
lib/ice-coder.min.js
vendored
204
lib/ice-coder.min.js
vendored
@@ -1,65 +1,69 @@
|
|||||||
var get=function(a){return top.document.getElementById(a)},ICEcoder={filesW:250,minFilesW:14,maxFilesW:250,selectedTab:0,savedPoints:[],savedContents:[],canSwitchTabs:!0,openFiles:[],openFileMDTs:[],openFileVersions:[],cMInstances:[],nextcMInstance:1,selectedFiles:[],findMode:!1,scrollbarVisible:!1,mouseDown:!1,mouseDownInCM:!1,draggingFilesW:!1,draggingTab:!1,draggingWithKey:!1,tabLeftPos:[],tabBGcurrent:"#1d1d1b",tabBGselected:"#49d",tabBGopen:"#c3c3c3",tabBGnormal:"transparent",tabFGcurrent:"#fff",
|
var get=function(a){return top.document.getElementById(a)},ICEcoder={filesW:250,minFilesW:14,maxFilesW:250,selectedTab:0,savedPoints:[],savedContents:[],canSwitchTabs:!0,openFiles:[],openFileMDTs:[],openFileVersions:[],cMInstances:[],nextcMInstance:1,selectedFiles:[],findMode:!1,scrollbarVisible:!1,mouseDown:!1,mouseDownInCM:!1,draggingFilesW:!1,draggingTab:!1,draggingWithKey:!1,tabLeftPos:[],tabBGcurrent:"#1d1d1b",tabBGselected:"#49d",tabBGopen:"#c3c3c3",tabBGnormal:"transparent",tabFGcurrent:"#fff",
|
||||||
tabFGselected:"#fff",tabFGopenFile:"#000",tabFGnormalFile:"#eee",tabFGnormalTab:"#888",serverQueueItems:[],previewWindow:!1,previewWindowLoading:!1,pluginIntervalRefs:[],overPopup:!1,cmdKey:!1,endTagReplaceData:[],fmReady:!1,bugReportStatus:"off",bugReportPath:"",bugFilesSizesSeen:[],bugFilesSizesActual:[],githubDiff:!1,githubAuthTokenSet:!1,splitPane:!1,renderLineStyle:[],renderPaneShiftAmount:0,debounce:"",editorFocusInstance:"",openSeconds:0,ready:!1,initAliases:function(){for(var a="header files fileOptions optionsFile optionsEdit optionsSource optionsHelp filesFrame editor tabsBar findBar content footer nestValid versionsDisplay splitPaneControls charDisplay byteDisplay".split(" "),
|
tabFGselected:"#fff",tabFGopenFile:"#000",tabFGnormalFile:"#eee",tabFGnormalTab:"#888",serverQueueItems:[],previewWindow:!1,previewWindowLoading:!1,pluginIntervalRefs:[],overPopup:!1,cmdKey:!1,oppTagReplaceData:[],fmReady:!1,bugReportStatus:"off",bugReportPath:"",bugFilesSizesSeen:[],bugFilesSizesActual:[],githubDiff:!1,githubAuthTokenSet:!1,splitPane:!1,splitPaneLeftPerc:100,renderLineStyle:[],renderPaneShiftAmount:0,debounce:"",editorFocusInstance:"",openSeconds:0,ready:!1,initAliases:function(){for(var a=
|
||||||
b=0;b<a.length;b++)ICEcoder[a[b]]=top.get(a[b])},init:function(){top.ICEcoder.lockedNav||(top.ICEcoder.filesW=ICEcoder.minFilesW);ICEcoder.setLayout();top.ICEcoder.overFileFolder("folder","|");top.ICEcoder.selectFileFolder("init");top.ICEcoder.filesFrame.contentWindow.focus();top.ICEcoder.showHide("hide",top.get("loadingMask"));top.ICEcoder.autoOpenInt=setInterval(function(){top.ICEcoder.fmReady&&(top.ICEcoder.openLastFiles&&setTimeout(function(){top.ICEcoder.autoOpenFiles()},200),clearInterval(top.ICEcoder.autoOpenInt))},
|
"header files fileOptions optionsFile optionsEdit optionsSource optionsHelp filesFrame editor tabsBar findBar content footer nestValid versionsDisplay splitPaneControls splitPaneNamesMain splitPaneNamesDiff charDisplay byteDisplay".split(" "),b=0;b<a.length;b++)ICEcoder[a[b]]=top.get(a[b])},init:function(){top.ICEcoder.lockedNav||(top.ICEcoder.filesW=ICEcoder.minFilesW);ICEcoder.setLayout();top.ICEcoder.overFileFolder("folder","|");top.ICEcoder.selectFileFolder("init");top.ICEcoder.filesFrame.contentWindow.focus();
|
||||||
4);setInterval(ICEcoder.updateNestingIndicator,30);top.ICEcoder.startBugChecking();top.ICEcoder.autoLogoutTimer=0;top.ICEcoder.oneSecondInt=setInterval(function(){top.ICEcoder.autoLogoutTimer++;for(var a=!1,b=1;b<=ICEcoder.savedPoints.length;b++)ICEcoder.savedPoints[b-1]!=top.ICEcoder.getcMInstance(b).changeGeneration()&&(a=!0);!a&&1<top.ICEcoder.autoLogoutMins&&top.ICEcoder.autoLogoutTimer==60*top.ICEcoder.autoLogoutMins-60&&top.ICEcoder.autoLogoutWarningScreen();!a&&0<ICEcoder.autoLogoutMins&&top.ICEcoder.autoLogoutTimer>=
|
top.ICEcoder.showHide("hide",top.get("loadingMask"));top.ICEcoder.autoOpenInt=setInterval(function(){top.ICEcoder.fmReady&&(top.ICEcoder.openLastFiles&&setTimeout(function(){top.ICEcoder.autoOpenFiles()},200),clearInterval(top.ICEcoder.autoOpenInt))},4);setInterval(ICEcoder.updateNestingIndicator,30);top.ICEcoder.startBugChecking();top.ICEcoder.autoLogoutTimer=0;top.ICEcoder.oneSecondInt=setInterval(function(){top.ICEcoder.autoLogoutTimer++;for(var a=!1,b=1;b<=ICEcoder.savedPoints.length;b++)ICEcoder.savedPoints[b-
|
||||||
60*top.ICEcoder.autoLogoutMins&&top.ICEcoder.logout("autoLogout");top.ICEcoder.openSeconds++;0==top.ICEcoder.openSeconds%300&&(top.ICEcoder.filesFrame.contentWindow.frames.pingActive.location.href="lib/session-active-ping.php")},1E3);top.ICEcoder.ready=!0},setLayout:function(a){var b,c;b=window.innerWidth;c=window.innerHeight;this.header.style.width=this.tabsBar.style.width=this.findBar.style.width=b+"px";this.files.style.width=this.editor.style.left=this.filesW+"px";this.optionsFile.style.width=
|
1]!=top.ICEcoder.getcMInstance(b).changeGeneration()&&(a=!0);!a&&1<top.ICEcoder.autoLogoutMins&&top.ICEcoder.autoLogoutTimer==60*top.ICEcoder.autoLogoutMins-60&&top.ICEcoder.autoLogoutWarningScreen();get("autoLogoutIFrame")&&get("autoLogoutIFrame").contentWindow.document.getElementById("timeRemaning")&&(get("autoLogoutIFrame").contentWindow.document.getElementById("timeRemaning").innerHTML=0<top.ICEcoder.autoLogoutTimer?60*top.ICEcoder.autoLogoutMins-top.ICEcoder.autoLogoutTimer:0);!a&&0<ICEcoder.autoLogoutMins&&
|
||||||
this.optionsEdit.style.width=this.optionsSource.style.width=this.optionsHelp.style.width=this.filesW-60+"px";this.filesFrame.style.height=c-25-35+"px";this.nestValid.style.left=this.filesW+10+"px";this.versionsDisplay.style.left=this.filesW+25+"px";this.splitPaneControls.style.left=parseInt((b-this.filesW)/2,10)-25-4+this.filesW+"px";top.ICEcoder.setTabWidths();a||(this.editor.style.width=ICEcoder.content.style.width=b-this.filesW+"px",ICEcoder.content.style.height=c-25-21-28-26+"px",setTimeout(function(){for(var a=
|
top.ICEcoder.autoLogoutTimer>=60*top.ICEcoder.autoLogoutMins&&top.ICEcoder.logout("autoLogout");top.ICEcoder.openSeconds++;0==top.ICEcoder.openSeconds%300&&(top.ICEcoder.filesFrame.contentWindow.frames.pingActive.location.href="lib/session-active-ping.php")},1E3);top.ICEcoder.ready=!0},setLayout:function(a){var b,c;b=window.innerWidth;c=window.innerHeight;this.header.style.width=this.tabsBar.style.width=this.findBar.style.width=b+"px";this.files.style.width=this.editor.style.left=this.filesW+"px";
|
||||||
0;a<top.ICEcoder.openFiles.length;a++)top.ICEcoder.splitPane?(top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]+"diff"].setSize("50%",top.ICEcoder.content.style.height),top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]].setSize("50%",top.ICEcoder.content.style.height)):(top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]].setSize("100%",top.ICEcoder.content.style.height),top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]+"diff"].setSize("0",top.ICEcoder.content.style.height));
|
this.optionsFile.style.width=this.optionsEdit.style.width=this.optionsSource.style.width=this.optionsHelp.style.width=this.filesW-60+"px";this.filesFrame.style.height=c-25-35+"px";this.nestValid.style.left=this.filesW+10+"px";this.versionsDisplay.style.left=this.filesW+25+"px";this.splitPaneControls.style.left=parseInt((b-this.filesW)/2,10)-25-4+this.filesW+"px";this.splitPaneNamesMain.style.left=parseInt(.25*(b-this.filesW),10)-50+this.filesW+"px";this.splitPaneNamesDiff.style.left=parseInt(.75*
|
||||||
top.ICEcoder.splitPane?top.ICEcoder.content.contentWindow.document.getElementById("resultsBar").style.right=top.ICEcoder.scrollBarVisible?parseInt(parseInt(ICEcoder.content.style.width,10)/2,10)+17+"px":parseInt(parseInt(ICEcoder.content.style.width,10)/2,10)+"px":top.ICEcoder.content.contentWindow.document.getElementById("resultsBar").style.right=top.ICEcoder.scrollBarVisible?"17px":"0"},4))},setSplitPane:function(a){var b;top.ICEcoder.splitPane="on"==a?!0:!1;top.get("splitPaneControlsOff").style.opacity=
|
(b-this.filesW),10)-50+this.filesW+"px";top.ICEcoder.setTabWidths();a||(this.editor.style.width=ICEcoder.content.style.width=b-this.filesW+"px",ICEcoder.content.style.height=c-25-21-28-26+"px",setTimeout(function(){for(var a=0;a<top.ICEcoder.openFiles.length;a++)top.ICEcoder.splitPane||top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]].setSize(top.ICEcoder.splitPaneLeftPerc+"%",top.ICEcoder.content.style.height),top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]+"diff"].setSize(100-
|
||||||
top.ICEcoder.splitPane?.5:1;top.get("splitPaneControlsOn").style.opacity=top.ICEcoder.splitPane?1:.5;top.ICEcoder.setLayout();if(top.ICEcoder.splitPane)top.ICEcoder.updateDiffs(),b=top.ICEcoder.getcMInstance(),top.ICEcoder.cMonScroll(b,"cM"+ICEcoder.cMInstances[ICEcoder.selectedTab-1]);else{b=top.ICEcoder.getcMInstance();a=top.ICEcoder.getcMdiffInstance();cMmarks=b.getAllMarks();for(b=0;b<cMmarks.length;b++)cMmarks[b].clear();cMdiffMarks=a.getAllMarks();for(b=0;b<cMdiffMarks.length;b++)cMdiffMarks[b].clear()}},
|
top.ICEcoder.splitPaneLeftPerc+"%",top.ICEcoder.content.style.height),top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]+"diff"].getWrapperElement().style.left=top.ICEcoder.splitPaneLeftPerc+"%",top.ICEcoder.splitPane&&top.ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[a]].setSize(top.ICEcoder.splitPaneLeftPerc+"%",top.ICEcoder.content.style.height);top.ICEcoder.splitPane?top.ICEcoder.content.contentWindow.document.getElementById("resultsBar").style.right=top.ICEcoder.scrollBarVisible?
|
||||||
changeFilesW:function(a){ICEcoder.lockedNav&&ICEcoder.filesW!=ICEcoder.minFilesW||("undefined"!=typeof ICEcoder.changeFilesInt&&clearInterval(ICEcoder.changeFilesInt),ICEcoder.changeFilesInt=setInterval(function(){ICEcoder.changeFilesWStep(a)},10))},changeFilesWStep:function(a){"expand"==a?ICEcoder.filesW<ICEcoder.maxFilesW-1?ICEcoder.filesW+=Math.ceil((ICEcoder.maxFilesW-ICEcoder.filesW)/2):ICEcoder.filesW=ICEcoder.maxFilesW:ICEcoder.filesW>ICEcoder.minFilesW+1?ICEcoder.filesW-=Math.ceil((ICEcoder.filesW-
|
parseInt(parseInt(ICEcoder.content.style.width,10)/2,10)+17+"px":parseInt(parseInt(ICEcoder.content.style.width,10)/2,10)+"px":top.ICEcoder.content.contentWindow.document.getElementById("resultsBar").style.right=top.ICEcoder.scrollBarVisible?"17px":"0"},4))},setSplitPane:function(a){var b;top.ICEcoder.splitPane="on"==a?!0:!1;top.get("splitPaneControlsOff").style.opacity=top.ICEcoder.splitPane?.5:1;top.get("splitPaneControlsOn").style.opacity=top.ICEcoder.splitPane?1:.5;top.get("splitPaneNamesMain").style.opacity=
|
||||||
ICEcoder.minFilesW)/2):ICEcoder.filesW=ICEcoder.minFilesW;("expand"==a&&ICEcoder.filesW==ICEcoder.maxFilesW||"contract"==a&&ICEcoder.filesW==ICEcoder.minFilesW)&&clearInterval(ICEcoder.changeFilesInt);ICEcoder.setLayout()},canResizeFilesW:function(){top.ICEcoder.ready&&"w-resize"==top.document.body.style.cursor?top.ICEcoder.mouseDown&&"gutter"==top.ICEcoder.mouseDownInCM&&(top.ICEcoder.filesW=top.ICEcoder.maxFilesW=250<=top.ICEcoder.mouseX&&400>=top.ICEcoder.mouseX?top.ICEcoder.mouseX:250>top.ICEcoder.mouseX?
|
top.get("splitPaneNamesDiff").style.opacity=top.ICEcoder.splitPane?1:0;top.ICEcoder.setLayout();if(top.ICEcoder.splitPane)top.ICEcoder.updateDiffs(),b=top.ICEcoder.getcMInstance(),top.ICEcoder.cMonScroll(b,"cM"+ICEcoder.cMInstances[ICEcoder.selectedTab-1]);else if(b=top.ICEcoder.getcMInstance(),a=top.ICEcoder.getcMdiffInstance(),b){cMmarks=b.getAllMarks();for(b=0;b<cMmarks.length;b++)cMmarks[b].clear();cMdiffMarks=a.getAllMarks();for(b=0;b<cMdiffMarks.length;b++)cMdiffMarks[b].clear()}"undefined"!=
|
||||||
250:400,top.ICEcoder.files.style.width=top.ICEcoder.filesFrame.style.width=top.ICEcoder.filesW+"px",top.ICEcoder.setLayout(),top.ICEcoder.draggingFilesW=!0):top.ICEcoder.draggingFilesW=!1},lockUnlockNav:function(){var a;a=top.ICEcoder.filesFrame.contentWindow.document.getElementById("fmLock");ICEcoder.lockedNav=!ICEcoder.lockedNav;a.style.backgroundPosition=ICEcoder.lockedNav?"0 0":"-16px 0"},showHidePlugins:function(a){get("plugins").style.width="show"==a?"55px":"3px";get("plugins").style.background=
|
typeof top.ICEcoder.animSplitPaneInt&&clearInterval(top.ICEcoder.animSplitPaneInt);top.ICEcoder.animSplitPaneInt=setInterval(function(){top.ICEcoder.splitPane&&50.1<top.ICEcoder.splitPaneLeftPerc?top.ICEcoder.splitPaneLeftPerc=(top.ICEcoder.splitPaneLeftPerc-50)/1.8+50:!top.ICEcoder.splitPane&&99.9>top.ICEcoder.splitPaneLeftPerc?top.ICEcoder.splitPaneLeftPerc=50-(100-top.ICEcoder.splitPaneLeftPerc)/1.8+50:(top.ICEcoder.splitPaneLeftPerc=top.ICEcoder.splitPane?50:100,clearInterval(top.ICEcoder.animSplitPaneInt));
|
||||||
|
top.ICEcoder.setLayout()},4)},changeFilesW:function(a){ICEcoder.lockedNav&&ICEcoder.filesW!=ICEcoder.minFilesW||("undefined"!=typeof ICEcoder.changeFilesInt&&clearInterval(ICEcoder.changeFilesInt),ICEcoder.changeFilesInt=setInterval(function(){ICEcoder.changeFilesWStep(a)},10))},changeFilesWStep:function(a){"expand"==a?ICEcoder.filesW<ICEcoder.maxFilesW-1?ICEcoder.filesW+=Math.ceil((ICEcoder.maxFilesW-ICEcoder.filesW)/2):ICEcoder.filesW=ICEcoder.maxFilesW:ICEcoder.filesW>ICEcoder.minFilesW+1?ICEcoder.filesW-=
|
||||||
|
Math.ceil((ICEcoder.filesW-ICEcoder.minFilesW)/2):ICEcoder.filesW=ICEcoder.minFilesW;("expand"==a&&ICEcoder.filesW==ICEcoder.maxFilesW||"contract"==a&&ICEcoder.filesW==ICEcoder.minFilesW)&&clearInterval(ICEcoder.changeFilesInt);ICEcoder.setLayout()},canResizeFilesW:function(){top.ICEcoder.ready&&"w-resize"==top.document.body.style.cursor?top.ICEcoder.mouseDown&&"gutter"==top.ICEcoder.mouseDownInCM&&(top.ICEcoder.filesW=top.ICEcoder.maxFilesW=250<=top.ICEcoder.mouseX&&400>=top.ICEcoder.mouseX?top.ICEcoder.mouseX:
|
||||||
|
250>top.ICEcoder.mouseX?250:400,top.ICEcoder.files.style.width=top.ICEcoder.filesFrame.style.width=top.ICEcoder.filesW+"px",top.ICEcoder.setLayout(),top.ICEcoder.draggingFilesW=!0):top.ICEcoder.draggingFilesW=!1},lockUnlockNav:function(){var a;a=top.ICEcoder.filesFrame.contentWindow.document.getElementById("fmLock");ICEcoder.lockedNav=!ICEcoder.lockedNav;a.style.backgroundPosition=ICEcoder.lockedNav?"0 0":"-16px 0"},showHidePlugins:function(a){get("plugins").style.width="show"==a?"55px":"3px";get("plugins").style.background=
|
||||||
"show"==a?"#333":"transparent";"show"==a&&ICEcoder.changeFilesW("expand")},cMonFocus:function(a,b){top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();top.ICEcoder.updateByteDisplay();top.ICEcoder.editorFocusInstance=b;top.ICEcoder.getCaretPosition()},cMonBlur:function(a,b){},cMonKeyUp:function(a,b){"undefined"!=typeof top.doFind&&clearInterval(top.doFind);top.doFind=setTimeout(function(){top.ICEcoder.findReplace(top.get("find").value,!0,!1)},500);top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();
|
"show"==a?"#333":"transparent";"show"==a&&ICEcoder.changeFilesW("expand")},cMonFocus:function(a,b){top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();top.ICEcoder.updateByteDisplay();top.ICEcoder.editorFocusInstance=b;top.ICEcoder.getCaretPosition()},cMonBlur:function(a,b){},cMonKeyUp:function(a,b){"undefined"!=typeof top.doFind&&clearInterval(top.doFind);top.doFind=setTimeout(function(){top.ICEcoder.findReplace(top.get("find").value,!0,!1)},500);top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();
|
||||||
top.ICEcoder.updateByteDisplay()},cMonCursorActivity:function(a,b){var c;top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();top.ICEcoder.updateByteDisplay();a.removeLineClass(top.ICEcoder["cMActiveLine"+b],"background");a.getCursor("start").line==a.getCursor().line&&(top.ICEcoder["cMActiveLine"+b]=a.addLineClass(a.getCursor().line,"background","cm-s-activeLine"));"CSS"==top.ICEcoder.caretLocType&&top.ICEcoder.cssColorPreview();c=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?top.ICEcoder.prevLineDiff:
|
top.ICEcoder.updateByteDisplay()},cMonCursorActivity:function(a,b){var c;top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();top.ICEcoder.updateByteDisplay();a.removeLineClass(top.ICEcoder["cMActiveLine"+b],"background");a.getCursor("start").line==a.getCursor().line&&(top.ICEcoder["cMActiveLine"+b]=a.addLineClass(a.getCursor().line,"background","cm-s-activeLine"));"CSS"==top.ICEcoder.caretLocType&&top.ICEcoder.cssColorPreview();c=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?top.ICEcoder.prevLineDiff:
|
||||||
top.ICEcoder.prevLine;c!=a.getCursor().line&&a.getLine(c)&&0<a.getLine(c).length&&0==a.getLine(c).replace(/\s/g,"").length&&a.replaceRange("",{line:c,ch:0},{line:c,ch:1E6});setTimeout(function(){for(var c,e=0;e<top.ICEcoder.renderLineStyle.length;e++){c=!1;if("diff"!=top.ICEcoder.renderLineStyle[e][0]&&-1==b.indexOf("diff")||"diff"==top.ICEcoder.renderLineStyle[e][0]&&-1<b.indexOf("diff"))c=!0;c&&a.getCursor().line+1==top.ICEcoder.renderLineStyle[e][1]?a.setOption("cursorHeight",a.defaultTextHeight()/
|
top.ICEcoder.prevLine;c!=a.getCursor().line&&a.getLine(c)&&0<a.getLine(c).length&&0==a.getLine(c).replace(/\s/g,"").length&&a.replaceRange("",{line:c,ch:0},{line:c,ch:1E6});setTimeout(function(){for(var c,e=0;e<top.ICEcoder.renderLineStyle.length;e++){c=!1;if("diff"!=top.ICEcoder.renderLineStyle[e][0]&&-1==b.indexOf("diff")||"diff"==top.ICEcoder.renderLineStyle[e][0]&&-1<b.indexOf("diff"))c=!0;c&&a.getCursor().line+1==top.ICEcoder.renderLineStyle[e][1]?a.setOption("cursorHeight",a.defaultTextHeight()/
|
||||||
a.lineInfo(a.getCursor().line).handle.height):a.setOption("cursorHeight",1)}},0)},cMonBeforeChange:function(a,b,c,d){var e,f,g;b=a.listSelections();for(var k=0;k<b.length;k++)if(e=a.getTokenAt(b[k].anchor),"tag bracket"==e.type&&"<"==e.string&&(e=a.getTokenAt({line:b[k].anchor.line,ch:b[k].anchor.ch+1})),"tag"==e.type){f=d.fold.xml(a,b[k].anchor);g=!0;for(var h=0;h<top.ICEcoder.endTagReplaceData.length;h++)"undefined"!=typeof f&&top.ICEcoder.endTagReplaceData[h].split(";")[1]==f.to.line+":"+f.to.ch&&
|
a.lineInfo(a.getCursor().line).handle.height):a.setOption("cursorHeight",1)}},0)},cMonBeforeChange:function(a,b,c,d){var e,f;b=a.listSelections();for(var g=0;g<b.length;g++)e=d.findMatchingTag(a,b[g].anchor),0!==c.text[0].indexOf(">")&&"undefined"!=typeof e&&"undo"!=c.origin&&"redo"!=c.origin&&"undefined"!=typeof e.open&&"undefined"!=typeof e.close&&(f="open"==e.at?"close":"open",e=e[f].tag+";"+e[f].from.line+":"+e[f].from.ch,-1==top.ICEcoder.oppTagReplaceData.indexOf(e)&&top.ICEcoder.oppTagReplaceData.push(e))},
|
||||||
(g=!1);g&&"undefined"!=typeof f&&"undo"!=c.origin&&"redo"!=c.origin&&(e=e.string+";"+f.to.line+":"+f.to.ch,-1==top.ICEcoder.endTagReplaceData.indexOf(e)&&top.ICEcoder.endTagReplaceData.push(e))}},cMonChange:function(a,b,c){var d,e,f;top.ICEcoder.loadingFile||top.ICEcoder.redoTabHighlight(top.ICEcoder.selectedTab);setTimeout(function(){top.ICEcoder.scrollBarVisible=a.getScrollInfo().height>a.getScrollInfo().clientHeight;top.ICEcoder.setLayout()},0);if(0<top.ICEcoder.endTagReplaceData.length)for(b=
|
cMonChange:function(a,b,c,d){var e,f,g,k,h,l,p,n,m,q;b=a.listSelections();top.ICEcoder.loadingFile||top.ICEcoder.redoTabHighlight(top.ICEcoder.selectedTab);setTimeout(function(){top.ICEcoder.scrollBarVisible=a.getScrollInfo().height>a.getScrollInfo().clientHeight;top.ICEcoder.setLayout()},0);if("undefined"!=typeof top.ICEcoder.oppTagReplaceData[0])for(var r=0;r<top.ICEcoder.oppTagReplaceData.length;r++)e=top.ICEcoder.oppTagReplaceData[r].split(";"),f=e[0],g=1*e[1].split(":")[0],k=1*e[1].split(":")[1],
|
||||||
0;b<top.ICEcoder.endTagReplaceData.length;b++)d=top.ICEcoder.endTagReplaceData[b].split(";"),1*d[1].split(":")[0]!=c.from.line&&(d[1].split(":"),d[1].split(":"),d[1].split(":"),d[1].split(":"),d=a.getTokenAt(a.listSelections()[b].anchor),d=d.string,"<"==d&&(d=""));top.ICEcoder.endTagReplaceData=[];top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();top.ICEcoder.updateByteDisplay();top.ICEcoder.updateNestingIndicator();top.ICEcoder.findMode&&(top.ICEcoder.results.splice(top.ICEcoder.findResult,
|
b[r]&&(h=d.findMatchingTag(a,b[r].anchor)),"undefined"!=typeof h&&(f="open"==h.at?h.open.tag:h.close.tag,"undefined"!=typeof c.from&&(l=g==c.from.line?c.text[0].length-c.removed[0].length:0,p="close"==h.at&&g==c.from.line?c.removed[0].length-c.text[0].length+1:1,n={line:g,ch:k+l+("open"==h.at?2:p)},l={line:g,ch:k+l+("open"==h.at?2:p)+e[0].length})),""!=f.trim()&&"undefined"!=typeof n&&"undefined"!=typeof l&&a.getRange(n,l)==e[0]&&(a.replaceRange(f,n,l),"close"==h.at&&(top.ICEcoder.autocompleteSkip=
|
||||||
1),top.get("results").innerHTML=top.ICEcoder.results.length+" "+top.t.results,top.ICEcoder.findMode=!1);if(c=top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1])e=c.substr(c.lastIndexOf("/")+1),f=e.substr(e.lastIndexOf(".")+1);top.ICEcoder.splitPane&&setTimeout(function(){top.ICEcoder.updateDiffs()},0);c&&top.ICEcoder.previewWindow.location&&"/[NEW]"!=c&&top.ICEcoder.updatePreviewWindow(a,c,e,f);top.ICEcoder.indicateChanges()},cMonScroll:function(a,b){var c,d,e;top.ICEcoder.mouseDown=!1;top.ICEcoder.mouseDownInCM=
|
!0));top.ICEcoder.oppTagReplaceData=[];top.ICEcoder.getCaretPosition();top.ICEcoder.updateCharDisplay();top.ICEcoder.updateByteDisplay();top.ICEcoder.updateNestingIndicator();top.ICEcoder.findMode&&(top.ICEcoder.results.splice(top.ICEcoder.findResult,1),top.get("results").innerHTML=top.ICEcoder.results.length+" "+top.t.results,top.ICEcoder.findMode=!1);if(c=top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1])m=c.substr(c.lastIndexOf("/")+1),q=m.substr(m.lastIndexOf(".")+1);top.ICEcoder.splitPane&&
|
||||||
!1;top.ICEcoder.splitPane&&(c=top.ICEcoder.getcMInstance(),d=top.ICEcoder.getcMdiffInstance(),e=-1<b.indexOf("diff")?c:d,setTimeout(function(){e.scrollTo(a.getScrollInfo().left,a.getScrollInfo().top)},0))},cMonInputRead:function(a,b){"keypress"==top.ICEcoder.autoComplete&&top.ICEcoder.codeAssist&&(a.state.completionActive||top.ICEcoder.autocomplete())},cMonGutterClick:function(a,b,c,d,e){top.ICEcoder.mouseDownInCM="gutter"},cMonMouseDown:function(a,b){top.ICEcoder.mouseDownInCM="editor"},cMonDragOver:function(a,
|
setTimeout(function(){top.ICEcoder.updateDiffs()},0);c&&top.ICEcoder.previewWindow.location&&"/[NEW]"!=c&&top.ICEcoder.updatePreviewWindow(a,c,m,q);top.ICEcoder.indicateChanges()},cMonScroll:function(a,b){var c,d,e;top.ICEcoder.mouseDown=!1;top.ICEcoder.mouseDownInCM=!1;top.ICEcoder.splitPane&&(c=top.ICEcoder.getcMInstance(),d=top.ICEcoder.getcMdiffInstance(),e=-1<b.indexOf("diff")?c:d,c&&setTimeout(function(){e.scrollTo(a.getScrollInfo().left,a.getScrollInfo().top)},0))},cMonInputRead:function(a,
|
||||||
b,c){top.ICEcoder.setDragCursor(b,"editor")},cMonRenderLine:function(a,b,c,d){for(var e,f=0;f<top.ICEcoder.renderLineStyle.length;f++){e=!1;if("diff"!=top.ICEcoder.renderLineStyle[f][0]&&-1==b.indexOf("diff")||"diff"==top.ICEcoder.renderLineStyle[f][0]&&-1<b.indexOf("diff"))e=!0;e&&a.lineInfo(c).line+1==top.ICEcoder.renderLineStyle[f][1]&&(d.style[top.ICEcoder.renderLineStyle[f][2]]=top.ICEcoder.renderLineStyle[f][3])}},updateDiffs:function(){var a,b,c,d,e,f;top.ICEcoder.renderLineStyle=[];top.ICEcoder.renderPaneShiftAmount=
|
b){"keypress"==top.ICEcoder.autoComplete&&top.ICEcoder.codeAssist&&!a.state.completionActive&&(top.ICEcoder.autocompleteSkip?top.ICEcoder.autocompleteSkip=!1:top.ICEcoder.autocomplete())},cMonGutterClick:function(a,b,c,d,e){top.ICEcoder.mouseDownInCM="gutter"},cMonMouseDown:function(a,b){top.ICEcoder.mouseDownInCM="editor"},cMonDragOver:function(a,b,c){top.ICEcoder.setDragCursor(b,"editor")},cMonRenderLine:function(a,b,c,d){for(var e,f=0;f<top.ICEcoder.renderLineStyle.length;f++){e=!1;if("diff"!=
|
||||||
0;a=top.ICEcoder.getcMInstance();b=top.ICEcoder.getcMdiffInstance();c=a?difflib.stringAsLines(a.getValue()):"";d=b?difflib.stringAsLines(b.getValue()):"";c=(new difflib.SequenceMatcher(c,d)).get_opcodes();if(a){e=a.getAllMarks();for(d=0;d<e.length;d++)e[d].clear();e=b.getAllMarks();for(d=0;d<e.length;d++)e[d].clear()}if(a&&""!=b.getValue())for(d=0;d<c.length;d++)if("equal"!==c[d][0]){if("replace"==c[d][0]){f=(c[d][4]-c[d][2]+1+top.ICEcoder.renderPaneShiftAmount)*a.defaultTextHeight();for(e=c[d][4]-
|
top.ICEcoder.renderLineStyle[f][0]&&-1==b.indexOf("diff")||"diff"==top.ICEcoder.renderLineStyle[f][0]&&-1<b.indexOf("diff"))e=!0;e&&a.lineInfo(c).line+1==top.ICEcoder.renderLineStyle[f][1]&&(d.style[top.ICEcoder.renderLineStyle[f][2]]=top.ICEcoder.renderLineStyle[f][3])}},updateDiffs:function(){var a,b,c,d,e,f;top.ICEcoder.renderLineStyle=[];top.ICEcoder.renderPaneShiftAmount=0;a=top.ICEcoder.getcMInstance();b=top.ICEcoder.getcMdiffInstance();c=a?difflib.stringAsLines(a.getValue()):"";d=b?difflib.stringAsLines(b.getValue()):
|
||||||
1;e<=c[d][2]-1;e++)b.getLineHandle(e).height>a.defaultTextHeight()&&(f+=b.getLineHandle(e).height-a.defaultTextHeight());f>a.defaultTextHeight()&&top.ICEcoder.renderLineStyle.push(["main",c[d][2],"height",f+"px"]);for(e=0;e<c[d][2]-c[d][1];e++)f=top.ICEcoder.findStringDiffs(a.getLine(c[d][1]+e),b.getLine(c[d][3]+e)),a.markText({line:c[d][1]+e,ch:0},{line:c[d][3]+e+top.ICEcoder.renderPaneShiftAmount,ch:f[0]},{className:"diffGreyLighter"}),a.markText({line:c[d][1]+e,ch:f[0]},{line:c[d][3]+e+top.ICEcoder.renderPaneShiftAmount,
|
"";c=(new difflib.SequenceMatcher(c,d)).get_opcodes();if(a){e=a.getAllMarks();for(d=0;d<e.length;d++)e[d].clear();e=b.getAllMarks();for(d=0;d<e.length;d++)e[d].clear()}if(a&&""!=b.getValue())for(d=0;d<c.length;d++)if("equal"!==c[d][0]){if("replace"==c[d][0]){f=(c[d][4]-c[d][2]+1+top.ICEcoder.renderPaneShiftAmount)*a.defaultTextHeight();for(e=c[d][4]-1;e<=c[d][2]-1;e++)b.getLineHandle(e).height>a.defaultTextHeight()&&(f+=b.getLineHandle(e).height-a.defaultTextHeight());f>a.defaultTextHeight()&&top.ICEcoder.renderLineStyle.push(["main",
|
||||||
ch:f[0]+f[1]},{className:"diffGrey"}),a.markText({line:c[d][1]+e,ch:f[0]+f[1]},{line:c[d][3]+e+top.ICEcoder.renderPaneShiftAmount,ch:1E6},{className:"diffGreyLighter"})}else a.markText({line:c[d][1],ch:0},{line:c[d][2]-1,ch:1E6},{className:"diffGreen"});"replace"!=c[d][0]&&c[d][1]==c[d][2]&&(top.ICEcoder.renderLineStyle.push(["main",c[d][2],"height",(c[d][4]-c[d][3]+1)*a.defaultTextHeight()+"px"]),a.markText({line:c[d][2]-1,ch:0},{line:c[d][2]-1,ch:1E6},{className:"diffNone"}));if("replace"==c[d][0]){f=
|
c[d][2],"height",f+"px"]);for(e=0;e<c[d][2]-c[d][1];e++)f=top.ICEcoder.findStringDiffs(a.getLine(c[d][1]+e),b.getLine(c[d][3]+e)),a.markText({line:c[d][1]+e,ch:0},{line:c[d][3]+e+top.ICEcoder.renderPaneShiftAmount,ch:f[0]},{className:"diffGreyLighter"}),a.markText({line:c[d][1]+e,ch:f[0]},{line:c[d][3]+e+top.ICEcoder.renderPaneShiftAmount,ch:f[0]+f[1]},{className:"diffGrey"}),a.markText({line:c[d][1]+e,ch:f[0]+f[1]},{line:c[d][3]+e+top.ICEcoder.renderPaneShiftAmount,ch:1E6},{className:"diffGreyLighter"})}else a.markText({line:c[d][1],
|
||||||
(c[d][2]-c[d][4]+1-top.ICEcoder.renderPaneShiftAmount)*a.defaultTextHeight();for(e=c[d][4]-1;e<=c[d][2]-1;e++)a.getLineHandle(e).height>a.defaultTextHeight()&&(f+=a.getLineHandle(e).height-a.defaultTextHeight());f>a.defaultTextHeight()&&top.ICEcoder.renderLineStyle.push(["diff",c[d][4],"height",f+"px"]);for(e=0;e<c[d][4]-c[d][3];e++)f=top.ICEcoder.findStringDiffs(a.getLine(c[d][1]+e),b.getLine(c[d][3]+e)),b.markText({line:c[d][1]+e-top.ICEcoder.renderPaneShiftAmount,ch:0},{line:c[d][3]+e,ch:f[0]},
|
ch:0},{line:c[d][2]-1,ch:1E6},{className:"diffGreen"});"replace"!=c[d][0]&&c[d][1]==c[d][2]&&(top.ICEcoder.renderLineStyle.push(["main",c[d][2],"height",(c[d][4]-c[d][3]+1)*a.defaultTextHeight()+"px"]),a.markText({line:c[d][2]-1,ch:0},{line:c[d][2]-1,ch:1E6},{className:"diffNone"}));if("replace"==c[d][0]){f=(c[d][2]-c[d][4]+1-top.ICEcoder.renderPaneShiftAmount)*a.defaultTextHeight();for(e=c[d][4]-1;e<=c[d][2]-1;e++)a.getLineHandle(e).height>a.defaultTextHeight()&&(f+=a.getLineHandle(e).height-a.defaultTextHeight());
|
||||||
{className:"diffGreyLighter"}),b.markText({line:c[d][1]+e-top.ICEcoder.renderPaneShiftAmount,ch:f[0]},{line:c[d][3]+e,ch:f[0]+f[2]},{className:"diffGrey"}),b.markText({line:c[d][1]+e-top.ICEcoder.renderPaneShiftAmount,ch:f[0]+f[2]},{line:c[d][3]+e,ch:1E6},{className:"diffGreyLighter"})}else b.markText({line:c[d][3],ch:0},{line:c[d][4]-1,ch:1E6},{className:"diffRed"});"replace"!=c[d][0]&&c[d][3]==c[d][4]&&(top.ICEcoder.renderLineStyle.push(["diff",c[d][4],"height",(c[d][2]-c[d][1]+1)*a.defaultTextHeight()+
|
f>a.defaultTextHeight()&&top.ICEcoder.renderLineStyle.push(["diff",c[d][4],"height",f+"px"]);for(e=0;e<c[d][4]-c[d][3];e++)f=top.ICEcoder.findStringDiffs(a.getLine(c[d][1]+e),b.getLine(c[d][3]+e)),b.markText({line:c[d][1]+e-top.ICEcoder.renderPaneShiftAmount,ch:0},{line:c[d][3]+e,ch:f[0]},{className:"diffGreyLighter"}),b.markText({line:c[d][1]+e-top.ICEcoder.renderPaneShiftAmount,ch:f[0]},{line:c[d][3]+e,ch:f[0]+f[2]},{className:"diffGrey"}),b.markText({line:c[d][1]+e-top.ICEcoder.renderPaneShiftAmount,
|
||||||
"px"]),b.markText({line:c[d][4]-1,ch:0},{line:c[d][4]-1,ch:1E6},{className:"diffNone"}));top.ICEcoder.renderPaneShiftAmount=c[d][2]-c[d][4]}},findStringDiffs:function(a,b){"undefined"==typeof a&&(a="");"undefined"==typeof b&&(b="");for(var c=0,d=a.length,e=b.length;a[c]&&a[c]==b[c];c++);for(;d>c&e>c&a[d-1]==b[e-1];d--)e--;return[c,d-c,e-c]},updatePreviewWindow:function(a,b,c,d){top.ICEcoder.previewWindow.location.pathname==b?-1<["htm","html","txt"].indexOf(d)?top.ICEcoder.previewWindow.document.documentElement.innerHTML=
|
ch:f[0]+f[2]},{line:c[d][3]+e,ch:1E6},{className:"diffGreyLighter"})}else b.markText({line:c[d][3],ch:0},{line:c[d][4]-1,ch:1E6},{className:"diffRed"});"replace"!=c[d][0]&&c[d][3]==c[d][4]&&(top.ICEcoder.renderLineStyle.push(["diff",c[d][4],"height",(c[d][2]-c[d][1]+1)*a.defaultTextHeight()+"px"]),b.markText({line:c[d][4]-1,ch:0},{line:c[d][4]-1,ch:1E6},{className:"diffNone"}));top.ICEcoder.renderPaneShiftAmount=c[d][2]-c[d][4]}},findStringDiffs:function(a,b){"undefined"==typeof a&&(a="");"undefined"==
|
||||||
a.getValue():-1<["md"].indexOf(d)&&(top.ICEcoder.previewWindow.document.documentElement.innerHTML=mmd(a.getValue())):-1<["css"].indexOf(d)&&-1<top.ICEcoder.previewWindow.document.documentElement.innerHTML.indexOf(c)&&(a=a.getValue(),c=document.createElement("style"),c.type="text/css",c.id="ICEcoder"+b.replace(/\//g,"_"),c.styleSheet?c.styleSheet.cssText=a:c.appendChild(document.createTextNode(a)),top.ICEcoder.previewWindow.document.getElementById(c.id)&&top.ICEcoder.previewWindow.document.documentElement.removeChild(top.ICEcoder.previewWindow.document.getElementById(c.id)),
|
typeof b&&(b="");for(var c=0,d=a.length,e=b.length;a[c]&&a[c]==b[c];c++);for(;d>c&e>c&a[d-1]==b[e-1];d--)e--;return[c,d-c,e-c]},updatePreviewWindow:function(a,b,c,d){top.ICEcoder.previewWindow.location.pathname==b?-1<["htm","html","txt"].indexOf(d)?top.ICEcoder.previewWindow.document.documentElement.innerHTML=a.getValue():-1<["md"].indexOf(d)&&(top.ICEcoder.previewWindow.document.documentElement.innerHTML=mmd(a.getValue())):-1<["css"].indexOf(d)&&-1<top.ICEcoder.previewWindow.document.documentElement.innerHTML.indexOf(c)&&
|
||||||
top.ICEcoder.previewWindow.document.documentElement.appendChild(c));try{top.ICEcoder.doPesticide()}catch(e){}try{top.ICEcoder.doStatsJS("update")}catch(e){}try{top.ICEcoder.doResponsive()}catch(e){}},contentCleanUp:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;b=a.getValue();b=b.replace(/<ICEcoder:\/:textarea>/g,"</textarea>");a.setValue(b);a.clearHistory();top.ICEcoder.savedPoints[top.ICEcoder.selectedTab-1]=
|
(a=a.getValue(),c=document.createElement("style"),c.type="text/css",c.id="ICEcoder"+b.replace(/\//g,"_"),c.styleSheet?c.styleSheet.cssText=a:c.appendChild(document.createTextNode(a)),top.ICEcoder.previewWindow.document.getElementById(c.id)&&top.ICEcoder.previewWindow.document.documentElement.removeChild(top.ICEcoder.previewWindow.document.getElementById(c.id)),top.ICEcoder.previewWindow.document.documentElement.appendChild(c));try{top.ICEcoder.doPesticide()}catch(e){}try{top.ICEcoder.doStatsJS("update")}catch(e){}try{top.ICEcoder.doResponsive()}catch(e){}},
|
||||||
a.changeGeneration();top.ICEcoder.savedContents[top.ICEcoder.selectedTab-1]=a.getValue()},undo:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a).undo()},redo:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a).redo()},indent:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?
|
contentCleanUp:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;b=a.getValue();b=b.replace(/<ICEcoder:\/:textarea>/g,"</textarea>");a.setValue(b);a.clearHistory();top.ICEcoder.savedPoints[top.ICEcoder.selectedTab-1]=a.changeGeneration();top.ICEcoder.savedContents[top.ICEcoder.selectedTab-1]=a.getValue()},undo:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?
|
||||||
c:b;"more"==a?top.ICEcoder.content.contentWindow.CodeMirror.commands.indentMore(b):top.ICEcoder.content.contentWindow.CodeMirror.commands.indentLess(b)},moveLines:function(a){var b,c,d,e,f,g,k;b=top.ICEcoder.getcMInstance();c=top.ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;e=d.getCursor("start");f=d.getCursor("end");"up"==a&&0<e.line&&(g=e.line-1);"down"==a&&f.line<d.lineCount()-1&&(g=f.line+1);isNaN(g)||(k=d.getLine(g),d.operation(function(){if("up"==a)for(var b=
|
b:a).undo()},redo:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a).redo()},indent:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;"more"==a?top.ICEcoder.content.contentWindow.CodeMirror.commands.indentMore(b):top.ICEcoder.content.contentWindow.CodeMirror.commands.indentLess(b)},moveLines:function(a){var b,c,d,e,f,g,k;b=top.ICEcoder.getcMInstance();
|
||||||
e.line;b<=f.line;b++)d.replaceRange(d.getLine(b),{line:b-1,ch:0},{line:b-1,ch:1E6});else for(b=f.line;b>=e.line;b--)d.replaceRange(d.getLine(b),{line:b+1,ch:0},{line:b+1,ch:1E6});d.replaceRange(k,{line:"up"==a?f.line:e.line,ch:0},{line:"up"==a?f.line:e.line,ch:1E6});d.setSelection({line:e.line+("up"==a?-1:1),ch:e.ch},{line:f.line+("up"==a?-1:1),ch:f.ch})}))},highlightLine:function(a){var b,c;b=top.ICEcoder.getcMInstance();c=top.ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?
|
c=top.ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;e=d.getCursor("start");f=d.getCursor("end");"up"==a&&0<e.line&&(g=e.line-1);"down"==a&&f.line<d.lineCount()-1&&(g=f.line+1);isNaN(g)||(k=d.getLine(g),d.operation(function(){if("up"==a)for(var b=e.line;b<=f.line;b++)d.replaceRange(d.getLine(b),{line:b-1,ch:0},{line:b-1,ch:1E6});else for(b=f.line;b>=e.line;b--)d.replaceRange(d.getLine(b),{line:b+1,ch:0},{line:b+1,ch:1E6});d.replaceRange(k,{line:"up"==a?f.line:
|
||||||
c:b;b.setSelection({line:a,ch:0},{line:a,ch:b.lineInfo(a).text.length})},focus:function(a){var b,c;/iPhone|iPad|iPod/i.test(navigator.userAgent)||(b=top.ICEcoder.getcMInstance(),c=top.ICEcoder.getcMdiffInstance(),(a=a?c:b)&&a.focus())},goToLine:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b).setCursor(a?a-1:top.get("goToLineNo").value-1);top.ICEcoder.focus();setTimeout(function(){top.ICEcoder.focus()},0);return!1},
|
e.line,ch:0},{line:"up"==a?f.line:e.line,ch:1E6});d.setSelection({line:e.line+("up"==a?-1:1),ch:e.ch},{line:f.line+("up"==a?-1:1),ch:f.ch})}))},highlightLine:function(a){var b,c;b=top.ICEcoder.getcMInstance();c=top.ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;b.setSelection({line:a,ch:0},{line:a,ch:b.lineInfo(a).text.length})},focus:function(a){var b,c;/iPhone|iPad|iPod/i.test(navigator.userAgent)||(b=top.ICEcoder.getcMInstance(),c=top.ICEcoder.getcMdiffInstance(),
|
||||||
lineCommentToggle:function(){var a,b,c,d;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;b=a.getCursor().ch;c=a.getCursor().line;d=a.getLine(c);ICEcoder.lineCommentToggleSub(a,b,c,d,d.length)},tagWrapper:function(a){var b,c,d,e,f;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;b=a;"div"==a?(e=d.getCursor("start").line,f=d.getCursor().line,d.operation(function(){d.replaceSelection("<div>\n"+
|
(a=a?c:b)&&a.focus())},goToLine:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b).setCursor(a?a-1:top.get("goToLineNo").value-1);top.ICEcoder.focus();setTimeout(function(){top.ICEcoder.focus()},0);return!1},lineCommentToggle:function(){var a,b,c,d;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;b=a.getCursor().ch;c=a.getCursor().line;d=a.getLine(c);
|
||||||
d.getSelection()+"\n</div>","around");for(var a=e+1;a<=f+1;a++)d.indentLine(a);d.indentLine(f+2,"prev");d.indentLine(f+2,"subtract")})):-1<["p","a","h1","h2","h3"].indexOf(a)&&d.getSelection().substr(0,a.length+1)=="<"+b&&d.getSelection().substr(-(a.length+3))=="</"+a+">"?d.replaceSelection(d.getSelection().substr(d.getSelection().indexOf(">")+1,d.getSelection().length-d.getSelection().indexOf(">")-1-a.length-3),"around"):("a"==a&&(b='a href=""'),d.replaceSelection("<"+b+">"+d.getSelection()+"</"+
|
ICEcoder.lineCommentToggleSub(a,b,c,d,d.length)},tagWrapper:function(a){var b,c,d,e,f;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;b=a;"div"==a?(e=d.getCursor("start").line,f=d.getCursor().line,d.operation(function(){d.replaceSelection("<div>\n"+d.getSelection()+"\n</div>","around");for(var a=e+1;a<=f+1;a++)d.indentLine(a);d.indentLine(f+2,"prev");d.indentLine(f+2,"subtract")})):-1<["p","a","h1","h2","h3"].indexOf(a)&&d.getSelection().substr(0,
|
||||||
a+">","around"),"a"==a&&d.setCursor({line:d.getCursor("start").line,ch:d.getCursor("start").ch+9}))},addLineBreakAtEnd:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;a||(a=b.getCursor().line);b.replaceRange(b.getLine(a)+"<br>",{line:a,ch:0},{line:a,ch:1E6})},insertLineBefore:function(a){var b,c,d;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:
|
a.length+1)=="<"+b&&d.getSelection().substr(-(a.length+3))=="</"+a+">"?d.replaceSelection(d.getSelection().substr(d.getSelection().indexOf(">")+1,d.getSelection().length-d.getSelection().indexOf(">")-1-a.length-3),"around"):("a"==a&&(b='a href=""'),d.replaceSelection("<"+b+">"+d.getSelection()+"</"+a+">","around"),"a"==a&&d.setCursor({line:d.getCursor("start").line,ch:d.getCursor("start").ch+9}))},addLineBreakAtEnd:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<
|
||||||
b;a||(a=d.getCursor().line);d.operation(function(){d.replaceRange("\n"+d.getLine(a),{line:a,ch:0},{line:a,ch:1E6});d.setCursor({line:d.getCursor().line-1,ch:0});d.execCommand("indentAuto")})},insertLineAfter:function(a){var b,c,d;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;a||(a=d.getCursor().line);d.operation(function(){d.replaceRange(d.getLine(a)+"\n",{line:a,ch:0},{line:a,ch:1E6});d.execCommand("indentAuto")})},duplicateLines:function(a){var b,
|
top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;a||(a=b.getCursor().line);b.replaceRange(b.getLine(a)+"<br>",{line:a,ch:0},{line:a,ch:1E6})},insertLineBefore:function(a){var b,c,d;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;a||(a=d.getCursor().line);d.operation(function(){d.replaceRange("\n"+d.getLine(a),{line:a,ch:0},{line:a,ch:1E6});d.setCursor({line:d.getCursor().line-1,ch:0});d.execCommand("indentAuto")})},insertLineAfter:function(a){var b,
|
||||||
c,d;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;!a&&b.somethingSelected()?(c=b.getCursor("start"),d=b.getCursor("end"),a=c.line!=d.line&&d.ch==b.getLine(d.line).length?"\n":"",b.replaceSelection(b.getSelection()+a+b.getSelection(),"end"),b.setSelection(c,d)):(a||(a=b.getCursor().line),c=b.getCursor().ch,b.replaceRange(b.getLine(a)+"\n"+b.getLine(a),{line:a,ch:0},{line:a,ch:1E6}),b.setCursor(a+1,c))},removeLines:function(a){var b,
|
c,d;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();d=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;a||(a=d.getCursor().line);d.operation(function(){d.replaceRange(d.getLine(a)+"\n",{line:a,ch:0},{line:a,ch:1E6});d.execCommand("indentAuto")})},duplicateLines:function(a){var b,c,d;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;!a&&b.somethingSelected()?(c=b.getCursor("start"),d=b.getCursor("end"),a=c.line!=d.line&&
|
||||||
c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;!a&&b.somethingSelected()?b.replaceSelection("","end"):(a||(a=b.getCursor().line),c=b.getCursor().ch,b.execCommand("deleteLine"),b.setCursor(a-1,c))},jumpToDefinition:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;b=a.getTokenAt(a.getCursor()).string;if(a.somethingSelected()&&top.ICEcoder.origCurorPos)a.setCursor(top.ICEcoder.origCurorPos);
|
d.ch==b.getLine(d.line).length?"\n":"",b.replaceSelection(b.getSelection()+a+b.getSelection(),"end"),b.setSelection(c,d)):(a||(a=b.getCursor().line),c=b.getCursor().ch,b.replaceRange(b.getLine(a)+"\n"+b.getLine(a),{line:a,ch:0},{line:a,ch:1E6}),b.setCursor(a+1,c))},removeLines:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;!a&&b.somethingSelected()?b.replaceSelection("","end"):(a||(a=b.getCursor().line),c=b.getCursor().ch,
|
||||||
else for(top.ICEcoder.origCurorPos=a.getCursor(),a=["var "+b,"function "+b,b+"=function",b+"= function",b+" =function",b+" = function",b+"=new function",b+"= new function",b+" =new function",b+" = new function","window['"+b+"']",'window["'+b+'"]',"this['"+b+"']",'this["'+b+'"]',b+":",b+" :","def "+b,"class "+b],b=0;b<a.length&&!top.ICEcoder.findReplace(a[b],!1,!1);b++);},autocomplete:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?
|
b.execCommand("deleteLine"),b.setCursor(a-1,c))},jumpToDefinition:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;b=a.getTokenAt(a.getCursor()).string;if(a.somethingSelected()&&top.ICEcoder.origCurorPos)a.setCursor(top.ICEcoder.origCurorPos);else for(top.ICEcoder.origCurorPos=a.getCursor(),a=["var "+b,"function "+b,b+"=function",b+"= function",b+" =function",b+" = function",b+"=new function",b+"= new function",
|
||||||
b:a;top.ICEcoder.content.contentWindow.CodeMirror.commands.autocomplete(a)},pasteURL:function(a){var b,c;b=top.ICEcoder.getcMInstance();c=top.ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;"CTRL"==top.ICEcoder.draggingWithKey&&(a=window.location.protocol+"//"+window.location.hostname+a);b.replaceSelection(a,"around")},searchForSelected:function(){var a,b;a=top.ICEcoder.getcMInstance();b=top.ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?
|
b+" =new function",b+" = new function","window['"+b+"']",'window["'+b+'"]',"this['"+b+"']",'this["'+b+'"]',b+":",b+" :","def "+b,"class "+b],b=0;b<a.length&&!top.ICEcoder.findReplace(a[b],!1,!1);b++);},autocomplete:function(){var a,b;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;top.ICEcoder.content.contentWindow.CodeMirror.commands.autocomplete(a)},pasteURL:function(a){var b,c;b=top.ICEcoder.getcMInstance();c=top.ICEcoder.getcMdiffInstance();
|
||||||
b:a;top.ICEcoder.caretLocType&&(""!=a.getSelection()?(b=top.ICEcoder.caretLocType.toLowerCase()+" ","Content"==top.ICEcoder.caretLocType&&(b=""),window.open("http://www.google.com/#output=search&q="+b+a.getSelection())):top.ICEcoder.message(top.t["No text selected..."]))},fmAction:function(a,b){var c,d,e,f;c=top.get("filesFrame").contentWindow.document.getElementById(top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1]+"_perms").parentNode;d=c.parentNode;e=-1<c.onmouseover.toString().indexOf("'folder'")?
|
b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;"CTRL"==top.ICEcoder.draggingWithKey&&(a=window.location.protocol+"//"+window.location.hostname+a);b.replaceSelection(a,"around")},searchForSelected:function(){var a,b;a=top.ICEcoder.getcMInstance();b=top.ICEcoder.getcMdiffInstance();a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;top.ICEcoder.caretLocType&&(""!=a.getSelection()?(b=top.ICEcoder.caretLocType.toLowerCase()+" ","Content"==top.ICEcoder.caretLocType&&(b=""),window.open("http://www.google.com/#output=search&q="+
|
||||||
"folder":"file";f=!1;"up"==b&&(d.previousSibling&&d.previousSibling.previousSibling?(f=d.previousSibling.previousSibling,"UL"==f.tagName&&(f=f.childNodes[f.childNodes.length-1])):d.parentNode.previousSibling&&(f=d.parentNode.previousSibling),f&&(f=f.childNodes[0]));"down"==b&&(d.nextSibling&&d.nextSibling.childNodes[0]?f=d.nextSibling.childNodes[0]:d.nextSibling&&d.nextSibling.nextSibling?f=d.nextSibling.nextSibling:d.parentNode.nextSibling&&(f=d.parentNode.nextSibling.nextSibling),f&&(f=f.childNodes[0]));
|
b+a.getSelection())):top.ICEcoder.message(top.t["No text selected..."]))},fmAction:function(a,b){var c,d,e,f;c=top.get("filesFrame").contentWindow.document.getElementById(top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1]+"_perms").parentNode;d=c.parentNode;e=-1<c.onmouseover.toString().indexOf("'folder'")?"folder":"file";f=!1;"up"==b&&(d.previousSibling&&d.previousSibling.previousSibling?(f=d.previousSibling.previousSibling,"UL"==f.tagName&&(f=f.childNodes[f.childNodes.length-1])):d.parentNode.previousSibling&&
|
||||||
"left"==b&&"folder"==e&&d.parentNode.previousSibling&&top.ICEcoder.openCloseDir(c,!1);if("right"==b||"enter"==b)"folder"==e?top.ICEcoder.openCloseDir(c,!0):top.ICEcoder.openFile(c.childNodes[1].id.replace(/\|/g,"/"));f&&f.childNodes[1]&&(top.ICEcoder.overFileFolder(e,f.childNodes[1].id),top.ICEcoder.selectFileFolder(a))},openCloseDir:function(a,b){var c,d;a.onclick=function(a){a.ctrlKey||top.ICEcoder.cmdKey||top.ICEcoder.openCloseDir(this,!b)};c=a.parentNode;c.nextSibling&&(c=c.nextSibling);c&&"UL"==
|
(f=d.parentNode.previousSibling),f&&(f=f.childNodes[0]));"down"==b&&(d.nextSibling&&d.nextSibling.childNodes[0]?f=d.nextSibling.childNodes[0]:d.nextSibling&&d.nextSibling.nextSibling?f=d.nextSibling.nextSibling:d.parentNode.nextSibling&&(f=d.parentNode.nextSibling.nextSibling),f&&(f=f.childNodes[0]));"left"==b&&"folder"==e&&d.parentNode.previousSibling&&top.ICEcoder.openCloseDir(c,!1);if("right"==b||"enter"==b)"folder"==e?top.ICEcoder.openCloseDir(c,!0):top.ICEcoder.openFile(c.childNodes[1].id.replace(/\|/g,
|
||||||
c.tagName&&((d="none"==c.style.display)?b=!0:c.style.display="none",a.parentNode.className=a.className=d?"pft-directory dirOpen":"pft-directory");b?top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="lib/get-branch.php?location="+a.childNodes[1].id+"&csrf="+top.ICEcoder.csrf:"UL"==c.tagName&&c.parentNode.removeChild(c);return!1},overFileFolder:function(a,b){ICEcoder.thisFileFolderType=a;ICEcoder.thisFileFolderLink=b},isFileFolder:function(a){return(a=top.get("filesFrame").contentWindow.document.getElementById(a.replace(top.iceRoot,
|
"/"));f&&f.childNodes[1]&&(top.ICEcoder.overFileFolder(e,f.childNodes[1].id),top.ICEcoder.selectFileFolder(a))},openCloseDir:function(a,b){var c,d;a.onclick=function(a){a.ctrlKey||top.ICEcoder.cmdKey||top.ICEcoder.openCloseDir(this,!b)};c=a.parentNode;c.nextSibling&&(c=c.nextSibling);c&&"UL"==c.tagName&&((d="none"==c.style.display)?b=!0:c.style.display="none",a.parentNode.className=a.className=d?"pft-directory dirOpen":"pft-directory");b?top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href=
|
||||||
"").replace(/\/$/,"").replace(/\//g,"|")))?-1<a.parentNode.parentNode.className.indexOf("directory")?"folder":"file":!1},selectFileFolder:function(a,b,c){var d,e,f;if(""==top.ICEcoder.thisFileFolderLink)b||a.ctrlKey||top.ICEcoder.cmdKey||top.ICEcoder.deselectAllFiles();else if(top.ICEcoder.thisFileFolderLink)if(e=top.ICEcoder.thisFileFolderLink.replace(/\//g,"|"),d=top.ICEcoder.filesFrame.contentWindow.document.getElementById(e),b||a.ctrlKey||top.ICEcoder.cmdKey)-1<top.ICEcoder.selectedFiles.indexOf(e)?
|
"lib/get-branch.php?location="+a.childNodes[1].id+"&csrf="+top.ICEcoder.csrf:"UL"==c.tagName&&c.parentNode.removeChild(c);return!1},overFileFolder:function(a,b){ICEcoder.thisFileFolderType=a;ICEcoder.thisFileFolderLink=b},isFileFolder:function(a){return(a=top.get("filesFrame").contentWindow.document.getElementById(a.replace(top.iceRoot,"").replace(/\/$/,"").replace(/\//g,"|")))?-1<a.parentNode.parentNode.className.indexOf("directory")?"folder":"file":!1},selectFileFolder:function(a,b,c){var d,e,f;
|
||||||
(ICEcoder.selectDeselectFile("deselect",d),top.ICEcoder.selectedFiles.splice(top.ICEcoder.selectedFiles.indexOf(e),1)):(ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(e));else if(c||a.shiftKey){var g=function(a,b,c,d){return("00000000000000000000"+a).substr(-20)};a=!1;b=d.parentNode.parentNode.parentNode;f=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1];c=e.replace(/\d+/g,g)<f.replace(/\d+/g,g)?e:f;f=e.replace(/\d+/g,g)>f.replace(/\d+/g,g)?e:f;if(0<top.ICEcoder.selectedFiles.length&&
|
if(""==top.ICEcoder.thisFileFolderLink)b||a.ctrlKey||top.ICEcoder.cmdKey||top.ICEcoder.deselectAllFiles();else if(top.ICEcoder.thisFileFolderLink)if(e=top.ICEcoder.thisFileFolderLink.replace(/\//g,"|"),d=top.ICEcoder.filesFrame.contentWindow.document.getElementById(e),b||a.ctrlKey||top.ICEcoder.cmdKey)-1<top.ICEcoder.selectedFiles.indexOf(e)?(ICEcoder.selectDeselectFile("deselect",d),top.ICEcoder.selectedFiles.splice(top.ICEcoder.selectedFiles.indexOf(e),1)):(ICEcoder.selectDeselectFile("select",
|
||||||
c.substr(0,c.lastIndexOf("|"))==f.substr(0,f.lastIndexOf("|")))for(e=0;1E6>e&&("LI"!=b.childNodes[e].nodeName&&e++,d=b.childNodes[e].childNodes[0].childNodes[1],d.id==c&&(a=!0),1==a&&-1==top.ICEcoder.selectedFiles.indexOf(d.id)&&(ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(d.id)),d.id!=f);e+=2);else ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(e)}else top.ICEcoder.deselectAllFiles(),ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(e);
|
d),top.ICEcoder.selectedFiles.push(e));else if(c||a.shiftKey){var g=function(a,b,c,d){return("00000000000000000000"+a).substr(-20)};a=!1;b=d.parentNode.parentNode.parentNode;f=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1];c=e.replace(/\d+/g,g)<f.replace(/\d+/g,g)?e:f;f=e.replace(/\d+/g,g)>f.replace(/\d+/g,g)?e:f;if(0<top.ICEcoder.selectedFiles.length&&c.substr(0,c.lastIndexOf("|"))==f.substr(0,f.lastIndexOf("|")))for(e=0;1E6>e&&("LI"!=b.childNodes[e].nodeName&&e++,d=b.childNodes[e].childNodes[0].childNodes[1],
|
||||||
top.ICEcoder.githubDiff&&(top.get("githubNavSelectedCount").innerHTML="Selected: "+top.ICEcoder.selectedFiles.length,top.get("githubNavCommit").style.color=0<top.ICEcoder.selectedFiles.length?"#fff":"#333",top.get("githubNavCommit").style.background=0<top.ICEcoder.selectedFiles.length?"#2187e7":"#555",top.get("githubNavSelectedCount").style.color=0<top.ICEcoder.selectedFiles.length?"#fff":"#333",top.get("githubNavPull").style.color=0<top.ICEcoder.selectedFiles.length?"#fff":"#333",top.get("githubNavPull").style.background=
|
d.id==c&&(a=!0),1==a&&-1==top.ICEcoder.selectedFiles.indexOf(d.id)&&(ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(d.id)),d.id!=f);e+=2);else ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(e)}else top.ICEcoder.deselectAllFiles(),ICEcoder.selectDeselectFile("select",d),top.ICEcoder.selectedFiles.push(e);top.ICEcoder.githubDiff&&(top.get("githubNavSelectedCount").innerHTML="Selected: "+top.ICEcoder.selectedFiles.length,top.get("githubNavCommit").style.color=
|
||||||
0<top.ICEcoder.selectedFiles.length?"#2187e7":"#555");document.findAndReplace.target[2].innerHTML=top.ICEcoder.selectedFiles[0]?top.t["selected files"]:top.t["all files"];document.findAndReplace.target[3].innerHTML=top.ICEcoder.selectedFiles[0]?top.t["selected filenames"]:top.t["all filenames"];top.ICEcoder.hideFileMenu()},deselectAllFiles:function(){for(var a,b=0;b<top.ICEcoder.selectedFiles.length;b++)a=top.ICEcoder.filesFrame.contentWindow.document.getElementById(top.ICEcoder.selectedFiles[b]),
|
0<top.ICEcoder.selectedFiles.length?"#fff":"#333",top.get("githubNavCommit").style.background=0<top.ICEcoder.selectedFiles.length?"#2187e7":"#555",top.get("githubNavSelectedCount").style.color=0<top.ICEcoder.selectedFiles.length?"#fff":"#333",top.get("githubNavPull").style.color=0<top.ICEcoder.selectedFiles.length?"#fff":"#333",top.get("githubNavPull").style.background=0<top.ICEcoder.selectedFiles.length?"#2187e7":"#555");document.findAndReplace.target[2].innerHTML=top.ICEcoder.selectedFiles[0]?top.t["selected files"]:
|
||||||
ICEcoder.selectDeselectFile("deselect",a);top.ICEcoder.selectedFiles.length=0},selectDeselectFile:function(a,b){var c;b&&(c=-1<top.ICEcoder.openFiles.indexOf(b.id.replace(/\|/g,"/"))?!0:!1,top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1]==b.id.replace(/\|/g,"/")?b.style.backgroundColor="select"==a?top.ICEcoder.tabBGselected:top.ICEcoder.tabBGcurrent:b.style.backgroundColor="select"==a?top.ICEcoder.tabBGselected:b.style.backgroundColor=c?top.ICEcoder.tabBGopen:top.ICEcoder.tabBGnormal,b.style.color=
|
top.t["all files"];document.findAndReplace.target[3].innerHTML=top.ICEcoder.selectedFiles[0]?top.t["selected filenames"]:top.t["all filenames"];top.ICEcoder.hideFileMenu()},deselectAllFiles:function(){for(var a,b=0;b<top.ICEcoder.selectedFiles.length;b++)a=top.ICEcoder.filesFrame.contentWindow.document.getElementById(top.ICEcoder.selectedFiles[b]),ICEcoder.selectDeselectFile("deselect",a);top.ICEcoder.selectedFiles.length=0},selectDeselectFile:function(a,b){var c;b&&(c=-1<top.ICEcoder.openFiles.indexOf(b.id.replace(/\|/g,
|
||||||
"select"==a?top.ICEcoder.tabFGselected:top.ICEcoder.tabFGnormalFile)},boxSelect:function(a,b){var c,d;c=top.ICEcoder.filesFrame.contentWindow.document.getElementById("fmDragBox");"down"==b&&(top.ICEcoder.fmDragBoxStartX=top.ICEcoder.mouseX,top.ICEcoder.fmDragBoxStartY=top.ICEcoder.mouseY,top.ICEcoder.fmDragSelectFirst="",top.ICEcoder.fmDragSelectLast="");top.ICEcoder.mouseDown&&!top.ICEcoder.mouseDownInCM&&"drag"==b&&(top.ICEcoder.fmDraggedBox=!0,d=0<top.ICEcoder.mouseX-top.ICEcoder.fmDragBoxStartX,
|
"/"))?!0:!1,top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1]==b.id.replace(/\|/g,"/")?b.style.backgroundColor="select"==a?top.ICEcoder.tabBGselected:top.ICEcoder.tabBGcurrent:b.style.backgroundColor="select"==a?top.ICEcoder.tabBGselected:b.style.backgroundColor=c?top.ICEcoder.tabBGopen:top.ICEcoder.tabBGnormal,b.style.color="select"==a?top.ICEcoder.tabFGselected:top.ICEcoder.tabFGnormalFile)},boxSelect:function(a,b){var c,d;c=top.ICEcoder.filesFrame.contentWindow.document.getElementById("fmDragBox");
|
||||||
c.style.left=(d?top.ICEcoder.fmDragBoxStartX:top.ICEcoder.mouseX)+"px",c.style.width=Math.abs(top.ICEcoder.mouseX-top.ICEcoder.fmDragBoxStartX)+"px",d=0<top.ICEcoder.mouseY-top.ICEcoder.fmDragBoxStartY,c.style.top=(d?top.ICEcoder.fmDragBoxStartY-70:top.ICEcoder.mouseY-70)+"px",c.style.height=Math.abs(top.ICEcoder.mouseY-top.ICEcoder.fmDragBoxStartY)+"px",""!=top.ICEcoder.thisFileFolderLink&&(""==top.ICEcoder.fmDragSelectFirst?(top.ICEcoder.fmDragSelectFirst=top.ICEcoder.thisFileFolderLink,top.ICEcoder.overFileFolder(0<
|
"down"==b&&(top.ICEcoder.fmDragBoxStartX=top.ICEcoder.mouseX,top.ICEcoder.fmDragBoxStartY=top.ICEcoder.mouseY,top.ICEcoder.fmDragSelectFirst="",top.ICEcoder.fmDragSelectLast="");top.ICEcoder.mouseDown&&!top.ICEcoder.mouseDownInCM&&"drag"==b&&(top.ICEcoder.fmDraggedBox=!0,d=0<top.ICEcoder.mouseX-top.ICEcoder.fmDragBoxStartX,c.style.left=(d?top.ICEcoder.fmDragBoxStartX:top.ICEcoder.mouseX)+"px",c.style.width=Math.abs(top.ICEcoder.mouseX-top.ICEcoder.fmDragBoxStartX)+"px",d=0<top.ICEcoder.mouseY-top.ICEcoder.fmDragBoxStartY,
|
||||||
top.ICEcoder.thisFileFolderLink.indexOf(".")?"file":"folder",top.ICEcoder.fmDragSelectFirst),top.ICEcoder.selectFileFolder(a)):(top.ICEcoder.fmDragSelectLast=top.ICEcoder.thisFileFolderLink,top.ICEcoder.overFileFolder(0<top.ICEcoder.thisFileFolderLink.indexOf(".")?"file":"folder",top.ICEcoder.fmDragSelectLast),top.ICEcoder.selectFileFolder(a,!1,"shiftSim"))));"up"==b&&(c.style.width=0,c.style.height=0)},newFile:function(){top.ICEcoder.newTab("alsoSave")},newFolder:function(){var a,b;a=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-
|
c.style.top=(d?top.ICEcoder.fmDragBoxStartY-70:top.ICEcoder.mouseY-70)+"px",c.style.height=Math.abs(top.ICEcoder.mouseY-top.ICEcoder.fmDragBoxStartY)+"px",""!=top.ICEcoder.thisFileFolderLink&&(""==top.ICEcoder.fmDragSelectFirst?(top.ICEcoder.fmDragSelectFirst=top.ICEcoder.thisFileFolderLink,top.ICEcoder.overFileFolder(0<top.ICEcoder.thisFileFolderLink.indexOf(".")?"file":"folder",top.ICEcoder.fmDragSelectFirst),top.ICEcoder.selectFileFolder(a)):(top.ICEcoder.fmDragSelectLast=top.ICEcoder.thisFileFolderLink,
|
||||||
1].replace(/\|/g,"/");if(b=top.ICEcoder.getInput("Enter new folder name at "+a,""))b=(a+"/"+b).replace(/\/\//,"/"),top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=newFolder&csrf="+top.ICEcoder.csrf,b.replace(/\//g,"|").replace(/\+/g,"%2B")),top.ICEcoder.serverMessage("<b>"+top.t["Creating Folder"]+"</b><br>"+b)},returnFileAndLine:function(a){var b=1,c=/^([^ ]*)\s+(on\s+)?(line\s+)?(\d+)/.exec(a);null!==c?(b=c[4],a=c[1]):0<a.indexOf("://")?a.lastIndexOf(":")!==a.indexOf("://")&&(b=
|
top.ICEcoder.overFileFolder(0<top.ICEcoder.thisFileFolderLink.indexOf(".")?"file":"folder",top.ICEcoder.fmDragSelectLast),top.ICEcoder.selectFileFolder(a,!1,"shiftSim"))));"up"==b&&(c.style.width=0,c.style.height=0)},newFile:function(){top.ICEcoder.newTab("alsoSave")},newFolder:function(){var a,b;a=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,"/");if(b=top.ICEcoder.getInput("Enter new folder name at "+a,""))b=(a+"/"+b).replace(/\/\//,"/"),top.ICEcoder.serverQueue("add",
|
||||||
a.split(":")[2],a=a.substr(0,a.lastIndexOf(":"))):0<a.indexOf(":")&&(b=a.split(":")[1],a=a.split(":")[0]);0<a.indexOf("(")&&0<a.indexOf(")")&&(b=a.split("(")[1].split(")")[0],a=a.split("(")[0]);return[a,b]},openFile:function(a){var b,c;"undefined"!=typeof a&&(b=top.ICEcoder.returnFileAndLine(a),a=b[0],b=b[1]);a&&(top.ICEcoder.thisFileFolderLink=a,top.ICEcoder.thisFileFolderType="file");"/[NEW]"!=top.ICEcoder.thisFileFolderLink&&!1!==top.ICEcoder.isOpen(top.ICEcoder.thisFileFolderLink)?(top.ICEcoder.switchTab(top.ICEcoder.isOpen(top.ICEcoder.thisFileFolderLink)+
|
"lib/file-control-xhr.php?action=newFolder&csrf="+top.ICEcoder.csrf,b.replace(/\//g,"|").replace(/\+/g,"%2B")),top.ICEcoder.serverMessage("<b>"+top.t["Creating Folder"]+"</b><br>"+b)},returnFileAndLine:function(a){var b=1,c=/^([^ ]*)\s+(on\s+)?(line\s+)?(\d+)/.exec(a);null!==c?(b=c[4],a=c[1]):0<a.indexOf("://")?a.lastIndexOf(":")!==a.indexOf("://")&&(b=a.split(":")[2],a=a.substr(0,a.lastIndexOf(":"))):0<a.indexOf(":")&&(b=a.split(":")[1],a=a.split(":")[0]);0<a.indexOf("(")&&0<a.indexOf(")")&&(b=a.split("(")[1].split(")")[0],
|
||||||
1),1<b&&top.ICEcoder.goToLine(b)):""!=top.ICEcoder.thisFileFolderLink&&"file"==top.ICEcoder.thisFileFolderType&&(a=top.ICEcoder.thisFileFolderLink.replace(/\|/g,"/"),c=!0,100<=top.ICEcoder.openFiles.length&&(top.ICEcoder.message(top.t["Sorry you can..."]),c=!1),c&&(top.ICEcoder.shortURL=a,"/[NEW]"!=a?(top.ICEcoder.thisFileFolderLink=top.ICEcoder.thisFileFolderLink.replace(/\//g,"|"),top.ICEcoder.serverQueue("add","lib/file-control.php?action=load&file="+top.ICEcoder.thisFileFolderLink.replace(/\+/g,
|
a=a.split("(")[0]);return[a,b]},openFile:function(a){var b,c;"undefined"!=typeof a&&(b=top.ICEcoder.returnFileAndLine(a),a=b[0],b=b[1]);a&&(top.ICEcoder.thisFileFolderLink=a,top.ICEcoder.thisFileFolderType="file");"/[NEW]"!=top.ICEcoder.thisFileFolderLink&&!1!==top.ICEcoder.isOpen(top.ICEcoder.thisFileFolderLink)?(top.ICEcoder.switchTab(top.ICEcoder.isOpen(top.ICEcoder.thisFileFolderLink)+1),1<b&&top.ICEcoder.goToLine(b)):""!=top.ICEcoder.thisFileFolderLink&&"file"==top.ICEcoder.thisFileFolderType&&
|
||||||
"%2B")+"&csrf="+top.ICEcoder.csrf+"&lineNumber="+b),top.ICEcoder.serverMessage("<b>"+top.t["Opening File"]+"</b><br>"+top.ICEcoder.shortURL)):top.ICEcoder.createNewTab("new"),top.ICEcoder.fMIconVis("fMView",1)))},openFilesFromList:function(a){for(var b=0;b<a.length;b++)top.ICEcoder.thisFileFolderLink=a[b].replace("|","/"),top.ICEcoder.thisFileFolderType="file",top.ICEcoder.openFile()},openPrompt:function(){var a;if(a=top.ICEcoder.getInput(top.t["Enter relative file..."],""))-1<a.indexOf("://")?top.ICEcoder.getRemoteFile(a):
|
(a=top.ICEcoder.thisFileFolderLink.replace(/\|/g,"/"),c=!0,100<=top.ICEcoder.openFiles.length&&(top.ICEcoder.message(top.t["Sorry you can..."]),c=!1),c&&(top.ICEcoder.shortURL=a,"/[NEW]"!=a?(top.ICEcoder.thisFileFolderLink=top.ICEcoder.thisFileFolderLink.replace(/\//g,"|"),top.ICEcoder.serverQueue("add","lib/file-control.php?action=load&file="+top.ICEcoder.thisFileFolderLink.replace(/\+/g,"%2B")+"&csrf="+top.ICEcoder.csrf+"&lineNumber="+b),top.ICEcoder.serverMessage("<b>"+top.t["Opening File"]+"</b><br>"+
|
||||||
top.ICEcoder.openFile(a)},getRemoteFile:function(a){var b;"undefined"!=typeof a&&(b=top.ICEcoder.returnFileAndLine(a),a=b[0],b=b[1]);top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=getRemoteFile&csrf="+top.ICEcoder.csrf+"&lineNumber="+b,a.replace(/\+/g,"%2B"));top.ICEcoder.serverMessage("<b>"+top.t.Getting+"</b><br>"+a)},getChangesToSave:function(){var a,b;a=top.ICEcoder.getcMInstance();b=top.ICEcoder.savedContents[top.ICEcoder.selectedTab-1];a=difflib.stringAsLines(a.getValue());
|
top.ICEcoder.shortURL)):top.ICEcoder.createNewTab("new"),top.ICEcoder.fMIconVis("fMView",1)))},openFilesFromList:function(a){for(var b=0;b<a.length;b++)top.ICEcoder.thisFileFolderLink=a[b].replace("|","/"),top.ICEcoder.thisFileFolderType="file",top.ICEcoder.openFile()},openPrompt:function(){var a;if(a=top.ICEcoder.getInput(top.t["Enter relative file..."],""))-1<a.indexOf("://")?top.ICEcoder.getRemoteFile(a):top.ICEcoder.openFile(a)},getRemoteFile:function(a){var b;"undefined"!=typeof a&&(b=top.ICEcoder.returnFileAndLine(a),
|
||||||
b=difflib.stringAsLines(b);b=(new difflib.SequenceMatcher(b,a)).get_opcodes();for(var c=0;c<b.length;c++)for(j=b[c][3];j<b[c][4];j++)"equal"!=b[c][0]&&("undefined"==typeof b[c][5]&&(b[c][5]=""),b[c][5]+=a[j]+"\n");return JSON.stringify(b)},saveFile:function(a){var b,c,d;a||(b=top.ICEcoder.getChangesToSave());a=a?"saveAs":"save";c=ICEcoder.openFiles[ICEcoder.selectedTab-1].replace(top.iceRoot,"").replace(/\//g,"|");"|[NEW]"==c&&0<top.ICEcoder.selectedFiles.length&&(d=top.ICEcoder.selectedFiles[0],
|
a=b[0],b=b[1]);top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=getRemoteFile&csrf="+top.ICEcoder.csrf+"&lineNumber="+b,a.replace(/\+/g,"%2B"));top.ICEcoder.serverMessage("<b>"+top.t.Getting+"</b><br>"+a)},getChangesToSave:function(){var a,b;a=top.ICEcoder.getcMInstance();b=top.ICEcoder.savedContents[top.ICEcoder.selectedTab-1];a=difflib.stringAsLines(a.getValue());b=difflib.stringAsLines(b);b=(new difflib.SequenceMatcher(b,a)).get_opcodes();for(var c=0;c<b.length;c++)for(j=b[c][3];j<
|
||||||
c=-1==d.lastIndexOf(".")||d.lastIndexOf(".")<d.lastIndexOf("|")?d+c:"|[NEW]");c=c.replace("||","|");top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=save&fileMDT="+ICEcoder.openFileMDTs[ICEcoder.selectedTab-1]+"&fileVersion="+ICEcoder.openFileVersions[ICEcoder.selectedTab-1]+"&saveType="+a+"&csrf="+top.ICEcoder.csrf,c.replace(/\+/g,"%2B"),b);top.ICEcoder.serverMessage("<b>"+top.t.Saving+"</b><br>"+ICEcoder.openFiles[ICEcoder.selectedTab-1].replace(top.iceRoot,""))},renameFile:function(a,
|
b[c][4];j++)"equal"!=b[c][0]&&("undefined"==typeof b[c][5]&&(b[c][5]=""),b[c][5]+=a[j]+"\n");return JSON.stringify(b)},saveFile:function(a){var b,c,d;a||(b=top.ICEcoder.getChangesToSave());a=a?"saveAs":"save";c=ICEcoder.openFiles[ICEcoder.selectedTab-1].replace(top.iceRoot,"").replace(/\//g,"|");"|[NEW]"==c&&0<top.ICEcoder.selectedFiles.length&&(d=top.ICEcoder.selectedFiles[0],c=-1==d.lastIndexOf(".")||d.lastIndexOf(".")<d.lastIndexOf("|")?d+c:"|[NEW]");c=c.replace("||","|");top.ICEcoder.serverQueue("add",
|
||||||
b){var c,d;a?c=a.replace(/\|/g,"/"):(c=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,"/"),a=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,"/"));b||(b=top.ICEcoder.getInput(top.t["Please enter the..."],c));b&&(d=top.ICEcoder.openFiles.indexOf(c.replace(/\|/g,"/")),-1<d&&(top.ICEcoder.openFiles[d]=b,closeTabLink='<a nohref onClick="top.ICEcoder.closeTab(parseInt(this.parentNode.id.slice(3),10))"><img src="images/nav-close.gif" class="closeTab" onMouseOver="prevBG=this.style.backgroundColor;this.style.backgroundColor=\'#333\'; top.ICEcoder.overCloseLink=true" onMouseOut="this.style.backgroundColor=prevBG; top.ICEcoder.overCloseLink=false"></a>',
|
"lib/file-control-xhr.php?action=save&fileMDT="+ICEcoder.openFileMDTs[ICEcoder.selectedTab-1]+"&fileVersion="+ICEcoder.openFileVersions[ICEcoder.selectedTab-1]+"&saveType="+a+"&csrf="+top.ICEcoder.csrf,c.replace(/\+/g,"%2B"),b);top.ICEcoder.serverMessage("<b>"+top.t.Saving+"</b><br>"+ICEcoder.openFiles[ICEcoder.selectedTab-1].replace(top.iceRoot,""))},renameFile:function(a,b){var c,d;a?c=a.replace(/\|/g,"/"):(c=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,"/"),a=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-
|
||||||
|
1].replace(/\|/g,"/"));b||(b=top.ICEcoder.getInput(top.t["Please enter the..."],c));b&&(d=top.ICEcoder.openFiles.indexOf(c.replace(/\|/g,"/")),-1<d&&(top.ICEcoder.openFiles[d]=b,closeTabLink='<a nohref onClick="top.ICEcoder.closeTab(parseInt(this.parentNode.id.slice(3),10))"><img src="images/nav-close.gif" class="closeTab" onMouseOver="prevBG=this.style.backgroundColor;this.style.backgroundColor=\'#333\'; top.ICEcoder.overCloseLink=true" onMouseOut="this.style.backgroundColor=prevBG; top.ICEcoder.overCloseLink=false"></a>',
|
||||||
c=top.ICEcoder.openFiles[d],top.get("tab"+(d+1)).innerHTML=closeTabLink+" "+c.slice(c.lastIndexOf("/")).replace(/\//,""),top.get("tab"+(d+1)).title=b),top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=rename&oldFileName="+a.replace(/\|/g,"/").replace(/\+/g,"%2B")+"&csrf="+top.ICEcoder.csrf,b.replace(/\+/g,"%2B")),top.ICEcoder.serverMessage("<b>"+top.t["Renaming to"]+"</b><br>"+b),top.ICEcoder.setPreviousFiles())},moveFile:function(a,b){var c,d;b&&(d=top.ICEcoder.openFiles.indexOf(a.replace(/\|/g,
|
c=top.ICEcoder.openFiles[d],top.get("tab"+(d+1)).innerHTML=closeTabLink+" "+c.slice(c.lastIndexOf("/")).replace(/\//,""),top.get("tab"+(d+1)).title=b),top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=rename&oldFileName="+a.replace(/\|/g,"/").replace(/\+/g,"%2B")+"&csrf="+top.ICEcoder.csrf,b.replace(/\+/g,"%2B")),top.ICEcoder.serverMessage("<b>"+top.t["Renaming to"]+"</b><br>"+b),top.ICEcoder.setPreviousFiles())},moveFile:function(a,b){var c,d;b&&(d=top.ICEcoder.openFiles.indexOf(a.replace(/\|/g,
|
||||||
"/")),-1<d&&(top.ICEcoder.openFiles[d]=b,closeTabLink='<a nohref onClick="top.ICEcoder.closeTab(parseInt(this.parentNode.id.slice(3),10))"><img src="images/nav-close.gif" class="closeTab" onMouseOver="prevBG=this.style.backgroundColor;this.style.backgroundColor=\'#333\'; top.ICEcoder.overCloseLink=true" onMouseOut="this.style.backgroundColor=prevBG; top.ICEcoder.overCloseLink=false"></a>',c=top.ICEcoder.openFiles[d],top.get("tab"+(d+1)).innerHTML=closeTabLink+" "+c.slice(c.lastIndexOf("/")).replace(/\//,
|
"/")),-1<d&&(top.ICEcoder.openFiles[d]=b,closeTabLink='<a nohref onClick="top.ICEcoder.closeTab(parseInt(this.parentNode.id.slice(3),10))"><img src="images/nav-close.gif" class="closeTab" onMouseOver="prevBG=this.style.backgroundColor;this.style.backgroundColor=\'#333\'; top.ICEcoder.overCloseLink=true" onMouseOut="this.style.backgroundColor=prevBG; top.ICEcoder.overCloseLink=false"></a>',c=top.ICEcoder.openFiles[d],top.get("tab"+(d+1)).innerHTML=closeTabLink+" "+c.slice(c.lastIndexOf("/")).replace(/\//,
|
||||||
""),top.get("tab"+(d+1)).title=b),top.ICEcoder.ask("Are you sure you want to move file "+a+" to "+b+" ?")&&(top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=move&oldFileName="+a.replace(/\//g,"|").replace(/\+/g,"%2B")+"&csrf="+top.ICEcoder.csrf,b.replace(/\//g,"|").replace(/\+/g,"%2B")),top.ICEcoder.serverMessage("<b>"+top.t["Moving to"]+"</b><br>"+b)),top.ICEcoder.setPreviousFiles())},deleteFiles:function(a){var b;a=a?a:top.ICEcoder.selectedFiles;b=a.toString().replace(/\|/g,"/").replace(/,/g,
|
""),top.get("tab"+(d+1)).title=b),top.ICEcoder.ask("Are you sure you want to move file "+a+" to "+b+" ?")&&(top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=move&oldFileName="+a.replace(/\//g,"|").replace(/\+/g,"%2B")+"&csrf="+top.ICEcoder.csrf,b.replace(/\//g,"|").replace(/\+/g,"%2B")),top.ICEcoder.serverMessage("<b>"+top.t["Moving to"]+"</b><br>"+b)),top.ICEcoder.setPreviousFiles())},deleteFiles:function(a){var b;a=a?a:top.ICEcoder.selectedFiles;b=a.toString().replace(/\|/g,"/").replace(/,/g,
|
||||||
@@ -72,13 +76,13 @@ b.onreadystatechange=function(){4==b.readyState&&(200==b.status?(c=JSON.parse(b.
|
|||||||
console.log(c),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)):eval(c.action.doNext)):(top.ICEcoder.message(top.t["Sorry there was..."]),console.log("ICEcoder error info for your request..."),console.log(c),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)))};b.open("POST","lib/file-control-xhr.php?action=checkExists&csrf="+top.ICEcoder.csrf,!0);b.setRequestHeader("Content-type","application/x-www-form-urlencoded");d=(new Date).getTime();b.send("timeStart="+d+"&file="+
|
console.log(c),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)):eval(c.action.doNext)):(top.ICEcoder.message(top.t["Sorry there was..."]),console.log("ICEcoder error info for your request..."),console.log(c),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)))};b.open("POST","lib/file-control-xhr.php?action=checkExists&csrf="+top.ICEcoder.csrf,!0);b.setRequestHeader("Content-type","application/x-www-form-urlencoded");d=(new Date).getTime();b.send("timeStart="+d+"&file="+
|
||||||
a.replace(/\+/g,"%2B"))},showMenu:function(a){var b,c;0!=top.ICEcoder.selectedFiles.length&&-1!=top.ICEcoder.selectedFiles.indexOf(top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\//g,"|"))||top.ICEcoder.selectFileFolder(a);a=129;c=window.innerHeight;"undefined"!=typeof top.ICEcoder.thisFileFolderLink&&""!=top.ICEcoder.thisFileFolderLink&&(b=this.isPathFolder(top.ICEcoder.selectedFiles[0])?"folder":"file",top.get("folderMenuItems").style.display="folder"==b&&1==top.ICEcoder.selectedFiles.length?
|
a.replace(/\+/g,"%2B"))},showMenu:function(a){var b,c;0!=top.ICEcoder.selectedFiles.length&&-1!=top.ICEcoder.selectedFiles.indexOf(top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\//g,"|"))||top.ICEcoder.selectFileFolder(a);a=129;c=window.innerHeight;"undefined"!=typeof top.ICEcoder.thisFileFolderLink&&""!=top.ICEcoder.thisFileFolderLink&&(b=this.isPathFolder(top.ICEcoder.selectedFiles[0])?"folder":"file",top.get("folderMenuItems").style.display="folder"==b&&1==top.ICEcoder.selectedFiles.length?
|
||||||
"block":"none","folder"==b&&1==top.ICEcoder.selectedFiles.length&&(a+=67,"block"==top.get("fmMenuPasteOption").style.display&&(a+=19)),top.get("singleFileMenuItems").style.display=1<top.ICEcoder.selectedFiles.length?"none":"block",1==top.ICEcoder.selectedFiles.length&&(a+=43),top.get("fileMenu").style.display="inline-block",setTimeout(function(){top.get("fileMenu").style.opacity="1"},4),top.get("fileMenu").style.left=top.ICEcoder.mouseX+20+"px",b=top.ICEcoder.mouseY-top.ICEcoder.filesFrame.contentWindow.document.body.scrollTop-
|
"block":"none","folder"==b&&1==top.ICEcoder.selectedFiles.length&&(a+=67,"block"==top.get("fmMenuPasteOption").style.display&&(a+=19)),top.get("singleFileMenuItems").style.display=1<top.ICEcoder.selectedFiles.length?"none":"block",1==top.ICEcoder.selectedFiles.length&&(a+=43),top.get("fileMenu").style.display="inline-block",setTimeout(function(){top.get("fileMenu").style.opacity="1"},4),top.get("fileMenu").style.left=top.ICEcoder.mouseX+20+"px",b=top.ICEcoder.mouseY-top.ICEcoder.filesFrame.contentWindow.document.body.scrollTop-
|
||||||
10,b+a>c&&(b-=b+a-c),top.get("fileMenu").style.top=b+"px");return!1},showFileMenu:function(){top.get("fileMenu").style.display="inline-block";setTimeout(function(){top.get("fileMenu").style.opacity="1"},4)},hideFileMenu:function(){top.get("fileMenu").style.display="none";top.get("fileMenu").style.opacity="0"},updateFileManagerList:function(a,b,c,d,e,f,g){var k,h,m,p,n,l,q;if("add"==a&&!top.get("filesFrame").contentWindow.document.getElementById(b.replace(top.iceRoot,"").replace(/\/$/,"").replace(/\//g,
|
10,b+a>c&&(b-=b+a-c),top.get("fileMenu").style.top=b+"px");return!1},showFileMenu:function(){top.get("fileMenu").style.display="inline-block";setTimeout(function(){top.get("fileMenu").style.opacity="1"},4)},hideFileMenu:function(){top.get("fileMenu").style.display="none";top.get("fileMenu").style.opacity="0"},updateFileManagerList:function(a,b,c,d,e,f,g){var k,h,l,p,n,m,q;if("add"==a&&!top.get("filesFrame").contentWindow.document.getElementById(b.replace(top.iceRoot,"").replace(/\/$/,"").replace(/\//g,
|
||||||
"|")+"|"+c)){k="file"==g?"pft-file ext-"+c.substr(c.indexOf(".")+1):"pft-directory";d="file"==g?top.ICEcoder.newFilePerms:top.ICEcoder.newDirPerms;b||(b="/");b=b.replace(top.iceRoot,"/");b=b.replace("//","/");h=top.get("filesFrame").contentWindow.document.getElementById(b.replace(/\//g,"|"));m=h.parentNode.parentNode.nextSibling;p=document.createTextNode("\n");n=777==d?"background: #800; color: #eee":"color: #888";n='<a nohref title="'+b.replace(/\/$/,"")+"/"+c+'" onMouseOver="parentNode.draggable=true;top.ICEcoder.overFileFolder(\''+
|
"|")+"|"+c)){k="file"==g?"pft-file ext-"+c.substr(c.indexOf(".")+1):"pft-directory";d="file"==g?top.ICEcoder.newFilePerms:top.ICEcoder.newDirPerms;b||(b="/");b=b.replace(top.iceRoot,"/");b=b.replace("//","/");h=top.get("filesFrame").contentWindow.document.getElementById(b.replace(/\//g,"|"));l=h.parentNode.parentNode.nextSibling;p=document.createTextNode("\n");n=777==d?"background: #800; color: #eee":"color: #888";n='<a nohref title="'+b.replace(/\/$/,"")+"/"+c+'" onMouseOver="parentNode.draggable=true;top.ICEcoder.overFileFolder(\''+
|
||||||
g+"',this.childNodes[1].id)\" onMouseOut=\"parentNode.draggable=false;top.ICEcoder.overFileFolder('"+g+"','')\" "+("folder"==g?"ondragover=\"if(parentNode.nextSibling && parentNode.nextSibling.tagName != 'UL' && top.ICEcoder.thisFileFolderLink != this.childNodes[1].id) {top.ICEcoder.openCloseDir(this,true);}\"":"")+' onClick="if(!event.ctrlKey && !top.ICEcoder.cmdKey) {'+("folder"==g?"top.ICEcoder.openCloseDir(this,"+("folder"==g?"true":"false")+");":"")+' if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {top.ICEcoder.openFile()}}" style="position: relative; left:-22px"> <span id="'+
|
g+"',this.childNodes[1].id)\" onMouseOut=\"parentNode.draggable=false;top.ICEcoder.overFileFolder('"+g+"','')\" "+("folder"==g?"ondragover=\"if(parentNode.nextSibling && parentNode.nextSibling.tagName != 'UL' && top.ICEcoder.thisFileFolderLink != this.childNodes[1].id) {top.ICEcoder.openCloseDir(this,true);}\"":"")+' onClick="if(!event.ctrlKey && !top.ICEcoder.cmdKey) {'+("folder"==g?"top.ICEcoder.openCloseDir(this,"+("folder"==g?"true":"false")+");":"")+' if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {top.ICEcoder.openFile()}}" style="position: relative; left:-22px"> <span id="'+
|
||||||
b.replace(/\/$/,"").replace(/\//g,"|")+"|"+c+'">'+c+'</span> <span style="'+n+'; font-size: 8px" id="'+b.replace(/\/$/,"").replace(/\//g,"|")+"|"+c+'_perms">'+d+"</span></a>";if(!m||3>m.childNodes.length)l=document.createElement("ul"),m=h.parentNode.parentNode,m.parentNode.insertBefore(l,m.nextSibling),l=document.createElement("li"),l.className=k,l.draggable=!1,l.ondragstart=function(a){top.ICEcoder.addDefaultDragData(this,a)},l.ondrag=function(a){top.ICEcoder.draggingWithKeyTest(a);top.ICEcoder.getcMInstance()&&
|
b.replace(/\/$/,"").replace(/\//g,"|")+"|"+c+'">'+c+'</span> <span style="'+n+'; font-size: 8px" id="'+b.replace(/\/$/,"").replace(/\//g,"|")+"|"+c+'_perms">'+d+"</span></a>";if(!l||3>l.childNodes.length)m=document.createElement("ul"),l=h.parentNode.parentNode,l.parentNode.insertBefore(m,l.nextSibling),m=document.createElement("li"),m.className=k,m.draggable=!1,m.ondragstart=function(a){top.ICEcoder.addDefaultDragData(this,a)},m.ondrag=function(a){top.ICEcoder.draggingWithKeyTest(a);top.ICEcoder.getcMInstance()&&
|
||||||
(-1==top.ICEcoder.editorFocusInstance.indexOf("diff")?top.ICEcoder.getcMInstance().focus():top.ICEcoder.getcMdiffInstance().focus())},l.ondragover=function(a){top.ICEcoder.setDragCursor(a,"folder"==g?"folder":"file")},l.ondragend=function(){top.ICEcoder.dropFile(this)},l.innerHTML=n,m.nextSibling.appendChild(l),m.nextSibling.appendChild(p);else for(h=0;h<m.childNodes.length;h++)if(m.childNodes[h].className&&(l=0<m.childNodes[h].className.indexOf("directory")?"folder":"file",q=m.childNodes[h].getElementsByTagName("span")[0].innerHTML,
|
(-1==top.ICEcoder.editorFocusInstance.indexOf("diff")?top.ICEcoder.getcMInstance().focus():top.ICEcoder.getcMdiffInstance().focus())},m.ondragover=function(a){top.ICEcoder.setDragCursor(a,"folder"==g?"folder":"file")},m.ondragend=function(){top.ICEcoder.dropFile(this)},m.innerHTML=n,l.nextSibling.appendChild(m),l.nextSibling.appendChild(p);else for(h=0;h<l.childNodes.length;h++)if(l.childNodes[h].className&&(m=0<l.childNodes[h].className.indexOf("directory")?"folder":"file",q=l.childNodes[h].getElementsByTagName("span")[0].innerHTML,
|
||||||
l==g&&q>c||"folder"==g&&"file"==l||h==m.childNodes.length-1)){l=document.createElement("li");l.className=k;l.draggable=!1;l.ondragstart=function(a){top.ICEcoder.addDefaultDragData(this,a)};l.ondrag=function(a){top.ICEcoder.draggingWithKeyTest(a);top.ICEcoder.getcMInstance()&&(-1==top.ICEcoder.editorFocusInstance.indexOf("diff")?top.ICEcoder.getcMInstance().focus():top.ICEcoder.getcMdiffInstance().focus())};l.ondragover=function(a){top.ICEcoder.setDragCursor(a,"folder"==g?"folder":"file")};l.ondragend=
|
m==g&&q>c||"folder"==g&&"file"==m||h==l.childNodes.length-1)){m=document.createElement("li");m.className=k;m.draggable=!1;m.ondragstart=function(a){top.ICEcoder.addDefaultDragData(this,a)};m.ondrag=function(a){top.ICEcoder.draggingWithKeyTest(a);top.ICEcoder.getcMInstance()&&(-1==top.ICEcoder.editorFocusInstance.indexOf("diff")?top.ICEcoder.getcMInstance().focus():top.ICEcoder.getcMdiffInstance().focus())};m.ondragover=function(a){top.ICEcoder.setDragCursor(a,"folder"==g?"folder":"file")};m.ondragend=
|
||||||
function(){top.ICEcoder.dropFile(this)};l.innerHTML=n;h==m.childNodes.length-1?(m.appendChild(l),m.appendChild(p)):(m.insertBefore(l,m.childNodes[h]),m.insertBefore(p,m.childNodes[h+1]));break}"file"!=g||f||(top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1]=b+c)}"rename"==a&&(f=e.replace(/\//g,"|"),h=top.get("filesFrame").contentWindow.document.getElementById(f),h.innerHTML=c,h.id=b.replace(/\//g,"|")+"|"+c,h.parentNode.title=h.id.replace(/\|/g,"/"),targetElemPerms=top.get("filesFrame").contentWindow.document.getElementById(f+
|
function(){top.ICEcoder.dropFile(this)};m.innerHTML=n;h==l.childNodes.length-1?(l.appendChild(m),l.appendChild(p)):(l.insertBefore(m,l.childNodes[h]),l.insertBefore(p,l.childNodes[h+1]));break}"file"!=g||f||(top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1]=b+c)}"rename"==a&&(f=e.replace(/\//g,"|"),h=top.get("filesFrame").contentWindow.document.getElementById(f),h.innerHTML=c,h.id=b.replace(/\//g,"|")+"|"+c,h.parentNode.title=h.id.replace(/\|/g,"/"),targetElemPerms=top.get("filesFrame").contentWindow.document.getElementById(f+
|
||||||
"_perms"),targetElemPerms.id=b.replace(/\//g,"|")+"|"+c+"_perms",top.ICEcoder.renameInChildren(h,e,b,c));"move"==a&&(top.ICEcoder.updateFileManagerList("add",b,c,!1,!1,!1,g),top.ICEcoder.updateFileManagerList("delete",e.substr(0,e.lastIndexOf("/")),c));"chmod"==a&&(f=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,"/"),h=top.get("filesFrame").contentWindow.document.getElementById(f.replace(/\//g,"|")+"_perms"),h.style.background=777==d?"#800":"none",h.style.color=777==
|
"_perms"),targetElemPerms.id=b.replace(/\//g,"|")+"|"+c+"_perms",top.ICEcoder.renameInChildren(h,e,b,c));"move"==a&&(top.ICEcoder.updateFileManagerList("add",b,c,!1,!1,!1,g),top.ICEcoder.updateFileManagerList("delete",e.substr(0,e.lastIndexOf("/")),c));"chmod"==a&&(f=top.ICEcoder.selectedFiles[top.ICEcoder.selectedFiles.length-1].replace(/\|/g,"/"),h=top.get("filesFrame").contentWindow.document.getElementById(f.replace(/\//g,"|")+"_perms"),h.style.background=777==d?"#800":"none",h.style.color=777==
|
||||||
d?"#eee":"#888",h.innerHTML=d);"delete"==a&&(b||(b=""),b=b.replace(top.iceRoot,"/"),b=b.replace("//","/"),b=b.replace(/\/$/,"").replace(/\//g,"|"),h=(b+"|"+c).replace("||","|"),h=top.get("filesFrame").contentWindow.document.getElementById(h).parentNode.parentNode,top.ICEcoder.openCloseDir(h.childNodes[0],!1),h.parentNode.removeChild(h))},renameInChildren:function(a,b,c,d){var e,f;if(a.parentNode.parentNode.nextSibling&&"UL"==a.parentNode.parentNode.nextSibling.nodeName){a=a.parentNode.parentNode.nextSibling;
|
d?"#eee":"#888",h.innerHTML=d);"delete"==a&&(b||(b=""),b=b.replace(top.iceRoot,"/"),b=b.replace("//","/"),b=b.replace(/\/$/,"").replace(/\//g,"|"),h=(b+"|"+c).replace("||","|"),h=top.get("filesFrame").contentWindow.document.getElementById(h).parentNode.parentNode,top.ICEcoder.openCloseDir(h.childNodes[0],!1),h.parentNode.removeChild(h))},renameInChildren:function(a,b,c,d){var e,f;if(a.parentNode.parentNode.nextSibling&&"UL"==a.parentNode.parentNode.nextSibling.nodeName){a=a.parentNode.parentNode.nextSibling;
|
||||||
for(var g=0;g<a.childNodes.length;g++)"LI"==a.childNodes[g].nodeName&&(e=a.childNodes[g].childNodes[0].childNodes[1],e.id=e.id.replace(b.replace(/\//g,"|"),c.replace(/\//g,"|")+"|"+d),e.parentNode.title=e.id.replace(/\|/g,"/"),f=top.get("filesFrame").contentWindow.document.getElementById(e.id).nextSibling.nextSibling,f.id=e.id+"_perms",top.ICEcoder.renameInChildren(e,b,c,d))}},refreshFileManager:function(){top.ICEcoder.showHide("show",top.get("loadingMask"));top.ICEcoder.filesFrame.contentWindow.location.reload(!0);
|
for(var g=0;g<a.childNodes.length;g++)"LI"==a.childNodes[g].nodeName&&(e=a.childNodes[g].childNodes[0].childNodes[1],e.id=e.id.replace(b.replace(/\//g,"|"),c.replace(/\//g,"|")+"|"+d),e.parentNode.title=e.id.replace(/\|/g,"/"),f=top.get("filesFrame").contentWindow.document.getElementById(e.id).nextSibling.nextSibling,f.id=e.id+"_perms",top.ICEcoder.renameInChildren(e,b,c,d))}},refreshFileManager:function(){top.ICEcoder.showHide("show",top.get("loadingMask"));top.ICEcoder.filesFrame.contentWindow.location.reload(!0);
|
||||||
@@ -102,40 +106,44 @@ top.ICEcoder.area=b;"top"!=b&&(top.ICEcoder.mouseY+=70);"editor"==b&&(top.ICEcod
|
|||||||
a}},serverMessage:function(a){var b;b=top.get("serverMessage");a?(b.innerHTML=top.ICEcoder.xssClean(a).replace(/\<b\>/g,"<b>").replace(/\<\/b\>/g,"</b>").replace(/\<br\>/g,"<br>"),b.style.left="0"):setTimeout(function(){b.style.left="2000px"},200);b.style.opacity=a?1:0},cssColorPreview:function(){var a,b,c,d;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();if(a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a){b=a.getLine(a.getCursor().line);for(c=/(#[\da-f]{3}(?:[\da-f]{3})?\b|\b(?:rgb|hsl)a?\([\s\d%,.-]+\)|\b[a-z]+\b)/gi;(d=
|
a}},serverMessage:function(a){var b;b=top.get("serverMessage");a?(b.innerHTML=top.ICEcoder.xssClean(a).replace(/\<b\>/g,"<b>").replace(/\<\/b\>/g,"</b>").replace(/\<br\>/g,"<br>"),b.style.left="0"):setTimeout(function(){b.style.left="2000px"},200);b.style.opacity=a?1:0},cssColorPreview:function(){var a,b,c,d;a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();if(a=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a){b=a.getLine(a.getCursor().line);for(c=/(#[\da-f]{3}(?:[\da-f]{3})?\b|\b(?:rgb|hsl)a?\([\s\d%,.-]+\)|\b[a-z]+\b)/gi;(d=
|
||||||
c.exec(b))&&a.getCursor().ch>d.index+d[0].length;);(b=top.get("content").contentWindow.document.getElementById("cssColor"))&&b.parentNode.removeChild(b);top.ICEcoder.codeAssist&&"CSS"==top.ICEcoder.caretLocType&&(b=top.document.createElement("div"),b.id="cssColor",b.style.position="absolute",b.style.display="block",b.style.width=b.style.height="20px",b.style.zIndex="1000",b.style.background=d?d[0]:"",b.style.cursor="pointer",b.onclick=function(){top.ICEcoder.showColorPicker(d[0])},""==b.style.backgroundColor&&
|
c.exec(b))&&a.getCursor().ch>d.index+d[0].length;);(b=top.get("content").contentWindow.document.getElementById("cssColor"))&&b.parentNode.removeChild(b);top.ICEcoder.codeAssist&&"CSS"==top.ICEcoder.caretLocType&&(b=top.document.createElement("div"),b.id="cssColor",b.style.position="absolute",b.style.display="block",b.style.width=b.style.height="20px",b.style.zIndex="1000",b.style.background=d?d[0]:"",b.style.cursor="pointer",b.onclick=function(){top.ICEcoder.showColorPicker(d[0])},""==b.style.backgroundColor&&
|
||||||
(b.style.display="none"),top.get("header").appendChild(b),a.addWidget(a.getCursor(),top.get("cssColor"),!0))}},showColorPicker:function(a){top.get("blackMask").style.visibility="visible";top.get("mediaContainer").innerHTML='<div id="picker" class="picker"></div><br><br><input type="text" id="color" name="color" value="#000" class="colorValue"><input type="button" onClick="top.ICEcoder.insertColorValue(top.get(\'color\').value)" value="insert >" class="insertColorValue"><br><input type="text" id="colorRGB" name="colorRGB" value="rgb(0,0,0)" class="colorValue"><input type="button" onClick="top.ICEcoder.insertColorValue(top.get(\'colorRGB\').value)" value="insert >" class="insertColorValue">';
|
(b.style.display="none"),top.get("header").appendChild(b),a.addWidget(a.getCursor(),top.get("cssColor"),!0))}},showColorPicker:function(a){top.get("blackMask").style.visibility="visible";top.get("mediaContainer").innerHTML='<div id="picker" class="picker"></div><br><br><input type="text" id="color" name="color" value="#000" class="colorValue"><input type="button" onClick="top.ICEcoder.insertColorValue(top.get(\'color\').value)" value="insert >" class="insertColorValue"><br><input type="text" id="colorRGB" name="colorRGB" value="rgb(0,0,0)" class="colorValue"><input type="button" onClick="top.ICEcoder.insertColorValue(top.get(\'colorRGB\').value)" value="insert >" class="insertColorValue">';
|
||||||
farbtastic("picker","color");a&&top.get("picker").farbtastic.setColor(a)},initCanvasImage:function(a){var b,c;b=top.get("canvasPicker").getContext("2d");c=new Image;c.crossOrigin="Anonymous";c.src=a.src;c.onload=function(){top.get("canvasPicker").width=a.width;top.get("canvasPicker").height=a.height;b.drawImage(c,0,0,a.width,a.height)};top.document.getElementById("floatingContainer").style.backgroundSize=5*a.naturalWidth+"px "+5*a.naturalHeight+"px"},interactCanvasImage:function(a){var b,c,d,e,f,
|
farbtastic("picker","color");a&&top.get("picker").farbtastic.setColor(a)},initCanvasImage:function(a){var b,c;b=top.get("canvasPicker").getContext("2d");c=new Image;c.crossOrigin="Anonymous";c.src=a.src;c.onerror=function(){get("floatingContainer").style.visibility="hidden";get("canvasPickerColorInfo").style.display="none";get("canvasPickerCORSInfo").style.display="block"};c.onload=function(){top.get("canvasPicker").width=a.width;top.get("canvasPicker").height=a.height;b.drawImage(c,0,0,a.width,a.height);
|
||||||
g,k,h,m,p,n,l,q;b=top.get("canvasPicker").getContext("2d");top.get("canvasPicker").onmousemove=function(u){c=u.pageX-this.offsetLeft;d=u.pageY-this.offsetTop;e=b.getImageData(c,d,1,1).data;f=e[0];g=e[1];k=e[2];h=f+","+g+","+k;m=top.ICEcoder.rgbToHex(f,g,k);top.get("rgbMouseXY").value=h;top.get("hexMouseXY").value="#"+m;top.get("hexMouseXY").style.backgroundColor=top.get("rgbMouseXY").style.backgroundColor="#"+m;p=128>f||128>g||128>k&&200>f&&200>g&&50<k?"#fff":"#000";top.get("hexMouseXY").style.color=
|
get("canvasPickerColorInfo").style.display="block";get("canvasPickerCORSInfo").style.display="none";top.get("canvasPicker").onmouseover=function(a){get("floatingContainer").style.visibility="visible"};top.get("canvasPicker").onmouseout=function(a){get("floatingContainer").style.visibility="hidden"}};top.document.getElementById("floatingContainer").style.backgroundSize=5*a.naturalWidth+"px "+5*a.naturalHeight+"px"},interactCanvasImage:function(a){var b,c,d,e,f,g,k,h,l,p,n,m,q;b=top.get("canvasPicker").getContext("2d");
|
||||||
top.get("rgbMouseXY").style.color=p;n=get("floatingContainer");n.style.left=top.ICEcoder.mouseX+20+"px";n.style.top=top.ICEcoder.mouseY+"px";l=-(a.naturalWidth/a.width*c*5)+25;q=-(a.naturalHeight/a.height*d*5)+25;n.style.backgroundPosition=l+"px "+q+"px"};top.get("canvasPicker").onmouseover=function(a){get("floatingContainer").style.visibility="visible"};top.get("canvasPicker").onmouseout=function(a){get("floatingContainer").style.visibility="hidden"};top.get("canvasPicker").onclick=function(){top.get("rgb").value=
|
top.get("canvasPicker").onmousemove=function(r){c=r.pageX-this.offsetLeft;d=r.pageY-this.offsetTop;e=b.getImageData(c,d,1,1).data;f=e[0];g=e[1];k=e[2];h=f+","+g+","+k;l=top.ICEcoder.rgbToHex(f,g,k);top.get("rgbMouseXY").value=h;top.get("hexMouseXY").value="#"+l;top.get("hexMouseXY").style.backgroundColor=top.get("rgbMouseXY").style.backgroundColor="#"+l;p=128>f||128>g||128>k&&200>f&&200>g&&50<k?"#fff":"#000";top.get("hexMouseXY").style.color=top.get("rgbMouseXY").style.color=p;n=get("floatingContainer");
|
||||||
top.get("rgbMouseXY").value;top.get("hex").value=top.get("hexMouseXY").value;top.get("hex").style.backgroundColor=top.get("rgb").style.backgroundColor=top.get("hex").value;top.get("hex").style.color=top.get("rgb").style.color=p}},rgbToHex:function(a,b,c){return top.ICEcoder.toHex(a)+top.ICEcoder.toHex(b)+top.ICEcoder.toHex(c)},toHex:function(a){a=parseInt(a,10);if(isNaN(a))return"00";a=Math.max(0,Math.min(a,255));return"0123456789abcdef".charAt((a-a%16)/16)+"0123456789abcdef".charAt(a%16)},insertColorValue:function(a){var b,
|
n.style.left=top.ICEcoder.mouseX+20+"px";n.style.top=top.ICEcoder.mouseY+"px";m=-(a.naturalWidth/a.width*c*5)+25;q=-(a.naturalHeight/a.height*d*5)+25;n.style.backgroundPosition=m+"px "+q+"px"};top.get("canvasPicker").onclick=function(){top.get("rgb").value=top.get("rgbMouseXY").value;top.get("hex").value=top.get("hexMouseXY").value;top.get("hex").style.backgroundColor=top.get("rgb").style.backgroundColor=top.get("hex").value;top.get("hex").style.color=top.get("rgb").style.color=p}},rgbToHex:function(a,
|
||||||
c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;c=b.getTokenAt(b.getCursor());b.replaceRange(a,{line:b.getCursor().line,ch:c.start},{line:b.getCursor().line,ch:1E6})},fMIconVis:function(a,b){var c;if(c=top.get(a))c.style.opacity=b},isOpen:function(a){a=a.replace(/\|/g,"/").replace(top.docRoot+top.iceRoot,"");a=top.ICEcoder.openFiles.indexOf(a);return-1!=a?a:!1},startPluginIntervals:function(a,b,c,d){-1<b.indexOf("?")&&(b=b+"&csrf="+
|
b,c){return top.ICEcoder.toHex(a)+top.ICEcoder.toHex(b)+top.ICEcoder.toHex(c)},toHex:function(a){a=parseInt(a,10);if(isNaN(a))return"00";a=Math.max(0,Math.min(a,255));return"0123456789abcdef".charAt((a-a%16)/16)+"0123456789abcdef".charAt(a%16)},insertColorValue:function(a){var b,c;b=ICEcoder.getcMInstance();c=ICEcoder.getcMdiffInstance();b=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?c:b;c=b.getTokenAt(b.getCursor());b.replaceRange(a,{line:b.getCursor().line,ch:c.start},{line:b.getCursor().line,
|
||||||
top.ICEcoder.csrf);top.ICEcoder["plugTimer"+a]=-1<["_parent","_top","_self",""].indexOf(c)?top.ICEcoder["plugTimer"+a]=setInterval("window.location='"+b+"'",6E4*d):0==c.indexOf("fileControl")?top.ICEcoder["plugTimer"+a]=setInterval(function(){top.ICEcoder.serverQueue("add",b);top.ICEcoder.serverMessage(c.split(":")[1])},6E4*d):top.ICEcoder["plugTimer"+a]=setInterval("window.open('"+b+"','"+c+"')",6E4*d);top.ICEcoder.pluginIntervalRefs.push(a)},codeAssistToggle:function(){var a,b;top.ICEcoder.codeAssist=
|
ch:1E6})},fMIconVis:function(a,b){var c;if(c=top.get(a))c.style.opacity=b},isOpen:function(a){a=a.replace(/\|/g,"/").replace(top.docRoot+top.iceRoot,"");a=top.ICEcoder.openFiles.indexOf(a);return-1!=a?a:!1},startPluginIntervals:function(a,b,c,d){-1<b.indexOf("?")&&(b=b+"&csrf="+top.ICEcoder.csrf);top.ICEcoder["plugTimer"+a]=-1<["_parent","_top","_self",""].indexOf(c)?top.ICEcoder["plugTimer"+a]=setInterval("window.location='"+b+"'",6E4*d):0==c.indexOf("fileControl")?top.ICEcoder["plugTimer"+a]=setInterval(function(){top.ICEcoder.serverQueue("add",
|
||||||
!top.ICEcoder.codeAssist;top.get("codeAssistDisplay").style.backgroundPosition=top.ICEcoder.codeAssist?"0 0":"-16px 0";top.ICEcoder.cssColorPreview();top.ICEcoder.focus(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?"diff":!1);for(i=0;i<top.ICEcoder.cMInstances.length;i++)if(a=top.ICEcoder.openFiles[i],a=a.split("."),a=a[a.length-1],"js"==a||"json"==a)a=top.ICEcoder.content.contentWindow["cM"+top.ICEcoder.cMInstances[i]],b=top.ICEcoder.content.contentWindow["cM"+top.ICEcoder.cMInstances[i]+"diff"],
|
b);top.ICEcoder.serverMessage(c.split(":")[1])},6E4*d):top.ICEcoder["plugTimer"+a]=setInterval("window.open('"+b+"','"+c+"')",6E4*d);top.ICEcoder.pluginIntervalRefs.push(a)},codeAssistToggle:function(){var a,b;top.ICEcoder.codeAssist=!top.ICEcoder.codeAssist;top.get("codeAssistDisplay").style.backgroundPosition=top.ICEcoder.codeAssist?"0 0":"-16px 0";top.ICEcoder.cssColorPreview();top.ICEcoder.focus(-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?"diff":!1);for(i=0;i<top.ICEcoder.cMInstances.length;i++)if(a=
|
||||||
top.ICEcoder.codeAssist?(a.setOption("lint",!0),b.setOption("lint",!0)):(a.clearGutter("CodeMirror-lint-markers"),a.setOption("lint",!1),b.clearGutter("CodeMirror-lint-markers"),b.setOption("lint",!1))},serverQueue:function(a,b,c,d){var e,f,g,k,h;if(-1!==ICEcoder.serverQueueItems.indexOf(b))top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0);else{e=ICEcoder.getcMInstance();for(g=f=0;g<ICEcoder.serverQueueItems.length;g++)0<ICEcoder.serverQueueItems[g].indexOf("action=save")&&f++;f++;if("add"==
|
top.ICEcoder.openFiles[i],a=a.split("."),a=a[a.length-1],"js"==a||"json"==a)a=top.ICEcoder.content.contentWindow["cM"+top.ICEcoder.cMInstances[i]],b=top.ICEcoder.content.contentWindow["cM"+top.ICEcoder.cMInstances[i]+"diff"],top.ICEcoder.codeAssist?(a.setOption("lint",!0),b.setOption("lint",!0)):(a.clearGutter("CodeMirror-lint-markers"),a.setOption("lint",!1),b.clearGutter("CodeMirror-lint-markers"),b.setOption("lint",!1))},serverQueue:function(a,b,c,d){var e,f,g,k,h;if(-1!==ICEcoder.serverQueueItems.indexOf(b))top.ICEcoder.serverMessage(),
|
||||||
a)ICEcoder.serverQueueItems.push(b),0<b.indexOf("action=save")&&(g=document.createElement("textarea"),g.setAttribute("id","saveTemp"+f),document.body.appendChild(g),0<b.indexOf("saveType=saveAs")||0<b.indexOf("fileVersion=undefined")?top.get("saveTemp"+f).value=e.getValue():top.get("saveTemp"+f).value=d);else if("del"==a){if(ICEcoder.serverQueueItems[0]&&0<ICEcoder.serverQueueItems[0].indexOf("action=save")){d=f-1;for(g=1;g<d;g++)top.get("saveTemp"+g).value=top.get("saveTemp"+(g+1)).value;d=top.get("saveTemp"+
|
top.ICEcoder.serverQueue("del",0);else{e=ICEcoder.getcMInstance();for(g=f=0;g<ICEcoder.serverQueueItems.length;g++)0<ICEcoder.serverQueueItems[g].indexOf("action=save")&&f++;f++;if("add"==a)ICEcoder.serverQueueItems.push(b),0<b.indexOf("action=save")&&(g=document.createElement("textarea"),g.setAttribute("id","saveTemp"+f),document.body.appendChild(g),0<b.indexOf("saveType=saveAs")||0<b.indexOf("fileVersion=undefined")?top.get("saveTemp"+f).value=e.getValue():top.get("saveTemp"+f).value=d);else if("del"==
|
||||||
d);d.parentNode.removeChild(d)}ICEcoder.serverQueueItems.splice(0,1)}if("del"==a&&1<=ICEcoder.serverQueueItems.length||1==ICEcoder.serverQueueItems.length)b&&-1==b.indexOf("saveFiles=")&&-1==b.indexOf("action=load")?(k=top.ICEcoder.xhrObj(),k.onreadystatechange=function(){4==k.readyState&&(200==k.status?(h=JSON.parse(k.responseText),h.action.timeEnd=(new Date).getTime(),h.action.timeTaken=h.action.timeEnd-h.action.timeStart,0<=["raw","both"].indexOf(top.ICEcoder.fileDirResOutput)&&console.log(k.responseText),
|
a){if(ICEcoder.serverQueueItems[0]&&0<ICEcoder.serverQueueItems[0].indexOf("action=save")){d=f-1;for(g=1;g<d;g++)top.get("saveTemp"+g).value=top.get("saveTemp"+(g+1)).value;d=top.get("saveTemp"+d);d.parentNode.removeChild(d)}ICEcoder.serverQueueItems.splice(0,1)}if("del"==a&&1<=ICEcoder.serverQueueItems.length||1==ICEcoder.serverQueueItems.length)b&&-1==b.indexOf("saveFiles=")&&-1==b.indexOf("action=load")?(k=top.ICEcoder.xhrObj(),k.onreadystatechange=function(){4==k.readyState&&(200==k.status?(h=
|
||||||
0<=["object","both"].indexOf(top.ICEcoder.fileDirResOutput)&&console.log(h),h.status.error?(top.ICEcoder.message(h.status.errorMsg),console.log("ICEcoder error info for your request..."),console.log(h),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)):eval(h.action.doNext)):(top.ICEcoder.message(top.t["Sorry there was..."]),console.log("ICEcoder error info for your request..."),console.log(h),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)))},k.open("POST",ICEcoder.serverQueueItems[0],
|
JSON.parse(k.responseText),h.action.timeEnd=(new Date).getTime(),h.action.timeTaken=h.action.timeEnd-h.action.timeStart,0<=["raw","both"].indexOf(top.ICEcoder.fileDirResOutput)&&console.log(k.responseText),0<=["object","both"].indexOf(top.ICEcoder.fileDirResOutput)&&console.log(h),h.status.error?(top.ICEcoder.message(h.status.errorMsg),console.log("ICEcoder error info for your request..."),console.log(h),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)):eval(h.action.doNext)):(top.ICEcoder.message(top.t["Sorry there was..."]),
|
||||||
!0),k.setRequestHeader("Content-type","application/x-www-form-urlencoded"),a=(new Date).getTime(),0<b.indexOf("action=saveAs")?k.send("timeStart="+a+"&file="+c+"&contents="+encodeURIComponent(top.document.getElementById("saveTemp1").value)):0<b.indexOf("action=save")?k.send("timeStart="+a+"&file="+c+"&changes="+encodeURIComponent(top.document.getElementById("saveTemp1").value)):k.send("timeStart="+a+"&file="+c)):setTimeout(function(){"undefined"!=typeof ICEcoder.serverQueueItems[0]&&(top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href=
|
console.log("ICEcoder error info for your request..."),console.log(h),top.ICEcoder.serverMessage(),top.ICEcoder.serverQueue("del",0)))},k.open("POST",ICEcoder.serverQueueItems[0],!0),k.setRequestHeader("Content-type","application/x-www-form-urlencoded"),a=(new Date).getTime(),0<b.indexOf("action=saveAs")?k.send("timeStart="+a+"&file="+c+"&contents="+encodeURIComponent(top.document.getElementById("saveTemp1").value)):0<b.indexOf("action=save")?k.send("timeStart="+a+"&file="+c+"&changes="+encodeURIComponent(top.document.getElementById("saveTemp1").value)):
|
||||||
ICEcoder.serverQueueItems[0])},1)}},cancelAllActions:function(){window.stop();0<ICEcoder.serverQueueItems.length&&ICEcoder.serverQueueItems.splice(1,ICEcoder.serverQueueItems.length);top.ICEcoder.showHide("hide",top.get("loadingMask"));top.ICEcoder.serverMessage('<b style="color: #d00">'+top.t["Cancelled tasks"]+"</b>");setTimeout(function(){top.ICEcoder.serverMessage()},2E3)},setPreviousFiles:function(){var a;a=top.ICEcoder.openFiles.join(",").replace(/\//g,"|").replace(/(\|\[NEW\])|(,\|\[NEW\])/g,
|
k.send("timeStart="+a+"&file="+c)):setTimeout(function(){"undefined"!=typeof ICEcoder.serverQueueItems[0]&&(top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href=ICEcoder.serverQueueItems[0])},1)}},cancelAllActions:function(){window.stop();0<ICEcoder.serverQueueItems.length&&ICEcoder.serverQueueItems.splice(1,ICEcoder.serverQueueItems.length);top.ICEcoder.showHide("hide",top.get("loadingMask"));top.ICEcoder.serverMessage('<b style="color: #d00">'+top.t["Cancelled tasks"]+"</b>");
|
||||||
"").replace(/(^,)|(,$)/g,"");""==a&&(a="CLEAR");top.ICEcoder.serverQueue("add","lib/settings.php?saveFiles="+a+"&csrf="+top.ICEcoder.csrf);top.ICEcoder.updateLast10List(a)},updateLast10List:function(a){var b,c,d;a=a.split(",");for(var e=0;e<a.length;e++)"CLEAR"!=a[e]&&(b='<li class="pft-file ext-'+a[e].substring(a[e].lastIndexOf(".")+1)+'" style="margin-left: -21px"><a style="cursor:pointer" onclick="top.ICEcoder.openFile(\''+a[e].replace(/\|/g,"/")+"')\">"+a[e].replace(/\|/g,"/")+"</a></li>\n",c=
|
setTimeout(function(){top.ICEcoder.serverMessage()},2E3)},setPreviousFiles:function(){var a;a=top.ICEcoder.openFiles.join(",").replace(/\//g,"|").replace(/(\|\[NEW\])|(,\|\[NEW\])/g,"").replace(/(^,)|(,$)/g,"");""==a&&(a="CLEAR");top.ICEcoder.serverQueue("add","lib/settings.php?saveFiles="+a+"&csrf="+top.ICEcoder.csrf);top.ICEcoder.updateLast10List(a)},updateLast10List:function(a){var b,c,d;a=a.split(",");for(var e=0;e<a.length;e++)"CLEAR"!=a[e]&&(b='<li class="pft-file ext-'+a[e].substring(a[e].lastIndexOf(".")+
|
||||||
top.ICEcoder.content.contentWindow.document.getElementById("last10Files"),-1==c.innerHTML.indexOf(b)&&(d=c.innerHTML.split("\n"),(10<=d.length||'<div style="display: inline-block; margin-left: -39px; margin-top: -4px">[none]</div><br><br>'==d[0]||""==d[d.length-1])&&d.pop(),c.innerHTML=b+d.join("\n")))},autoOpenFiles:function(){if(0<top.ICEcoder.previousFiles.length&&top.ICEcoder.ask(top.t["Open previous files"]+"\n\n"+top.ICEcoder.previousFiles.length+" files:\n"+top.ICEcoder.previousFiles.join("\n").replace(/\|/g,
|
1)+'" style="margin-left: -21px"><a style="cursor:pointer" onclick="top.ICEcoder.openFile(\''+a[e].replace(/\|/g,"/")+"')\">"+a[e].replace(/\|/g,"/")+"</a></li>\n",c=top.ICEcoder.content.contentWindow.document.getElementById("last10Files"),-1==c.innerHTML.indexOf(b)&&(d=c.innerHTML.split("\n"),(10<=d.length||'<div style="display: inline-block; margin-left: -39px; margin-top: -4px">[none]</div><br><br>'==d[0]||""==d[d.length-1])&&d.pop(),c.innerHTML=b+d.join("\n")))},autoOpenFiles:function(){if(0<
|
||||||
"/").replace(new RegExp(top.docRoot+top.iceRoot,"gi"),"")))for(var a=0;a<top.ICEcoder.previousFiles.length;a++)top.ICEcoder.thisFileFolderLink=top.ICEcoder.previousFiles[a].replace("|","/"),top.ICEcoder.thisFileFolderType="file",top.ICEcoder.openFile()},settingsScreen:function(a){a||(top.get("mediaContainer").innerHTML='<iframe src="lib/settings-screen.php" class="whiteGlow" style="width: 970px; height: 610px"></iframe>');top.ICEcoder.showHide(a?"hide":"show",top.get("blackMask"))},helpScreen:function(){top.get("mediaContainer").innerHTML=
|
top.ICEcoder.previousFiles.length&&top.ICEcoder.ask(top.t["Open previous files"]+"\n\n"+top.ICEcoder.previousFiles.length+" files:\n"+top.ICEcoder.previousFiles.join("\n").replace(/\|/g,"/").replace(new RegExp(top.docRoot+top.iceRoot,"gi"),"")))for(var a=0;a<top.ICEcoder.previousFiles.length;a++)top.ICEcoder.thisFileFolderLink=top.ICEcoder.previousFiles[a].replace("|","/"),top.ICEcoder.thisFileFolderType="file",top.ICEcoder.openFile()},settingsScreen:function(a){a||(top.get("mediaContainer").innerHTML=
|
||||||
'<iframe src="lib/help.php" class="whiteGlow" style="width: 840px; height: 465px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},versionsScreen:function(a,b){top.get("mediaContainer").innerHTML='<iframe src="lib/backup-versions.php?file='+a+"&csrf="+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 970px; height: 640px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},showManual:function(a,b){var c;c=b?"#"+b:"";top.get("mediaContainer").innerHTML='<iframe src="https://icecoder.net/manual?version='+
|
'<iframe src="lib/settings-screen.php" class="whiteGlow" style="width: 970px; height: 610px"></iframe>');top.ICEcoder.showHide(a?"hide":"show",top.get("blackMask"))},helpScreen:function(){top.get("mediaContainer").innerHTML='<iframe src="lib/help.php" class="whiteGlow" style="width: 840px; height: 465px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},versionsScreen:function(a,b){top.get("mediaContainer").innerHTML='<iframe src="lib/backup-versions.php?file='+a+"&csrf="+top.ICEcoder.csrf+
|
||||||
a+c+'" class="whiteGlow" style="width: 800px; height: 470px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},propertiesScreen:function(a){top.get("mediaContainer").innerHTML='<iframe src="lib/properties.php?fileName='+a.replace(/\//g,"|")+"&csrf="+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 660px; height: 330px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},autoLogoutWarningScreen:function(){top.get("mediaContainer").innerHTML='<iframe src="lib/auto-logout-warning.php" class="whiteGlow" style="width: 400px; height: 160px"></iframe>';
|
'" class="whiteGlow" style="width: 970px; height: 640px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},showManual:function(a,b){var c;c=b?"#"+b:"";top.get("mediaContainer").innerHTML='<iframe src="https://icecoder.net/manual?version='+a+c+'" class="whiteGlow" style="width: 800px; height: 470px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},propertiesScreen:function(a){top.get("mediaContainer").innerHTML='<iframe src="lib/properties.php?fileName='+a.replace(/\//g,
|
||||||
top.ICEcoder.showHide("show",top.get("blackMask"))},pluginsManager:function(){top.get("mediaContainer").innerHTML='<iframe src="lib/plugins-manager.php" class="whiteGlow" style="width: 800px; height: 450px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},githubAction:function(a){top.get("mediaContainer").innerHTML='<iframe src="lib/github.php?action='+a+"&selectedFiles="+top.ICEcoder.selectedFiles.join(";")+"&csrf="+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 340px; height: 340px"></iframe>';
|
"|")+"&csrf="+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 660px; height: 330px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},autoLogoutWarningScreen:function(){top.get("mediaContainer").innerHTML='<iframe src="lib/auto-logout-warning.php" id="autoLogoutIFrame" class="whiteGlow" style="width: 400px; height: 160px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},pluginsManager:function(){top.get("mediaContainer").innerHTML='<iframe src="lib/plugins-manager.php" class="whiteGlow" style="width: 800px; height: 450px"></iframe>';
|
||||||
top.ICEcoder.showHide("show",top.get("blackMask"))},githubTokenAsk:function(a){if(githubAuthToken=top.ICEcoder.getInput(top.t["Please enter your..."],""))top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="lib/github.php?action=auth&token="+githubAuthToken+"&goNext="+a+"&csrf="+top.ICEcoder.csrf,githubAuthToken=""},showHideGithubNav:function(a){top.get("githubNav").style.display="show"==a?"block":"none";top.get("fileNav").style.display="show"==a?"none":"block"},githubManager:function(){top.ICEcoder.githubAuthTokenSet?
|
top.ICEcoder.showHide("show",top.get("blackMask"))},goLocalhostRoot:function(){top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="lib/go-localhost-root.php"},githubAction:function(a){top.get("mediaContainer").innerHTML='<iframe src="lib/github.php?action='+a+"&selectedFiles="+top.ICEcoder.selectedFiles.join(";")+"&csrf="+top.ICEcoder.csrf+'" class="whiteGlow" style="width: 340px; height: 340px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},githubTokenAsk:function(a){if(githubAuthToken=
|
||||||
(top.get("mediaContainer").innerHTML='<iframe src="lib/github-manager.php" class="whiteGlow" style="width: 660px; height: 450px"></iframe>',top.ICEcoder.showHide("show",top.get("blackMask"))):top.ICEcoder.githubTokenAsk("showManager")},githubDiffToggle:function(){var a;if(!top.ICEcoder.githubAuthTokenSet)top.ICEcoder.githubTokenAsk("loadFiles");else if(top.ICEcoder.githubDiff||top.ICEcoder.ask(top.t["This will compare..."]))top.ICEcoder.githubDiff=!top.ICEcoder.githubDiff,a=top.ICEcoder.githubDiff?
|
top.ICEcoder.getInput(top.t["Please enter your..."],""))top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="lib/github.php?action=auth&token="+githubAuthToken+"&goNext="+a+"&csrf="+top.ICEcoder.csrf,githubAuthToken=""},showHideGithubNav:function(a){top.get("githubNav").style.display="show"==a?"block":"none";top.get("fileNav").style.display="show"==a?"none":"block"},githubManager:function(){top.ICEcoder.githubAuthTokenSet?(top.get("mediaContainer").innerHTML='<iframe src="lib/github-manager.php" class="whiteGlow" style="width: 660px; height: 450px"></iframe>',
|
||||||
"true":"false",top.ICEcoder.filesFrame.src="files.php?githubDiff="+a+"&csrf="+top.ICEcoder.csrf},useNewSettings:function(a,b,c,d,e,f,g,k,h,m,p,n,l,q,u,v,w,x,y){var r,t=a.slice(0,a.lastIndexOf("?")),t=t.slice(t.lastIndexOf("/")+1,t.lastIndexOf("."));top.ICEcoder.theme!==t&&(top.ICEcoder.theme=t,"editor"==top.ICEcoder.theme&&(top.ICEcoder.theme="icecoder"),r=document.createElement("link"),r.setAttribute("rel","stylesheet"),r.setAttribute("type","text/css"),r.setAttribute("href",a),top.ICEcoder.content.contentWindow.document.getElementsByTagName("head")[0].appendChild(r),
|
top.ICEcoder.showHide("show",top.get("blackMask"))):top.ICEcoder.githubTokenAsk("showManager")},githubDiffToggle:function(){var a;if(!top.ICEcoder.githubAuthTokenSet)top.ICEcoder.githubTokenAsk("loadFiles");else if(top.ICEcoder.githubDiff||top.ICEcoder.ask(top.t["This will compare..."]))top.ICEcoder.githubDiff=!top.ICEcoder.githubDiff,a=top.ICEcoder.githubDiff?"true":"false",top.ICEcoder.filesFrame.src="files.php?githubDiff="+a+"&csrf="+top.ICEcoder.csrf},ftpManager:function(){top.get("mediaContainer").innerHTML=
|
||||||
r=-1<"3024-day base16-light eclipse elegant mdn-like neat neo paraiso-light solarized the-matrix xq-light".split(" ").indexOf(top.ICEcoder.theme)?"#ccc":-1<"3024-night blackboard colorforth liquibyte night tomorrow-night-bright tomorrow-night-eighties vibrant-ink".split(" ").indexOf(top.ICEcoder.theme)?"#888":"#000",top.ICEcoder.switchTab(top.ICEcoder.selectedTab));b!=top.ICEcoder.codeAssist&&(top.get("codeAssist").checked=b,top.ICEcoder.codeAssistToggle());c!=top.ICEcoder.lockedNav&&(top.ICEcoder.lockUnlockNav(),
|
'<iframe src="lib/ftp-manager.php" class="whiteGlow" style="width: 660px; height: 550px"></iframe>';top.ICEcoder.showHide("show",top.get("blackMask"))},useNewSettings:function(a,b,c,d,e,f,g,k,h,l,p,n,m,q,r,w,v,x,y,z,A,B,C,D){var t,u=a.slice(0,a.lastIndexOf("?")),u=u.slice(u.lastIndexOf("/")+1,u.lastIndexOf("."));top.ICEcoder.theme!==u&&(top.ICEcoder.theme=u,"editor"==top.ICEcoder.theme&&(top.ICEcoder.theme="icecoder"),t=document.createElement("link"),t.setAttribute("rel","stylesheet"),t.setAttribute("type",
|
||||||
ICEcoder.changeFilesW(c?"expand":"contract"),top.ICEcoder.hideFileMenu());a=top.document.styleSheets[0];b=a.rules?"rules":"cssRules";a[b][0].style.fontSize=g;a=ICEcoder.filesFrame.contentWindow.document.styleSheets[3];b=a.rules?"rules":"cssRules";a[b][0].style.fontSize=g;a=ICEcoder.content.contentWindow.document.styleSheets[4];b=a.rules?"rules":"cssRules";a[b][0].style.fontSize=g;a[b][4].style["border-left-width"]=f?"1px":"0";a[b][4].style["margin-left"]=f?"-1px":"0";a[b][2].style.cssText="background-color: "+
|
"text/css"),t.setAttribute("href",a),top.ICEcoder.content.contentWindow.document.getElementsByTagName("head")[0].appendChild(t),t=-1<"3024-day base16-light eclipse elegant mdn-like neat neo paraiso-light solarized the-matrix xq-light".split(" ").indexOf(top.ICEcoder.theme)?"#ccc":-1<"3024-night blackboard colorforth liquibyte night tomorrow-night-bright tomorrow-night-eighties vibrant-ink".split(" ").indexOf(top.ICEcoder.theme)?"#888":"#000",top.ICEcoder.switchTab(top.ICEcoder.selectedTab));b!=top.ICEcoder.codeAssist&&
|
||||||
r+" !important";top.ICEcoder.lineWrapping=k;top.ICEcoder.indentWithTabs=h;top.ICEcoder.indentSize=p;top.ICEcoder.indentAuto=m;for(f=0;f<ICEcoder.cMInstances.length;f++)ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("lineWrapping",top.ICEcoder.lineWrapping),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("indentWithTabs",top.ICEcoder.indentWithTabs),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("indentUnit",top.ICEcoder.indentSize),
|
(top.get("codeAssist").checked=b,top.ICEcoder.codeAssistToggle());c!=top.ICEcoder.lockedNav&&(top.ICEcoder.lockUnlockNav(),ICEcoder.changeFilesW(c?"expand":"contract"),top.ICEcoder.hideFileMenu());a=top.document.styleSheets[0];b=a.rules?"rules":"cssRules";a[b][0].style.fontSize=g;a=ICEcoder.filesFrame.contentWindow.document.styleSheets[3];b=a.rules?"rules":"cssRules";a[b][0].style.fontSize=g;a=ICEcoder.content.contentWindow.document.styleSheets[4];b=a.rules?"rules":"cssRules";a[b][0].style.fontSize=
|
||||||
ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("tabSize",top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].refresh(),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("lineWrapping",top.ICEcoder.lineWrapping),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("indentWithTabs",top.ICEcoder.indentWithTabs),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("indentUnit",
|
g;a[b][4].style["border-left-width"]=f?"1px":"0";a[b][4].style["margin-left"]=f?"-1px":"0";a[b][2].style.cssText="background-color: "+t+" !important";top.ICEcoder.lineWrapping=k;top.ICEcoder.lineNumbers=h;top.ICEcoder.showTrailingSpace=l;top.ICEcoder.matchBrackets=p;top.ICEcoder.autoCloseTags=n;top.ICEcoder.autoCloseBrackets=m;top.ICEcoder.indentWithTabs=q;top.ICEcoder.indentSize=w;top.ICEcoder.indentAuto=r;for(f=0;f<ICEcoder.cMInstances.length;f++)ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("lineWrapping",
|
||||||
top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("tabSize",top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].refresh();d!=top.ICEcoder.tagWrapperCommand&&(top.ICEcoder.tagWrapperCommand=d);e!=top.ICEcoder.autoComplete&&(top.ICEcoder.autoComplete=e);top.get("plugins").style.left="left"==n?"0":"auto";top.get("plugins").style.right="right"==n?"0":"auto";top.ICEcoder.bugFilePaths=l;top.ICEcoder.bugFileCheckTimer=
|
top.ICEcoder.lineWrapping),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("lineNumbers",top.ICEcoder.lineNumbers),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("showTrailingSpace",top.ICEcoder.showTrailingSpace),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("matchBrackets",top.ICEcoder.matchBrackets),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("autoCloseTags",top.ICEcoder.autoCloseTags),ICEcoder.content.contentWindow["cM"+
|
||||||
q;top.ICEcoder.bugFileMaxLines=u;""!=top.ICEcoder.bugFilePaths[0]?top.ICEcoder.startBugChecking():"undefined"!=typeof top.ICEcoder.bugFileCheckInt&&clearInterval(top.ICEcoder.bugFileCheckInt);top.ICEcoder.splitPane&&top.ICEcoder.updateDiffs();top.ICEcoder.githubAuthTokenSet=v;top.ICEcoder.updateDiffOnSave=w;top.ICEcoder.autoLogoutMins=x;y&&top.ICEcoder.refreshFileManager()},updateResultsDisplay:function(a){ICEcoder.findReplace(top.get("find").value,!0,!1);top.get("results").style.display="show"==
|
ICEcoder.cMInstances[f]].setOption("autoCloseBrackets",top.ICEcoder.autoCloseBrackets),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("indentWithTabs",top.ICEcoder.indentWithTabs),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("indentUnit",top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].setOption("tabSize",top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]].refresh(),ICEcoder.content.contentWindow["cM"+
|
||||||
a?"inline-block":"none"},fullScreenSwitcher:function(){"undefined"!=typeof document.cancelFullScreen?document.fullScreen?document.cancelFullScreen():document.body.requestFullScreen():"undefined"!=typeof document.mozCancelFullScreen?document.mozFullScreen?document.mozCancelFullScreen():document.body.mozRequestFullScreen():"undefined"!=typeof document.webkitCancelFullScreen&&(document.webkitIsFullScreen?document.webkitCancelFullScreen():document.body.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT))},
|
ICEcoder.cMInstances[f]+"diff"].setOption("lineWrapping",top.ICEcoder.lineWrapping),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("lineNumbers",top.ICEcoder.lineNumbers),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("showTrailingSpace",top.ICEcoder.showTrailingSpace),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("matchBrackets",top.ICEcoder.matchBrackets),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+
|
||||||
zipIt:function(a){a=a.replace(/\//g,"|");top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="plugins/zip-it/index.php?zip="+a+"&csrf="+top.ICEcoder.csrf},downloadFile:function(a){a=a.replace(/\//g,"|");top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="lib/download.php?file="+a+"&csrf="+top.ICEcoder.csrf},chmod:function(a,b){a=a.replace(top.iceRoot,"");top.ICEcoder.showHide("hide",top.get("blackMask"));top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=perms&perms="+
|
"diff"].setOption("autoCloseTags",top.ICEcoder.autoCloseTags),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("autoCloseBrackets",top.ICEcoder.autoCloseBrackets),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("indentWithTabs",top.ICEcoder.indentWithTabs),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("indentUnit",top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].setOption("tabSize",
|
||||||
b+"&csrf="+top.ICEcoder.csrf,a.replace(/\+/g,"%2B"));top.ICEcoder.serverMessage("<b>chMod "+b+" on </b><br>"+a.replace(/\|/g,"/"))},openPreviewWindow:function(){if(0<top.ICEcoder.openFiles.length){var a,b,c,d,e;d=top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1];a=d.substr(d.lastIndexOf("/")+1);e=a.substr(a.lastIndexOf(".")+1);a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();c=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;top.ICEcoder.previewWindowLoading=!0;top.ICEcoder.previewWindow=
|
top.ICEcoder.indentSize),ICEcoder.content.contentWindow["cM"+ICEcoder.cMInstances[f]+"diff"].refresh();d!=top.ICEcoder.tagWrapperCommand&&(top.ICEcoder.tagWrapperCommand=d);e!=top.ICEcoder.autoComplete&&(top.ICEcoder.autoComplete=e);top.get("plugins").style.left="left"==v?"0":"auto";top.get("plugins").style.right="right"==v?"0":"auto";top.ICEcoder.bugFilePaths=x;top.ICEcoder.bugFileCheckTimer=y;top.ICEcoder.bugFileMaxLines=z;""!=top.ICEcoder.bugFilePaths[0]?top.ICEcoder.startBugChecking():"undefined"!=
|
||||||
window.open(d,"previewWindow",500,500);-1<["md"].indexOf(e)?top.ICEcoder.previewWindow.onload=function(){top.ICEcoder.previewWindowLoading=!1;top.ICEcoder.previewWindow.document.documentElement.innerHTML=mmd(c.getValue())}:top.ICEcoder.previewWindow.onload=function(){top.ICEcoder.previewWindowLoading=!1;try{top.ICEcoder.doPesticide()}catch(a){}try{top.ICEcoder.doStatsJS("open")}catch(a){}try{top.ICEcoder.doResponsive()}catch(a){}}}},resetAutoLogoutTimer:function(){1<top.ICEcoder.autoLogoutMins&&top.ICEcoder.autoLogoutTimer>
|
typeof top.ICEcoder.bugFileCheckInt&&clearInterval(top.ICEcoder.bugFileCheckInt);top.ICEcoder.splitPane&&top.ICEcoder.updateDiffs();top.ICEcoder.githubAuthTokenSet=A;top.ICEcoder.updateDiffOnSave=B;top.ICEcoder.autoLogoutMins=C;D&&top.ICEcoder.refreshFileManager()},updateResultsDisplay:function(a){ICEcoder.findReplace(top.get("find").value,!0,!1);top.get("results").style.display="show"==a?"inline-block":"none"},fullScreenSwitcher:function(){"undefined"!=typeof document.cancelFullScreen?document.fullScreen?
|
||||||
60*top.ICEcoder.autoLogoutMins-60&&ICEcoder.showHide("hide",get("blackMask"));top.ICEcoder.autoLogoutTimer=0},logout:function(a){window.location=window.location+"?logout&"+(a?"type="+a+"&":"")+"csrf="+top.ICEcoder.csrf},message:function(a){alert(a)},ask:function(a){return confirm(a)},getInput:function(a,b){return prompt(a,b)},dataMessage:function(a){var b;b=top.ICEcoder.content.contentWindow.document.getElementById("dataMessage");b.style.display="block";b.innerHTML=a},update:function(){confirm(top.t["Please note for..."])?
|
document.cancelFullScreen():document.body.requestFullScreen():"undefined"!=typeof document.mozCancelFullScreen?document.mozFullScreen?document.mozCancelFullScreen():document.body.mozRequestFullScreen():"undefined"!=typeof document.webkitCancelFullScreen&&(document.webkitIsFullScreen?document.webkitCancelFullScreen():document.body.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT))},zipIt:function(a){a=a.replace(/\//g,"|");top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="plugins/zip-it/index.php?zip="+
|
||||||
(top.ICEcoder.showHide("show",top.get("loadingMask")),window.location="lib/updater.php"):window.open("https://icecoder.net")},updated:function(){top.get("blackMask").style.visibility="visible";top.get("mediaContainer").innerHTML='<h1 style="color: #fff; cursor: default">Thanks for updating to v'+top.ICEcoder.versionNo+'!</h1><h2 style="color: #888; cursor: default">Click anywhere to continue using ICEcoder...</h2>'},xhrObj:function(){try{return new XMLHttpRequest}catch(a){}try{return new ActiveXObject("Msxml3.XMLHTTP")}catch(a){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(a){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(a){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(a){}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(a){}return null},
|
a+"&csrf="+top.ICEcoder.csrf},downloadFile:function(a){a=a.replace(/\//g,"|");top.ICEcoder.filesFrame.contentWindow.frames.fileControl.location.href="lib/download.php?file="+a+"&csrf="+top.ICEcoder.csrf},chmod:function(a,b){a=a.replace(top.iceRoot,"");top.ICEcoder.showHide("hide",top.get("blackMask"));top.ICEcoder.serverQueue("add","lib/file-control-xhr.php?action=perms&perms="+b+"&csrf="+top.ICEcoder.csrf,a.replace(/\+/g,"%2B"));top.ICEcoder.serverMessage("<b>chMod "+b+" on </b><br>"+a.replace(/\|/g,
|
||||||
|
"/"))},openPreviewWindow:function(){if(0<top.ICEcoder.openFiles.length){var a,b,c,d,e;d=top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1];a=d.substr(d.lastIndexOf("/")+1);e=a.substr(a.lastIndexOf(".")+1);a=ICEcoder.getcMInstance();b=ICEcoder.getcMdiffInstance();c=-1<top.ICEcoder.editorFocusInstance.indexOf("diff")?b:a;top.ICEcoder.previewWindowLoading=!0;top.ICEcoder.previewWindow=window.open(d,"previewWindow",500,500);-1<["md"].indexOf(e)?top.ICEcoder.previewWindow.onload=function(){top.ICEcoder.previewWindowLoading=
|
||||||
|
!1;top.ICEcoder.previewWindow.document.documentElement.innerHTML=mmd(c.getValue())}:top.ICEcoder.previewWindow.onload=function(){top.ICEcoder.previewWindowLoading=!1;try{top.ICEcoder.doPesticide()}catch(a){}try{top.ICEcoder.doStatsJS("open")}catch(a){}try{top.ICEcoder.doResponsive()}catch(a){}}}},resetAutoLogoutTimer:function(){1<top.ICEcoder.autoLogoutMins&&top.ICEcoder.autoLogoutTimer>60*top.ICEcoder.autoLogoutMins-60&&ICEcoder.showHide("hide",get("blackMask"));top.ICEcoder.autoLogoutTimer=0},logout:function(a){window.location=
|
||||||
|
window.location+"?logout&"+(a?"type="+a+"&":"")+"csrf="+top.ICEcoder.csrf},message:function(a){alert(a)},ask:function(a){return confirm(a)},getInput:function(a,b){return prompt(a,b)},dataMessage:function(a){var b;b=top.ICEcoder.content.contentWindow.document.getElementById("dataMessage");b.style.display="block";b.innerHTML=a},update:function(){confirm(top.t["Please note for..."])?(top.ICEcoder.showHide("show",top.get("loadingMask")),window.location="lib/updater.php"):window.open("https://icecoder.net")},
|
||||||
|
updated:function(){top.get("blackMask").style.visibility="visible";top.get("mediaContainer").innerHTML='<h1 style="color: #fff; cursor: default">Thanks for updating to v'+top.ICEcoder.versionNo+'!</h1><h2 style="color: #888; cursor: default">Click anywhere to continue using ICEcoder...</h2>'},xhrObj:function(){try{return new XMLHttpRequest}catch(a){}try{return new ActiveXObject("Msxml3.XMLHTTP")}catch(a){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(a){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(a){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(a){}try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(a){}return null},
|
||||||
openBugReport:function(){var a;"off"==top.ICEcoder.bugReportStatus&&top.ICEcoder.message(top.t["You can start..."]);"error"==top.ICEcoder.bugReportStatus&&top.ICEcoder.message(top.t["Error cannot find..."]);"ok"==top.ICEcoder.bugReportStatus&&top.ICEcoder.message(top.t["No new errors..."]);"bugs"==top.ICEcoder.bugReportStatus&&(a=top.ICEcoder.openFiles.indexOf(top.ICEcoder.bugReportPath.replace(/\|/g,"/")),-1<a&&top.ICEcoder.closeTab(a+1,"dontSetPV","dontAsk"),top.ICEcoder.openFile(top.ICEcoder.bugReportPath),
|
openBugReport:function(){var a;"off"==top.ICEcoder.bugReportStatus&&top.ICEcoder.message(top.t["You can start..."]);"error"==top.ICEcoder.bugReportStatus&&top.ICEcoder.message(top.t["Error cannot find..."]);"ok"==top.ICEcoder.bugReportStatus&&top.ICEcoder.message(top.t["No new errors..."]);"bugs"==top.ICEcoder.bugReportStatus&&(a=top.ICEcoder.openFiles.indexOf(top.ICEcoder.bugReportPath.replace(/\|/g,"/")),-1<a&&top.ICEcoder.closeTab(a+1,"dontSetPV","dontAsk"),top.ICEcoder.openFile(top.ICEcoder.bugReportPath),
|
||||||
top.ICEcoder.bugFilesSizesSeen=top.ICEcoder.bugFilesSizesActual)},startBugChecking:function(){var a;0!==top.ICEcoder.bugFileCheckTimer?("undefined"!=typeof top.ICEcoder.bugFileCheckInt&&clearInterval(top.ICEcoder.bugFileCheckInt),top.ICEcoder.bugFilesSizesSeen=[],top.ICEcoder.bugFileCheckInt=setInterval(function(){a="lib/bug-files-check.php?";a+="files="+(""!==top.ICEcoder.bugFilePaths[0]?top.ICEcoder.bugFilePaths.join():"null").replace(/\//g,"|");a+="&filesSizesSeen=";if(top.ICEcoder.bugFilesSizesSeen.length!=
|
top.ICEcoder.bugFilesSizesSeen=top.ICEcoder.bugFilesSizesActual)},startBugChecking:function(){var a;0!==top.ICEcoder.bugFileCheckTimer?("undefined"!=typeof top.ICEcoder.bugFileCheckInt&&clearInterval(top.ICEcoder.bugFileCheckInt),top.ICEcoder.bugFilesSizesSeen=[],top.ICEcoder.bugFileCheckInt=setInterval(function(){a="lib/bug-files-check.php?";a+="files="+(""!==top.ICEcoder.bugFilePaths[0]?top.ICEcoder.bugFilePaths.join():"null").replace(/\//g,"|");a+="&filesSizesSeen=";if(top.ICEcoder.bugFilesSizesSeen.length!=
|
||||||
top.ICEcoder.bugFilePaths.length)for(var b=0;b<top.ICEcoder.bugFilePaths.length;b++)top.ICEcoder.bugFilesSizesSeen[b]="null";a+=top.ICEcoder.bugFilesSizesSeen.join();a+="&maxLines="+top.ICEcoder.bugFileMaxLines;a+="&csrf="+top.ICEcoder.csrf;var c=top.ICEcoder.xhrObj();c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){var a=JSON.parse(c.responseText);top.get("bugIcon").style.backgroundPosition="off"==a.result?"0 0":"ok"==a.result?"-32px 0":"bugs"==a.result?"-48px 0":"-16px 0";top.ICEcoder.bugReportStatus=
|
top.ICEcoder.bugFilePaths.length)for(var b=0;b<top.ICEcoder.bugFilePaths.length;b++)top.ICEcoder.bugFilesSizesSeen[b]="null";a+=top.ICEcoder.bugFilesSizesSeen.join();a+="&maxLines="+top.ICEcoder.bugFileMaxLines;a+="&csrf="+top.ICEcoder.csrf;var c=top.ICEcoder.xhrObj();c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){var a=JSON.parse(c.responseText);top.get("bugIcon").style.backgroundPosition="off"==a.result?"0 0":"ok"==a.result?"-32px 0":"bugs"==a.result?"-48px 0":"-16px 0";top.ICEcoder.bugReportStatus=
|
||||||
|
|||||||
27
lib/language-modes-partial.js
Normal file
27
lib/language-modes-partial.js
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Provide a fileName and get fileExt and mode set based on supported languages
|
||||||
|
|
||||||
|
fileExt = fileName.split(".");
|
||||||
|
fileExt = fileExt[fileExt.length-1];
|
||||||
|
var mode =
|
||||||
|
fileExt == "js" || fileExt == "json" ? "text/javascript"
|
||||||
|
: fileExt == "coffee" ? "text/x-coffeescript"
|
||||||
|
: fileExt == "rb" ? "text/x-ruby"
|
||||||
|
: fileExt == "py" ? "text/x-python"
|
||||||
|
: fileExt == "css" ? "text/css"
|
||||||
|
: fileExt == "less" ? "text/x-less"
|
||||||
|
: fileExt == "md" ? "text/x-markdown"
|
||||||
|
: fileExt == "xml" ? "application/xml"
|
||||||
|
: fileExt == "sql" ? "text/x-mysql" // also text/x-sql, text/x-mariadb, text/x-cassandra or text/x-plsql
|
||||||
|
: fileExt == "erl" ? "text/x-erlang"
|
||||||
|
: fileExt == "yaml" ? "text/x-yaml"
|
||||||
|
: fileExt == "java" ? "text/x-java"
|
||||||
|
: fileExt == "jl" ? "text/x-julia"
|
||||||
|
: fileExt == "c" ? "text/x-csrc"
|
||||||
|
: fileExt == "cpp" ? "text/x-c++src"
|
||||||
|
: fileExt == "ino" ? "text/x-c++src"
|
||||||
|
: fileExt == "cs" ? "text/x-csharp"
|
||||||
|
: fileExt == "go" ? "text/x-go"
|
||||||
|
: fileExt == "lua" ? "text/x-lua"
|
||||||
|
: fileExt == "pl" ? "text/x-perl"
|
||||||
|
: fileExt == "scss" ? "text/x-sass"
|
||||||
|
: "application/x-httpd-php";
|
||||||
@@ -125,12 +125,12 @@ if (startTab!=top.ICEcoder.selectedTab) {
|
|||||||
$fullPath = $path.$slash.$f;
|
$fullPath = $path.$slash.$f;
|
||||||
if(is_dir($fullPath)) {
|
if(is_dir($fullPath)) {
|
||||||
$ret .= phpGrep($q, $fullPath, $base);
|
$ret .= phpGrep($q, $fullPath, $base);
|
||||||
} else if(stristr(toUTF8noBOM(file_get_contents($fullPath,false,$context),false), $q)) {
|
} else if(stristr(toUTF8noBOM(getData($fullPath),false), $q)) {
|
||||||
$bFile = false;
|
$bFile = false;
|
||||||
$foundInSelFile = false;
|
$foundInSelFile = false;
|
||||||
// Exclude banned files
|
// Exclude banned files
|
||||||
for ($i=0;$i<count($ICEcoder['bannedFiles']);$i++) {
|
for ($i=0;$i<count($ICEcoder['bannedFiles']);$i++) {
|
||||||
if (strpos($f,$ICEcoder['bannedFiles'][$i])!==false) {$bFile = true;};
|
if (strpos($f,str_replace("*","",$ICEcoder['bannedFiles'][$i]))!==false) {$bFile = true;};
|
||||||
}
|
}
|
||||||
// Exclude the folder ICEcoder is running from
|
// Exclude the folder ICEcoder is running from
|
||||||
$rootPrefix = '/'.str_replace("/","\/",preg_quote(str_replace("\\","/",$docRoot))).'/';
|
$rootPrefix = '/'.str_replace("/","\/",preg_quote(str_replace("\\","/",$docRoot))).'/';
|
||||||
@@ -147,7 +147,7 @@ if (startTab!=top.ICEcoder.selectedTab) {
|
|||||||
}
|
}
|
||||||
if (!$bFile && (count($selectedFiles)==0 || count($selectedFiles)>0 && $foundInSelFile)) {
|
if (!$bFile && (count($selectedFiles)==0 || count($selectedFiles)>0 && $foundInSelFile)) {
|
||||||
$ret .= "<a href=\\\"javascript:top.ICEcoder.openFile('".$fullPath."');top.ICEcoder.goFindAfterOpenInt = setInterval(function(){goFindAfterOpen('".$fullPath."')},20);top.ICEcoder.showHide('hide',top.get('blackMask'))\\\">";
|
$ret .= "<a href=\\\"javascript:top.ICEcoder.openFile('".$fullPath."');top.ICEcoder.goFindAfterOpenInt = setInterval(function(){goFindAfterOpen('".$fullPath."')},20);top.ICEcoder.showHide('hide',top.get('blackMask'))\\\">";
|
||||||
$ret .= str_replace($base,"",$fullPath)."</a><div id=\\\"foundCount".$r."\\\">".$t['Found']." ".substr_count(strtolower(toUTF8noBOM(file_get_contents($fullPath,false,$context),false)),$q)." ".$t['times']."</div>";
|
$ret .= str_replace($base,"",$fullPath)."</a><div id=\\\"foundCount".$r."\\\">".$t['Found']." ".substr_count(strtolower(toUTF8noBOM(getData($fullPath),false)),$q)." ".$t['times']."</div>";
|
||||||
if (isset($_GET['replace'])) {
|
if (isset($_GET['replace'])) {
|
||||||
$ret .= "<div class=\\\"replace\\\" id=\\\"replace\\\" onClick=\\\"replaceInFileSingle('".$fullPath."');this.style.display=\'none\'\\\">".$t['replace']."</div>";
|
$ret .= "<div class=\\\"replace\\\" id=\\\"replace\\\" onClick=\\\"replaceInFileSingle('".$fullPath."');this.style.display=\'none\'\\\">".$t['replace']."</div>";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -7,17 +7,7 @@ $t = $text['plugins-manager'];
|
|||||||
$pluginsDataSrc = "https://icecoder.net/plugin-data?format=JSON";
|
$pluginsDataSrc = "https://icecoder.net/plugin-data?format=JSON";
|
||||||
|
|
||||||
// Now get our plugin data and put into a PHP array
|
// Now get our plugin data and put into a PHP array
|
||||||
if (ini_get('allow_url_fopen')) {
|
$pluginsDataJS = getData($pluginsDataSrc,'curl');
|
||||||
$pluginsDataJS = @file_get_contents($pluginsDataSrc, false, $context);
|
|
||||||
if (!$pluginsDataJS) {
|
|
||||||
$pluginsDataJS = file_get_contents(str_replace("https:","http:",$pluginsDataSrc), false, $context);
|
|
||||||
}
|
|
||||||
} elseif (function_exists('curl_init')) {
|
|
||||||
$pDSrc = curl_init($pluginsDataSrc);
|
|
||||||
curl_setopt($pDSrc, CURLOPT_SSL_VERIFYPEER, false);
|
|
||||||
curl_setopt($pDSrc, CURLOPT_RETURNTRANSFER, true);
|
|
||||||
$pluginsDataJS = curl_exec($pDSrc);
|
|
||||||
}
|
|
||||||
$pluginsData = json_decode($pluginsDataJS, true);
|
$pluginsData = json_decode($pluginsDataJS, true);
|
||||||
|
|
||||||
// If we have an action to perform
|
// If we have an action to perform
|
||||||
@@ -25,7 +15,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
|
|
||||||
// Get our old plugin & user settings
|
// Get our old plugin & user settings
|
||||||
$oldPlugins = $ICEcoder["plugins"];
|
$oldPlugins = $ICEcoder["plugins"];
|
||||||
$settingsContents = file_get_contents($settingsFile,false,$context);
|
$settingsContents = getData($settingsFile);
|
||||||
|
|
||||||
// ==========
|
// ==========
|
||||||
// INSTALLING
|
// INSTALLING
|
||||||
@@ -37,13 +27,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
$target = '../plugins/';
|
$target = '../plugins/';
|
||||||
$zipURL = $pluginsData[strClean($_GET['plugin'])]['zipURL'];
|
$zipURL = $pluginsData[strClean($_GET['plugin'])]['zipURL'];
|
||||||
$zipFile = "../tmp/".basename($zipURL);
|
$zipFile = "../tmp/".basename($zipURL);
|
||||||
if (ini_get('allow_url_fopen')) {
|
$fileData = getData($zipURL,'curl');
|
||||||
$fileData = file_get_contents($zipURL, false, $context);
|
|
||||||
} elseif (function_exists('curl_init')) {
|
|
||||||
$client = curl_init($zipURL);
|
|
||||||
curl_setopt($client, CURLOPT_RETURNTRANSFER, 1); //fixed this line
|
|
||||||
$fileData = curl_exec($client);
|
|
||||||
}
|
|
||||||
file_put_contents($zipFile, $fileData);
|
file_put_contents($zipFile, $fileData);
|
||||||
|
|
||||||
// Now unpack the zip
|
// Now unpack the zip
|
||||||
@@ -142,7 +126,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
|
|
||||||
// Identify the bit to replace
|
// Identify the bit to replace
|
||||||
$repPosStart = strpos($settingsContents,'"plugins"');
|
$repPosStart = strpos($settingsContents,'"plugins"');
|
||||||
$repPosEnd = strpos($settingsContents,'"githubLocalPaths"');
|
$repPosEnd = strpos($settingsContents,'"ftpSites"');
|
||||||
|
|
||||||
// Compile our new settings
|
// Compile our new settings
|
||||||
$settingsContents = substr($settingsContents,0,$repPosStart).$settingsNew.substr($settingsContents,$repPosEnd,strlen($settingsContents));
|
$settingsContents = substr($settingsContents,0,$repPosStart).$settingsNew.substr($settingsContents,$repPosEnd,strlen($settingsContents));
|
||||||
|
|||||||
@@ -45,6 +45,40 @@ if (isset($_SESSION['text'])) {
|
|||||||
$t = $text['settings-common'];
|
$t = $text['settings-common'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Get data from a fopen or CURL connection
|
||||||
|
function getData($url,$type='fopen',$dieMessage=false) {
|
||||||
|
global $context;
|
||||||
|
|
||||||
|
// Request is to connect via CURL
|
||||||
|
if ($type == "curl" && function_exists('curl_init')) {
|
||||||
|
$ch = curl_init();
|
||||||
|
curl_setopt($ch, CURLOPT_URL, $url);
|
||||||
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
||||||
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||||
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
|
||||||
|
curl_setopt($ch, CURLOPT_USERAGENT, 'ICEcoder');
|
||||||
|
curl_setopt($ch, CURLOPT_FAILONERROR, true);
|
||||||
|
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
|
||||||
|
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
|
||||||
|
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
|
||||||
|
$data = curl_exec($ch);
|
||||||
|
curl_close($ch);
|
||||||
|
// Otherwise, use an fopen connection
|
||||||
|
} elseif (ini_get('allow_url_fopen')) {
|
||||||
|
$data = @file_get_contents($url,false,$context);
|
||||||
|
if (!$data) {
|
||||||
|
$data = @file_get_contents(str_replace("https:","http:",$url), false, $context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Return data or die with message
|
||||||
|
if ($data) {
|
||||||
|
return $data;
|
||||||
|
} elseif ($dieMessage) {
|
||||||
|
die($dieMessage);
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Logout if that's the action we're taking
|
// Logout if that's the action we're taking
|
||||||
if (isset($_GET['logout'])) {
|
if (isset($_GET['logout'])) {
|
||||||
include(dirname(__FILE__)."/../processes/on-user-logout.php");
|
include(dirname(__FILE__)."/../processes/on-user-logout.php");
|
||||||
@@ -128,13 +162,37 @@ function xssClean($data,$type) {
|
|||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Clean PHP code injection attempts
|
||||||
|
function injClean($data) {
|
||||||
|
$output = str_replace("(", "", str_replace(")", "", str_replace(";", "", $data)));
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
// returns a UTF8 based string with any UFT8 BOM removed
|
// returns a UTF8 based string with any UFT8 BOM removed
|
||||||
function toUTF8noBOM($string,$message) {
|
function toUTF8noBOM($string,$message) {
|
||||||
|
global $text;
|
||||||
|
$t = $text['settings-common'];
|
||||||
|
|
||||||
// Attempt to detect encoding
|
// Attempt to detect encoding
|
||||||
if (function_exists('mb_detect_encoding')) {
|
if (function_exists('mb_detect_encoding')) {
|
||||||
$strictUTF8 = mb_detect_encoding($string, 'UTF-8', true);
|
$strictUTF8 = mb_detect_encoding($string, 'UTF-8', true);
|
||||||
// Get rid of any UTF-8 BOM
|
// Establish a BOM
|
||||||
$string = preg_replace('/\x{EF}\x{BB}\x{BF}/','',$string);
|
$bom = pack("CCC", 0xef, 0xbb, 0xbf);
|
||||||
|
// If there's a BOM in the first few chars
|
||||||
|
if (0 === strncmp($string, $bom, 3)) {
|
||||||
|
// If there's a BOM followed by a Windows based (2 char) line ending
|
||||||
|
// chop BOM off and prefix returned string with a PHP_EOL
|
||||||
|
if (0 === strncmp($string, $bom."\r\n", 3)) {
|
||||||
|
$string = PHP_EOL.substr($string, 3);
|
||||||
|
// Else, simply chop off the BOM
|
||||||
|
} else {
|
||||||
|
$string = substr($string, 3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Remove any other BOMs from view
|
||||||
|
$string = preg_replace('/'.$bom.'/','',$string);
|
||||||
|
|
||||||
// Test for any bad characters
|
// Test for any bad characters
|
||||||
$teststring = $string;
|
$teststring = $string;
|
||||||
$teststringBroken = utf8_decode($teststring);
|
$teststringBroken = utf8_decode($teststring);
|
||||||
@@ -209,11 +267,15 @@ function getVersionsCount($fileLoc,$fileName) {
|
|||||||
$backupIndex = $backupDirBase.$backupDirHost."/".$backupDateDirs[$i]."/.versions-index";
|
$backupIndex = $backupDirBase.$backupDirHost."/".$backupDateDirs[$i]."/.versions-index";
|
||||||
// Have a .versions-index file? Get contents
|
// Have a .versions-index file? Get contents
|
||||||
if (file_exists($backupIndex) && is_readable($backupIndex)) {
|
if (file_exists($backupIndex) && is_readable($backupIndex)) {
|
||||||
$versionsInfo = file_get_contents($backupIndex,false,$context);
|
$versionsInfo = getData($backupIndex);
|
||||||
$versionsInfo = explode("\n",$versionsInfo);
|
$versionsInfo = explode("\n",$versionsInfo);
|
||||||
// For each line, check if it's our file and if so, add the count to our $count value and $dateCount array
|
// For each line, check if it's our file and if so, add the count to our $count value and $dateCount array
|
||||||
for ($j=0; $j<count($versionsInfo); $j++) {
|
for ($j=0; $j<count($versionsInfo); $j++) {
|
||||||
$fileRef = $fileLoc."/".$fileName." = ";
|
// Replace any backslashes in $fileLoc
|
||||||
|
$fileLoc = str_replace("\\","/",$fileLoc);
|
||||||
|
// Join $fileLock and $fileName into a path and replace double slashes
|
||||||
|
$fileRef = str_replace("//","/",$fileLoc."/".$fileName." = ");
|
||||||
|
// Check if we have a match
|
||||||
if (strpos($versionsInfo[$j],$fileRef) === 0) {
|
if (strpos($versionsInfo[$j],$fileRef) === 0) {
|
||||||
// We have a match, so split on the " = " and we can grab number as 2nd part
|
// We have a match, so split on the " = " and we can grab number as 2nd part
|
||||||
$lineInfo = explode(" = ",$versionsInfo[$j]);
|
$lineInfo = explode(" = ",$versionsInfo[$j]);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ $t = $text['settings-save-current-files'];
|
|||||||
|
|
||||||
// Save the currently opened files for next time
|
// Save the currently opened files for next time
|
||||||
if ($_SESSION['loggedIn'] && isset($_GET["saveFiles"]) && $_GET['saveFiles']) {
|
if ($_SESSION['loggedIn'] && isset($_GET["saveFiles"]) && $_GET['saveFiles']) {
|
||||||
$settingsContents = file_get_contents($settingsFile,false,$context);
|
$settingsContents = getData($settingsFile);
|
||||||
|
|
||||||
// Replace our previousFiles var with the the current
|
// Replace our previousFiles var with the the current
|
||||||
$repPosStart = strpos($settingsContents,'previousFiles" => "')+20;
|
$repPosStart = strpos($settingsContents,'previousFiles" => "')+20;
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ for ($i=0;$i<count($themeArray);$i++) {
|
|||||||
|
|
||||||
<div id="styleSection" class="section" style="display: none">
|
<div id="styleSection" class="section" style="display: none">
|
||||||
|
|
||||||
<div style="display: inline-block; width: 400px; margin-right: 40px">
|
<div style="display: inline-block; width: 400px; margin-right: 35px">
|
||||||
<div style="height: 220px">
|
<div style="height: 220px">
|
||||||
<h2>preview</h2><br>
|
<h2>preview</h2><br>
|
||||||
<textarea id="code" name="code">
|
<textarea id="code" name="code">
|
||||||
@@ -213,9 +213,7 @@ function findSequence(goal) {
|
|||||||
</select>
|
</select>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
</div>
|
</div><div style="display: inline-block">
|
||||||
|
|
||||||
<div style="display: inline-block">
|
|
||||||
<h2><?php echo $t['style'];?></h2><br>
|
<h2><?php echo $t['style'];?></h2><br>
|
||||||
<?php echo $t['theme'];?><br>
|
<?php echo $t['theme'];?><br>
|
||||||
<select onchange="selectTheme();showButton()" id="select" name="theme" style="width: 95px">
|
<select onchange="selectTheme();showButton()" id="select" name="theme" style="width: 95px">
|
||||||
@@ -229,38 +227,77 @@ function findSequence(goal) {
|
|||||||
</select>
|
</select>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<?php echo $t['font size'];?><br>
|
<div style="display: inline-block; width: 95px">
|
||||||
<input type="text" name="fontSize" id="fontSize" style="width: 44px" onkeydown="showButton()" onkeyup="changeFontSize()" value="<?php echo $ICEcoder["fontSize"];?>">
|
<?php echo $t['font size'];?><br>
|
||||||
|
<input type="text" name="fontSize" id="fontSize" style="width: 44px" onkeydown="showButton()" onkeyup="changeFontSize()" value="<?php echo $ICEcoder["fontSize"];?>">
|
||||||
|
</div><div style="display: inline-block">
|
||||||
|
<?php echo $t['indent size'];?><br>
|
||||||
|
<input type="text" name="indentSize" id="indentSize" style="width: 44px" onkeydown="showButton()" onkeyup="changeIndentSize()" value="<?php echo $ICEcoder["indentSize"];?>">
|
||||||
|
</div>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<?php echo $t['indent size'];?><br>
|
<div style="display: inline-block; width: 95px">
|
||||||
<input type="text" name="indentSize" id="indentSize" style="width: 44px" onkeydown="showButton()" onkeyup="changeIndentSize()" value="<?php echo $ICEcoder["indentSize"];?>">
|
<?php echo $t['match brackets'];?><br>
|
||||||
|
<select onchange="showButton()" name="matchBrackets">
|
||||||
|
<option value="true"<?php if($ICEcoder["matchBrackets"]) {echo " selected";};?>>yes</option>
|
||||||
|
<option value="false"<?php if(!$ICEcoder["matchBrackets"]) {echo " selected";};?>>no</option>
|
||||||
|
</select>
|
||||||
|
</div><div style="display: inline-block">
|
||||||
|
<?php echo $t['show trailing space'];?><br>
|
||||||
|
<select onchange="showButton()" name="showTrailingSpace">
|
||||||
|
<option value="true"<?php if($ICEcoder["showTrailingSpace"]) {echo " selected";};?>>yes</option>
|
||||||
|
<option value="false"<?php if(!$ICEcoder["showTrailingSpace"]) {echo " selected";};?>>no</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<input type="checkbox" onclick="showButton();showHideTabs()" name="visibleTabs" value="true"<?php if($ICEcoder["visibleTabs"]) {echo ' checked';};?>> <?php echo $t['visible tabs'];?>
|
<input type="checkbox" onclick="showButton();showHideTabs()" name="visibleTabs" value="true"<?php if($ICEcoder["visibleTabs"]) {echo ' checked';};?>> <?php echo $t['visible tabs'];?>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
<?php echo $t['line wrapping'];?><br>
|
<div style="display: inline-block; width: 95px">
|
||||||
<select onchange="showButton()" name="lineWrapping">
|
<?php echo $t['line wrapping'];?><br>
|
||||||
<option value="true"<?php if($ICEcoder["lineWrapping"]) {echo " selected";};?>>yes</option>
|
<select onchange="showButton()" name="lineWrapping">
|
||||||
<option value="false"<?php if(!$ICEcoder["lineWrapping"]) {echo " selected";};?>>no</option>
|
<option value="true"<?php if($ICEcoder["lineWrapping"]) {echo " selected";};?>>yes</option>
|
||||||
</select>
|
<option value="false"<?php if(!$ICEcoder["lineWrapping"]) {echo " selected";};?>>no</option>
|
||||||
<br><br>
|
</select>
|
||||||
|
</div><div style="display: inline-block">
|
||||||
|
<?php echo $t['line numbers'];?><br>
|
||||||
|
<select onchange="changeLineNumbersToggle();showButton()" name="lineNumbers" id="lineNumbers">
|
||||||
|
<option value="true"<?php if($ICEcoder["lineNumbers"]) {echo " selected";};?>>yes</option>
|
||||||
|
<option value="false"<?php if(!$ICEcoder["lineNumbers"]) {echo " selected";};?>>no</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
<br><br>
|
||||||
|
|
||||||
<h2><?php echo $t['functionality'];?></h2><br>
|
<h2><?php echo $t['functionality'];?></h2><br>
|
||||||
|
|
||||||
<?php echo $t['indent type'];?><br>
|
<div style="display: inline-block; width: 95px">
|
||||||
<select onchange="showButton()" name="indentWithTabs">
|
<?php echo $t['indent type'];?><br>
|
||||||
<option value="true"<?php if($ICEcoder["indentWithTabs"]) {echo " selected";};?>>tabs</option>
|
<select onchange="showButton()" name="indentWithTabs">
|
||||||
<option value="false"<?php if(!$ICEcoder["indentWithTabs"]) {echo " selected";};?>>spaces</option>
|
<option value="true"<?php if($ICEcoder["indentWithTabs"]) {echo " selected";};?>>tabs</option>
|
||||||
</select>
|
<option value="false"<?php if(!$ICEcoder["indentWithTabs"]) {echo " selected";};?>>spaces</option>
|
||||||
<br><br>
|
</select>
|
||||||
|
<br><br>
|
||||||
|
|
||||||
<?php echo $t['auto indent'];?><br>
|
<?php echo $t['auto indent'];?><br>
|
||||||
<select onchange="showButton()" name="indentAuto">
|
<select onchange="showButton()" name="indentAuto">
|
||||||
<option value="true"<?php if($ICEcoder["indentAuto"]) {echo " selected";};?>>yes</option>
|
<option value="true"<?php if($ICEcoder["indentAuto"]) {echo " selected";};?>>yes</option>
|
||||||
<option value="false"<?php if(!$ICEcoder["indentAuto"]) {echo " selected";};?>>no</option>
|
<option value="false"<?php if(!$ICEcoder["indentAuto"]) {echo " selected";};?>>no</option>
|
||||||
</select>
|
</select>
|
||||||
|
</div><div style="display: inline-block">
|
||||||
|
<?php echo $t['auto close tags'];?><br>
|
||||||
|
<select onchange="showButton()" name="autoCloseTags">
|
||||||
|
<option value="true"<?php if($ICEcoder["autoCloseTags"]) {echo " selected";};?>>yes</option>
|
||||||
|
<option value="false"<?php if(!$ICEcoder["autoCloseTags"]) {echo " selected";};?>>no</option>
|
||||||
|
</select>
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
<?php echo $t['auto close brackets'];?><br>
|
||||||
|
<select onchange="showButton()" name="autoCloseBrackets">
|
||||||
|
<option value="true"<?php if($ICEcoder["autoCloseBrackets"]) {echo " selected";};?>>yes</option>
|
||||||
|
<option value="false"<?php if(!$ICEcoder["autoCloseBrackets"]) {echo " selected";};?>>no</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -317,7 +354,7 @@ function findSequence(goal) {
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
|
||||||
lineNumbers: true,
|
lineNumbers: top.ICEcoder.lineNumbers,
|
||||||
readOnly: "nocursor",
|
readOnly: "nocursor",
|
||||||
indentUnit: top.ICEcoder.indentSize,
|
indentUnit: top.ICEcoder.indentSize,
|
||||||
tabSize: top.ICEcoder.indentSize,
|
tabSize: top.ICEcoder.indentSize,
|
||||||
@@ -339,6 +376,14 @@ function changeIndentSize() {
|
|||||||
editor.refresh();
|
editor.refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function changeLineNumbersToggle() {
|
||||||
|
var lineNumbersSelect = document.getElementById("lineNumbers");
|
||||||
|
var lineNumbers = lineNumbersSelect.options[lineNumbersSelect.selectedIndex].innerHTML == "yes" ? true : false;
|
||||||
|
editor.setOption("lineNumbers", lineNumbers);
|
||||||
|
editor.refresh();
|
||||||
|
}
|
||||||
|
|
||||||
function changeFontSize() {
|
function changeFontSize() {
|
||||||
cMCSS = document.styleSheets[2];
|
cMCSS = document.styleSheets[2];
|
||||||
cMCSS.rules ? strCSS = 'rules' : strCSS = 'cssRules';
|
cMCSS.rules ? strCSS = 'rules' : strCSS = 'cssRules';
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
$newConfigSettingsFile = '<?php
|
$newConfigSettingsFile = '<?php
|
||||||
// ICEcoder system settings
|
// ICEcoder system settings
|
||||||
$ICEcoderSettings = array(
|
$ICEcoderSettings = array(
|
||||||
"versionNo" => "5.5",
|
"versionNo" => "5.7",
|
||||||
"codeMirrorDir" => "CodeMirror",
|
"codeMirrorDir" => "CodeMirror",
|
||||||
"docRoot" => $_SERVER[\'DOCUMENT_ROOT\'], // Set absolute path of another location if needed
|
"docRoot" => $_SERVER[\'DOCUMENT_ROOT\'], // Set absolute path of another location if needed
|
||||||
"demoMode" => false,
|
"demoMode" => false,
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ $t = $text['settings-update'];
|
|||||||
|
|
||||||
// Update this config file?
|
// Update this config file?
|
||||||
if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset($_POST["theme"]) && $_POST["theme"]) {
|
if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset($_POST["theme"]) && $_POST["theme"]) {
|
||||||
$settingsContents = file_get_contents($settingsFile,false,$context);
|
$settingsContents = getData($settingsFile);
|
||||||
// Replace our settings vars
|
// Replace our settings vars
|
||||||
$repPosStart = strpos($settingsContents,'"root"');
|
$repPosStart = strpos($settingsContents,'"root"');
|
||||||
$repPosEnd = strpos($settingsContents,'"plugins"');
|
$repPosEnd = strpos($settingsContents,'"plugins"');
|
||||||
@@ -35,16 +35,21 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
$ICEcoder["theme"] = strClean($_POST['theme']);
|
$ICEcoder["theme"] = strClean($_POST['theme']);
|
||||||
$ICEcoder["fontSize"] = strClean($_POST['fontSize']);
|
$ICEcoder["fontSize"] = strClean($_POST['fontSize']);
|
||||||
$ICEcoder["lineWrapping"] = strClean($_POST['lineWrapping']);
|
$ICEcoder["lineWrapping"] = strClean($_POST['lineWrapping']);
|
||||||
|
$ICEcoder["lineNumbers"] = strClean($_POST['lineNumbers']);
|
||||||
|
$ICEcoder["showTrailingSpace"] = strClean($_POST['showTrailingSpace']);
|
||||||
|
$ICEcoder["matchBrackets"] = strClean($_POST['matchBrackets']);
|
||||||
|
$ICEcoder["autoCloseTags"] = strClean($_POST['autoCloseTags']);
|
||||||
|
$ICEcoder["autoCloseBrackets"] = strClean($_POST['autoCloseBrackets']);
|
||||||
$ICEcoder["indentWithTabs"] = strClean($_POST['indentWithTabs']);
|
$ICEcoder["indentWithTabs"] = strClean($_POST['indentWithTabs']);
|
||||||
$ICEcoder["indentAuto"] = strClean($_POST['indentAuto']);
|
$ICEcoder["indentAuto"] = strClean($_POST['indentAuto']);
|
||||||
$ICEcoder["indentSize"] = intval($_POST['indentSize']);
|
$ICEcoder["indentSize"] = intval($_POST['indentSize']);
|
||||||
$ICEcoder["pluginPanelAligned"] = strClean($_POST['pluginPanelAligned']);
|
$ICEcoder["pluginPanelAligned"] = strClean($_POST['pluginPanelAligned']);
|
||||||
$ICEcoder["bugFilePaths"] = 'array("'.str_replace(',','","',str_replace(" ","",strClean($_POST['bugFilePaths']))).'")';
|
$ICEcoder["bugFilePaths"] = 'array("'.str_replace(',','","',str_replace(" ","",strClean($_POST['bugFilePaths']))).'")';
|
||||||
$ICEcoder["bugFileCheckTimer"] = intval($_POST['bugFileCheckTimer']);
|
$ICEcoder["bugFileCheckTimer"] = intval($_POST['bugFileCheckTimer']) >= 0 ? intval($_POST['bugFileCheckTimer']) : 0;
|
||||||
$ICEcoder["bugFileMaxLines"] = intval($_POST['bugFileMaxLines']);
|
$ICEcoder["bugFileMaxLines"] = intval($_POST['bugFileMaxLines']);
|
||||||
$ICEcoder["githubAuthToken"] = strClean($_POST['githubAuthToken']);
|
$ICEcoder["githubAuthToken"] = strClean($_POST['githubAuthToken']);
|
||||||
|
|
||||||
$settingsArray = array("root","checkUpdates","openLastFiles","updateDiffOnSave","languageUser","backupsKept","backupsDays","findFilesExclude","codeAssist","visibleTabs","lockedNav","tagWrapperCommand","autoComplete","password","bannedFiles","bannedPaths","allowedIPs","autoLogoutMins","theme","fontSize","lineWrapping","indentWithTabs","indentAuto","indentSize","pluginPanelAligned","bugFilePaths","bugFileCheckTimer","bugFileMaxLines","githubAuthToken");
|
$settingsArray = array("root","checkUpdates","openLastFiles","updateDiffOnSave","languageUser","backupsKept","backupsDays","findFilesExclude","codeAssist","visibleTabs","lockedNav","tagWrapperCommand","autoComplete","password","bannedFiles","bannedPaths","allowedIPs","autoLogoutMins","theme","fontSize","lineWrapping","lineNumbers","showTrailingSpace","matchBrackets","autoCloseTags","autoCloseBrackets","indentWithTabs","indentAuto","indentSize","pluginPanelAligned","bugFilePaths","bugFileCheckTimer","bugFileMaxLines","githubAuthToken");
|
||||||
$settingsNew = "";
|
$settingsNew = "";
|
||||||
for ($i=0;$i<count($settingsArray);$i++) {
|
for ($i=0;$i<count($settingsArray);$i++) {
|
||||||
$settingsNew .= '"'.$settingsArray[$i].'" => ';
|
$settingsNew .= '"'.$settingsArray[$i].'" => ';
|
||||||
@@ -79,7 +84,7 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
$refreshFM = $_POST['changedFileSettings']=="true" ? "true" : "false";
|
$refreshFM = $_POST['changedFileSettings']=="true" ? "true" : "false";
|
||||||
|
|
||||||
// Change multiUser and enableRegistration in config___settings.php
|
// Change multiUser and enableRegistration in config___settings.php
|
||||||
$generalSettingsContents = file_get_contents($configSettings,false,$context);
|
$generalSettingsContents = getData($configSettings);
|
||||||
$isMultiUser = isset($_POST['multiUser']) && $_POST['multiUser'] ? "true" : "false";
|
$isMultiUser = isset($_POST['multiUser']) && $_POST['multiUser'] ? "true" : "false";
|
||||||
$generalSettingsContents = str_replace('"multiUser" => true,','"multiUser" => '.$isMultiUser.',',$generalSettingsContents);
|
$generalSettingsContents = str_replace('"multiUser" => true,','"multiUser" => '.$isMultiUser.',',$generalSettingsContents);
|
||||||
$generalSettingsContents = str_replace('"multiUser" => false,','"multiUser" => '.$isMultiUser.',',$generalSettingsContents);
|
$generalSettingsContents = str_replace('"multiUser" => false,','"multiUser" => '.$isMultiUser.',',$generalSettingsContents);
|
||||||
@@ -106,6 +111,6 @@ if (!$demoMode && isset($_SESSION['loggedIn']) && $_SESSION['loggedIn'] && isset
|
|||||||
|
|
||||||
// With all that worked out, we can now hide the settings screen and apply the new settings
|
// With all that worked out, we can now hide the settings screen and apply the new settings
|
||||||
$jsBugFilePaths = "['".str_replace(",","','",str_replace(" ","",strClean($_POST['bugFilePaths'])))."']";
|
$jsBugFilePaths = "['".str_replace(",","','",str_replace(" ","",strClean($_POST['bugFilePaths'])))."']";
|
||||||
echo "<script>top.ICEcoder.settingsScreen('hide');top.ICEcoder.useNewSettings('".$themeURL."',".$ICEcoder["codeAssist"].",".$ICEcoder["lockedNav"].",'".$ICEcoder["tagWrapperCommand"]."','".$ICEcoder["autoComplete"]."',".$ICEcoder["visibleTabs"].",'".$ICEcoder["fontSize"]."',".$ICEcoder["lineWrapping"].",".$ICEcoder["indentWithTabs"].",".$ICEcoder["indentAuto"].",".$ICEcoder["indentSize"].",'".$ICEcoder["pluginPanelAligned"]."',".$jsBugFilePaths.",".$ICEcoder["bugFileCheckTimer"].",".$ICEcoder["bugFileMaxLines"].",'".$githubAuthTokenSet."',".$ICEcoder["updateDiffOnSave"].",".$ICEcoder["autoLogoutMins"].",".$refreshFM.");top.iceRoot = '".$ICEcoder["root"]."';</script>";
|
echo "<script>top.ICEcoder.settingsScreen('hide');top.ICEcoder.useNewSettings('".$themeURL."',".$ICEcoder["codeAssist"].",".$ICEcoder["lockedNav"].",'".$ICEcoder["tagWrapperCommand"]."','".$ICEcoder["autoComplete"]."',".$ICEcoder["visibleTabs"].",'".$ICEcoder["fontSize"]."',".$ICEcoder["lineWrapping"].",".$ICEcoder["lineNumbers"].",".$ICEcoder["showTrailingSpace"].",".$ICEcoder["matchBrackets"].",".$ICEcoder["autoCloseTags"].",".$ICEcoder["autoCloseBrackets"].",".$ICEcoder["indentWithTabs"].",".$ICEcoder["indentAuto"].",".$ICEcoder["indentSize"].",'".$ICEcoder["pluginPanelAligned"]."',".$jsBugFilePaths.",".$ICEcoder["bugFileCheckTimer"].",".$ICEcoder["bugFileMaxLines"].",'".$githubAuthTokenSet."',".$ICEcoder["updateDiffOnSave"].",".$ICEcoder["autoLogoutMins"].",".$refreshFM.");top.iceRoot = '".$ICEcoder["root"]."';</script>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
@@ -1,15 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
$ftpSiteConn = false;
|
|
||||||
if ($ftpSiteConn == 1) {
|
|
||||||
$ftpSite = ""; // FTP site domain, eg http://yourdomain.com
|
|
||||||
$ftpHost = ""; // FTP host, eg ftp.yourdomain.com
|
|
||||||
$ftpUser = ""; // FTP username
|
|
||||||
$ftpPass = ""; // FTP password
|
|
||||||
$ftpPasv = false; // FTP account requires PASV mode?
|
|
||||||
$ftpMode = FTP_ASCII; // FTP transfer mode, FTP_ASCII or FTP_BINARY
|
|
||||||
$ftpRoot = ""; // FTP root dir to use as base, eg /htdocs
|
|
||||||
}
|
|
||||||
|
|
||||||
// Establish settings and users template filenames
|
// Establish settings and users template filenames
|
||||||
$configSettings = 'config___settings.php';
|
$configSettings = 'config___settings.php';
|
||||||
$configUsersTemplate = 'config___users-template.php';
|
$configUsersTemplate = 'config___users-template.php';
|
||||||
@@ -66,7 +55,7 @@ $ICEcoderUserSettings['previousFiles'] = $prevFilesAvail;
|
|||||||
|
|
||||||
// Replace our config created date with the filemtime?
|
// Replace our config created date with the filemtime?
|
||||||
if (basename($_SERVER['SCRIPT_NAME']) == "index.php" && $ICEcoderUserSettings['configCreateDate'] == 0) {
|
if (basename($_SERVER['SCRIPT_NAME']) == "index.php" && $ICEcoderUserSettings['configCreateDate'] == 0) {
|
||||||
$settingsContents = file_get_contents(dirname(__FILE__)."/".$settingsFile,false,$context);
|
$settingsContents = getData(dirname(__FILE__)."/".$settingsFile);
|
||||||
clearstatcache();
|
clearstatcache();
|
||||||
$configfilemtime = filemtime(dirname(__FILE__)."/"."config___settings.php");
|
$configfilemtime = filemtime(dirname(__FILE__)."/"."config___settings.php");
|
||||||
// Make it a number (avoids null, undefined etc)
|
// Make it a number (avoids null, undefined etc)
|
||||||
@@ -175,18 +164,25 @@ for ($i=0;$i<count($settingsArray);$i++) {
|
|||||||
if (!isset($_SESSION[$settingsArray[$i]])) {$_SESSION[$settingsArray[$i]] = $ICEcoder[$settingsArray[$i]];}
|
if (!isset($_SESSION[$settingsArray[$i]])) {$_SESSION[$settingsArray[$i]] = $ICEcoder[$settingsArray[$i]];}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determin our allowed IP addresses
|
// Check IP permissions
|
||||||
$allowedIP = false;
|
if (!in_array($_SERVER["REMOTE_ADDR"], $_SESSION['allowedIPs']) && !in_array("*", $_SESSION['allowedIPs'])) {
|
||||||
for($i=0;$i<count($_SESSION['allowedIPs']);$i++) {
|
header('Location: /');
|
||||||
if ($_SESSION['allowedIPs'][$i]==$_SERVER["REMOTE_ADDR"]||$_SESSION['allowedIPs'][$i]=="*") {
|
die("Sorry, not in allowed IPs list");
|
||||||
$allowedIP = true;
|
exit;
|
||||||
}
|
|
||||||
}
|
|
||||||
// If user not allowed to view, display message
|
|
||||||
if (!$allowedIP) {
|
|
||||||
die('Sorry, access not permitted');
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Establish any FTP site to use
|
||||||
|
if (isset($_SESSION['ftpSiteRef']) && $_SESSION['ftpSiteRef'] !== false) {
|
||||||
|
$ftpSiteArray = $ICEcoder['ftpSites'][$_SESSION['ftpSiteRef']];
|
||||||
|
$ftpSite = $ftpSiteArray['site']; // FTP site domain, eg http://yourdomain.com
|
||||||
|
$ftpHost = $ftpSiteArray['host']; // FTP host, eg ftp.yourdomain.com
|
||||||
|
$ftpUser = $ftpSiteArray['user']; // FTP username
|
||||||
|
$ftpPass = $ftpSiteArray['pass']; // FTP password
|
||||||
|
$ftpPasv = $ftpSiteArray['pasv']; // FTP account requires PASV mode?
|
||||||
|
$ftpMode = $ftpSiteArray['mode'] == "FTP_ASCII" ? FTP_ASCII : FTP_BINARY; // FTP transfer mode, FTP_ASCII or FTP_BINARY
|
||||||
|
$ftpRoot = $ftpSiteArray['root']; // FTP root dir to use as base, eg /htdocs
|
||||||
|
}
|
||||||
|
|
||||||
// Save currently opened files in previousFiles and last10Files arrays
|
// Save currently opened files in previousFiles and last10Files arrays
|
||||||
include(dirname(__FILE__)."/settings-save-current-files.php");
|
include(dirname(__FILE__)."/settings-save-current-files.php");
|
||||||
|
|
||||||
@@ -207,7 +203,7 @@ if ((!$_SESSION['loggedIn'] || $ICEcoder["password"] == "") && !strpos($_SERVER[
|
|||||||
// If we're unlocking ICEcoder after donating
|
// If we're unlocking ICEcoder after donating
|
||||||
} elseif (isset($_POST['submit']) && (strpos($_POST['submit'],"Unlock ICEcoder")>-1)) {
|
} elseif (isset($_POST['submit']) && (strpos($_POST['submit'],"Unlock ICEcoder")>-1)) {
|
||||||
if (generateHash(strClean($_POST['email']),$_POST['code'])==$_POST['code']) {
|
if (generateHash(strClean($_POST['email']),$_POST['code'])==$_POST['code']) {
|
||||||
$settingsContents = file_get_contents($settingsFile,false,$context);
|
$settingsContents = getData($settingsFile);
|
||||||
// Replace our empty email & code with the one submitted by user
|
// Replace our empty email & code with the one submitted by user
|
||||||
$settingsContents = str_replace('"licenseEmail" => "",','"licenseEmail" => "'.$_POST['email'].'",',$settingsContents);
|
$settingsContents = str_replace('"licenseEmail" => "",','"licenseEmail" => "'.$_POST['email'].'",',$settingsContents);
|
||||||
$settingsContents = str_replace('"licenseCode" => "",','"licenseCode" => "'.$_POST['code'].'",',$settingsContents);
|
$settingsContents = str_replace('"licenseCode" => "",','"licenseCode" => "'.$_POST['code'].'",',$settingsContents);
|
||||||
@@ -237,7 +233,7 @@ if ((!$_SESSION['loggedIn'] || $ICEcoder["password"] == "") && !strpos($_SERVER[
|
|||||||
// If the password hasn't been set and we're setting it
|
// If the password hasn't been set and we're setting it
|
||||||
if ($ICEcoder["password"] == "" && isset($_POST['submit']) && (strpos($_POST['submit'],"set password")>-1)) {
|
if ($ICEcoder["password"] == "" && isset($_POST['submit']) && (strpos($_POST['submit'],"set password")>-1)) {
|
||||||
$password = generateHash(strClean($_POST['password']));
|
$password = generateHash(strClean($_POST['password']));
|
||||||
$settingsContents = file_get_contents($settingsFile,false,$context);
|
$settingsContents = getData($settingsFile);
|
||||||
// Replace our empty password with the one submitted by user
|
// Replace our empty password with the one submitted by user
|
||||||
$settingsContents = str_replace('"password" => "",','"password" => "'.$password.'",',$settingsContents);
|
$settingsContents = str_replace('"password" => "",','"password" => "'.$password.'",',$settingsContents);
|
||||||
// Also set the update checker preference
|
// Also set the update checker preference
|
||||||
@@ -262,7 +258,7 @@ if ((!$_SESSION['loggedIn'] || $ICEcoder["password"] == "") && !strpos($_SERVER[
|
|||||||
}
|
}
|
||||||
// Disable the enableRegistration config setting if the user had that option chosen
|
// Disable the enableRegistration config setting if the user had that option chosen
|
||||||
if (isset($_POST['disableFurtherRegistration'])) {
|
if (isset($_POST['disableFurtherRegistration'])) {
|
||||||
$updatedConfigSettingsFile = file_get_contents(dirname(__FILE__)."/".$configSettings);
|
$updatedConfigSettingsFile = getData(dirname(__FILE__)."/".$configSettings);
|
||||||
if ($fUConfigSettings = fopen(dirname(__FILE__)."/".$configSettings, 'w')) {
|
if ($fUConfigSettings = fopen(dirname(__FILE__)."/".$configSettings, 'w')) {
|
||||||
$updatedConfigSettingsFile = str_replace('"enableRegistration" => true','"enableRegistration" => false',$updatedConfigSettingsFile);
|
$updatedConfigSettingsFile = str_replace('"enableRegistration" => true','"enableRegistration" => false',$updatedConfigSettingsFile);
|
||||||
fwrite($fUConfigSettings, $updatedConfigSettingsFile);
|
fwrite($fUConfigSettings, $updatedConfigSettingsFile);
|
||||||
|
|||||||
@@ -20,10 +20,10 @@ function startUpdate() {
|
|||||||
echo 'Checking we can entirely move old ICEcoder version...<br>';
|
echo 'Checking we can entirely move old ICEcoder version...<br>';
|
||||||
foreach ($iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),RecursiveIteratorIterator::SELF_FIRST) as $item) {
|
foreach ($iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),RecursiveIteratorIterator::SELF_FIRST) as $item) {
|
||||||
if (strpos($source.DIRECTORY_SEPARATOR.$iterator->getSubPathName(),"oldVersion")==false) {
|
if (strpos($source.DIRECTORY_SEPARATOR.$iterator->getSubPathName(),"oldVersion")==false) {
|
||||||
// Don't move plugins or .git away
|
// Don't move backups, plugins or .git away
|
||||||
$testPath = $source.DIRECTORY_SEPARATOR.$iterator->getSubPathName();
|
$testPath = $source.DIRECTORY_SEPARATOR.$iterator->getSubPathName();
|
||||||
$testPath = str_replace("\\","/",$testPath);
|
$testPath = str_replace("\\","/",$testPath);
|
||||||
if (strpos($testPath,"/plugins/")==false && strpos($testPath,"/.git/")==false) {
|
if (strpos($testPath,"/backups/")==false && strpos($testPath,"/plugins/")==false && strpos($testPath,"/.git/")==false) {
|
||||||
if (!is_writeable($item)) {
|
if (!is_writeable($item)) {
|
||||||
array_push($cantMoveArray,substr($item,count($source)+2));
|
array_push($cantMoveArray,substr($item,count($source)+2));
|
||||||
}
|
}
|
||||||
@@ -64,10 +64,10 @@ function copyOldVersion() {
|
|||||||
echo 'Moving current ICEcoder files...<br>';
|
echo 'Moving current ICEcoder files...<br>';
|
||||||
foreach ($iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),RecursiveIteratorIterator::SELF_FIRST) as $item) {
|
foreach ($iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source, RecursiveDirectoryIterator::SKIP_DOTS),RecursiveIteratorIterator::SELF_FIRST) as $item) {
|
||||||
if (strpos($source.DIRECTORY_SEPARATOR.$iterator->getSubPathName(),"oldVersion")==false) {
|
if (strpos($source.DIRECTORY_SEPARATOR.$iterator->getSubPathName(),"oldVersion")==false) {
|
||||||
// Don't move plugins or .git away
|
// Don't move backups, plugins or .git away
|
||||||
$testPath = $source.DIRECTORY_SEPARATOR.$iterator->getSubPathName();
|
$testPath = $source.DIRECTORY_SEPARATOR.$iterator->getSubPathName();
|
||||||
$testPath = str_replace("\\","/",$testPath);
|
$testPath = str_replace("\\","/",$testPath);
|
||||||
if (strpos($testPath,"/plugins/")==false && strpos($testPath,"/.git/")==false) {
|
if (strpos($testPath,"/backups/")==false && strpos($testPath,"/plugins/")==false && strpos($testPath,"/.git/")==false) {
|
||||||
if ($item->isDir()) {
|
if ($item->isDir()) {
|
||||||
mkdir($dest.DIRECTORY_SEPARATOR.$iterator->getSubPathName(), 0755);
|
mkdir($dest.DIRECTORY_SEPARATOR.$iterator->getSubPathName(), 0755);
|
||||||
} else {
|
} else {
|
||||||
@@ -78,19 +78,7 @@ function copyOldVersion() {
|
|||||||
}
|
}
|
||||||
$icv_url = "https://icecoder.net/latest-version.txt";
|
$icv_url = "https://icecoder.net/latest-version.txt";
|
||||||
echo 'Detecting current version of ICEcoder...<br>';
|
echo 'Detecting current version of ICEcoder...<br>';
|
||||||
if (ini_get('allow_url_fopen')) {
|
$icvInfo = getData($icv_url,'curl','Sorry, couldn\'t figure out latest version.');
|
||||||
$icvInfo = @file_get_contents($icv_url,false,$context);
|
|
||||||
if (!$icvInfo) {
|
|
||||||
$icvInfo = file_get_contents(str_replace("https:","http:",$icv_url), false, $context);
|
|
||||||
}
|
|
||||||
} elseif (function_exists('curl_init')) {
|
|
||||||
$ch = curl_init($icv_url);
|
|
||||||
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
||||||
$icvInfo = curl_exec($ch);
|
|
||||||
} else {
|
|
||||||
die('Sorry, couldn\'t figure out latest version.');
|
|
||||||
}
|
|
||||||
echo 'Latest version of ICEcoder is '.$icvInfo.'<br>';
|
echo 'Latest version of ICEcoder is '.$icvInfo.'<br>';
|
||||||
openZipNew($icvInfo);
|
openZipNew($icvInfo);
|
||||||
}
|
}
|
||||||
@@ -104,18 +92,7 @@ function openZipNew($icvInfo) {
|
|||||||
|
|
||||||
$remoteFile = 'https://icecoder.net/ICEcoder-v'.(str_replace(" beta", "-beta",$icvInfo)).'.zip';
|
$remoteFile = 'https://icecoder.net/ICEcoder-v'.(str_replace(" beta", "-beta",$icvInfo)).'.zip';
|
||||||
$file = "../tmp/new-version.zip";
|
$file = "../tmp/new-version.zip";
|
||||||
if (ini_get('allow_url_fopen')) {
|
$fileData = getData($remoteFile,'curl','Sorry, couldn\'t get latest version zip file.');
|
||||||
$fileData = @file_get_contents($remoteFile,false,$context);
|
|
||||||
if (!$fileData) {
|
|
||||||
$fileData = file_get_contents(str_replace("https:","http:",$remoteFile), false, $context);
|
|
||||||
}
|
|
||||||
} elseif (function_exists('curl_init')) {
|
|
||||||
$client = curl_init($remoteFile);
|
|
||||||
curl_setopt($client, CURLOPT_RETURNTRANSFER, 1); //fixed this line
|
|
||||||
$fileData = curl_exec($client);
|
|
||||||
} else {
|
|
||||||
die('Sorry, couldn\'t get latest version zip file.');
|
|
||||||
}
|
|
||||||
echo 'Storing zip file...<br>';
|
echo 'Storing zip file...<br>';
|
||||||
file_put_contents($file, $fileData);
|
file_put_contents($file, $fileData);
|
||||||
|
|
||||||
@@ -156,9 +133,9 @@ function transposeSettings($oldFile,$newFile,$saveFile) {
|
|||||||
|
|
||||||
echo '- Getting old and new settings...<br>';
|
echo '- Getting old and new settings...<br>';
|
||||||
// Get old and new settings and start a new $contents
|
// Get old and new settings and start a new $contents
|
||||||
$oldSettingsContent = file_get_contents($oldFile,false,$context);
|
$oldSettingsContent = getData($oldFile);
|
||||||
$oldSettingsArray = explode("\n",$oldSettingsContent);
|
$oldSettingsArray = explode("\n",$oldSettingsContent);
|
||||||
$newSettingsContent = file_get_contents($newFile,false,$context);
|
$newSettingsContent = getData($newFile);
|
||||||
$newSettingsArray = explode("\n",$newSettingsContent);
|
$newSettingsArray = explode("\n",$newSettingsContent);
|
||||||
$contents = "";
|
$contents = "";
|
||||||
|
|
||||||
|
|||||||
@@ -30,31 +30,7 @@ top.ICEcoder.switchMode = function(mode) {
|
|||||||
cMdiff.setOption("mode",mode);
|
cMdiff.setOption("mode",mode);
|
||||||
}
|
}
|
||||||
} else if (cM && fileName) {
|
} else if (cM && fileName) {
|
||||||
fileExt = fileName.split(".");
|
<?php include(dirname(__FILE__)."/../lib/language-modes-partial.js");?>
|
||||||
fileExt = fileExt[fileExt.length-1];
|
|
||||||
var mode =
|
|
||||||
fileExt == "js" || fileExt == "json" ? "text/javascript"
|
|
||||||
: fileExt == "coffee" ? "text/x-coffeescript"
|
|
||||||
: fileExt == "rb" ? "text/x-ruby"
|
|
||||||
: fileExt == "py" ? "text/x-python"
|
|
||||||
: fileExt == "css" ? "text/css"
|
|
||||||
: fileExt == "less" ? "text/x-less"
|
|
||||||
: fileExt == "md" ? "text/x-markdown"
|
|
||||||
: fileExt == "xml" ? "application/xml"
|
|
||||||
: fileExt == "sql" ? "text/x-mysql" // also text/x-sql, text/x-mariadb, text/x-cassandra or text/x-plsql
|
|
||||||
: fileExt == "erl" ? "text/x-erlang"
|
|
||||||
: fileExt == "yaml" ? "text/x-yaml"
|
|
||||||
: fileExt == "java" ? "text/x-java"
|
|
||||||
: fileExt == "jl" ? "text/x-julia"
|
|
||||||
: fileExt == "c" ? "text/x-csrc"
|
|
||||||
: fileExt == "cpp" ? "text/x-c++src"
|
|
||||||
: fileExt == "ino" ? "text/x-c++src"
|
|
||||||
: fileExt == "cs" ? "text/x-csharp"
|
|
||||||
: fileExt == "go" ? "text/x-go"
|
|
||||||
: fileExt == "lua" ? "text/x-lua"
|
|
||||||
: fileExt == "pl" ? "text/x-perl"
|
|
||||||
: fileExt == "scss" ? "text/x-sass"
|
|
||||||
: "application/x-httpd-php";
|
|
||||||
|
|
||||||
if (mode != cM.getOption("mode")) {
|
if (mode != cM.getOption("mode")) {
|
||||||
cM.setOption("mode",mode);
|
cM.setOption("mode",mode);
|
||||||
@@ -180,8 +156,8 @@ top.ICEcoder.caretLocationType = function() {
|
|||||||
caretChunk = thisCM.getValue().substr(0,top.ICEcoder.caretPos+1);
|
caretChunk = thisCM.getValue().substr(0,top.ICEcoder.caretPos+1);
|
||||||
|
|
||||||
if(caretChunk.lastIndexOf("<script")>caretChunk.lastIndexOf("/script>")&&caretLocType=="Unknown") {caretLocType = "JavaScript";}
|
if(caretChunk.lastIndexOf("<script")>caretChunk.lastIndexOf("/script>")&&caretLocType=="Unknown") {caretLocType = "JavaScript";}
|
||||||
else if (caretChunk.lastIndexOf("<?")>caretChunk.lastIndexOf("?>")&&caretLocType=="Unknown") {caretLocType = "PHP";}
|
else if (caretChunk.lastIndexOf("<\?")>caretChunk.lastIndexOf("?\>")&&caretLocType=="Unknown") {caretLocType = "PHP";}
|
||||||
else if (caretChunk.lastIndexOf("<%")>caretChunk.lastIndexOf("%>")&&caretLocType=="Unknown") {caretLocType = "Ruby";}
|
else if (caretChunk.lastIndexOf("<\%")>caretChunk.lastIndexOf("%\>")&&caretLocType=="Unknown") {caretLocType = "Ruby";}
|
||||||
else if (caretChunk.lastIndexOf("<style")>caretChunk.lastIndexOf("/style>")&&caretLocType=="Unknown") {caretLocType = "CSS";}
|
else if (caretChunk.lastIndexOf("<style")>caretChunk.lastIndexOf("/style>")&&caretLocType=="Unknown") {caretLocType = "CSS";}
|
||||||
else if (caretChunk.lastIndexOf("<")>caretChunk.lastIndexOf(">")&&caretLocType=="Unknown") {caretLocType = "HTML";}
|
else if (caretChunk.lastIndexOf("<")>caretChunk.lastIndexOf(">")&&caretLocType=="Unknown") {caretLocType = "HTML";}
|
||||||
else if (caretLocType=="Unknown") {caretLocType = "Content";};
|
else if (caretLocType=="Unknown") {caretLocType = "Content";};
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ test = {
|
|||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
ICEcoder.closeTab(1,false,true);
|
ICEcoder.closeTab(1,false,true);
|
||||||
console.log('TEST COMPLETE!');
|
console.log('TEST COMPLETE!');
|
||||||
alert('Test Complete!\n\nRan '+s+' of '+total+' tests OK.\nSee console for more details.');
|
top.ICEcoder.message('Test Complete!\n\nRan '+s+' of '+total+' tests OK.\nSee console for more details.');
|
||||||
},200);
|
},200);
|
||||||
} else {
|
} else {
|
||||||
testResult("- FAIL",title);
|
testResult("- FAIL",title);
|
||||||
@@ -276,7 +276,7 @@ function displayResults(successful) {
|
|||||||
|
|
||||||
function testStopped() {
|
function testStopped() {
|
||||||
unitTestResults.innerHTML += " - Test stopped";
|
unitTestResults.innerHTML += " - Test stopped";
|
||||||
alert("Test stopped, see console for details.");
|
top.ICEcoder.message("Test stopped, see console for details.");
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user