From e6bfd71e3ea3ca059324439dbf7181b1a55170e6 Mon Sep 17 00:00:00 2001 From: Jay Williams Date: Fri, 10 Apr 2009 10:26:44 -0500 Subject: [PATCH] Added {.html} codeblock specification to Element.md. Updated a a few inline comments. --- assets/menu.php | 2 +- assets/toc.php | 2 +- docs/Element/Element.md | 1 + github.php | 7 ++++++- mdocs.php | 2 -- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/assets/menu.php b/assets/menu.php index ed92b12..88a2eec 100644 --- a/assets/menu.php +++ b/assets/menu.php @@ -4,7 +4,7 @@ * Document Navigation Menu * * Example: -* $menu = new menu(); +* $menu = new menu( 'docs/', '.md' ); * echo $menu->generate(); * */ diff --git a/assets/toc.php b/assets/toc.php index b67e9f5..3792d91 100644 --- a/assets/toc.php +++ b/assets/toc.php @@ -6,7 +6,7 @@ * Example: * * $toc = new TOC( $html ); -* echo $toc->output_flat(); +* echo $toc->generate(); * * * @author Jay Williams diff --git a/docs/Element/Element.md b/docs/Element/Element.md index c5d2be6..29f1e4e 100755 --- a/docs/Element/Element.md +++ b/docs/Element/Element.md @@ -1357,6 +1357,7 @@ Sets numerous attributes for the Element. ##### Resulting HTML + {.html} whatever dude diff --git a/github.php b/github.php index 010ec89..87f1552 100644 --- a/github.php +++ b/github.php @@ -76,6 +76,11 @@ */ $config->log = 'github.log'; + + + + + /** * Verify that an authorized client is submitting the request... */ @@ -142,7 +147,7 @@ /** * Otherwise, run through the changed files, and see if any files - * have been changed in the docs directory in the repository + * have been changed in the docs directory of the repository */ foreach ($files as $file) { if (strpos($file,$config->repo_path) !== false) { diff --git a/mdocs.php b/mdocs.php index 8d9a741..6605fa2 100644 --- a/mdocs.php +++ b/mdocs.php @@ -6,8 +6,6 @@ error_reporting(E_ALL); /** - * @todo Create A GitHub update hook file, to keep the docs in sync with GitHub - * * @todo Add a "clean url" (mod_rewrite) option to the Menu class */