/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>
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>
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
7
<?php
12.1.1 by elof.bigestans at gmail
* Fixed CSS validation error in showcode.css
8
	include("codeviewerfunctions.php");
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
9
	
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
10
	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
11
	
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
12
	$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
13
		array(6,9,"Interesting row array"),
14
		array(11,14,"Keywords")
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(
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
23
		array("array", "highlightnormal"),
24
		array("showfile", "highlightspecial")
4.9.2 by elof.bigestans at gmail
Cleaned up showsource.php -- Added doctype, fixed HTML validation errors, fixed indendation
25
	);
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
26
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
27
	showfile($interestingrows,$keywords,$highlight, "example_code.txt");
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
28
	menulayoutend();
29
?>
30
</html>