aboutsummaryrefslogtreecommitdiffstats
path: root/lib/htmlpurifier/smoketests/all.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-18 03:59:10 -0700
committerfriendica <info@friendica.com>2012-07-18 03:59:10 -0700
commit22cf19e174bcee88b44968f2773d1bad2da2b54d (patch)
treef4e01db6f73754418438b020c2327e18c256653c /lib/htmlpurifier/smoketests/all.php
parent7a40f4354b32809af3d0cfd6e3af0eda02ab0e0a (diff)
downloadvolse-hubzilla-22cf19e174bcee88b44968f2773d1bad2da2b54d.tar.gz
volse-hubzilla-22cf19e174bcee88b44968f2773d1bad2da2b54d.tar.bz2
volse-hubzilla-22cf19e174bcee88b44968f2773d1bad2da2b54d.zip
bad sync with github windows client
Diffstat (limited to 'lib/htmlpurifier/smoketests/all.php')
-rw-r--r--lib/htmlpurifier/smoketests/all.php44
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/htmlpurifier/smoketests/all.php b/lib/htmlpurifier/smoketests/all.php
deleted file mode 100644
index 507034b93..000000000
--- a/lib/htmlpurifier/smoketests/all.php
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-require_once 'common.php';
-
-header('Content-type: text/html; charset=UTF-8');
-echo '<?xml version="1.0" encoding="UTF-8" ?>';
-
-?><!DOCTYPE html
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-loose.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
- <title>HTML Purifier: All Smoketests</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <style type="text/css">
- #content {margin:5em;}
- iframe {width:100%;height:30em;}
- </style>
-</head>
-<body>
-<h1>HTML Purifier: All Smoketests</h1>
-<div id="content">
-<?php
-
-$dir = './';
-$dh = opendir($dir);
-while (false !== ($filename = readdir($dh))) {
- if ($filename[0] == '.') continue;
- if (strpos($filename, '.php') === false) continue;
- if ($filename == 'common.php') continue;
- if ($filename == 'all.php') continue;
- if ($filename == 'testSchema.php') continue;
- ?>
- <iframe src="<?php echo escapeHTML($filename); if (isset($_GET['standalone'])) {echo '?standalone';} ?>"></iframe>
- <?php
-}
-
-?>
-</div>
-</body>
-</html>
-<?php
-
-// vim: et sw=4 sts=4