Changeset 443
- Timestamp:
- 05/27/07 10:09:53 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/jelix/core/response/jResponseBinary.class.php
r338 r443 4 4 * @subpackage core_response 5 5 * @author Laurent Jouanneau 6 * @contributor 6 * @contributor Nicolas Lassalle <nicolas@beroot.org> (ticket #188) 7 7 * @copyright 2005-2006 Laurent Jouanneau 8 * @copyright 2007 Nicolas Lassalle 8 9 * @link http://www.jelix.org 9 10 * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html … … 46 47 */ 47 48 public $doDownload = true; 49 50 /** 51 * The mimeType of the current binary file. 52 * It will be sent in the header "Content-Type". 53 * @var string 54 */ 55 public $mimeType = 'application/octet-stream'; 48 56 49 57 /** trunk/lib/jelix/core/response/jResponseBinary.class.php
r338 r443 4 4 * @subpackage core_response 5 5 * @author Laurent Jouanneau 6 * @contributor 6 * @contributor Nicolas Lassalle <nicolas@beroot.org> (ticket #188) 7 7 * @copyright 2005-2006 Laurent Jouanneau 8 * @copyright 2007 Nicolas Lassalle 8 9 * @link http://www.jelix.org 9 10 * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html … … 46 47 */ 47 48 public $doDownload = true; 49 50 /** 51 * The mimeType of the current binary file. 52 * It will be sent in the header "Content-Type". 53 * @var string 54 */ 55 public $mimeType = 'application/octet-stream'; 48 56 49 57 /**
