/lenasys/trunk

To get this branch, use:
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>
9.4.1 by elof.bigestans at gmail
* Re-structured according to new folder structure - moved media out, moved things in /Codeviewer/Codeviewer to /Codeviewer
4
		<link rel="stylesheet" type="text/css" href="codeviewer.css">
5
		<script type="text/javascript" src="codeviewer.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
9.4.1 by elof.bigestans at gmail
* Re-structured according to new folder structure - moved media out, moved things in /Codeviewer/Codeviewer to /Codeviewer
9
	include("codeviewer_functions.php");
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
10
	
9.4.1 by elof.bigestans at gmail
* Re-structured according to new folder structure - moved media out, moved things in /Codeviewer/Codeviewer to /Codeviewer
11
	menulayout("innan.php","efter.php","example_code.txt","Example 1: Execution of AJAX API","example_code.txt", "example_code_description.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(
9.4.1 by elof.bigestans at gmail
* Re-structured according to new folder structure - moved media out, moved things in /Codeviewer/Codeviewer to /Codeviewer
14
		array(6,9,"Interesting row array"),
15
		array(11,14,"Keywords")
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(
9.4.1 by elof.bigestans at gmail
* Re-structured according to new folder structure - moved media out, moved things in /Codeviewer/Codeviewer to /Codeviewer
24
		array("array", "highlightnormal"),
25
		array("showfile", "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
9.4.1 by elof.bigestans at gmail
* Re-structured according to new folder structure - moved media out, moved things in /Codeviewer/Codeviewer to /Codeviewer
28
	showfile($interestingrows,$keywords,$highlight, "example_code.txt");
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
29
	menulayoutend();
30
?>
31
</body>
32
</html>