bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/trunk
|
4.9.2
by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation |
1 |
<!DOCTYPE html>
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
2 |
<html> |
3 |
<head> |
|
4 |
<link rel="stylesheet" type="text/css" href="showcode.css"> |
|
|
4.9.2
by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation |
5 |
<script type="text/javascript" src="showcode.js"></script> |
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
6 |
</head> |
7 |
<body> |
|
|
4.9.2
by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation |
8 |
<?php
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
9 |
include("showcode.php"); |
10 |
||
|
4.9.8
by elof.bigestans at gmail
Minor changed to showsource.php |
11 |
menulayout("innan.php","efter.php","test2.txt","Example 1: Execution of AJAX API","test.txt", "test2.txt"); |
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
12 |
|
|
4.9.2
by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation |
13 |
$interestingrows = array( |
|
4.9.8
by elof.bigestans at gmail
Minor changed to showsource.php |
14 |
array(1,5,"Ajax function"), |
15 |
array(7,8,"Ajax return function") |
|
|
4.9.2
by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation |
16 |
);
|
17 |
||
18 |
$keywords = array( |
|
19 |
"showCustomer", |
|
20 |
"ResultCustomer"
|
|
21 |
);
|
|
22 |
||
23 |
$highlight = array( |
|
|
4.9.5
by elof.bigestans at gmail
Added comments to functions in showcode.php |
24 |
array("{", "highlightnormal"), |
25 |
array("}", "highlightnormal"), |
|
26 |
array("function", "highlightspecial") |
|
|
4.9.2
by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation |
27 |
);
|
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
28 |
|
|
4.9.5
by elof.bigestans at gmail
Added comments to functions in showcode.php |
29 |
showfile($interestingrows,$keywords,$highlight, "test.txt"); |
|
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
30 |
menulayoutend(); |
31 |
?>
|
|
32 |
</body> |
|
33 |
</html> |