]>
src.bluestatic.org Git - viewsvn.git/blob - view.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # ViewSVN [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $fetchtemplates = array(
27 define('SVN', '$Id$');
29 require_once('./global.php
');
31 $navbar = ConstructNavbar();
33 // ###################################################################
35 $revision = new Revision($input->in['repos
'], $input->in['rev
'], $input->in['path
']);
37 // ###################################################################
39 $revision->getRevisionInfo();
41 $catdata = $lib->run('cat
-r
' . $revision->revision . ' ' . $lib->arg($repos->fetchPath($input->in['repos
']) . $input->in['path
']), true);
43 // ###################################################################
45 $props = $revision->getPropsForPath($input->in['path
']);
46 $show['props
'] = (sizeof($props) > 0);
47 $proplist = FormatPropList($props);
49 // ###################################################################
51 // get language information
52 require_once('./includes
/file_types
.php
');
53 $extension = BSFunctions::FetchExtension($input->in['path
']);
54 $language = (isset($filetypes["$extension"]) ? $filetypes["$extension"] : null);
57 $mtstart = microtime();
58 require_once('./includes
/geshi
/geshi
.php
');
59 $geshi = new Geshi($catdata, $language[MIMES_GESHI_LANGUAGE]);
62 $geshi->enable_classes();
65 $geshi->set_header_type(GESHI_HEADER_DIV);
68 $urls = (isset($geshi->language_data['URLS
']) ? array_keys($geshi->language_data['URLS
']) : array());
69 foreach ($urls AS $key)
71 $geshi->set_url_for_keyword_group($key, '');
74 // don't
do anything stupid
75 $geshi->set_case_keywords(GESHI_CAPS_NO_CHANGE
);
78 $geshi->set_encoding('UTF-8');
81 $geshi->set_tab_width(5);
84 $catdata = $geshi->parse_code();
86 BSRegister
::Debug("time in GeSHi = " . BSFunctions
::FetchMicrotimeDiff($mtstart));
88 // ###################################################################
90 eval('$template->flush("' . $template->fetch('view') . '");');
92 /*=====================================================================*\
93 || ###################################################################
96 || ###################################################################
97 \*=====================================================================*/