Add ability to include page assets in documentation pages such as images. Updated Personal Channel tutorial to use local images using this new capability.

This commit is contained in:
Andrew Manning
2016-11-27 13:43:07 -07:00
parent 99a4bb63c7
commit 7470b1180e
29 changed files with 57 additions and 26 deletions

View File

@@ -44,8 +44,39 @@ class Help extends \Zotlabs\Web\Controller {
return $o;
}
if(argc() > 2 && argv(argc()-2) === 'assets') {
$path = '';
for($x = 1; $x < argc(); $x ++) {
if(strlen($path))
$path .= '/';
$path .= argv($x);
}
$realpath = 'doc/' . $path;
//Set the content-type header as appropriate
$imageInfo = getimagesize($realpath);
switch ($imageInfo[2]) {
case IMAGETYPE_JPEG:
header("Content-Type: image/jpeg");
break;
case IMAGETYPE_GIF:
header("Content-Type: image/gif");
break;
case IMAGETYPE_PNG:
header("Content-Type: image/png");
break;
default:
break;
}
header("Content-Length: " . filesize($realpath));
$content = get_help_content();
// dump the picture and stop the script
readfile($realpath);
killme();
}
$content = get_help_content();
return replace_macros(get_markup_template('help.tpl'), array(
'$title' => t('$Projectname Documentation'),