/lenasys/0.1

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/0.1
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
	
11
	menulayout("innan.php","efter.php","test.txt","Example 1: Execution of AJAX API","Ponyo.txt");
12
	
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
13
	$interestingrows = array(
14
		array(16,21,"Ajax function"),
15
		array(23,37,"Ajax return function")
16
	);
17
18
	$keywords = array(
19
		"showCustomer",
20
		"ResultCustomer"
21
	);
22
23
	$highlight = array(
24
		array(
25
			"{",
26
			"highlightnormal"
27
		),
28
		array(
29
			"}",
30
			"highlightnormal"
31
		),
32
		array(
33
			"function",
34
			"highlightspecial"
35
		)
36
	);
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
37
38
	showfile($interestingrows,$keywords,$highlight);
39
	menulayoutend();
40
?>
41
</body>
42
</html>