david_williams | 1a99389 | 2007-07-29 19:19:05 +0000 | [diff] [blame^] | 1 | <?php |
| 2 | // if compilelogsSummary.xml exists, assume the "new way" (summary in xml file). |
| 3 | // else, assume old way |
| 4 | //echo "drops/$bValue/$innerValue/compilelogsSummary.xml"; |
| 5 | if (file_exists("drops/$bValue/$innerValue/compilelogsSummary.xml")) |
| 6 | { |
| 7 | include 'compileLogSumaryXML.php'; |
| 8 | } |
| 9 | // if compileResults.php exists, assume the "new way" (testResults and compileResult seperated). |
| 10 | // else, assume old way |
| 11 | else if (file_exists("drops/$bValue/$innerValue/compileResults.php")) |
| 12 | { |
| 13 | include 'parse2Handling.php'; |
| 14 | } |
| 15 | else { |
| 16 | include 'parseHandling.php'; |
| 17 | } |
| 18 | ?> |