php8
[web.mtrack] / MTrackWeb / File.php
index 98d3837..443f926 100644 (file)
@@ -92,8 +92,7 @@ class MTrackWeb_File extends MTrackWeb
         $this->basename  = basename($this->filename);
         $location = '';
         $crumbs = dirname($this->filename) == '.' ? array() :  explode('/', dirname($this->filename));
-        array_unshift($crumbs, ''); // add empty at front..
-        
+         
         
         
         
@@ -103,7 +102,7 @@ class MTrackWeb_File extends MTrackWeb
                 continue;
             }
             $c = new StdClass;
-            $c->name = strlen($path) ? $path : '[root]';
+            $c->name =   $path  ;
             $location .=  strlen($location) ? '/' : '';
             $location .=  strlen($path)  ?  urlencode($path)  : '';
             $c->location = $location;
@@ -131,13 +130,21 @@ class MTrackWeb_File extends MTrackWeb
         require_once 'File/MimeType.php';
         $y = new File_MimeType();
         $this->mimetype = $y->fromFilename($this->file->name);
-
+        $ext = strtolower(array_pop(explode('.', $this->file->name)));
         
         //$this->mimetype = mtrack_mime_detect($location, $this->file->name);
-        
+        // special cases..
         
         list($major) = explode('/', $this->mimetype, 2);
 
+        switch ($ext) {
+            case 'sql':
+                $major = 'text';
+                break;
+            
+            
+        }
+
         // Obscure-ish special cases for mime types;
         // some .y files look like old image format data
         switch ($this->mimetype) {
@@ -171,8 +178,16 @@ class MTrackWeb_File extends MTrackWeb
             case 'text':
                 fseek($t, 0);
                 
-                $this->ann = array_values($this->file->annotate());
+                // this should be a json query..
+                //$this->ann = array_values($this->file->annotate());
                // echo '<PRE>';print_R($this->ann);exit;
+                if (!empty($_REQUEST['annotate'])) {
+                    
+                    $ann = array_values($this->file->annotate());
+                    $this->jdata($ann);
+                }
+                
+                $this->ann = array();
                 if ($this->ann === 'DELETED') {
                     $this->deleted = true;
                     $this->ann = false;
@@ -180,17 +195,42 @@ class MTrackWeb_File extends MTrackWeb
                 }
                 $this->tmpfile = $t; 
                 
-                $this->nlines = count($this->ann);
+               
                 require_once 'MTrack/SyntaxHighlight.php';
-                $this->data =  MTrack_SyntaxHighlight::highlightSource(
-                        stream_get_contents($this->tmpfile), null, $this->file->name
+                $contents = stream_get_contents($this->tmpfile);
+                $this->nlines = count(explode("\n", $contents));
+                
+                if (!empty($_REQUEST['markup'])) {
+                    // we do a late version call for markup.. 
+                    echo MTrack_SyntaxHighlight::highlightSource(
+                        $contents , null, $this->file->name
+                    );
+                    exit;
+                                       
+                }
+                
+                
+                $this->data =  htmlspecialchars($contents); /* MTrack_SyntaxHighlight::highlightSource(
+                        $contents , null, $this->file->name
+                   );
+                                          */
+                    //var_dump($this->data);
+                for ($i =0; $i < $this->nlines; $i++ ) {
+                    $this->ann[] = (object) array(
+                        'rev' => '',
+                        'lineno' => ($i + 1)
                     );
-                   // var_dump($this->data);
+                }
+                
+                   
+
     
             default:
                 break; // download only..
         }
-      
+        if (!empty($_REQUEST['markup'])) {
+           $this->jerr("invalid request");
+        }
        
       // 
         //$this->renderEvents();