diff options
author | admin <devnull@localhost> | 2006-10-27 08:25:31 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-27 08:25:31 +0200 |
commit | 3f643e678ef64ae29aa9720aef9b2a40496a5343 (patch) | |
tree | a3a143188208d544d47dbb5774213c69f0169118 /user_guide | |
parent | b84f7c03473f271ca53c80f9cb0f4b28755bb2cf (diff) |
Diffstat (limited to 'user_guide')
-rw-r--r-- | user_guide/changelog.html | 8 | ||||
-rw-r--r-- | user_guide/libraries/file_uploading.html | 2 | ||||
-rw-r--r-- | user_guide/nav/nav.js | 1 |
3 files changed, 5 insertions, 6 deletions
diff --git a/user_guide/changelog.html b/user_guide/changelog.html index c8e113547..c47972247 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -64,10 +64,7 @@ Change Log <h2>Version 1.5.0 Beta 3</h2>
-<p>Release Date: October 25, 2006</p>
-
-<p class="important"><strong>Important:</strong> In Beta 3, the way native libraries are extended has changed slightly thanks to
-a suggestion offered by coolfactor in our forums. Please check the documentation below if you are extending classes.</p>
+<p>Release Date: October 30, 2006</p>
<ul>
<li>Added <a href="./database/utilities.html">DB utility class</a>, permitting DB backups, CVS or XML files from DB results, and various other functions.</li>
@@ -76,7 +73,8 @@ a suggestion offered by coolfactor in our forums. Please check the documentatio <li>Added <a href="./general/profiling.html">Profiler Class</a> which generates a report of Benchmark execution times, queries, and POST data at the bottom of your pages.</li>
<li>Added <a href="./libraries/user_agent.html">User Agent Library</a> which allows browsers, robots, and mobile devises to be identified.</li>
<li>Added <a href="./libraries/table.html">HTML Table Class</a> , enabling tables to be generated from arrays or database results.</li>
-<li>Added <a href="./libraries/Zip.html">Zip Encoding Library</a>.</li>
+<li>Added <a href="./libraries/zip.html">Zip Encoding Library</a>.</li>
+<li>Added <a href="./libraries/ftp.html">FTP Library</a>.</li>
<li>Added the ability to <a href="./general/creating_libraries.html">extend libraries</a> and <a href="./general/core_classes.html">extend core classes</a>, in addition to being able to replace them.</li>
<li>Added support for storing <a href="./general/models.html">models within sub-folders</a>.</li>
<li>Added <a href="./helpers/download_helper.html">Download Helper</a>.</li>
diff --git a/user_guide/libraries/file_uploading.html b/user_guide/libraries/file_uploading.html index 730dd0545..6a7deee42 100644 --- a/user_guide/libraries/file_uploading.html +++ b/user_guide/libraries/file_uploading.html @@ -426,7 +426,7 @@ Previous Topic: <a href="encryption.html">Encryption Class</a> ·
<a href="#top">Top of Page</a> ·
<a href="../index.html">User Guide Home</a> ·
-Next Topic: <a href="table.html">HTML Table Class</a>
+Next Topic: <a href="ftp.html">FTP Class</a>
<p>
<p><a href="http://www.codeigniter.com">Code Igniter</a> · Copyright © 2006 · <a href="http://www.pmachine.com">pMachine, Inc.</a></p>
</div>
diff --git a/user_guide/nav/nav.js b/user_guide/nav/nav.js index 3906038d9..511149201 100644 --- a/user_guide/nav/nav.js +++ b/user_guide/nav/nav.js @@ -71,6 +71,7 @@ function create_menu(basepath) '<li><a href="'+base+'libraries/email.html">Email Class</a></li>' + '<li><a href="'+base+'libraries/encryption.html">Encryption Class</a></li>' + '<li><a href="'+base+'libraries/file_uploading.html">File Uploading Class</a></li>' + + '<li><a href="'+base+'libraries/ftp.html">FTP Class</a></li>' + '<li><a href="'+base+'libraries/table.html">HTML Table Class</a></li>' + '<li><a href="'+base+'libraries/image_lib.html">Image Manipulation Class</a></li>' + '<li><a href="'+base+'libraries/input.html">Input and Security Class</a></li>' + |