/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>
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
7
<?php
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
8
	include("showcode.php");
9
	
4.9.8 by elof.bigestans at gmail
Minor changed to showsource.php
10
	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
11
	
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
12
	$interestingrows = array(
4.9.8 by elof.bigestans at gmail
Minor changed to showsource.php
13
		array(1,5,"Ajax function"),
14
		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
15
	);
16
17
	$keywords = array(
18
		"showCustomer",
19
		"ResultCustomer"
20
	);
21
22
	$highlight = array(
4.9.5 by elof.bigestans at gmail
Added comments to functions in showcode.php
23
		array("{", "highlightnormal"),
24
		array("}", "highlightnormal"),
25
		array("function", "highlightspecial")
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
26
	);
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
27
4.9.5 by elof.bigestans at gmail
Added comments to functions in showcode.php
28
	showfile($interestingrows,$keywords,$highlight, "test.txt");
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
29
	menulayoutend();
30
?>
31
</html>