/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: galaxyAbstractor
  • Date: 2013-04-10 15:49:32 UTC
  • mto: (19.1.5 lenasys)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: galaxyabstractor@gmail.com-20130410154932-4vizlzk0ar5gykvi
* Added an simple admin panel to the codeviewer-cmssy stuff
* Redesigned a bit like the mockups - still stuff to come
* Implemented the codeviewer + admin panel again using the Framework CodeIgniter instead 

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
 
 -->
22
3
<head>
23
4
        <script src="<?php echo base_url();?>js/ace/ace.js" type="text/javascript" charset="utf-8"></script>
24
5
        <script src="<?php echo base_url();?>js/jquery-1.8.0.min.js" type="text/javascript" charset="utf-8"></script>
37
18
                                        <div class="row">
38
19
                                                <div class="separator"></div>
39
20
                                                <div class="btn-group">
40
 
                                                        <a class="btn dropdown-toggle btn-inverse" href="#" onClick="dropdown()">
 
21
                                                        <a class="btn dropdown-toggle btn-inverse" data-toggle="dropdown" href="#">
41
22
                                                                Browse
42
23
                                                                <span class="caret"></span>
43
24
                                                        </a>
44
 
 
 
25
                                                        <ul class="dropdown-menu">
 
26
                                                                <div class="dropdown-info">
 
27
                                                                        <p>Example!</p>
 
28
                                                                </div>
 
29
                                                                <li><a href="#">test</a></li>
 
30
                                                        </ul>
45
31
                                                </div>
46
 
 
47
32
                                                
48
33
                                                <div class="separator"></div>
49
34
                                                <div class="btn-group">
58
43
                                        </div>
59
44
                                </div>
60
45
                        </div>
61
 
 
62
46
                </div>
63
 
                
64
47
        </div>
65
 
        <div id="dropdown">
66
 
                        <section class="group">
67
 
                                <div class="heading pink">
68
 
                                        <h1>Quizzes</h1>
69
 
                                </div>
70
 
                                <div class="content">
71
 
                                        <a href="#Quiz1">Quiz1</a>
72
 
                                        <a href="#Quiz2">Quiz2</a>
73
 
                                        <a href="#Quiz3">Quiz3</a>
74
 
                                </div>
75
 
                        </section>
76
 
                        <section class="group">
77
 
                                <div class="heading">
78
 
                                        <h1>Javascript examples</h1>
79
 
                                </div>
80
 
                                <div class="content">
81
 
                                        <section class="inner group">
82
 
                                                <div class="heading">
83
 
                                                        <h1>A couple of short tutorials introducing firgebug</h1>
84
 
                                                </div>
85
 
                                                <div class="content"> 
86
 
                                                        <a href="#Firebug-tutorial">Firebug tutorial</a>
87
 
                                                        <a href="#Firebug-tutorial2">Firebug tutorial II</a>
88
 
                                                </div>
89
 
                                        </section>
90
 
                                        <section class="inner group">
91
 
                                                <div class="heading">
92
 
                                                        <h1>Some simple JavaScript code examples</h1>
93
 
                                                </div>
94
 
                                                <div class="content">
95
 
                                                        <a href="#Dom-tutorial">Changing the DOM</a>
96
 
                                                </div>
97
 
                                        </section>
98
 
                                </div>
99
 
                        </section>
100
 
                        <section class="group">
101
 
                                <div class="heading">
102
 
                                        <h1>Examples on jQuery and jQuery UI</h1>
103
 
 
104
 
                                </div>
105
 
                                <div class="content">
106
 
                                        <a href="#jQuery-selector">jQuery selectors</a>
107
 
                                        <a href="#jQueryUI-datepicker">Datepicker</a>
108
 
                                        <a href="#jQueryUI-draggable">Using draggable</a>
109
 
                                </div>
110
 
                        </section>
111
 
                </div>
112
48
        <div class="container">
113
49
                <div class="row">
114
50
                        <div class="span4" id="doc">
115
51
                                <?php
116
 
                                echo $documentation;
 
52
                                        echo $documentation;
117
53
                                ?>
118
54
                        </div>
119
55
                        <div class="span8">
120
56
                                <?php 
121
 
                                echo $editors;
 
57
                                        echo $editors;
122
58
                                ?>
123
59
                                
124
60
                        </div>