From a1d1496cce437afe3ceb2f84fd3baac806ab6659 Mon Sep 17 00:00:00 2001
From: Urban Müller
Date: Mon, 14 Nov 2011 02:35:56 +0000
Subject: hide complex -webkit-keyframes

---
 itjs.php | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

(limited to 'itjs.php')

diff --git a/itjs.php b/itjs.php
index f656e19..03073e9 100644
--- a/itjs.php
+++ b/itjs.php
@@ -50,8 +50,9 @@ else if (it::match('\.css', $_SERVER['PHP_SELF']))
 	$data .= "\n#it_boot_dom { display:none }\n";	# Append magic style for it_boot
 	if (!it::match('^devel', $GLOBALS['ULTRASERVERTYPE']))
 		$data = it::replace(array('[ \t]*([{};])[ \t]*' => '$1', '/\*.*?\*/' => ""), $data);
-	if (it::match('W3C_CSS_Validator', $_SERVER['HTTP_USER_AGENT']) || EDC('w3c'))
-		$data = it::replace(array('background[^;}]*(gradient|rgba)[^;}]*;?' => "", '(filter:\s*(progid|none)|text-overflow:|zoom:|-webkit-|display:-moz-|-moz-|-o-|cursor:|border-radius:|behavior:|\w+:expression)[^;}]*;?' => "", 'html\.ie6.*' => "", '([^/])\*(\w)' => '$1$2'), $data);
+	if (it::match('W3C_CSS_Validator', $_SERVER['HTTP_USER_AGENT']) || EDC('w3c')) {
+		$data = it::replace(array('@-.*' => "", 'background[^;}]*(gradient|rgba)[^;}]*;?' => "", '(filter:\s*(progid|none)|text-overflow:|zoom:|-webkit-|display:-moz-|-moz-|-o-|cursor:|border-radius:|behavior:|\w+:expression)[^;}]*;?' => "", 'html\.ie6.*' => "", '([^/])\*(\w)' => '$1$2'), $data);
+	}
 }
 else if (it::match('\.htc$', $file))
 {
@@ -70,7 +71,7 @@ else if (!it::match('\.html$', $file))
 
 if ($checksum != $_SERVER['HTTP_IF_NONE_MATCH'])
 {
-	if (!preg_match('/Opera/', $_SERVER['HTTP_USER_AGENT']))
+	if (!preg_match('/Opera/', $_SERVER['HTTP_USER_AGENT']) && it::is_live())
 		header("Cache-Control: max-age=900");
 
 	$data = itjs::strip($data);
-- 
cgit v1.2.3