bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
15.1.1
by galaxyAbstractor
Started implementation of a new codeviewer using Ace |
1 |
<?php include 'showcode.php'; ?> |
15.1.2
by galaxyAbstractor
Split css and js to external files |
2 |
<!DOCTYPE html>
|
15.1.1
by galaxyAbstractor
Started implementation of a new codeviewer using Ace |
3 |
<html> |
4 |
<head> |
|
5 |
<script src="../js/ace/ace.js" type="text/javascript" charset="utf-8"></script> |
|
6 |
<script src="../js/jquery-1.8.0.min.js" type="text/javascript" charset="utf-8"></script> |
|
15.1.2
by galaxyAbstractor
Split css and js to external files |
7 |
<script src="js/codeviewer.js" type="text/javascript" charset="utf-8"></script> |
8 |
<link rel="stylesheet" type="text/css" href="css/codeviewer.css"> |
|
15.1.1
by galaxyAbstractor
Started implementation of a new codeviewer using Ace |
9 |
|
10 |
</head> |
|
11 |
<body> |
|
12 |
<div id="header"> |
|
13 |
Test test test<br> |
|
14 |
test test hhh |
|
15 |
</div> |
|
16 |
<div class="colmask leftmenu"> |
|
17 |
<div class="colleft"> |
|
18 |
<div class="col1"> |
|
19 |
<?php showfile("showcode.php", "php");?> |
|
20 |
<?php showfile("index.php", "html");?> |
|
21 |
</div> |
|
22 |
<div class="col2"> |
|
23 |
||
24 |
<div id="doc"> |
|
25 |
<?php
|
|
15.1.2
by galaxyAbstractor
Split css and js to external files |
26 |
include("DomExample1.php"); |
15.1.1
by galaxyAbstractor
Started implementation of a new codeviewer using Ace |
27 |
?>
|
28 |
</div> |
|
29 |
</div> |
|
30 |
||
31 |
</div> |
|
32 |
</div> |
|
33 |
||
34 |
</body> |
|
35 |
||
15.1.2
by galaxyAbstractor
Split css and js to external files |
36 |
|
37 |
</html> |