update pMachine to EllisLab
update copyright year
update Code Igniter to CodeIgniter
diff --git a/user_guide/general/creating_libraries.html b/user_guide/general/creating_libraries.html
index d8fdb38..f17c3cf 100644
--- a/user_guide/general/creating_libraries.html
+++ b/user_guide/general/creating_libraries.html
@@ -2,7 +2,7 @@
 <html>

 <head>

 

-<title>Code Igniter User Guide</title>

+<title>CodeIgniter User Guide</title>

 

 <style type='text/css' media='all'>@import url('../userguide.css');</style>

 <link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />

@@ -22,7 +22,7 @@
 <meta http-equiv= 'pragma' content='no-cache' />

 <meta name='robots' content='all' />

 <meta name='author' content='Rick Ellis' />

-<meta name='description' content='Code Igniter User Guide' />

+<meta name='description' content='CodeIgniter User Guide' />

 

 </head>

 <body>

@@ -33,7 +33,7 @@
 <div id="masthead">

 <table cellpadding="0" cellspacing="0" border="0" style="width:100%">

 <tr>

-<td><h1>Code Igniter User Guide Version 1.5.2</h1></td>

+<td><h1>CodeIgniter User Guide Version 1.5.3</h1></td>

 <td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>

 </tr>

 </table>

@@ -45,7 +45,7 @@
 <table cellpadding="0" cellspacing="0" border="0" style="width:100%">

 <tr>

 <td id="breadcrumb">

-<a href="http://www.codeigniter.com/">Code Igniter Home</a> &nbsp;&#8250;&nbsp;

+<a href="http://www.codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp;

 <a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp;

 Creating Libraries

 </td>

@@ -67,7 +67,7 @@
 your own libraries within your <dfn>application/libraries</dfn> directory in order to maintain separation between your local resources

 and the global framework resources.</p>

 

-<p>As an added bonus, Code Igniter permits your libraries to <kbd>extend</kbd> native classes if you simply need to add some functionality

+<p>As an added bonus, CodeIgniter permits your libraries to <kbd>extend</kbd> native classes if you simply need to add some functionality

 to an existing library. Or you can even replace native libraries just by placing identically named versions in your <dfn>application/libraries</dfn> folder.

 

 <p>In summary:</p>

@@ -86,7 +86,7 @@
 

 <h2>Storage</h2>

 

-<p>Your library classes should be placed within your <dfn>application/libraries</dfn> folder, as this is where Code Igniter will look for them when

+<p>Your library classes should be placed within your <dfn>application/libraries</dfn> folder, as this is where CodeIgniter will look for them when

 they are initialized.</p>

 

 

@@ -121,7 +121,7 @@
 <code>$this->load->library('<kbd>someclass</kbd>');</code>

 

 <p>Where <em>someclass</em> is the file name, without the ".php" file extension. You can submit the file name capitalized or lower case.

-Code Igniter doesn't care.</p>

+CodeIgniter doesn't care.</p>

 

 <p>Once loaded you can access your class using the <kbd>lower case</kbd> version:</p>

 

@@ -163,13 +163,13 @@
 

 

 

-<h2>Utilizing Code Igniter Resources within Your Library</h2>

+<h2>Utilizing CodeIgniter Resources within Your Library</h2>

 

 

-<p>To access Code Igniter's native resources within your library use the <kbd>get_instance()</kbd> function.

-This function returns the Code Igniter super object.</p>

+<p>To access CodeIgniter's native resources within your library use the <kbd>get_instance()</kbd> function.

+This function returns the CodeIgniter super object.</p>

 

-<p>Normally from within your controller functions you will call any of the available Code Igniter functions using the <kbd>$this</kbd> construct:</p>

+<p>Normally from within your controller functions you will call any of the available CodeIgniter functions using the <kbd>$this</kbd> construct:</p>

 

 <code>

 <strong>$this</strong>->load->helper('url');<br />

@@ -179,10 +179,10 @@
 </code>

 

 <p><kbd>$this</kbd>, however, only works directly within your controllers, your models, or your views.

-If you would like to use Code Igniter's classes from within your own custom classes you can do so as follows:</p>

+If you would like to use CodeIgniter's classes from within your own custom classes you can do so as follows:</p>

 

 

-<p>First, assign the Code Igniter object to a variable:</p>

+<p>First, assign the CodeIgniter object to a variable:</p>

 

 <code>$CI =& get_instance();</code>

 

@@ -200,12 +200,12 @@
 <br /><br />

 <var>$CI =& get_instance();</var>

 <br /><br />

-<kbd>This is very important.</kbd> Assigning by reference allows you to use the original Code Igniter object rather than creating a copy of it.</p>

+<kbd>This is very important.</kbd> Assigning by reference allows you to use the original CodeIgniter object rather than creating a copy of it.</p>

 

 

 <h2>Replacing Native Libraries with Your Versions</h2>

 

-<p>Simply by naming your class files identically to a native library will cause Code Igniter to use it instead of the native one. To use this

+<p>Simply by naming your class files identically to a native library will cause CodeIgniter to use it instead of the native one. To use this

 feature you must name the file and the class declaration exactly the same as the native library.  For example, to replace the native <kbd>Email</kbd> library

 you'll create a file named <dfn>application/libraries/Email.php</dfn>, and declare your class with:</p>

 

@@ -274,7 +274,7 @@
 

 <code>$config['subclass_prefix'] = 'MY_';</code>

 

-<p>Please note that all native Code Igniter libraries are prefixed with <kbd>CI_</kbd> so DO NOT use that as your prefix.</p>

+<p>Please note that all native CodeIgniter libraries are prefixed with <kbd>CI_</kbd> so DO NOT use that as your prefix.</p>

 

 

 

@@ -284,13 +284,13 @@
 

 <div id="footer">

 <p>

-Previous Topic:&nbsp;&nbsp;<a href="libraries.html">Using Code Igniter Libraries</a>

+Previous Topic:&nbsp;&nbsp;<a href="libraries.html">Using CodeIgniter Libraries</a>

 &nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 <a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 <a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp;

 Next Topic:&nbsp;&nbsp;<a href="core_classes.html">Creating Core System Classes</a>

 <p>

-<p><a href="http://www.codeigniter.com">Code Igniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p>

+<p><a href="http://www.codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2007 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">Ellislab, Inc.</a></p>

 </div>

 

 </body>