--- /dev/null
+Copyright (c) 2013, Michael Wallner <mike@php.net>.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+function is_constant(s) {
+ return s.length > 3 && s.toUpperCase(s) === s;
+}
+
+function is_variable(s) {
+ return s.substring(0,1) === "$";
+}
+
function type(s) {
+ var i, j, t;
// nothing
if (!s.match(/[a-zA-Z]/)) {
case "array":
case "object":
case "callable":
+ case "mixed":
return "<code>";
// keywords
return "<em>";
}
- var is_namespace, is_method;
-
- if ((is_method = (s.indexOf("::") !== -1)) || (is_namespace = (s.indexOf("\\") !== -1))) {
- return "<a href=\"/" + s.replace(/::|\\/g, "/") + (is_method ? ".md":"") + "\">";
+ // class members
+ if (-1 !== (i = s.indexOf("::"))) {
+ t = s.substring(i+2);
+ if (!is_constant(t) && !is_variable(t)) {
+ // methods
+ return "<a href=\"/" + s.replace(/::|\\/g, "/") + "\">";
+ }
+ }
+ if (-1 !== (j = s.indexOf("\\"))) {
+ return "<a href=\"/" + s.replace(/\\/g, "/").replace(/::|$/, "#") + "\">";
}
switch (s.toLowerCase()) {
// variables
default:
- if (s.substring(0,1) !== "$") {
+ if (!is_variable(s)) {
break;
}
// special constants
}
// constants
- if (s.toUpperCase() === s) {
- return "<code>";
+ if (is_constant(s)) {
+ return "<span class=\"constant\">";
}
}
function node(s) {
}
});
}
-$(document).ready(function() {
- //console.log("ready");
+function hashchange() {
+ if (location.hash.length > 1) {
+ var hash = location.hash.substring(1);
+
+ $(is_variable(hash) ? ".var" : ".constant").each(function(i, c) {
+
+ if (c.textContent === hash) {
+ var $c = $(c);
+
+ $(window).scrollTop($c.offset().top - 100);
+ $c.fadeOut("slow").queue(function(next) {
+ this.style.color = "red";
+ next();
+ }).fadeIn("fast").fadeOut("fast").queue(function(next) {
+ this.style.color = "";
+ next();
+ }).fadeIn("slow");
+ return false;
+ }
+ });
+ }
+}
+
+$(function() {
$("h1,h2,h3,h4,h5,h6,p,li,code").each(walk);
+ $(window).on("hashchange", hashchange);
+ hashchange();
});
error_reporting(E_ALL &~ E_DEPRECATED);
-define("OUTPUT", fopen("php://memory", "w+"));
-
function cut(array $lines, array $specs) {
$delim = "[[:space:]]+";
$bytes = [];
}
function urlpath($dir, $file) {
- return (strlen($dir) ? $dir . "/" : "") . urlencode($file);
+ return (strlen($dir) ? $dir . "/" : "") . basename($file, ".md");
}
-function ls($dir, $invert = false) {
- fprintf(OUTPUT, "<ul>\n");
- foreach (scandir($dir) as $file) {
- $dir = trim($dir, "./");
- $html = "";
- if ($file === ".") {
- continue;
- } elseif ($file === "..") {
- if ($dir === "" || $invert) {
+function ls($dir) {
+ $dir = rtrim(is_dir($dir) ? $dir : dirname($dir) ."/". basename($dir, ".md"), "/");
+ printf("<ul>\n");
+ printf("<li><a href=/>Home</a></li>\n");
+ if ($dir !== "." && ($dn = dirname($dir)) !== ".") {
+ printf("<li><a href=/%s>%s</a></li>\n",
+ urlpath($dir, ".."),
+ ns($dn));
+ }
+ if (is_dir($dir)) {
+ if ($dir !== ".") {
+ printf("<li>%s</li>\n", ns($dir));
+ }
+ foreach (scandir($dir) as $file) {
+ /* ignore dot-files */
+ if ($file{0} === ".") {
continue;
}
- $name = sprintf("namespace %s", ns(dirname($dir)));
- } elseif (!$invert && is_dir("./$dir/$file")) {
- $name = sprintf("namespace %s", ns("./$dir/$file"));
- } elseif (!$invert && ctype_upper($file{0})) {
- $name = join(" ", cut(head("./$dir/$file"), ["f"=>"1-2"]));
- } elseif (!$invert || ctype_upper($file{0})) {
- continue;
- } else {
- $name = ns($dir)."::".basename($file, ".md");
- $html = "<p>".join(" ", cut(head("./$dir/$file"), ["f"=>"1-"]))."</p>";
+
+ $path = "$dir/$file";
+
+ if (is_file($path)) {
+ $pi = pathinfo($path);
+ /* ignore files not ending in .md */
+ if (!isset($pi["extension"]) || $pi["extension"] != "md") {
+ continue;
+ }
+ if (!ctype_upper($file{0}) && !is_dir("$dir/".$pi["filename"])) {
+ continue;
+ }
+ } else {
+ /* ignore directories where an companying file exists */
+ if (is_file("$path.md")) {
+ continue;
+ }
+ }
+
+ printf("<li><a href=\"/%s\">%s</a></li>\n",
+ urlpath($dir, $file),
+ ns("$dir/".basename($file, ".md")));
}
-
- fprintf(OUTPUT, "<li><a href=\"/%s\">%s</a>%s</li>\n",
- urlpath($dir, $file),
- htmlspecialchars($name),
- $html);
}
- fprintf(OUTPUT, "</ul>\n");
+
+ printf("</ul>\n");
}
function ml($file) {
$pi = pathinfo($file);
if (ctype_upper($pi["filename"][0])) {
- fprintf(OUTPUT, "<h2>Methods:</h2>\n");
- $el = $pi["dirname"] . "/" . $pi["filename"];
- ls($el, true);
+ printf("<h2>Methods:</h2>\n");
+ $dir = $pi["dirname"] . "/" . $pi["filename"];
+ if (is_dir($dir)) {
+ printf("<ul>\n");
+ foreach (scandir($dir) as $file) {
+ if (!is_file("$dir/$file") || ctype_upper($file{0})) {
+ continue;
+ }
+ printf("<li><h3>%s</h3><p>%s</p></li>\n",
+ basename($file, ".md"),
+ join(" ", cut(head("$dir/$file"), ["f"=>"1-"]))
+ );
+ }
+ printf("</ul>\n");
+ }
}
}
function md($file) {
- $r = fopen($file, "r");
- $md = MarkdownDocument::createFromStream($r);
- $md->compile();
- $md->writeHtml(OUTPUT);
- unset($md);
- fclose($r);
+ $file = rtrim($file, "/");
+ if (is_file($file) || is_file($file .= ".md")) {
+ $r = fopen($file, "r");
+ $md = MarkdownDocument::createFromStream($r);
+ $md->compile();
+ echo $md->getHtml();
+ fclose($r);
+ ml($file);
+ } else {
+ printf("<h1>Quick Markdown Doc Browser</h1>\n");
+ printf("<p>v0.1.0</p>\n");
+ printf("<p>");
+ ob_start(function($s) {
+ return nl2br(htmlspecialchars($s));
+ });
+ readfile("LICENSE");
+ ob_end_flush();
+ printf("</p>\n");
+ }
+}
- // BS Markdown seeks around...
- fseek(OUTPUT, 0, SEEK_END);
-
- ml($file);
+
+function index($pn) {
+ ?>
+ <!doctype html>
+ <html>
+ <head>
+ <meta charset="utf-8">
+ <title><?=ns($pn)?></title>
+ <link rel="stylesheet" href="/index.css">
+ </head>
+ <body>
+ <div class="sidebar">
+ <?php ls($pn); ?>
+ </div>
+ <?php md($pn); ?>
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
+ <script src="/index.js"></script>
+ </body>
+ </html>
+ <?php
}
+chdir($_SERVER["DOCUMENT_ROOT"]);
+$t = ["css"=>"text/css", "js"=>"application/javascript"];
$r = new http\Env\Request;
$u = new http\Url($r->getRequestUrl());
-$t = ["css"=>"text/css", "js"=>"application/javascript"];
+$s = new http\Env\Response;
switch($u->path) {
case "/index.js":
case "/index.css":
- $s = new http\Env\Response;
$s->setHeader("Content-type", $t[pathinfo($u->path, PATHINFO_EXTENSION)]);
$s->setBody(new http\Message\Body(fopen(basename($u->path), "r")));
$s->send();
exit;
+default:
+ ob_start($s);
+ index(".".$u->path);
+ ob_end_flush();
+ $s->send();
+ break;
}
-if (is_dir(".".$u->path)) {
- ls(".".$u->path);
-} else {
- md(".".$u->path);
-}
-
-?>
-<!doctype html>
-<html>
-<head>
-<meta charset="utf-8">
-<title><?=$u->path?></title>
-<link rel="stylesheet" href="/index.css">
-</head>
-<body>
-<?php
-rewind(OUTPUT);
-fpassthru(OUTPUT);
-fclose(OUTPUT);
?>
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
-<script src="/index.js"></script>
-</body>
-</html>