/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/application/views/codeviewer/codeviewer.php

  • Committer: b11johgu
  • Date: 2013-05-14 12:30:38 UTC
  • mto: This revision was merged to the branch mainline in revision 65.
  • Revision ID: b11johgu@student.his.se-20130514123038-rthxj3f34o32gpxy
ExamplesController:
- Added expand/collapse arrows for categories/subcategories.
- Added category positioning (incomplete).

more general changes made.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<!DOCTYPE html>
2
2
<html>
 
3
<!--     
 
4
        Created by
 
5
____    __    ____  _______  ______    __    __    _______ __   __   __    __  
 
6
\   \  /  \  /   / |   ____||   _  \  |  |  |  |  /  _____/_ | /_ | |  |  |  | 
 
7
 \   \/    \/   /  |  |__   |  |_)  | |  |  |  | |  |  __  | |  | | |  |__|  | 
 
8
  \            /   |   __|  |   _  <  |  |  |  | |  | |_ | | |  | | |   __   | 
 
9
   \    /\    /    |  |____ |  |_)  | |  `--'  | |  |__| | | |  | | |  |  |  | 
 
10
    \__/  \__/     |_______||______/   \______/   \______| |_|  |_| |__|  |__| 
 
11
                                                                               
 
12
 _______  ____    ____  ______    __   __   __    __  
 
13
|       \ \   \  /   / |   _  \  /_ | /_ | |  |  |  | 
 
14
|  .--.  | \   \/   /  |  |_)  |  | |  | | |  |__|  | 
 
15
|  |  |  |  \      /   |   ___/   | |  | | |   __   | 
 
16
|  '--'  |   \    /    |  |       | |  | | |  |  |  | 
 
17
|_______/     \__/     | _|       |_|  |_| |__|  |__| 
 
18
 
 
19
        Spring 2013
 
20
 
 
21
 -->
3
22
<head>
4
23
        <script src="<?php echo base_url();?>js/ace/ace.js" type="text/javascript" charset="utf-8"></script>
5
24
        <script src="<?php echo base_url();?>js/jquery-1.8.0.min.js" type="text/javascript" charset="utf-8"></script>
93
112
        <div class="container">
94
113
                <div class="row">
95
114
                        <div class="span4" id="doc">
96
 
                                <?php 
97
 
                                        foreach($editors as $editor) {
98
 
                                                if($editor[0] == 1) {
99
 
                                                        echo $editor[1];
100
 
                                                }
101
 
                                        }
 
115
                                <?php
 
116
                                echo $documentation;
102
117
                                ?>
103
 
 
104
118
                        </div>
105
119
                        <div class="span8">
106
120
                                <?php 
107
 
                                        foreach($editors as $editor) {
108
 
                                                if($editor[0] == 2) {
109
 
                                                        echo $editor[1];
110
 
                                                }
111
 
                                        }
 
121
                                echo $editors;
112
122
                                ?>
 
123
                                
113
124
                        </div>
114
125
                </div>
115
126
        </div>
116
127
 
117
128
</body>
118
129
 
119
 
</html>
 
130
</html>
 
 
b'\\ No newline at end of file'