Changeset 8277 for temp


Ignore:
Timestamp:
2006/11/13 15:31:35 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/data
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/downloads/module/mdl_epsilon/mdl_epsilon.inc

    r8111 r8277  
    113113    xml_parser_free($parser); 
    114114     
     115    sfprintr($arrVal); 
     116     
    115117    return $arrVal; 
    116118} 
  • temp/trunk/data/lib/slib.php

    r8268 r8277  
    26452645        $res_code = $req->getResponseCode(); 
    26462646         
    2647         sfprintr($res_code); 
    26482647        if(!in_array($res_code, $arrOkCode)){ 
    26492648            $response = ""; 
     
    26532652         
    26542653    } else { 
    2655         sfprintr($req->sendRequest()); 
    2656         sfprintr($ret); 
    26572654        $response = ""; 
    26582655    } 
     
    26632660    return $response; 
    26642661} 
    2665  
    26662662 
    26672663/* ¥Ç¥Ð¥Ã¥°ÍÑ ------------------------------------------------------------------------------------------------*/ 
  • temp/trunk/data/module/Request.php

    r8275 r8277  
    661661        unset($this->_sock); 
    662662 
    663          
    664         sfprintr("socket"); 
    665663        // There is a connected socket in the "static" property? 
    666664        if ($keepAlive && !empty($sockets[$sockKey]) && 
     
    672670            $this->_notify('connect'); 
    673671            $this->_sock =& new Net_Socket(); 
    674  
    675672            $err = $this->_sock->connect($host, $port, null, $this->_timeout, $this->_socketOptions); 
    676673        } 
    677674        PEAR::isError($err) or $err = $this->_sock->write($this->_buildRequest()); 
    678          
    679         sfprintr($host); 
    680675 
    681676        if (!PEAR::isError($err)) { 
     
    688683            // Read the response 
    689684            $this->_response = &new HTTP_Response($this->_sock, $this->_listeners); 
    690             sfprintr($this->_response); 
    691685            $err = $this->_response->process( 
    692686                $this->_saveBody && $saveBody, 
Note: See TracChangeset for help on using the changeset viewer.