|
|
- <?php
- // Include prepend.inc to load Qcodo
- require('../prepend.inc.php'); /* if you DO NOT have "includes/" in your include_path */
- // require('prepend.inc.php'); /* if you DO have "includes/" in your include_path */
-
- // Load in the QCodeGen Class
- require(__QCODO__ . '/codegen/QCodeGen.class.php');
-
- // Security check for ALLOW_REMOTE_ADMIN
- // To allow access REGARDLESS of ALLOW_REMOTE_ADMIN, simply remove the line below
- QApplication::CheckRemoteAdmin();
-
- /////////////////////////////////////////////////////
- // Run CodeGen, using the ./codegen_settings.xml file
- /////////////////////////////////////////////////////
- QCodeGen::Run(dirname(__FILE__) . '/codegen_settings.xml');
-
- function DisplayMonospacedText($strText) {
- $strText = QApplication::HtmlEntities($strText);
- $strText = str_replace(' ', ' ', $strText);
- $strText = str_replace(' ', ' ', $strText);
- $strText = str_replace("\r", '', $strText);
- $strText = str_replace("\n", '<br/>', $strText);
-
- _p($strText, false);
- }
-
- //////////////////
- // Output the Page
- //////////////////
- ?>
- <html>
- <head>
- <title>Qcodo Development Framework - Code Generator</title>
- <style>
- body { font-family: 'Arial' 'Helvetica' 'sans-serif'; font-size: 14px; margin: 0px; background-color: white;}
- a:link, a:visited { text-decoration: none; }
- a:hover { text-decoration: underline; }
-
- .page { padding: 10px; }
-
- .headingLeft {
- background-color: #446644;
- color: #ffffff;
- padding: 10px 0px 10px 10px;
- font-family: 'Verdana' 'Arial' 'Helvetica' 'sans-serif';
- font-size: 18px;
- font-weight: bold;
- width: 70%;
- vertical-align: bottom;
- }
- .headingLeftSmall { font-size: 10px; }
- .headingRight {
- background-color: #446644;
- color: #ffffff;
- padding: 0px 10px 10px 10px;
- font-family: 'Verdana' 'Arial' 'Helvetica' 'sans-serif';
- font-size: 10px;
- width: 30%;
- vertical-align: bottom;
- text-align: right;
- }
- .title { font-family: 'Verdana' 'Arial' 'Helvetica' 'sans-serif'; font-size: 19px; font-style: italic; color: #330055; }
-
- .code { background-color: #f4eeff; padding: 10px 10px 10px 10px; margin-left: 50px; font-size: 11px; font-family: 'Lucida Console' 'Courier New' 'Courier' 'monospaced';}
- .code_title { font-family: 'Verdana' 'Arial' 'Helvetica' 'sans-serif'; font-size: 12px; font-weight: bold; }
- </style>
- </head>
- <body>
-
- <table border="0" cellspacing="0" width="100%">
- <tr>
- <td nowrap="nowrap" class="headingLeft"><span class="headingLeftSmall">Qcodo Development Framework <?php _p(QCODO_VERSION); ?><br /></span>Code Generator</div></td>
- <td nowrap="nowrap" class="headingRight">
- <b>PHP Version:</b> <?php _p(PHP_VERSION); ?>; <b>Zend Engine Version:</b> <?php _p(zend_version()); ?>; <b>Qcodo Version:</b> <?php _p(QCODO_VERSION); ?><br />
- <?php if (array_key_exists('OS', $_SERVER)) printf('<b>Operating System:</b> %s; ', $_SERVER['OS']); ?><b>Application:</b> <?php _p($_SERVER['SERVER_SOFTWARE']); ?>; <b>Server Name:</b> <?php _p($_SERVER['SERVER_NAME']); ?><br />
- <b>Code Generated:</b> <?php _p(date('l, F j Y, g:i:s A')); ?>
- </td>
- </tr>
- </table>
-
- <div class="page">
- <?php if ($strErrors = QCodeGen::$RootErrors) { ?>
- <p><b>The following root errors were reported:</b></p>
- <div class="code"><?php DisplayMonospacedText($strErrors); ?></div>
- <p></p>
- <?php } else { ?>
- <p><b>CodeGen Settings (as evaluated from <?php _p(QCodeGen::$SettingsFilePath); ?>):</b></p>
- <div class="code"><?php DisplayMonospacedText(QCodeGen::GetSettingsXml()); ?></div>
- <p></p>
- <?php } ?>
-
- <?php foreach (QCodeGen::$CodeGenArray as $objCodeGen) { ?>
- <p><b><?php _p($objCodeGen->GetTitle()); ?></b></p>
- <div class="code"><span class="code_title"><?php _p($objCodeGen->GetReportLabel()); ?></span><br/><br/>
- <?php DisplayMonospacedText($objCodeGen->GenerateAll()); ?>
- <?php if ($strErrors = $objCodeGen->Errors) { ?>
- <p class="code_title">The following errors were reported:</p>
- <?php DisplayMonospacedText($objCodeGen->Errors); ?>
- <?php } ?>
- </div><p></p>
- <?php } ?>
-
- <?php foreach (QCodeGen::GenerateAggregate() as $strMessage) { ?>
- <p><b><?php _p($strMessage); ?></b></p>
- <?php } ?>
-
- </div>
- </body>
- </html>
|