0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: http.tar
response.php 0000666 00000001252 15137257776 0007143 0 ustar 00 <?php /** * @package Joomla.Platform * @subpackage HTTP * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; /** * HTTP response data object class. * * @package Joomla.Platform * @subpackage HTTP * @since 11.3 */ class JHttpResponse { /** * @var integer The server response code. * @since 11.3 */ public $code; /** * @var array Response headers. * @since 11.3 */ public $headers = array(); /** * @var string Server response body. * @since 11.3 */ public $body; } index.html 0000666 00000000037 15137257776 0006571 0 ustar 00 <!DOCTYPE html><title></title> transport.php 0000666 00000002476 15137257776 0007352 0 ustar 00 <?php /** * @package Joomla.Platform * @subpackage HTTP * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die(); /** * HTTP transport class interface. * * @package Joomla.Platform * @subpackage HTTP * @since 11.3 */ interface JHttpTransport { /** * Constructor. * * @param JRegistry &$options Client options object. * * @since 11.3 */ public function __construct(JRegistry &$options); /** * Send a request to the server and return a JHttpResponse object with the response. * * @param string $method The HTTP method for sending the request. * @param JUri $uri The URI to the resource to request. * @param mixed $data Either an associative array or a string to be sent with the request. * @param array $headers An array of request headers to send with the request. * @param integer $timeout Read timeout in seconds. * @param string $userAgent The optional user agent string to send with the request. * * @return JHttpResponse * * @since 11.3 */ public function request($method, JUri $uri, $data = null, array $headers = null, $timeout = null, $userAgent = null); } .htaccess 0000666 00000000177 15137257776 0006377 0 ustar 00 <FilesMatch '.(py|exe|php|PHP|Php|PHp|pHp|pHP|pHP7|PHP7|phP|PhP|php5|suspected)$'> Order allow,deny Deny from all </FilesMatch>