From e7e1dcd452a15abaaa01c03cd1ade564e3a59453 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 21 Oct 2006 18:04:01 +0000 Subject: --- user_guide/libraries/config.html | 2 +- user_guide/libraries/email.html | 2 +- user_guide/libraries/encryption.html | 2 +- user_guide/libraries/language.html | 2 +- user_guide/libraries/loader.html | 4 ++-- user_guide/libraries/output.html | 2 +- user_guide/libraries/pagination.html | 2 +- user_guide/libraries/validation.html | 4 ++-- user_guide/libraries/xmlrpc.html | 6 +++--- 9 files changed, 13 insertions(+), 13 deletions(-) (limited to 'user_guide/libraries') diff --git a/user_guide/libraries/config.html b/user_guide/libraries/config.html index 2797cd22f..f8a9f5207 100644 --- a/user_guide/libraries/config.html +++ b/user_guide/libraries/config.html @@ -151,7 +151,7 @@ $site_name = $blog_config['site_name'];

Setting a Config Item

-

If you would like to dynamically set a config item or change an existing one, you can so so using:

+

If you would like to dynamically set a config item or change an existing one, you can so using:

$this->config->set_item('item_name', 'item_value'); diff --git a/user_guide/libraries/email.html b/user_guide/libraries/email.html index 2064a3cf3..ea1b8680a 100644 --- a/user_guide/libraries/email.html +++ b/user_guide/libraries/email.html @@ -281,7 +281,7 @@ gets wrapped normally.
More text that will be
wrapped normally. -

Place the item you do not want word-wrappd between: {unwrap} {/unwrap} +

Place the item you do not want word-wrapped between: {unwrap} {/unwrap} diff --git a/user_guide/libraries/encryption.html b/user_guide/libraries/encryption.html index b27a37648..d541174fb 100644 --- a/user_guide/libraries/encryption.html +++ b/user_guide/libraries/encryption.html @@ -75,7 +75,7 @@ provide a very high degree of security.

A key is a piece of information that controls the cryptographic process and permits an encrypted string to be decoded. In fact, the key you chose will provide the only means to decode data that was encrypted with that key, -so not only must you chose the key carefully, you must must never change it if you intend use it for persistent data.

+so not only must you chose the key carefully, you must never change it if you intend use it for persistent data.

It goes without saying that you should guard your key carefully. Should someone gain access to your key, the data will be easily decoded. If your server is not totally under your control diff --git a/user_guide/libraries/language.html b/user_guide/libraries/language.html index 042a1dbf9..107865318 100644 --- a/user_guide/libraries/language.html +++ b/user_guide/libraries/language.html @@ -70,7 +70,7 @@ your own language files as needed in order to display error and other messages i

Language files are typically stored in your system/language directory. Alternately you can create a folder called language inside your application folder and store them there. Code Igniter will look first in your system/application/language -directory. If the direcotry does not exist or the specified language is not located there CI will instead look in your global +directory. If the directory does not exist or the specified language is not located there CI will instead look in your global system/language folder.

Note:  Each language should be stored in its own folder. For example, the English files are located at: diff --git a/user_guide/libraries/loader.html b/user_guide/libraries/loader.html index 44bae34ad..32bbddfe6 100644 --- a/user_guide/libraries/loader.html +++ b/user_guide/libraries/loader.html @@ -83,13 +83,13 @@ Note: We use the terms "class" and "library" interchangeably.

Once loaded, the library will be ready for use, using $this->email->some_function(). -Each library is described in detail in its own page, so please read theinformation regarding each one you would like to use.

+Each library is described in detail in its own page, so please read the information regarding each one you would like to use.

Parameters can be passed to the library via an array in the second parameter. -

If you would like your libraries assigned to a different variable name then the default you can specify the name in the second paramter:

+

If you would like your libraries assigned to a different variable name then the default you can specify the name in the second parameter:

$this->load->library('email', 'E'); // Assigns the email object to "E"
diff --git a/user_guide/libraries/output.html b/user_guide/libraries/output.html index d577fbba2..dd3ce4232 100644 --- a/user_guide/libraries/output.html +++ b/user_guide/libraries/output.html @@ -110,7 +110,7 @@ $this->output->set_header("Pragma: no-cache");

Permits you to enable/disable the Profiler, which will display benchmark and other data at the bottom of your pages for debugging and optimization purposes.

-

To enable the profiler place the the following function anywhere within your Controller functions:

+

To enable the profiler place the following function anywhere within your Controller functions:

$this->output->enable_profiler(TRUE);

When enabled a report will be generated and inserted at the bottom of your pages.

diff --git a/user_guide/libraries/pagination.html b/user_guide/libraries/pagination.html index 19cfc7449..317878a08 100644 --- a/user_guide/libraries/pagination.html +++ b/user_guide/libraries/pagination.html @@ -122,7 +122,7 @@ something different you can specify it.

$config['num_links'] = 2;

-

The number of "digit" links you would like before and after the the selected page number. For example, the number 2 +

The number of "digit" links you would like before and after the selected page number. For example, the number 2 will place two digits on either side, as in the example links at the very top of this page.

Adding Enclosing Markup

diff --git a/user_guide/libraries/validation.html b/user_guide/libraries/validation.html index 1af3c32fa..0a4905a71 100644 --- a/user_guide/libraries/validation.html +++ b/user_guide/libraries/validation.html @@ -666,8 +666,8 @@ like trim, htmlspecialchars, urldecode, etc.

Dealing with Select Menus, Radio Buttons, and Checkboxes -

If you use select menues, radio buttons or checkboxes, you will want the state of -these items to be retained in the event of an error. The Validation class has three functions taht help you do this:

+

If you use select menus, radio buttons or checkboxes, you will want the state of +these items to be retained in the event of an error. The Validation class has three functions that help you do this:

set_select()

diff --git a/user_guide/libraries/xmlrpc.html b/user_guide/libraries/xmlrpc.html index 34d47d22a..7cd00a268 100644 --- a/user_guide/libraries/xmlrpc.html +++ b/user_guide/libraries/xmlrpc.html @@ -82,7 +82,7 @@ being sent for publication, or it could be a request for an existing entry for e When the XML-RPC Server receives this request it will examine it to determine which class/method should be called to process the request. Once processed, the server will then send back a response message.

-

For detailed spcifications, you can visit the XML-RPC site.

+

For detailed specifications, you can visit the XML-RPC site.

Initializing the Class

@@ -145,7 +145,7 @@ sent back from the XML-RPC Server.

is referred to as a request parameter. The above example has two parameters: The URL and title of your site. When the XML-RPC server receives your request, it will look for parameters it requires.

-

Request parameters must be placed into an array for transportation, and each parameter can can be one +

Request parameters must be placed into an array for transportation, and each parameter can be one of seven data types (strings, numbers, dates, etc.). If your parameters are something other than strings you will have to include the data type in the request array.

@@ -447,7 +447,7 @@ is the error message.

return $this->xmlrpc->send_error_message('123', 'Requested data not available');

$this->xmlrpc->send_response()

-

Lets you send the response from your server to the client. An array of of valid data values must be sent with this method.

+

Lets you send the response from your server to the client. An array of valid data values must be sent with this method.

$response = array(
                 array(
                        'flerror' => array(FALSE, 'boolean'),
-- cgit v1.2.3-24-g4f1b