diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-03-13 20:02:47 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-03-13 20:02:47 +0100 |
commit | 758447cfa419f1a11bc022ef8168447992364e52 (patch) | |
tree | 7f10e61b2a085ac08a786bb1d5fa91cd2f4d09b3 /lib/exe/js.php | |
parent | af03da1a940f1ada715dcb574ff12a3e23465d99 (diff) | |
download | rpg-758447cfa419f1a11bc022ef8168447992364e52.tar.gz rpg-758447cfa419f1a11bc022ef8168447992364e52.tar.bz2 |
Support for multirange requests for media FS#1630
Ignore-this: 50de569608231b910a62327d2f3af1de
This patch moves all HTTP sending related functions to inc/httputils.php
Handling of range requests was rewritten completely to support mutirange
requests. This should fix problems with Adobe Reader but needs testing.
darcs-hash:20090313190247-7ad00-e6ec1f81acb9f7ac651357dd034c2689aea6868d.gz
Diffstat (limited to 'lib/exe/js.php')
-rw-r--r-- | lib/exe/js.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/exe/js.php b/lib/exe/js.php index 7746edcd9..7ba777928 100644 --- a/lib/exe/js.php +++ b/lib/exe/js.php @@ -12,6 +12,7 @@ if(!defined('NL')) define('NL',"\n"); if(!defined('DOKU_DISABLE_GZIP_OUTPUT')) define('DOKU_DISABLE_GZIP_OUTPUT',1); // we gzip ourself here require_once(DOKU_INC.'inc/init.php'); require_once(DOKU_INC.'inc/pageutils.php'); +require_once(DOKU_INC.'inc/httputils.php'); require_once(DOKU_INC.'inc/io.php'); require_once(DOKU_INC.'inc/JSON.php'); |