- add doc progress checker
authorMichael Wallner <mike@php.net>
Tue, 27 Mar 2007 14:21:46 +0000 (14:21 +0000)
committerMichael Wallner <mike@php.net>
Tue, 27 Mar 2007 14:21:46 +0000 (14:21 +0000)
scripts/check_docs.php [new file with mode: 0755]
scripts/gen_curlinfo.php

diff --git a/scripts/check_docs.php b/scripts/check_docs.php
new file mode 100755 (executable)
index 0000000..d65effa
--- /dev/null
@@ -0,0 +1,53 @@
+#!/usr/bin/env php
+<?php
+// $Id$
+
+function re($file, $re, &$m=NULL) {
+       global $doc;
+       return preg_match($re, file_get_contents("$doc/$file"), $m);
+}
+function fe($file) {
+       global $doc;
+       return file_exists("$doc/$file");
+}
+function fg($path, &$g=NULL) {
+       global $doc;
+       return count($g = glob("$doc/$path"));
+}
+
+$doc = "/home/mike/cvs/phpdoc/en/reference/http";
+$ext = new ReflectionExtension("http");
+
+printf("Undocumented INI options:\n");
+foreach ($ext->getINIEntries() as $name => $tmp) {
+       re("configuration.xml", "#<entry>$name</entry>#") or printf("\t%s (%s)\n", $name, $tmp);
+}
+printf("\n");
+
+printf("Undocumented constants:\n");
+foreach ($ext->getConstants() as $name => $tmp) {
+       re("constants.xml", "#<constant>$name</constant>#") or printf("\t%s (%s)\n", $name, $tmp);
+}
+printf("\n");
+
+
+printf("Undocumented functions:\n");
+foreach ($ext->getFunctions() as $func) {
+       /* @var $func ReflectionFunction */
+       fg(sprintf("functions/*/%s.xml", strtr($func->getName(),'_','-'))) or printf("\t%s()\n", $func->getName());
+}
+printf("\n");
+
+printf("Undocumented classes/methods:\n");
+foreach ($ext->getClasses() as $class) {
+        if (substr($class->getName(), -strlen("Exception")) === "Exception") continue;
+       /* @var $class ReflectionClass */
+       fg(sprintf("%s.xml", $class->getName())) or printf(" %s\n", $class->getName());
+       foreach ($class->getMethods() as $meth) {
+               fg(sprintf("%s/%s.xml", $class->getName(), strtr(trim($meth->getName(),'_'),'_','-'))) or printf("\t%s::%s()\n", $class->getName(), $meth->getName());
+       }
+       printf("\n");
+}
+printf("\n");
+
+?>
index a07af2281c2f5485497814a9754e4ff3a9459d06..f7c6cdb53d55ad0dfc5f3b124256495c1cb57fbc 100644 (file)
@@ -1,3 +1,4 @@
+#!/usr/bin/env php
 <?php
 // $Id$