Skip to content

Commit c50c51a

Browse files
author
Pascal Kriete
committed
Adding an experimental note on the javascript driver and giving drivers their own section in the navigation.
1 parent 152e0e7 commit c50c51a

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

user_guide/libraries/javascript.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
33
<head>
44

5-
<title>CodeIgniter User Guide : Input Class</title>
5+
<title>CodeIgniter User Guide : Javascript Class</title>
66

77
<style type='text/css' media='all'>@import url('../userguide.css');</style>
88
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
@@ -56,6 +56,7 @@
5656
<!-- START CONTENT -->
5757
<div id="content">
5858

59+
<p class="important"><strong>Note:</strong> This driver is experimental. Its feature set and implementation may change in future releases.</p><br>
5960

6061
<h1>Javascript Class</h1>
6162
<p>Rewrite this paragraph: <a href="http://jquery.com/">jQuery</a> is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. CodeIgniter provides a library to help you with certain common functions that you may want to use within jQuery. Please note that CodeIgniter does not require the jQuery library to run, and that any scripting library will work equally well. The jQuery library is simply presented as a convenience if you choose to use it.</p>

user_guide/nav/nav.js

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,12 @@ function create_menu(basepath)
6565
'<li><a href="'+base+'doc_style/index.html">Writing Documentation</a></li>' +
6666
'</ul>' +
6767

68+
'<h3>Additional Resources</h3>' +
69+
'<ul>' +
70+
'<li><a href="http://codeigniter.com/forums/">Community Forums</a></li>' +
71+
'<li><a href="http://codeigniter.com/wiki/">Community Wiki</a></li>' +
72+
'</ul>' +
73+
6874
'</td><td class="td_sep" valign="top">' +
6975

7076
'<h3>Class Reference</h3>' +
@@ -73,7 +79,6 @@ function create_menu(basepath)
7379
'<li><a href="'+base+'libraries/calendar.html">Calendar Class</a></li>' +
7480
'<li><a href="'+base+'libraries/cart.html">Cart Class</a></li>' +
7581
'<li><a href="'+base+'libraries/config.html">Config Class</a></li>' +
76-
'<li><a href="'+base+'database/index.html">Database Class</a></li>' +
7782
'<li><a href="'+base+'libraries/email.html">Email Class</a></li>' +
7883
'<li><a href="'+base+'libraries/encryption.html">Encryption Class</a></li>' +
7984
'<li><a href="'+base+'libraries/file_uploading.html">File Uploading Class</a></li>' +
@@ -100,6 +105,13 @@ function create_menu(basepath)
100105

101106
'</td><td class="td_sep" valign="top">' +
102107

108+
'<h3>Driver Reference</h3>' +
109+
'<ul>' +
110+
'<li><a href="'+base+'database/index.html">Database Class</a></li>' +
111+
'<li><a href="'+base+'libraries/caching.html">Caching Class</a></li>' +
112+
'<li><a href="'+base+'libraries/javascript.html">Javascript Class</a></li>' +
113+
'</ul>' +
114+
103115
'<h3>Helper Reference</h3>' +
104116
'<ul>' +
105117
'<li><a href="'+base+'helpers/array_helper.html">Array Helper</a></li>' +
@@ -125,11 +137,5 @@ function create_menu(basepath)
125137
'<li><a href="'+base+'helpers/xml_helper.html">XML Helper</a></li>' +
126138
'</ul>' +
127139

128-
'<h3>Additional Resources</h3>' +
129-
'<ul>' +
130-
'<li><a href="http://codeigniter.com/forums/">Community Forums</a></li>' +
131-
'<li><a href="http://codeigniter.com/wiki/">Community Wiki</a></li>' +
132-
'</ul>' +
133-
134140
'</td></tr></table>');
135141
}

0 commit comments

Comments
 (0)