summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2016-02-26 20:52:53 +0100
committerAndreas Gohr <andi@splitbrain.org>2016-02-26 20:52:53 +0100
commitd01c021d52a8d306332ec681b7c3433fb80d7996 (patch)
tree8f5cc31458e38002849e4370b07222cd707f0cf0
parentb288bde8c9db9190a39be1beb6f0a6ddfde2ad14 (diff)
downloadxdebug-trace-tree-d01c021d52a8d306332ec681b7c3433fb80d7996.zip
xdebug-trace-tree-d01c021d52a8d306332ec681b7c3433fb80d7996.tar.gz
xdebug-trace-tree-d01c021d52a8d306332ec681b7c3433fb80d7996.tar.bz2
moved all the stuff to a subdir
-rw-r--r--index.php8
-rw-r--r--res/XDebugParser.php (renamed from XDebugParser.php)0
-rw-r--r--res/script.js (renamed from script.js)0
-rw-r--r--res/style.css (renamed from style.css)0
4 files changed, 4 insertions, 4 deletions
diff --git a/index.php b/index.php
index 095385b..7dbce06 100644
--- a/index.php
+++ b/index.php
@@ -2,9 +2,9 @@
<html>
<head>
<title>XDebug Trace Tree</title>
- <link rel="stylesheet" href="style.css">
+ <link rel="stylesheet" href="res/style.css">
<script src="https://code.jquery.com/jquery-2.2.1.min.js"></script>
- <script src="script.js"></script>
+ <script src="res/script.js"></script>
</head>
<body>
@@ -23,7 +23,7 @@
?>
</select>
<button type="submit">Load</button><br />
- Files are read from xdebug.trace_output_dir = <?php echo htmlspecialchars($dir)?>
+ <p>Files are read from <code>xdebug.trace_output_dir = <?php echo htmlspecialchars($dir)?></code></p>
</form>
<ul class="help">
@@ -44,7 +44,7 @@
<?php
if (!empty($_REQUEST['file'])) {
- require_once 'XDebugParser.php';
+ require_once 'res/XDebugParser.php';
$parser = new XDebugParser($_REQUEST['file']);
$parser->parse();
echo $parser->getTraceHTML();
diff --git a/XDebugParser.php b/res/XDebugParser.php
index 3cf2616..3cf2616 100644
--- a/XDebugParser.php
+++ b/res/XDebugParser.php
diff --git a/script.js b/res/script.js
index f45ab90..f45ab90 100644
--- a/script.js
+++ b/res/script.js
diff --git a/style.css b/res/style.css
index 97844a1..97844a1 100644
--- a/style.css
+++ b/res/style.css