diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/application/models/file_mod.php | 18 | ||||
-rw-r--r-- | system/application/views/file/html_header.php | 7 |
2 files changed, 18 insertions, 7 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index 66817a7a6..0541d5d2b 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -172,13 +172,21 @@ class File_mod extends Model { $data['title'] = $filedata['filename']; $data['raw_link'] = site_url($id); $data['plain_link'] = site_url($id.'/plain'); + $data['auto_link'] = site_url($id).'/'; + $data['rmd_link'] = site_url($id.'/rmd'); header("Content-Type: text/html\n"); echo $this->load->view('file/html_header', $data, true); - // only rewrite if it's fast - // count(file($file)); isn't - echo passthru('/usr/bin/perl -ne \'print "<a href=\"#n$.\" class=\"no\" id=\"n$.\" name=\"n$.\">$.</a>\n"\' '.escapeshellarg($file)); - echo '</pre></td><td class="code"><pre>'."\n"; - echo shell_exec(FCPATH.'scripts/syntax-highlighting.sh '.escapeshellarg($filedata['filename']).'.'.escapeshellarg($mode).' < '.escapeshellarg($file)); + if ($mode == "rmd") { + echo '<td class="markdownrender"><pre>'."\n"; + passthru('/usr/bin/perl /usr/bin/perlbin/vendor/Markdown.pl '.escapeshellarg($file)); + } else { + echo '<td class="numbers"><pre>'; + // only rewrite if it's fast + // count(file($file)); isn't + passthru('/usr/bin/perl -ne \'print "<a href=\"#n$.\" class=\"no\" id=\"n$.\" name=\"n$.\">$.</a>\n"\' '.escapeshellarg($file)); + echo '</pre></td><td class="code"><pre>'."\n"; + echo shell_exec(FCPATH.'scripts/syntax-highlighting.sh '.escapeshellarg($filedata['filename']).'.'.escapeshellarg($mode).' < '.escapeshellarg($file)); + } echo $this->load->view('file/html_footer', $data, true); } else { if ($mode == 'plain') { diff --git a/system/application/views/file/html_header.php b/system/application/views/file/html_header.php index fdd46acb9..dfa08ad46 100644 --- a/system/application/views/file/html_header.php +++ b/system/application/views/file/html_header.php @@ -6,9 +6,12 @@ </head> <body> <div class="top_bar"> - <a class="raw_link no" href="<?php echo $raw_link; ?>">Raw</a> + <a class="raw_link no" href="<?php echo $raw_link; ?>">Raw</a> | <a class="raw_link no" href="<?php echo $plain_link; ?>">Plain</a> + <div style="float:right;"> + <a class="raw_link no" href="<?php echo $auto_link; ?>">Code</a> | + <a class="raw_link no" href="<?php echo $rmd_link; ?>">Render Markdown</a> + </div> </div> <table class="content"> <tr> - <td class="numbers"><pre> |