Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/static/js/wymeditor/plugins/tidy/.svn/text-base/tidy.php.svn-base
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/static/js/wymeditor/plugins/tidy/.svn/text-base/tidy.php.svn-base')
-rw-r--r--websdk/static/js/wymeditor/plugins/tidy/.svn/text-base/tidy.php.svn-base36
1 files changed, 0 insertions, 36 deletions
diff --git a/websdk/static/js/wymeditor/plugins/tidy/.svn/text-base/tidy.php.svn-base b/websdk/static/js/wymeditor/plugins/tidy/.svn/text-base/tidy.php.svn-base
deleted file mode 100644
index 23b9bec..0000000
--- a/websdk/static/js/wymeditor/plugins/tidy/.svn/text-base/tidy.php.svn-base
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-if (get_magic_quotes_gpc()) $html = stripslashes($_REQUEST['html']);
-else $html = $_REQUEST['html'];
-
-if(strlen($html) > 0) {
-
- // Specify configuration
- $config = array(
- 'bare' => true,
- 'clean' => true,
- 'doctype' => 'strict',
- 'drop-empty-paras' => true,
- 'drop-font-tags' => true,
- 'drop-proprietary-attributes' => true,
- 'enclose-block-text' => true,
- 'indent' => false,
- 'join-classes' => true,
- 'join-styles' => true,
- 'logical-emphasis' => true,
- 'output-xhtml' => true,
- 'show-body-only' => true,
- 'wrap' => 0);
-
- // Tidy
- $tidy = new tidy;
- $tidy->parseString($html, $config, 'utf8');
- $tidy->cleanRepair();
-
- // Output
- echo $tidy;
-} else {
-
-echo ('0');
-}
-?>