/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
1
	<div class="container">
2
		<div class="row">
3
			<div class="span4" id="doc">
58.1.2 by a11patfr at his
First steps to working codeviewer, can now show all files.
4
				<?php 
5
					foreach($editors as $editor) {
6
						if($editor[0] == 1) {
7
							echo $editor[1];
8
						}
9
					}
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
10
				?>
58.1.2 by a11patfr at his
First steps to working codeviewer, can now show all files.
11
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
12
			</div>
13
			<div class="span8">
14
				<?php 
58.1.2 by a11patfr at his
First steps to working codeviewer, can now show all files.
15
					foreach($editors as $editor) {
16
						if($editor[0] == 2) {
17
							echo $editor[1];
18
						}
19
					}
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
20
				?>
21
			</div>
22
		</div>
23
	</div>
24
25
</body>
26
58.1.1 by a11patfr at his
Fixed the dragand drop thingamabob.
27
</html>