X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/2013f7a1c3ef61a66f5b158823d19c8e6ade8886..f73f2c6c223577ad3cc6e14c0e6ff1567c910eae:/page.php diff --git a/page.php b/page.php index a9607c0..c313467 100644 --- a/page.php +++ b/page.php @@ -26,6 +26,10 @@ elseif (file_exists("$request/index.html")) { require_once('article.inc.php'); $Page = new ArchiveArticle($staticpage); +if (@$_SERVER['HTTP_ACCEPT'] === 'text/plain') { + $Page->api = TRUE; +} + # user login and control include_once 'auth.inc.php'; // sets global $User @@ -52,7 +56,7 @@ $Page->place += [ 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), ]; -if ($User->admin("edit {$Page->link}")) { +if ($Page->editable = $User->admin("edit {$Page->link}")) { include_once 'edit/head.inc.php'; } @@ -65,7 +69,7 @@ if (isset($Page->raw)) { include_once 'format.inc.php'; ob_start(); -if ($Page->handler and !require("./{$Page->handler}/index.php")) { +if ($Page->handler and !$Page->index($Page->api)) { # replace contents by code output on false return $Page->raw = ob_get_clean(); } @@ -79,5 +83,11 @@ else { } } -include_once 'page.inc.php'; +if (@$_SERVER['HTTP_ACCEPT'] === 'application/xml') { + header('Access-Control-Allow-Origin: *'); +} +elseif (!$Page->api) { + include_once 'page.inc.php'; +} +print $Page->render();