- Timestamp:
- 2007/02/25 00:33:58 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
temp/branches/mobile/data/module/Net/UserAgent/Mobile/Request.php
r11398 r11456 1 1 <?php 2 2 /* vim: set expandtab tabstop=4 shiftwidth=4: */ 3 // +----------------------------------------------------------------------+ 4 // | PHP version 4 | 5 // +----------------------------------------------------------------------+ 6 // | Copyright (c) 1997-2004 The PHP Group | 7 // +----------------------------------------------------------------------+ 8 // | This source file is subject to version 3.0 of the PHP license, | 9 // | that is bundled with this package in the file LICENSE, and is | 10 // | available through the world-wide-web at the following url: | 11 // | http://www.php.net/license/3_0.txt. | 12 // | If you did not receive a copy of the PHP license and are unable to | 13 // | obtain it through the world-wide-web, please send a note to | 14 // | [email protected] so we can mail you a copy immediately. | 15 // +----------------------------------------------------------------------+ 16 // | Authors: KUBO Atsuhiro <[email protected]> | 17 // +----------------------------------------------------------------------+ 18 // 19 // $Id: Request.php,v 1.5 2006/11/07 09:25:14 kuboa Exp $ 20 // 3 4 /** 5 * PHP versions 4 and 5 6 * 7 * LICENSE: This source file is subject to version 3.0 of the PHP license 8 * that is available through the world-wide-web at the following URI: 9 * http://www.php.net/license/3_0.txt. If you did not receive a copy of 10 * the PHP License and are unable to obtain it through the web, please 11 * send a note to [email protected] so we can mail you a copy immediately. 12 * 13 * @category Networking 14 * @package Net_UserAgent_Mobile 15 * @author KUBO Atsuhiro <[email protected]> 16 * @copyright 2003-2007 KUBO Atsuhiro <[email protected]> 17 * @license http://www.php.net/license/3_0.txt PHP License 3.0 18 * @version CVS: $Id: Request.php,v 1.6 2007/02/20 15:18:26 kuboa Exp $ 19 * @since File available since Release 0.1 20 */ 21 22 // {{{ Net_UserAgent_Mobile_Request 21 23 22 24 /** … … 24 26 * HTTP header containers 25 27 * 26 * @package Net_UserAgent_Mobile 27 * @category Networking 28 * @author KUBO Atsuhiro <[email protected]> 29 * @access public 30 * @version $Revision: 1.5 $ 28 * @category Networking 29 * @package Net_UserAgent_Mobile 30 * @author KUBO Atsuhiro <[email protected]> 31 * @copyright 2003-2007 KUBO Atsuhiro <[email protected]> 32 * @license http://www.php.net/license/3_0.txt PHP License 3.0 33 * @version Release: 0.30.0 34 * @since Class available since Release 0.1 31 35 */ 32 36 class Net_UserAgent_Mobile_Request 33 37 { 38 39 // {{{ properties 40 41 /**#@+ 42 * @access public 43 */ 44 45 /**#@-*/ 46 47 /**#@+ 48 * @access private 49 */ 50 51 /**#@-*/ 34 52 35 53 /**#@+ … … 66 84 67 85 /**#@-*/ 86 87 /**#@+ 88 * @access private 89 */ 90 91 /**#@-*/ 92 93 // }}} 68 94 } 95 96 // }}} 97 // {{{ Net_UserAgent_Mobile_Request_Env 69 98 70 99 /** 71 100 * provides easy way to access environment variables 72 101 * 73 * @package Net_UserAgent_Mobile 74 * @category Networking 75 * @author KUBO Atsuhiro <[email protected]> 76 * @access public 77 * @version $Revision: 1.5 $ 102 * @category Networking 103 * @package Net_UserAgent_Mobile 104 * @author KUBO Atsuhiro <[email protected]> 105 * @copyright 2003-2007 KUBO Atsuhiro <[email protected]> 106 * @license http://www.php.net/license/3_0.txt PHP License 3.0 107 * @version Release: 0.30.0 108 * @since Class available since Release 0.1 78 109 */ 79 110 class Net_UserAgent_Mobile_Request_Env … … 81 112 82 113 // {{{ properties 114 115 /**#@+ 116 * @access public 117 */ 118 119 /**#@-*/ 83 120 84 121 /**#@+ … … 124 161 125 162 /**#@-*/ 163 164 /**#@+ 165 * @access private 166 */ 167 168 /**#@-*/ 169 170 // }}} 126 171 } 172 173 // }}} 127 174 128 175 /*
Note: See TracChangeset
for help on using the changeset viewer.
