mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-02 23:03:59 +01:00
onKeyEvent is no longer a param function, now something set in an 'on' event function setLine now replaceRange doFold is the new fold function, "brace" or "xml" string passed to it, not an object now codeFoldTag and codeFoldBrace vars no longer needed now
310 lines
14 KiB
PHP
310 lines
14 KiB
PHP
<?php
|
|
include("lib/headers.php");
|
|
include("lib/settings.php");
|
|
?>
|
|
<!DOCTYPE html>
|
|
|
|
<html style="margin: 0" onMouseDown="top.ICEcoder.mouseDown=true" onMouseUp="top.ICEcoder.mouseDown=false; if (!top.ICEcoder.overCloseLink) {top.ICEcoder.tabDragEnd()}" onMouseMove="if(top.ICEcoder) {top.ICEcoder.getMouseXY(event,'editor');top.ICEcoder.canResizeFilesW()}" onDrop="if(top.ICEcoder) {top.ICEcoder.getMouseXY(event,'editor')}">
|
|
<head>
|
|
<title>ICEcoder v <?php echo $ICEcoder["versionNo"];?> editor</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="robots" content="noindex, nofollow">
|
|
<link rel="stylesheet" href="<?php echo $ICEcoder["codeMirrorDir"]; ?>/lib/codemirror.css">
|
|
<link rel="stylesheet" href="<?php echo $ICEcoder["codeMirrorDir"]; ?>/addon/hint/show-hint.css">
|
|
<link rel="stylesheet" href="<?php echo $ICEcoder["codeMirrorDir"]; ?>/addon/lint/lint.css">
|
|
<!--
|
|
codemirror-compressed.js
|
|
incls: codemirror
|
|
modes: clike, coffeescript, css, erlang, go, htmlmixed, javascript, julia, lua, markdown, perl, php, python, ruby, rust, sass, sql & xml, yaml
|
|
addon: brace-fold, closetag, css-hint, html-hint, javascript-hint, javascript-lint, lint, match-highlighter, searchcursor, show-hint, sql-hint, trailingspace, xml-fold, xml-hint
|
|
//-->
|
|
<script src="<?php echo $ICEcoder["codeMirrorDir"]; ?>/lib/codemirror-compressed.js"></script>
|
|
<script src="jshint/jshint-2.1.4.min.js"></script>
|
|
<script src="lib/mmd.js"></script>
|
|
<script src="lib/foldcode.js"></script>
|
|
<?php
|
|
if (file_exists(dirname(__FILE__)."/plugins/emmet/emmet.min.js")) {
|
|
echo '<script src="plugins/emmet/emmet.min.js"></script>';
|
|
};?>
|
|
<link rel="stylesheet" href="<?php
|
|
if ($ICEcoder["theme"]=="default") {echo 'lib/editor.css';} else {echo $ICEcoder["codeMirrorDir"].'/theme/'.$ICEcoder["theme"].'.css';};
|
|
$activeLineBG = array_search($ICEcoder["theme"],array("3024-day","base16-light","eclipse","elegant","neat","solarized","xq-light")) !== false ? "#ccc" : "#000";
|
|
?>">
|
|
|
|
<style type="text/css">
|
|
/* Make sure this next one remains the 1st item, updated with JS */
|
|
.CodeMirror {position: absolute; top: 0; width: 100%; font-size: <?php echo $ICEcoder["fontSize"];?>; z-index: 1}
|
|
.CodeMirror-scroll {} /* was: height: auto; overflow: visible */
|
|
/* Make sure this next one remains the 3rd item, updated with JS */
|
|
.cm-s-activeLine {background: <?php echo $activeLineBG;?> !important}
|
|
.cm-matchhighlight, .CodeMirror-focused .cm-matchhighlight {color: #fff !important; background: #06c !important}
|
|
/* Make sure this next one remains the 5th 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-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;
|
|
}
|
|
.folds {display: inline-block; width: 13px}
|
|
.fold {position: absolute; display: inline-block; width: 13px; height: 13px; font-size: 14px; text-align: center; cursor: pointer}
|
|
.foldOn {background: #800; color: #ddd}
|
|
.foldOff {background: rgba(255,255,255,0.04); color: #666}
|
|
.demoArrow {position: absolute; display: inline-block; width: 99px; height: 50px; top: 0; right: 30px; background: url('images/big-arrow.gif') 0 -10px no-repeat; text-align: center; font-family: arial; font-size: 10px; padding-top: 60px}
|
|
h2 {color: rgba(0,198,255,0.7)}
|
|
.heading {color:#888}
|
|
</style>
|
|
<link rel="stylesheet" href="lib/file-types.css">
|
|
<link rel="stylesheet" href="lib/file-type-icons.css">
|
|
</head>
|
|
|
|
<body style="color: #fff; margin: 0" onKeyDown="return top.ICEcoder.interceptKeys('content', event);" onKeyUp="top.ICEcoder.resetKeys(event);" onBlur="parent.ICEcoder.resetKeys(event);">
|
|
|
|
<?php if ($ICEcoder['demoMode']) {?>
|
|
<div class="demoArrow"><b>Click icons<br>for help &<br>usage info</b></div>
|
|
<?php ;}; ?>
|
|
|
|
<div style="display: none; margin: 32px 43px 0 43px; padding: 10px; width: 500px; font-family: arial; font-size: 10px; color: #ddd; background: #333" id="dataMessage"></div>
|
|
|
|
<div style="margin: 20px 43px 32px 43px; font-family: arial; font-size: 10px; color: #ddd">
|
|
<div style="float: left; width: 300px; margin-right: 50px">
|
|
<h2>server</h2>
|
|
<span class="heading">Server name, OS & IP:</span><br>
|
|
<?php echo $_SERVER['SERVER_NAME']."   ".$_SERVER['SERVER_SOFTWARE']."   ".(isset($_SERVER['SERVER_ADDR'])?$_SERVER['SERVER_ADDR']:"Unknown");?><br><br>
|
|
<span class="heading">Root:</span><br>
|
|
<?php echo $docRoot;?><br><br>
|
|
<span class="heading">ICEcoder root:</span><br>
|
|
<?php echo $docRoot.$iceRoot;?><br><br>
|
|
<span class="heading">PHP version:</span><br>
|
|
<?php echo phpversion();?><br><br>
|
|
<span class="heading">Date & time:</span><br>
|
|
<span id="serverDT"></span><br><br>
|
|
<h2>your device</h2>
|
|
<span class="heading">Browser:</span><br>
|
|
<?php echo xssClean($_SERVER['HTTP_USER_AGENT'],"html");?><br><br>
|
|
<span class="heading">Your IP:</span><br>
|
|
<?php echo $_SERVER['REMOTE_ADDR'];?><br><br>
|
|
</div>
|
|
|
|
<div style="float: left">
|
|
<h2>files</h2>
|
|
<span class="heading">Last 10 files opened:</span><br>
|
|
<ul class="fileManager" style="margin-left: 0; line-height: 20px">
|
|
<?php
|
|
$last10FilesArray = explode(",",$ICEcoder["last10Files"]);
|
|
for ($i=0;$i<count($last10FilesArray);$i++) {
|
|
if ($ICEcoder["last10Files"]=="") {
|
|
echo '<div style="display: inline-block; margin-left: -39px; margin-top: -4px">[none]</div><br><br>';
|
|
} else {
|
|
$fileFolderName = str_replace("\\","/",$last10FilesArray[$i]);
|
|
// Get extension (prefix 'ext-' to prevent invalid classes from extensions that begin with numbers)
|
|
$ext = "ext-".pathinfo($docRoot.$iceRoot.$fileFolderName, PATHINFO_EXTENSION);
|
|
echo '<li class="pft-file '.strtolower($ext).'" style="margin-left: -21px">';
|
|
echo '<a style="cursor:pointer" onClick="top.ICEcoder.openFile(\''.str_replace("|","/",$last10FilesArray[$i]).'\')">';
|
|
echo str_replace($docRoot,"",str_replace("|","/",$last10FilesArray[$i]));
|
|
echo '</a></li>'.PHP_EOL;
|
|
if ($i==count($last10FilesArray)-1) {echo '<br>'.PHP_EOL;};
|
|
}
|
|
}
|
|
;?>
|
|
</ul>
|
|
</div>
|
|
|
|
<div style="clear: both"></div>
|
|
<script>
|
|
var nDT=<?php echo time()*1000;?>;
|
|
setInterval(function(){
|
|
var s=(new Date(nDT+=1e3)+'').split(' '),
|
|
d=s[2]*1,
|
|
t=s[4].split(':'),
|
|
p=t[0]>11?'pm':'am',
|
|
e=d%20==1|d>30?'st':d%20==2?'nd':d%20==3?'rd':'th';
|
|
t[0]=--t[0]%12+1;
|
|
if (document.getElementById('serverDT')) {
|
|
document.getElementById('serverDT').innerHTML=[s[0],d+e,s[1],s[3],t.join(':')+p].join(' ');
|
|
}
|
|
},1000);
|
|
</script>
|
|
<?php if(is_dir('test') && !$ICEcoder['demoMode']) {?>
|
|
<div style="float: left; margin-right: 50px">
|
|
<h2>test suite</h2>
|
|
<span class="heading">Run unit tests:</span><br>
|
|
<a nohref onclick="top.ICEcoder.filesFrame.contentWindow.frames['testControl'].location.href = 'test'" style="color: #fff; cursor: pointer">Run unit tests</a><div id="unitTestResults"></div>
|
|
</div>
|
|
<?php
|
|
;};
|
|
?>
|
|
<div style="float: left">
|
|
<h2>dev mode <?php echo $ICEcoder['devMode'] ? "on" : "off";?></h2>
|
|
<span class="heading">Status:</span><br>
|
|
Using <?php echo $ICEcoder['devMode'] ? "ice-coder.js" : "ice-coder.min.js";?> <a title="You can switch dev mode on/off
|
|
in lib/config__settings.php" style="cursor: pointer">[?]</a>
|
|
</div>
|
|
<div style="clear: both"></div>
|
|
</div>
|
|
|
|
<script>
|
|
CodeMirror.keyMap.ICEcoder = {
|
|
// "Tab": "defaultTab", **Now used by Emmet**
|
|
"Shift-Tab": "indentLess",
|
|
"Ctrl-Space": "autocomplete",
|
|
"Ctrl-Up" : false,
|
|
"Ctrl-Down" : false,
|
|
fallthrough: ["default"]
|
|
};
|
|
|
|
function createNewCMInstance(num) {
|
|
var fileName = top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1];
|
|
|
|
window['cM'+num] = CodeMirror(document.body, {
|
|
mode: "application/x-httpd-php",
|
|
lineNumbers: true,
|
|
gutters: ["folds","CodeMirror-lint-markers","CodeMirror-linenumbers"],
|
|
lineWrapping: top.ICEcoder.lineWrapping,
|
|
indentWithTabs: top.ICEcoder.indentWithTabs,
|
|
indentUnit: top.ICEcoder.indentSize,
|
|
tabSize: top.ICEcoder.indentSize,
|
|
electricChars: false,
|
|
autoCloseTags: true,
|
|
highlightSelectionMatches: true,
|
|
showTrailingSpace: true,
|
|
lintWith: <?php if ($ICEcoder['codeAssist']) {echo 'fileName && fileName.indexOf(".js")>-1 ? CodeMirror.javascriptValidator : ';};?>false,
|
|
keyMap: "ICEcoder"
|
|
});
|
|
|
|
window['cM'+num].on("keyup", function(thisCM) {
|
|
if ("undefined" != typeof top.doFind) {
|
|
clearInterval(top.doFind);
|
|
}
|
|
top.doFind = setTimeout(function() {
|
|
top.ICEcoder.findReplace(top.document.getElementById('find').value,true,false);
|
|
},500);
|
|
top.ICEcoder.getCaretPosition();
|
|
top.ICEcoder.updateCharDisplay();
|
|
top.ICEcoder.updateByteDisplay();
|
|
tok = thisCM.getTokenAt(thisCM.getCursor());
|
|
}
|
|
);
|
|
|
|
window['cM'+num].on("cursorActivity", function(thisCM) {
|
|
top.ICEcoder.getCaretPosition();
|
|
top.ICEcoder.updateCharDisplay();
|
|
top.ICEcoder.updateByteDisplay();
|
|
window['cM'+num].removeLineClass(top.ICEcoder['cMActiveLine'+num], "background");
|
|
if(window['cM'+num].getCursor('start').line == window['cM'+num].getCursor().line) {
|
|
top.ICEcoder['cMActiveLine'+num] = window['cM'+num].addLineClass(window['cM'+num].getCursor().line, "background","cm-s-activeLine");
|
|
}
|
|
if (top.ICEcoder.caretLocType=="CSS") {
|
|
top.ICEcoder.cssColorPreview();
|
|
}
|
|
if (top.ICEcoder.prevLine != window['cM'+num].getCursor().line &&
|
|
window['cM'+num].getLine(top.ICEcoder.prevLine) &&
|
|
window['cM'+num].getLine(top.ICEcoder.prevLine).length > 0 &&
|
|
window['cM'+num].getLine(top.ICEcoder.prevLine).replace(/\s/g, '').length == 0) {
|
|
window['cM'+num].replaceRange("",{line: top.ICEcoder.prevLine, ch: 0},{line: top.ICEcoder.prevLine, ch: 1000000});
|
|
}
|
|
}
|
|
);
|
|
|
|
window['cM'+num].on("beforeSelectionChange", function(thisCM, changeObj) {
|
|
top.ICEcoder.prevLine = window['cM'+num].getCursor().line;
|
|
}
|
|
);
|
|
|
|
window['cM'+num].on("change", function(thisCM, changeObj) {
|
|
// If we're not loading the file, it's a change, so update tab
|
|
if (!top.ICEcoder.loadingFile) {
|
|
top.ICEcoder.redoTabHighlight(top.ICEcoder.selectedTab);
|
|
}
|
|
top.ICEcoder.getCaretPosition();
|
|
top.ICEcoder.dontUpdateNest = false;
|
|
top.ICEcoder.updateCharDisplay();
|
|
top.ICEcoder.updateByteDisplay();
|
|
top.ICEcoder.updateNestingIndicator();
|
|
if (top.ICEcoder.findMode) {
|
|
top.ICEcoder.results.splice(top.ICEcoder.findResult,1);
|
|
top.document.getElementById('results').innerHTML = top.ICEcoder.results.length + " results";
|
|
top.ICEcoder.findMode = false;
|
|
}
|
|
var filepath = top.ICEcoder.openFiles[top.ICEcoder.selectedTab-1];
|
|
if (filepath) {
|
|
var filename = filepath.substr(filepath.lastIndexOf("/")+1);
|
|
var fileExt = filename.substr(filename.lastIndexOf(".")+1);
|
|
for (var i=changeObj.from.line; i<changeObj.from.line+changeObj.text.length; i++) {
|
|
top.ICEcoder.content.contentWindow.CodeMirror.doFold(window['cM'+num].getLine(i).indexOf("{")>-1 ? "brace" : "xml" ,null ,"+" ,"-", true, thisCM, i);
|
|
}
|
|
if (changeObj.text[0] == "}" || changeObj.removed && changeObj.removed[0] == "}") {
|
|
cursor = window['cM'+num].getSearchCursor("{",window['cM'+num].getCursor(),false);
|
|
cursor.findPrevious();
|
|
for (var i=cursor.from().line; i<window['cM'+num].getCursor().line; i++) {
|
|
top.ICEcoder.content.contentWindow.CodeMirror.doFold(window['cM'+num].getLine(i).indexOf("{")>-1 ? "brace" : "xml" ,null ,"+" ,"-", true, thisCM, i);
|
|
}
|
|
}
|
|
}
|
|
// Update HTML edited files live
|
|
if (filepath && top.ICEcoder.previewWindow.location) {
|
|
if (top.ICEcoder.previewWindow.location.pathname==filepath) {
|
|
if (["htm","html","txt"].indexOf(fileExt) > -1) {
|
|
top.ICEcoder.previewWindow.document.documentElement.innerHTML = window['cM'+num].getValue();
|
|
} else if (["md"].indexOf(fileExt) > -1) {
|
|
top.ICEcoder.previewWindow.document.documentElement.innerHTML = mmd(window['cM'+num].getValue());
|
|
}
|
|
} else if (["css"].indexOf(fileExt) > -1) {
|
|
if (top.ICEcoder.previewWindow.document.documentElement.innerHTML.indexOf(filename) > -1) {
|
|
var css = window['cM'+num].getValue();
|
|
var style = document.createElement('style');
|
|
style.type = 'text/css';
|
|
style.id = "ICEcoder"+filepath.replace(/\//g,"_");
|
|
if (style.styleSheet){
|
|
style.styleSheet.cssText = css;
|
|
} else {
|
|
style.appendChild(document.createTextNode(css));
|
|
}
|
|
if (top.ICEcoder.previewWindow.document.getElementById(style.id)) {
|
|
top.ICEcoder.previewWindow.document.documentElement.removeChild(top.ICEcoder.previewWindow.document.getElementById(style.id));
|
|
}
|
|
top.ICEcoder.previewWindow.document.documentElement.appendChild(style);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
window['cM'+num].on("scroll", function(thisCM) {
|
|
top.ICEcoder.mouseDown=false;
|
|
}
|
|
);
|
|
|
|
window['cM'+num].on("gutterClick", function(thisCM, line, gutter, clickEvent) {
|
|
CodeMirror.doFold(window['cM'+num].getLine(line).indexOf("{")>-1 ? "brace" : "xml",null,"+","-",false)(window['cM'+num], line);
|
|
}
|
|
);
|
|
|
|
window['cM'+num].on("inputRead", function(thisCM) {
|
|
if (top.ICEcoder.autoComplete == "keypress" && top.ICEcoder.codeAssist) {
|
|
clearTimeout(debounce);
|
|
if (!thisCM.state.completionActive) {
|
|
debounce = setTimeout(function() {
|
|
CodeMirror.commands.autocomplete(window['cM'+num]);
|
|
},200);
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
// Now create the active line for this CodeMirror object
|
|
top.ICEcoder['cMActiveLine'+num] = window['cM'+num].addLineClass(0, "background", "cm-s-activeLine");
|
|
};
|
|
|
|
var debounce;
|
|
</script>
|
|
|
|
<div style="position: absolute; display: none; width: 5px; height: 100%; top: 0; right: 0; background: rgba(255,255,255,0.1); overflow: hidden; z-index: 2" id="resultsBar"></div>
|
|
|
|
<?php include_once("processes/on-editor-load.php"); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|