/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>
11.5.1 by a11vikob
Fixed hopefully everything in Bug #1164597
7
	<?php
8
		include("codeviewerfunctions.php");
9
		
10
		menulayout("innan.php", "efter.php", "example_code.txt", "Example 1: Execution of AJAX API", "example_code.txt", "example_code_description.txt");
11
		
12
		$interestingRows = array(array(6, 9, "Interesting row array"), array(11,14,"Keywords"));
13
	
14
		$keywords = array("showCustomer", "ResultCustomer");
15
	
16
		$highlight = array(array("array", "highlightnormal"), array("showfile", "highlightspecial"));
17
	
18
		showfile($interestingRows, $keywords, $highlight, "example_code.txt");
19
		menulayoutEnd();
20
	?>
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
21
</html>