Changeset 158696
- Timestamp:
- 09/28/2009 07:37:41 PM (16 years ago)
- Location:
- openid/trunk
- Files:
-
- 8 deleted
- 5 edited
-
Auth/Yadis/HTTPFetcher.php (modified) (1 diff)
-
Auth/Yadis/ParanoidHTTPFetcher.php (modified) (1 diff)
-
Auth/Yadis/PlainHTTPFetcher.php (modified) (1 diff)
-
Auth/Yadis/XML.php (modified) (1 diff)
-
Auth/Yadis/XRDS.php (modified) (2 diffs)
-
compatibility.php (deleted)
-
f/jquery.textnode.js (deleted)
-
f/jquery.textnode.min.js (deleted)
-
f/jquery.xpath.js (deleted)
-
f/jquery.xpath.min.js (deleted)
-
f/openid.min.css (deleted)
-
f/openid.min.js (deleted)
-
server_eaut.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
openid/trunk/Auth/Yadis/HTTPFetcher.php
r67133 r158696 139 139 * is malformed. 140 140 */ 141 function get($url, $headers )141 function get($url, $headers = null) 142 142 { 143 143 trigger_error("not implemented", E_USER_ERROR); -
openid/trunk/Auth/Yadis/ParanoidHTTPFetcher.php
r67133 r158696 128 128 curl_setopt($c, CURLOPT_TIMEOUT, $off); 129 129 curl_setopt($c, CURLOPT_URL, $url); 130 curl_setopt($c, CURLOPT_RANGE,131 "0-".(1024 * Auth_OpenID_FETCHER_MAX_RESPONSE_KB));132 130 133 131 curl_exec($c); -
openid/trunk/Auth/Yadis/PlainHTTPFetcher.php
r67133 r158696 84 84 "Host: ".$parts['host']. 85 85 ($specify_port ? ":".$parts['port'] : ""), 86 "Range: 0-".87 (1024*Auth_OpenID_FETCHER_MAX_RESPONSE_KB),88 86 "Port: ".$parts['port']); 89 87 -
openid/trunk/Auth/Yadis/XML.php
r67133 r158696 92 92 * objects to be used with other methods of this parser class. 93 93 */ 94 function evalXPath($xpath, $node = null)94 function &evalXPath($xpath, $node = null) 95 95 { 96 96 // Not implemented. -
openid/trunk/Auth/Yadis/XRDS.php
r67133 r158696 353 353 354 354 foreach ($services as $node) { 355 $s = &new Auth_Yadis_Service();355 $s = new Auth_Yadis_Service(); 356 356 $s->element = $node; 357 357 $s->parser =& $this->parser; … … 429 429 430 430 foreach ($filters as $filter) { 431 if (call_user_func_array($filter, array( $service))) {431 if (call_user_func_array($filter, array(&$service))) { 432 432 $matches++; 433 433
Note: See TracChangeset
for help on using the changeset viewer.