2010-09-28 16:10:44 -07:00
|
|
|
<?php
|
2010-09-28 22:12:27 -07:00
|
|
|
// Tired of chasing typos and finding them after a commit.
|
|
|
|
// Run this from cmdline in basedir and quickly see if we've
|
|
|
|
// got any parse errors in our application files.
|
|
|
|
|
2010-09-28 16:10:44 -07:00
|
|
|
|
2011-02-21 20:19:33 -08:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE );
|
2010-10-30 13:25:37 -07:00
|
|
|
ini_set('display_errors', '1');
|
|
|
|
ini_set('log_errors','0');
|
|
|
|
|
2011-02-21 20:19:33 -08:00
|
|
|
include 'boot.php';
|
|
|
|
|
2010-09-28 16:10:44 -07:00
|
|
|
$a = new App();
|
|
|
|
|
2011-02-21 20:19:33 -08:00
|
|
|
echo "Directory: mod\n";
|
2010-09-28 16:10:44 -07:00
|
|
|
$files = glob('mod/*.php');
|
2011-02-21 20:19:33 -08:00
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
2010-09-28 16:10:44 -07:00
|
|
|
include_once($file);
|
2011-02-21 20:19:33 -08:00
|
|
|
}
|
2010-09-28 16:10:44 -07:00
|
|
|
|
2011-02-21 20:19:33 -08:00
|
|
|
echo "Directory: include\n";
|
2010-09-28 16:10:44 -07:00
|
|
|
$files = glob('include/*.php');
|
2011-02-21 20:19:33 -08:00
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
2010-12-23 19:31:53 -08:00
|
|
|
include_once($file);
|
2011-02-21 20:19:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
echo "Directory: addon\n";
|
|
|
|
$dirs = glob('addon/*');
|
|
|
|
|
|
|
|
foreach($dirs as $dir) {
|
|
|
|
$files = glob($dir . '/*.php');
|
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
2012-04-23 05:16:57 -07:00
|
|
|
if(stristr($file,'jappixmini/proxy.php'))
|
|
|
|
continue;
|
2011-02-21 20:19:33 -08:00
|
|
|
include_once($file);
|
|
|
|
}
|
2011-03-08 18:53:52 -08:00
|
|
|
}
|
|
|
|
|
2011-03-28 17:24:11 -07:00
|
|
|
if(x($a->config,'php_path'))
|
|
|
|
$phpath = $a->config['php_path'];
|
|
|
|
else
|
|
|
|
$phpath = 'php';
|
|
|
|
|
2011-03-08 18:53:52 -08:00
|
|
|
echo "String files\n";
|
|
|
|
|
|
|
|
echo 'util/strings.php' . "\n";
|
|
|
|
include_once('util/strings.php');
|
2011-03-21 00:21:35 -07:00
|
|
|
echo count($a->strings) . ' strings' . "\n";
|
|
|
|
|
2011-03-08 18:53:52 -08:00
|
|
|
$files = glob('view/*/strings.php');
|
2011-03-21 00:21:35 -07:00
|
|
|
|
2011-03-08 18:53:52 -08:00
|
|
|
foreach($files as $file) {
|
|
|
|
echo $file . "\n";
|
2011-03-28 17:24:11 -07:00
|
|
|
passthru($phpath . ' util/typohelper.php ' . $file);
|
|
|
|
// include_once($file);
|
2011-03-08 18:53:52 -08:00
|
|
|
}
|