/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-11 13:59:06 UTC
  • mto: (23.2.1 lenasys)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: galaxyabstractor@gmail.com-20130411135906-tohvazsxmw77otid
Removed codeigniter user guide, shouldn't be in the repo
Added and implemented CKEditor Wysiwyg editor for editing of pages
Made already uploaded code files visible as you edit a page
Implemented Adams dropdown menu in codeviewer

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
                                        <div class="row">
19
19
                                                <div class="separator"></div>
20
20
                                                <div class="btn-group">
21
 
                                                        <a class="btn dropdown-toggle btn-inverse" data-toggle="dropdown" href="#">
 
21
                                                        <a class="btn dropdown-toggle btn-inverse" href="#" onClick="dropdown()">
22
22
                                                                Browse
23
23
                                                                <span class="caret"></span>
24
24
                                                        </a>
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>
 
25
 
31
26
                                                </div>
 
27
 
32
28
                                                
33
29
                                                <div class="separator"></div>
34
30
                                                <div class="btn-group">
43
39
                                        </div>
44
40
                                </div>
45
41
                        </div>
 
42
 
46
43
                </div>
 
44
                
47
45
        </div>
 
46
        <div id="dropdown">
 
47
                        <section class="group">
 
48
                                <div class="heading pink">
 
49
                                        <h1>Quizzes</h1>
 
50
                                </div>
 
51
                                <div class="content">
 
52
                                        <a href="#Quiz1">Quiz1</a>
 
53
                                        <a href="#Quiz2">Quiz2</a>
 
54
                                        <a href="#Quiz3">Quiz3</a>
 
55
                                </div>
 
56
                        </section>
 
57
                        <section class="group">
 
58
                                <div class="heading">
 
59
                                        <h1>Javascript examples</h1>
 
60
                                </div>
 
61
                                <div class="content">
 
62
                                        <section class="inner group">
 
63
                                                <div class="heading">
 
64
                                                        <h1>A couple of short tutorials introducing firgebug</h1>
 
65
                                                </div>
 
66
                                                <div class="content"> 
 
67
                                                        <a href="#Firebug-tutorial">Firebug tutorial</a>
 
68
                                                        <a href="#Firebug-tutorial2">Firebug tutorial II</a>
 
69
                                                </div>
 
70
                                        </section>
 
71
                                        <section class="inner group">
 
72
                                                <div class="heading">
 
73
                                                        <h1>Some simple JavaScript code examples</h1>
 
74
                                                </div>
 
75
                                                <div class="content">
 
76
                                                        <a href="#Dom-tutorial">Changing the DOM</a>
 
77
                                                </div>
 
78
                                        </section>
 
79
                                </div>
 
80
                        </section>
 
81
                        <section class="group">
 
82
                                <div class="heading">
 
83
                                        <h1>Examples on jQuery and jQuery UI</h1>
 
84
 
 
85
                                </div>
 
86
                                <div class="content">
 
87
                                        <a href="#jQuery-selector">jQuery selectors</a>
 
88
                                        <a href="#jQueryUI-datepicker">Datepicker</a>
 
89
                                        <a href="#jQueryUI-draggable">Using draggable</a>
 
90
                                </div>
 
91
                        </section>
 
92
                </div>
48
93
        <div class="container">
49
94
                <div class="row">
50
95
                        <div class="span4" id="doc">
51
96
                                <?php
52
 
                                        echo $documentation;
 
97
                                echo $documentation;
53
98
                                ?>
54
99
                        </div>
55
100
                        <div class="span8">
56
101
                                <?php 
57
 
                                        echo $editors;
 
102
                                echo $editors;
58
103
                                ?>
59
104
                                
60
105
                        </div>