1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-12 17:14:24 +02:00

Moved HTTP examples into web/test

This commit is contained in:
Steve Clay
2008-05-15 15:20:33 +00:00
parent 048c689663
commit fb4ecd2231
8 changed files with 14 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
<?php
require '../../ConditionalGet.php';
require '../../config.php';
require 'HTTP/ConditionalGet.php';
// emulate regularly updating document
$every = 20;

View File

@@ -1,5 +1,7 @@
<?php
require '../../ConditionalGet.php';
require '../../config.php';
require 'HTTP/ConditionalGet.php';
// generate content first (not ideal)
// emulate regularly updating document

View File

@@ -1,5 +1,7 @@
<?php
require '../../ConditionalGet.php';
require '../../config.php';
require 'HTTP/ConditionalGet.php';
// emulate regularly updating document
$every = 20;

View File

@@ -1,6 +1,7 @@
<?php
require '../../ConditionalGet.php';
require '../../config.php';
require 'HTTP/ConditionalGet.php';
// far expires
$cg = new HTTP_ConditionalGet(array(

View File

@@ -1,6 +1,7 @@
<?php
require '../../ConditionalGet.php';
require '../../config.php';
require 'HTTP/ConditionalGet.php';
// emulate regularly updating document
$every = 20;

View File

Before

Width:  |  Height:  |  Size: 202 B

After

Width:  |  Height:  |  Size: 202 B

View File

@@ -1,7 +1,8 @@
<?php
ini_set('display_errors', 'on');
require '../../Encoder.php';
require '../../config.php';
require 'HTTP/Encoder.php';
if (!isset($_GET['test'])) {
$type = 'text/html';