-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpide.php
More file actions
53 lines (48 loc) · 2.68 KB
/
Copy pathphpide.php
File metadata and controls
53 lines (48 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Web-IDE with Angular & Code Mirror</title>
<link href="./lib/bootstrap-3.3.6-dist/css/bootstrap.css" rel="stylesheet">
<link href="./lib/CodeMirror-master/lib/codemirror.css" rel="stylesheet">
<link href="./lib/CodeMirror-master/addon/hint/show-hint.css" rel="stylesheet">
<link href="./lib/Phphiles-master/target/phphile-1.1.0.css" rel="stylesheet">
<link href="./css/styles.css" rel="stylesheet">
</head>
<body ng-app="phpide" ng-controller="mainController">
<div class="container-fluid">
<div class="row">
<div id="phpide-title" class="col-xs-2"><h2>PhpIDE</h2></div>
<div id="phpide-buttonbar" class="col-xs-10" ng-include="'./partials/buttons.html'"/></div>
</div>
<div class="row">
<div id="phpide-fileTree" class="col-xs-2" ng-include="'./partials/filesTree.html'"></div>
<div id="phpide-editor" class="col-xs-10" ng-include="'./partials/editor.html'"/></div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script src="./lib/angular-PubSub-master/src/angular-pubsub.js"></script>
<script src="./lib/bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<script src="./lib/ui-bootstrap-0.14.3.min/ui-bootstrap-0.14.3.min.js"></script>
<script src="./lib/Phphiles-master/target/phphile-1.1.0.js"></script>
<script src="./app/mainController.js"></script>
<script src="./app/controllers/filesTreeController.js"></script>
<script src="./app/controllers/editorController.js"></script>
<script src="./app/controllers/buttonsController.js"></script>
<script src="./app/controllers/alertPromptWindowController.js"></script>
<script src="./app/controllers/selectFolderController.js"></script>
<script src="./app/controllers/generic/alertsController.js"></script>
<script src="./lib/CodeMirror-master/lib/codemirror.js"></script>
<script src="./lib/CodeMirror-master/addon/hint/show-hint.js"></script>
<script src="./lib/CodeMirror-master/addon/hint/javascript-hint.js"></script>
<script src="./lib/CodeMirror-master/mode/javascript/javascript.js"></script>
<script src="./lib/CodeMirror-master/mode/xml/xml.js"></script>
<script src="./lib/CodeMirror-master/mode/css/css.js"></script>
<script src="./lib/CodeMirror-master/mode/clike/clike.js"></script>
<script src="./lib/CodeMirror-master/mode/htmlmixed/htmlmixed.js"></script>
<script src="./lib/CodeMirror-master/mode/php/php.js"></script>
<script src="./lib/CodeMirror-master/mode/sql/sql.js"></script>
<div ng-include="'./partials/generic/alerts.html'"></div>
<div ng-include="'./partials/generic/selectFolder.html'"></div>
</body>
</html>