Skip to content

Commit 080cab9

Browse files
author
Conrad Weidenkeller
committed
Added CDN SSL URI stuff
1 parent 76dff8b commit 080cab9

15 files changed

Lines changed: 190 additions & 77 deletions

Changelog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
1.7.8 Conrad Weidenkeller <conrad.weidenkeller@rackspace.com>
2+
* Added CDN SSL URI Stuff
3+
14
1.7.7 Conrad Weidenkeller <conrad.weidenkeller@rackspace.com>
25
* Added CDN Purge Functionality
36

cloudfiles.php

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -923,6 +923,7 @@ class CF_Container
923923
public $bytes_used;
924924

925925
public $cdn_enabled;
926+
public $cdn_ssl_uri;
926927
public $cdn_uri;
927928
public $cdn_ttl;
928929
public $cdn_log_retention;
@@ -959,6 +960,7 @@ function __construct(&$cfs_auth, &$cfs_http, $name, $count=0,
959960
$this->bytes_used = $bytes;
960961
$this->cdn_enabled = NULL;
961962
$this->cdn_uri = NULL;
963+
$this->cdn_ssl_uri = NULL;
962964
$this->cdn_ttl = NULL;
963965
$this->cdn_log_retention = NULL;
964966
$this->cdn_acl_user_agent = NULL;
@@ -1044,13 +1046,13 @@ function make_public($ttl=86400)
10441046
if ($status == 404) {
10451047
# this instance _thinks_ the container was published, but the
10461048
# cdn management system thinks otherwise - try again with a PUT
1047-
list($status, $reason, $cdn_uri) =
1049+
list($status, $reason, $cdn_uri, $cdn_ssl_uri) =
10481050
$this->cfs_http->add_cdn_container($this->name,$ttl);
10491051

10501052
}
10511053
} else {
10521054
# publish it for first time
1053-
list($status, $reason, $cdn_uri) =
1055+
list($status, $reason, $cdn_uri, $cdn_ssl_uri) =
10541056
$this->cfs_http->add_cdn_container($this->name,$ttl);
10551057
}
10561058
#if ($status == 401 && $this->_re_auth()) {
@@ -1062,6 +1064,7 @@ function make_public($ttl=86400)
10621064
}
10631065
$this->cdn_enabled = True;
10641066
$this->cdn_ttl = $ttl;
1067+
$this->cdn_ssl_uri = $cdn_ssl_uri;
10651068
$this->cdn_uri = $cdn_uri;
10661069
$this->cdn_log_retention = False;
10671070
$this->cdn_acl_user_agent = "";
@@ -1272,6 +1275,7 @@ function make_private()
12721275
$this->cdn_enabled = False;
12731276
$this->cdn_ttl = NULL;
12741277
$this->cdn_uri = NULL;
1278+
$this->cdn_ssl_uri = NULL;
12751279
$this->cdn_log_retention = NULL;
12761280
$this->cdn_acl_user_agent = NULL;
12771281
$this->cdn_acl_referrer = NULL;
@@ -1579,7 +1583,7 @@ function create_paths($path_name)
15791583
*/
15801584
private function _cdn_initialize()
15811585
{
1582-
list($status, $reason, $cdn_enabled, $cdn_uri, $cdn_ttl,
1586+
list($status, $reason, $cdn_enabled, $cdn_ssl_uri, $cdn_uri, $cdn_ttl,
15831587
$cdn_log_retention, $cdn_acl_user_agent, $cdn_acl_referrer) =
15841588
$this->cfs_http->head_cdn_container($this->name);
15851589
#if ($status == 401 && $this->_re_auth()) {
@@ -1590,6 +1594,7 @@ private function _cdn_initialize()
15901594
"Invalid response (".$status."): ".$this->cfs_http->get_error());
15911595
}
15921596
$this->cdn_enabled = $cdn_enabled;
1597+
$this->cdn_ssl_uri = $cdn_ssl_uri;
15931598
$this->cdn_uri = $cdn_uri;
15941599
$this->cdn_ttl = $cdn_ttl;
15951600
$this->cdn_log_retention = $cdn_log_retention;
@@ -1768,6 +1773,32 @@ function public_uri()
17681773
return NULL;
17691774
}
17701775

1776+
/**
1777+
* String representation of the Object's public SSL URI
1778+
*
1779+
* A string representing the Object's public SSL URI assuming that it's
1780+
* parent Container is CDN-enabled.
1781+
*
1782+
* Example:
1783+
* <code>
1784+
* # ... authentication/connection/container code excluded
1785+
* # ... see previous examples
1786+
*
1787+
* # Print out the Object's CDN SSL URI (if it has one) in an HTML img-tag
1788+
* #
1789+
* print "<img src='$pic->public_ssl_uri()' />\n";
1790+
* </code>
1791+
*
1792+
* @return string Object's public SSL URI or NULL
1793+
*/
1794+
function public_ssl_uri()
1795+
{
1796+
if ($this->container->cdn_enabled) {
1797+
return $this->container->cdn_ssl_uri . "/" . $this->name;
1798+
}
1799+
return NULL;
1800+
}
1801+
17711802
/**
17721803
* Read the remote Object's data
17731804
*

cloudfiles_http.php

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@
2929
*/
3030
require_once("cloudfiles_exceptions.php");
3131

32-
define("PHP_CF_VERSION", "1.7.7");
32+
define("PHP_CF_VERSION", "1.7.8");
3333
define("USER_AGENT", sprintf("PHP-CloudFiles/%s", PHP_CF_VERSION));
3434
define("ACCOUNT_CONTAINER_COUNT", "X-Account-Container-Count");
3535
define("ACCOUNT_BYTES_USED", "X-Account-Bytes-Used");
3636
define("CONTAINER_OBJ_COUNT", "X-Container-Object-Count");
3737
define("CONTAINER_BYTES_USED", "X-Container-Bytes-Used");
3838
define("METADATA_HEADER", "X-Object-Meta-");
3939
define("CDN_URI", "X-CDN-URI");
40+
define("CDN_SSL_URI", "X-CDN-SSL-URI");
4041
define("CDN_ENABLED", "X-CDN-Enabled");
4142
define("CDN_LOG_RETENTION", "X-Log-Retention");
4243
define("CDN_ACL_USER_AGENT", "X-User-Agent-ACL");
@@ -96,6 +97,7 @@ class CF_Http
9697
private $_obj_write_resource;
9798
private $_obj_write_string;
9899
private $_cdn_enabled;
100+
private $_cdn_ssl_uri;
99101
private $_cdn_uri;
100102
private $_cdn_ttl;
101103
private $_cdn_log_retention;
@@ -146,6 +148,7 @@ function __construct($api_version)
146148
$this->_obj_content_length = NULL;
147149
$this->_obj_metadata = array();
148150
$this->_cdn_enabled = NULL;
151+
$this->_cdn_ssl_uri = NULL;
149152
$this->_cdn_uri = NULL;
150153
$this->_cdn_ttl = NULL;
151154
$this->_cdn_log_retention = NULL;
@@ -338,7 +341,8 @@ function add_cdn_container($container_name, $ttl=86400)
338341
$this->error_str="Unexpected HTTP response: ".$this->response_reason;
339342
return array($return_code,$this->response_reason,False);
340343
}
341-
return array($return_code,$this->response_reason,$this->_cdn_uri);
344+
return array($return_code,$this->response_reason,$this->_cdn_uri,
345+
$this->_cdn_ssl_uri);
342346
}
343347

344348
# (CDN) POST /v1/Account/Container
@@ -395,7 +399,8 @@ function head_cdn_container($container_name)
395399
}
396400
if ($return_code == 204) {
397401
return array($return_code,$this->response_reason,
398-
$this->_cdn_enabled, $this->_cdn_uri, $this->_cdn_ttl,
402+
$this->_cdn_enabled, $this->_cdn_ssl_uri,
403+
$this->_cdn_uri, $this->_cdn_ttl,
399404
$this->_cdn_log_retention,
400405
$this->_cdn_acl_user_agent,
401406
$this->_cdn_acl_referrer
@@ -1011,6 +1016,10 @@ private function _header_cb($ch, $header)
10111016
$this->_cdn_uri = trim(substr($header, strlen(CDN_URI)+1));
10121017
return strlen($header);
10131018
}
1019+
if (stripos($header, CDN_SSL_URI) === 0) {
1020+
$this->_cdn_ssl_uri = trim(substr($header, strlen(CDN_SSL_URI)+1));
1021+
return strlen($header);
1022+
}
10141023
if (stripos($header, CDN_TTL) === 0) {
10151024
$this->_cdn_ttl = trim(substr($header, strlen(CDN_TTL)+1))+0;
10161025
return strlen($header);
@@ -1245,6 +1254,7 @@ private function _reset_callback_vars()
12451254
$this->_obj_metadata = array();
12461255
$this->_obj_write_string = "";
12471256
$this->_cdn_enabled = NULL;
1257+
$this->_cdn_ssl_uri = NULL;
12481258
$this->_cdn_uri = NULL;
12491259
$this->_cdn_ttl = NULL;
12501260
$this->response_status = 0;

docs/classtrees_php-cloudfiles.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<td width="200" class="menu">
2828
<div id="ric">
2929
<p><a href="ric_AUTHORS.html">AUTHORS</a></p>
30-
<p><a href="ric_COPYING.html">COPYING</a></p>
3130
<p><a href="ric_README.html">README</a></p>
31+
<p><a href="ric_COPYING.html">COPYING</a></p>
3232
<p><a href="ric_Changelog.html">Changelog</a></p>
3333
</div>
3434
<b>Packages:</b><br />
@@ -63,7 +63,7 @@ <h1>Class Trees for Package php-cloudfiles</h1>
6363

6464
<div class="credit">
6565
<hr />
66-
Documentation generated on Thu, 24 Feb 2011 15:05:56 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
66+
Documentation generated on Wed, 09 Mar 2011 13:07:29 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
6767
</div>
6868
</td></tr></table>
6969
</td>

docs/elementindex.html

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
<td width="200" class="menu">
2525
<div id="ric">
2626
<p><a href="ric_AUTHORS.html">AUTHORS</a></p>
27-
<p><a href="ric_COPYING.html">COPYING</a></p>
2827
<p><a href="ric_README.html">README</a></p>
28+
<p><a href="ric_COPYING.html">COPYING</a></p>
2929
<p><a href="ric_Changelog.html">Changelog</a></p>
3030
</div>
3131
<b>Packages:</b><br />
32+
<a href="li_php-cloudfiles.html">php-cloudfiles</a><br />
3233
<a href="li_php-cloudfiles-exceptions.html">php-cloudfiles-exceptions</a><br />
3334
<a href="li_php-cloudfiles-http.html">php-cloudfiles-http</a><br />
34-
<a href="li_php-cloudfiles.html">php-cloudfiles</a><br />
3535
<br /><br />
3636
</td>
3737
<td>
@@ -131,6 +131,8 @@ <h2>c</h2>
131131
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_enabled">CF_Container::$cdn_enabled</a></dd>
132132
<dt><b>$cdn_log_retention</b></dt>
133133
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_log_retention">CF_Container::$cdn_log_retention</a></dd>
134+
<dt><b>$cdn_ssl_uri</b></dt>
135+
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_ssl_uri">CF_Container::$cdn_ssl_uri</a></dd>
134136
<dt><b>$cdn_ttl</b></dt>
135137
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_ttl">CF_Container::$cdn_ttl</a></dd>
136138
<dt><b>$cdn_uri</b></dt>
@@ -163,6 +165,8 @@ <h2>c</h2>
163165
<dd>in file cloudfiles_http.php, constant <a href="php-cloudfiles-http/_cloudfiles_http.php.html#defineCDN_ENABLED">CDN_ENABLED</a></dd>
164166
<dt><b>CDN_LOG_RETENTION</b></dt>
165167
<dd>in file cloudfiles_http.php, constant <a href="php-cloudfiles-http/_cloudfiles_http.php.html#defineCDN_LOG_RETENTION">CDN_LOG_RETENTION</a></dd>
168+
<dt><b>CDN_SSL_URI</b></dt>
169+
<dd>in file cloudfiles_http.php, constant <a href="php-cloudfiles-http/_cloudfiles_http.php.html#defineCDN_SSL_URI">CDN_SSL_URI</a></dd>
166170
<dt><b>CDN_TTL</b></dt>
167171
<dd>in file cloudfiles_http.php, constant <a href="php-cloudfiles-http/_cloudfiles_http.php.html#defineCDN_TTL">CDN_TTL</a></dd>
168172
<dt><b>CDN_URI</b></dt>
@@ -178,9 +182,9 @@ <h2>c</h2>
178182
<dt><b>CF_Object</b></dt>
179183
<dd>in file cloudfiles.php, class <a href="php-cloudfiles/CF_Object.html">CF_Object</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Object operations</dd>
180184
<dt><b>close</b></dt>
181-
<dd>in file cloudfiles.php, method <a href="php-cloudfiles/CF_Connection.html#methodclose">CF_Connection::close()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Close a connection</dd>
182-
<dt><b>close</b></dt>
183185
<dd>in file cloudfiles_http.php, method <a href="php-cloudfiles-http/CF_Http.html#methodclose">CF_Http::close()</a></dd>
186+
<dt><b>close</b></dt>
187+
<dd>in file cloudfiles.php, method <a href="php-cloudfiles/CF_Connection.html#methodclose">CF_Connection::close()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;Close a connection</dd>
184188
<dt><b>cloudfiles.php</b></dt>
185189
<dd>procedural page <a href="php-cloudfiles/_cloudfiles.php.html">cloudfiles.php</a></dd>
186190
<dt><b>cloudfiles_exceptions.php</b></dt>
@@ -397,6 +401,8 @@ <h2>p</h2>
397401
<dl>
398402
<dt><b>PHP_CF_VERSION</b></dt>
399403
<dd>in file cloudfiles_http.php, constant <a href="php-cloudfiles-http/_cloudfiles_http.php.html#definePHP_CF_VERSION">PHP_CF_VERSION</a></dd>
404+
<dt><b>public_ssl_uri</b></dt>
405+
<dd>in file cloudfiles.php, method <a href="php-cloudfiles/CF_Object.html#methodpublic_ssl_uri">CF_Object::public_ssl_uri()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;String representation of the Object's public SSL URI</dd>
400406
<dt><b>public_uri</b></dt>
401407
<dd>in file cloudfiles.php, method <a href="php-cloudfiles/CF_Object.html#methodpublic_uri">CF_Object::public_uri()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;String representation of the Object's public URI</dd>
402408
<dt><b>purge_from_cdn</b></dt>
@@ -522,7 +528,7 @@ <h2>_</h2>
522528
<a href="elementindex.html#top">top</a><br>
523529
<div class="credit">
524530
<hr />
525-
Documentation generated on Thu, 24 Feb 2011 15:05:56 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
531+
Documentation generated on Wed, 09 Mar 2011 13:07:29 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
526532
</div>
527533
</td></tr></table>
528534
</td>

docs/elementindex_php-cloudfiles.html

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<tr>
1414
<td class="header_menu">
1515

16-
17-
[ <a href="classtrees_php-cloudfiles.html" class="menu">class tree: php-cloudfiles</a> ]
16+
17+
[ <a href="classtrees_php-cloudfiles.html" class="menu">class tree: php-cloudfiles</a> ]
1818
[ <a href="elementindex_php-cloudfiles.html" class="menu">index: php-cloudfiles</a> ]
1919
[ <a href="elementindex.html" class="menu">all elements</a> ]
2020
</td>
@@ -27,14 +27,14 @@
2727
<td width="200" class="menu">
2828
<div id="ric">
2929
<p><a href="ric_AUTHORS.html">AUTHORS</a></p>
30-
<p><a href="ric_COPYING.html">COPYING</a></p>
3130
<p><a href="ric_README.html">README</a></p>
31+
<p><a href="ric_COPYING.html">COPYING</a></p>
3232
<p><a href="ric_Changelog.html">Changelog</a></p>
3333
</div>
3434
<b>Packages:</b><br />
35+
<a href="li_php-cloudfiles.html">php-cloudfiles</a><br />
3536
<a href="li_php-cloudfiles-exceptions.html">php-cloudfiles-exceptions</a><br />
3637
<a href="li_php-cloudfiles-http.html">php-cloudfiles-http</a><br />
37-
<a href="li_php-cloudfiles.html">php-cloudfiles</a><br />
3838
<br /><br />
3939
<b>Files:</b><br />
4040
<div class="package">
@@ -145,6 +145,8 @@ <h2>c</h2>
145145
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_enabled">CF_Container::$cdn_enabled</a></dd>
146146
<dt><b>$cdn_log_retention</b></dt>
147147
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_log_retention">CF_Container::$cdn_log_retention</a></dd>
148+
<dt><b>$cdn_ssl_uri</b></dt>
149+
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_ssl_uri">CF_Container::$cdn_ssl_uri</a></dd>
148150
<dt><b>$cdn_ttl</b></dt>
149151
<dd>in file cloudfiles.php, variable <a href="php-cloudfiles/CF_Container.html#var$cdn_ttl">CF_Container::$cdn_ttl</a></dd>
150152
<dt><b>$cdn_uri</b></dt>
@@ -315,6 +317,8 @@ <h2>o</h2>
315317
<div>
316318
<h2>p</h2>
317319
<dl>
320+
<dt><b>public_ssl_uri</b></dt>
321+
<dd>in file cloudfiles.php, method <a href="php-cloudfiles/CF_Object.html#methodpublic_ssl_uri">CF_Object::public_ssl_uri()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;String representation of the Object's public SSL URI</dd>
318322
<dt><b>public_uri</b></dt>
319323
<dd>in file cloudfiles.php, method <a href="php-cloudfiles/CF_Object.html#methodpublic_uri">CF_Object::public_uri()</a><br>&nbsp;&nbsp;&nbsp;&nbsp;String representation of the Object's public URI</dd>
320324
<dt><b>purge_from_cdn</b></dt>
@@ -390,7 +394,7 @@ <h2>w</h2>
390394
<a href="elementindex_php-cloudfiles.html#top">top</a><br>
391395
<div class="credit">
392396
<hr />
393-
Documentation generated on Thu, 24 Feb 2011 15:05:56 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
397+
Documentation generated on Wed, 09 Mar 2011 13:07:29 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
394398
</div>
395399
</td></tr></table>
396400
</td>

docs/errors.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<td width="200" class="menu">
2828
<div id="ric">
2929
<p><a href="ric_AUTHORS.html">AUTHORS</a></p>
30-
<p><a href="ric_COPYING.html">COPYING</a></p>
3130
<p><a href="ric_README.html">README</a></p>
31+
<p><a href="ric_COPYING.html">COPYING</a></p>
3232
<p><a href="ric_Changelog.html">Changelog</a></p>
3333
</div>
3434
<b>Packages:</b><br />
@@ -60,11 +60,11 @@ <h2>Warnings:</h2><br>
6060
<a name="cloudfiles.php"></a>
6161
<h1>cloudfiles.php</h1>
6262
<h2>Errors:</h2><br>
63-
<b>Error on line 1087</b> - Unclosed code tag in DocBlock, parsing will be incorrect<br>
64-
<b>Error on line 2115</b> - Unclosed code tag in DocBlock, parsing will be incorrect<br>
63+
<b>Error on line 1090</b> - Unclosed code tag in DocBlock, parsing will be incorrect<br>
64+
<b>Error on line 2146</b> - Unclosed code tag in DocBlock, parsing will be incorrect<br>
6565
<div class="credit">
6666
<hr />
67-
Documentation generated on Thu, 24 Feb 2011 15:05:57 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
67+
Documentation generated on Wed, 09 Mar 2011 13:07:31 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
6868
</div>
6969
</td></tr></table>
7070
</td>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<td width="200" class="menu">
2828
<div id="ric">
2929
<p><a href="ric_AUTHORS.html">AUTHORS</a></p>
30-
<p><a href="ric_COPYING.html">COPYING</a></p>
3130
<p><a href="ric_README.html">README</a></p>
31+
<p><a href="ric_COPYING.html">COPYING</a></p>
3232
<p><a href="ric_Changelog.html">Changelog</a></p>
3333
</div>
3434
<b>Packages:</b><br />
@@ -60,7 +60,7 @@
6060
This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.3</a><br />
6161
<div class="credit">
6262
<hr />
63-
Documentation generated on Thu, 24 Feb 2011 15:05:56 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
63+
Documentation generated on Wed, 09 Mar 2011 13:07:29 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
6464
</div>
6565
</td></tr></table>
6666
</td>

docs/li_php-cloudfiles.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<td width="200" class="menu">
2828
<div id="ric">
2929
<p><a href="ric_AUTHORS.html">AUTHORS</a></p>
30-
<p><a href="ric_COPYING.html">COPYING</a></p>
3130
<p><a href="ric_README.html">README</a></p>
31+
<p><a href="ric_COPYING.html">COPYING</a></p>
3232
<p><a href="ric_Changelog.html">Changelog</a></p>
3333
</div>
3434
<b>Packages:</b><br />
@@ -60,7 +60,7 @@
6060
This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.4.3</a><br />
6161
<div class="credit">
6262
<hr />
63-
Documentation generated on Thu, 24 Feb 2011 15:05:56 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
63+
Documentation generated on Wed, 09 Mar 2011 13:07:29 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
6464
</div>
6565
</td></tr></table>
6666
</td>

docs/php-cloudfiles/CF_Authentication.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<td width="200" class="menu">
2828
<div id="ric">
2929
<p><a href="../ric_AUTHORS.html">AUTHORS</a></p>
30-
<p><a href="../ric_COPYING.html">COPYING</a></p>
3130
<p><a href="../ric_README.html">README</a></p>
31+
<p><a href="../ric_COPYING.html">COPYING</a></p>
3232
<p><a href="../ric_Changelog.html">Changelog</a></p>
3333
</div>
3434
<b>Packages:</b><br />
@@ -608,7 +608,7 @@ <h4>Parameters:</h4>
608608

609609
<div class="credit">
610610
<hr />
611-
Documentation generated on Thu, 24 Feb 2011 15:05:56 -0600 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
611+
Documentation generated on Wed, 09 Mar 2011 13:07:30 +0000 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.3</a>
612612
</div>
613613
</td></tr></table>
614614
</td>

0 commit comments

Comments
 (0)