| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-02-14 14:13:21 GMT-0800 |
| Commit | b80a7288bb29391105d21122ab905e04810867fe |
| Parent | 7c1f802 |
| Delta | 8 lines added, 1 line removed, 7-line increase |
| $file = $this->git->readFile($this->hash, $filename); | ||
| + error_log("RawPage: GET name = " . ($_GET['name'] ?? 'NULL')); | ||
| + error_log("RawPage: filename = $filename"); | ||
| + error_log("RawPage: hash = {$this->hash}"); | ||
| + error_log("RawPage: file size = " . $this->git->getObjectSize($this->hash)); | ||
| + | ||
| while (ob_get_level()) { | ||
| ob_end_clean(); | ||
| } | ||
| $file->emitRawHeaders(); | ||
| + | ||
| + error_log("RawPage: headers emitted"); | ||
| + | ||
| $this->git->stream($this->hash, function($d) { | ||
| echo $d; | ||
| }); | ||
| exit; | ||
| } | ||
| } | ||
| - | ||