View | Details | Raw Unified | Return to bug 236284
Collapse All | Expand All

(-)devel/websvn/Makefile (-16 / +34 lines)
Lines 1-32 Link Here
1
# Created by: Yuan-Chung Hsiao (ychsiao@ychsiao.idv.tw)
2
# $FreeBSD$
1
# $FreeBSD$
3
2
4
PORTNAME=	websvn
3
PORTNAME=	websvn
5
PORTVERSION=	2.3.3
4
PORTVERSION=	2.4
6
PORTREVISION=	1
7
CATEGORIES=	devel www
5
CATEGORIES=	devel www
8
MASTER_SITES=	http://websvn.tigris.org/files/documents/1380/49056/
6
PKGNAMESUFFIX=	${PHP_PKGNAMESUFFIX}
9
7
10
MAINTAINER=	ychsiao@ychsiao.org
8
MAINTAINER=	michael.osipov@siemens.com
11
COMMENT=	Subversion repository web frontend
9
COMMENT=	Online Subversion repository browser
12
10
13
LICENSE=	GPLv2+
11
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/license.txt
12
LICENSE_FILE=	${WRKSRC}/license.txt
15
13
16
USES=		cpe
14
RUN_DEPENDS=	${LOCALBASE}/bin/svn:devel/subversion \
17
USE_PHP=	iconv pcre xml
15
		${PEARDIR}/Archive/Tar.php:devel/pear@${PHP_FLAVOR} \
16
		${PEARDIR}/geshi.php:devel/pear-geshi@${PHP_FLAVOR} \
17
		${PEARDIR}/Text/Diff.php:devel/pear-Text_Diff@${PHP_FLAVOR}
18
19
USES=		php:flavors cpe
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	${PORTNAME}php
22
23
USE_PHP=	iconv pcre xml mbstring
24
18
NO_BUILD=	yes
25
NO_BUILD=	yes
26
NO_ARCH=	yes
19
27
20
WEBSVNDIR?=	${WWWDIR_REL}
28
PEARDIR?=	${LOCALBASE}/share/pear
21
29
22
SUB_FILES=	pkg-message
30
SUB_FILES=	pkg-message
23
SUB_LIST+=	WEBSVNDIR="${WEBSVNDIR}"
31
PLIST_SUB+=	WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
24
PLIST_SUB+=	WEBSVNDIR="${WEBSVNDIR}"
25
32
33
post-patch:
34
	@${REINPLACE_CMD} -E \
35
		-e 's|^// \$$config->setSvnConfigDir.+|$$config->setSvnConfigDir('"'"'${ETCDIR}/subversion'"'"')\;|' \
36
		-e 's|^// \$$config->setSVNCommandPath.+|$$config->setSVNCommandPath('"'"'${LOCALBASE}/bin'"'"')\;|' \
37
		-e 's|^// \$$config->useGeshi.+|$$config->useGeshi()\;|' \
38
	${WRKSRC}/include/distconfig.php
39
26
do-install:
40
do-install:
27
	${MKDIR} ${STAGEDIR}${PREFIX}/${WEBSVNDIR}
41
	@(cd ${WRKSRC} \
28
	(cd ${WRKSRC} \
42
		&& ${RM} README.md changes.txt include/.gitignore)
29
	    && ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${WEBSVNDIR})
43
	@${MKDIR} ${STAGEDIR}${WWWDIR}
30
	${FIND} ${STAGEDIR}${PREFIX}/${WEBSVNDIR} -type f -exec ${CHMOD} 644 {} +
44
	@(cd ${WRKSRC} \
45
		&& ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
31
46
47
post-install:
48
	@${MKDIR} ${STAGEDIR}${ETCDIR}/subversion
49
32
.include <bsd.port.mk>
50
.include <bsd.port.mk>
(-)devel/websvn/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (websvn-2.3.3.tar.gz) = 67d5cb7ffb087f8a92e3dcad10f16612baac4d15a60d659aa8b6e06200ac8742
1
TIMESTAMP = 1551703252
2
SIZE (websvn-2.3.3.tar.gz) = 882779
2
SHA256 (websvnphp-websvn-2.4_GH0.tar.gz) = a6a06c957b48b909d1eb09b313255e0903bfbe39bbfdafc80b920c4108791b0a
3
SIZE (websvnphp-websvn-2.4_GH0.tar.gz) = 209331
(-)devel/websvn/files/patch-CVE-2013-6892 (-37 lines)
Lines 1-37 Link Here
1
Arbitrary files with a known path can be accessed in websvn by committing a
2
symlink to a repository and then downloading the file (using the download
3
link).
4
5
Author: Thijs Kinkhorst <thijs@debian.org>
6
7
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775682
8
--- dl.php.orig	2011-06-27 09:02:52 UTC
9
+++ dl.php
10
@@ -137,6 +137,18 @@ if ($rep) {
11
 		exit(0);
12
 	}
13
 
14
+	// For security reasons, disallow direct downloads of filenames that
15
+	// are a symlink, since they may be a symlink to anywhere (/etc/passwd)
16
+	// Deciding whether the symlink is relative and legal within the
17
+	// repository would be nice but seems to error prone at this moment.
18
+	if ( is_link($tempDir.DIRECTORY_SEPARATOR.$archiveName) ) {
19
+		header('HTTP/1.x 500 Internal Server Error', true, 500);
20
+		error_log('to be downloaded file is symlink, aborting: '.$archiveName);
21
+		print 'Download of symlinks disallowed: "'.xml_entities($archiveName).'".';
22
+		removeDirectory($tempDir);
23
+		exit(0);
24
+	}
25
+
26
 	// Set timestamp of exported directory (and subdirectories) to timestamp of
27
 	// the revision so every archive of a given revision has the same timestamp.
28
 	$revDate = $logEntry->date;
29
@@ -180,7 +192,7 @@ if ($rep) {
30
 		$downloadMimeType = 'application/x-zip';
31
 		$downloadArchive .= '.zip';
32
 		// Create zip file
33
-		$cmd = $config->zip.' -r '.quote($downloadArchive).' '.quote($archiveName);
34
+		$cmd = $config->zip.' --symlinks -r '.quote($downloadArchive).' '.quote($archiveName);
35
 		execCommand($cmd, $retcode);
36
 		if ($retcode != 0) {
37
 			error_log('Unable to call zip command: '.$cmd);
(-)devel/websvn/files/patch-CVE-2016-2511 (-12 lines)
Lines 1-12 Link Here
1
Obtained from: Debian
2
--- include/setup.php.orig	2011-06-27 09:12:51 UTC
3
+++ include/setup.php
4
@@ -467,7 +467,7 @@ $vars['indexurl'] = $config->getURL('', 
5
 $vars['validationurl'] = getFullURL($_SERVER['SCRIPT_NAME']).'?'.buildQuery($queryParams + array('template' => $template, 'language' => $language), '%26');
6
 
7
 // To avoid a possible XSS exploit, need to clean up the passed-in path first
8
-$path = !empty($_REQUEST['path']) ? $_REQUEST['path'] : null;
9
+$path = !empty($_REQUEST['path']) ? escape($_REQUEST['path']) : null;
10
 if ($path === null || $path === '')
11
 	$path = '/';
12
 $vars['safepath'] = escape($path);
(-)devel/websvn/files/pkg-message.in (-2 / +5 lines)
Lines 1-4 Link Here
1
----------------------------------------------------
1
----------------------------------------------------
2
To setup websvn, please edit the configuration file:
2
To setup WebSVN, please edit the configuration file:
3
%%PREFIX%%/%%WEBSVNDIR%%/include/config.php
3
%%WWWDIR%%/include/config.php
4
5
and modify your web server's configuration to serve
6
WebSVN actually!
4
----------------------------------------------------
7
----------------------------------------------------
(-)devel/websvn/pkg-descr (-3 / +3 lines)
Lines 1-7 Link Here
1
WebSVN offers a view onto your subversion repositories that's been designed
1
WebSVN offers a view onto your Subversion repositories that's been designed
2
to reflect the Subversion methodology. You can view the log of any file or
2
to reflect the Subversion methodology. You can view the log of any file or
3
directory and see a list of all the files changed, added or deleted in any
3
directory and see a list of all the files changed, added or deleted in any
4
given revision. You can also view the differences between 2 versions of
4
given revision. You can also view the differences between two versions of
5
a file so as to see exactly what was changed in a particular revision.
5
a file so as to see exactly what was changed in a particular revision.
6
6
7
WWW: http://websvn.info/
7
WWW: https://websvnphp.github.io/
(-)devel/websvn/pkg-plist (-434 / +217 lines)
Lines 1-434 Link Here
1
%%WEBSVNDIR%%/blame.php
1
%%WWWDIR%%/blame.php
2
%%WEBSVNDIR%%/cache/tmp
2
%%WWWDIR%%/browse.php
3
%%WEBSVNDIR%%/changes.txt
3
%%WWWDIR%%/cache/tmp
4
%%WEBSVNDIR%%/comp.php
4
%%WWWDIR%%/comp.php
5
%%WEBSVNDIR%%/diff.php
5
%%WWWDIR%%/diff.php
6
%%WEBSVNDIR%%/dl.php
6
%%WWWDIR%%/dl.php
7
%%WEBSVNDIR%%/doc/install.html
7
%%WWWDIR%%/filedetails.php
8
%%WEBSVNDIR%%/doc/style.css
8
%%WWWDIR%%/include/authz.php
9
%%WEBSVNDIR%%/doc/templates.html
9
%%WWWDIR%%/include/bugtraq.php
10
%%WEBSVNDIR%%/filedetails.php
10
%%WWWDIR%%/include/command.php
11
%%WEBSVNDIR%%/include/accessfile.php
11
%%WWWDIR%%/include/configclass.php
12
%%WEBSVNDIR%%/include/auth.php
12
%%WWWDIR%%/include/diff_inc.php
13
%%WEBSVNDIR%%/include/bugtraq.php
13
%%WWWDIR%%/include/diff_util.php
14
%%WEBSVNDIR%%/include/command.php
14
@sample(,%%WWWGRP%%,640) %%WWWDIR%%/include/distconfig.php %%WWWDIR%%/include/config.php
15
%%WEBSVNDIR%%/include/configclass.php
15
%%WWWDIR%%/include/header
16
%%WEBSVNDIR%%/include/diff_inc.php
16
%%WWWDIR%%/include/setup.php
17
%%WEBSVNDIR%%/include/diff_util.php
17
%%WWWDIR%%/include/svnlook.php
18
@sample %%WEBSVNDIR%%/include/distconfig.php %%WWWDIR%%/include/config.php
18
%%WWWDIR%%/include/template.php
19
%%WEBSVNDIR%%/include/header
19
%%WWWDIR%%/include/utils.php
20
%%WEBSVNDIR%%/include/setup.php
20
%%WWWDIR%%/include/version.php
21
%%WEBSVNDIR%%/include/svnlook.php
21
%%WWWDIR%%/index.php
22
%%WEBSVNDIR%%/include/template.php
22
%%WWWDIR%%/javascript/blame-popup.js
23
%%WEBSVNDIR%%/include/utils.php
23
%%WWWDIR%%/javascript/compare-checkboxes.js
24
%%WEBSVNDIR%%/include/version.php
24
%%WWWDIR%%/javascript/group-collapse.js
25
%%WEBSVNDIR%%/index.php
25
%%WWWDIR%%/javascript/ie-png-transparency.js
26
%%WEBSVNDIR%%/javascript/blame-popup.js
26
%%WWWDIR%%/languages/catalan.php
27
%%WEBSVNDIR%%/javascript/group-collapse.js
27
%%WWWDIR%%/languages/chinese-simplified.php
28
%%WEBSVNDIR%%/languages/catalan.php
28
%%WWWDIR%%/languages/chinese-traditional.php
29
%%WEBSVNDIR%%/languages/chinese-simplified.php
29
%%WWWDIR%%/languages/czech.php
30
%%WEBSVNDIR%%/languages/chinese-traditional.php
30
%%WWWDIR%%/languages/danish.php
31
%%WEBSVNDIR%%/languages/czech.php
31
%%WWWDIR%%/languages/dutch.php
32
%%WEBSVNDIR%%/languages/danish.php
32
%%WWWDIR%%/languages/english.php
33
%%WEBSVNDIR%%/languages/dutch.php
33
%%WWWDIR%%/languages/finnish.php
34
%%WEBSVNDIR%%/languages/english.php
34
%%WWWDIR%%/languages/french.php
35
%%WEBSVNDIR%%/languages/finnish.php
35
%%WWWDIR%%/languages/german.php
36
%%WEBSVNDIR%%/languages/french.php
36
%%WWWDIR%%/languages/hebrew.php
37
%%WEBSVNDIR%%/languages/german.php
37
%%WWWDIR%%/languages/hindi.php
38
%%WEBSVNDIR%%/languages/hebrew.php
38
%%WWWDIR%%/languages/hungarian.php
39
%%WEBSVNDIR%%/languages/hindi.php
39
%%WWWDIR%%/languages/indonesian.php
40
%%WEBSVNDIR%%/languages/hungarian.php
40
%%WWWDIR%%/languages/italian.php
41
%%WEBSVNDIR%%/languages/indonesian.php
41
%%WWWDIR%%/languages/japanese.php
42
%%WEBSVNDIR%%/languages/italian.php
42
%%WWWDIR%%/languages/korean.php
43
%%WEBSVNDIR%%/languages/japanese.php
43
%%WWWDIR%%/languages/languages.php
44
%%WEBSVNDIR%%/languages/korean.php
44
%%WWWDIR%%/languages/macedonian.php
45
%%WEBSVNDIR%%/languages/languages.php
45
%%WWWDIR%%/languages/marathi.php
46
%%WEBSVNDIR%%/languages/macedonian.php
46
%%WWWDIR%%/languages/norwegian.php
47
%%WEBSVNDIR%%/languages/marathi.php
47
%%WWWDIR%%/languages/polish.php
48
%%WEBSVNDIR%%/languages/norwegian.php
48
%%WWWDIR%%/languages/portuguese-br.php
49
%%WEBSVNDIR%%/languages/polish.php
49
%%WWWDIR%%/languages/portuguese.php
50
%%WEBSVNDIR%%/languages/portuguese-br.php
50
%%WWWDIR%%/languages/russian.php
51
%%WEBSVNDIR%%/languages/portuguese.php
51
%%WWWDIR%%/languages/slovak.php
52
%%WEBSVNDIR%%/languages/russian.php
52
%%WWWDIR%%/languages/slovenian.php
53
%%WEBSVNDIR%%/languages/slovak.php
53
%%WWWDIR%%/languages/spanish.php
54
%%WEBSVNDIR%%/languages/slovenian.php
54
%%WWWDIR%%/languages/swedish.php
55
%%WEBSVNDIR%%/languages/spanish.php
55
%%WWWDIR%%/languages/turkish.php
56
%%WEBSVNDIR%%/languages/swedish.php
56
%%WWWDIR%%/languages/ukrainian.php
57
%%WEBSVNDIR%%/languages/turkish.php
57
%%WWWDIR%%/languages/uzbek.php
58
%%WEBSVNDIR%%/languages/ukrainian.php
58
%%WWWDIR%%/license.txt
59
%%WEBSVNDIR%%/languages/uzbek.php
59
%%WWWDIR%%/listing.php
60
%%WEBSVNDIR%%/lib/geshi/c_loadrunner.php
60
%%WWWDIR%%/log.php
61
%%WEBSVNDIR%%/lib/geshi/bascomavr.php
61
%%WWWDIR%%/multiviews.php
62
%%WEBSVNDIR%%/lib/geshi/yaml.php
62
%%WWWDIR%%/revision.php
63
%%WEBSVNDIR%%/lib/geshi/coffeescript.php
63
%%WWWDIR%%/rss.php
64
%%WEBSVNDIR%%/lib/geshi/euphoria.php
64
%%WWWDIR%%/templates/BlueGrey/blame.tmpl
65
%%WEBSVNDIR%%/lib/geshi/llvm.php
65
%%WWWDIR%%/templates/BlueGrey/compare.tmpl
66
%%WEBSVNDIR%%/lib/geshi/falcon.php
66
%%WWWDIR%%/templates/BlueGrey/diff.tmpl
67
%%WEBSVNDIR%%/lib/geshi/epc.php
67
%%WWWDIR%%/templates/BlueGrey/directory.tmpl
68
%%WEBSVNDIR%%/lib/geshi/uscript.php
68
%%WWWDIR%%/templates/BlueGrey/file.tmpl
69
%%WEBSVNDIR%%/lib/geshi/proftpd.php
69
%%WWWDIR%%/templates/BlueGrey/footer.tmpl
70
%%WEBSVNDIR%%/lib/geshi/html5.php
70
%%WWWDIR%%/templates/BlueGrey/header.tmpl
71
%%WEBSVNDIR%%/lib/geshi/pycon.php
71
%%WWWDIR%%/templates/BlueGrey/images/e-node.png
72
%%WEBSVNDIR%%/lib/geshi/pli.php
72
%%WWWDIR%%/templates/BlueGrey/images/favicon.ico
73
%%WEBSVNDIR%%/lib/geshi/4cs.php
73
%%WWWDIR%%/templates/BlueGrey/images/file.png
74
%%WEBSVNDIR%%/lib/geshi/6502acme.php
74
%%WWWDIR%%/templates/BlueGrey/images/filec.png
75
%%WEBSVNDIR%%/lib/geshi/6502kickass.php
75
%%WWWDIR%%/templates/BlueGrey/images/filecpp.png
76
%%WEBSVNDIR%%/lib/geshi/6502tasm.php
76
%%WWWDIR%%/templates/BlueGrey/images/fileh.png
77
%%WEBSVNDIR%%/lib/geshi/68000devpac.php
77
%%WWWDIR%%/templates/BlueGrey/images/filehtml.png
78
%%WEBSVNDIR%%/lib/geshi/abap.php
78
%%WWWDIR%%/templates/BlueGrey/images/filejava.png
79
%%WEBSVNDIR%%/lib/geshi/actionscript.php
79
%%WWWDIR%%/templates/BlueGrey/images/filem.png
80
%%WEBSVNDIR%%/lib/geshi/actionscript3.php
80
%%WWWDIR%%/templates/BlueGrey/images/filepy.png
81
%%WEBSVNDIR%%/lib/geshi/ada.php
81
%%WWWDIR%%/templates/BlueGrey/images/folder-open.png
82
%%WEBSVNDIR%%/lib/geshi/algol68.php
82
%%WWWDIR%%/templates/BlueGrey/images/folder.png
83
%%WEBSVNDIR%%/lib/geshi/apache.php
83
%%WWWDIR%%/templates/BlueGrey/images/i-node.png
84
%%WEBSVNDIR%%/lib/geshi/applescript.php
84
%%WWWDIR%%/templates/BlueGrey/images/l-node.png
85
%%WEBSVNDIR%%/lib/geshi/apt_sources.php
85
%%WWWDIR%%/templates/BlueGrey/images/repo.png
86
%%WEBSVNDIR%%/lib/geshi/asm.php
86
%%WWWDIR%%/templates/BlueGrey/images/rss.gif
87
%%WEBSVNDIR%%/lib/geshi/asp.php
87
%%WWWDIR%%/templates/BlueGrey/images/t-node.png
88
%%WEBSVNDIR%%/lib/geshi/autoconf.php
88
%%WWWDIR%%/templates/BlueGrey/images/websvn.png
89
%%WEBSVNDIR%%/lib/geshi/autohotkey.php
89
%%WWWDIR%%/templates/BlueGrey/index.tmpl
90
%%WEBSVNDIR%%/lib/geshi/autoit.php
90
%%WWWDIR%%/templates/BlueGrey/log.tmpl
91
%%WEBSVNDIR%%/lib/geshi/avisynth.php
91
%%WWWDIR%%/templates/BlueGrey/revision.tmpl
92
%%WEBSVNDIR%%/lib/geshi/awk.php
92
%%WWWDIR%%/templates/BlueGrey/styles.css
93
%%WEBSVNDIR%%/lib/geshi/bash.php
93
%%WWWDIR%%/templates/Elegant/blame.tmpl
94
%%WEBSVNDIR%%/lib/geshi/basic4gl.php
94
%%WWWDIR%%/templates/Elegant/compare.tmpl
95
%%WEBSVNDIR%%/lib/geshi/bf.php
95
%%WWWDIR%%/templates/Elegant/diff.tmpl
96
%%WEBSVNDIR%%/lib/geshi/bibtex.php
96
%%WWWDIR%%/templates/Elegant/directory.tmpl
97
%%WEBSVNDIR%%/lib/geshi/blitzbasic.php
97
%%WWWDIR%%/templates/Elegant/file.tmpl
98
%%WEBSVNDIR%%/lib/geshi/bnf.php
98
%%WWWDIR%%/templates/Elegant/footer.tmpl
99
%%WEBSVNDIR%%/lib/geshi/boo.php
99
%%WWWDIR%%/templates/Elegant/header.tmpl
100
%%WEBSVNDIR%%/lib/geshi/c.php
100
%%WWWDIR%%/templates/Elegant/images/README.txt
101
%%WEBSVNDIR%%/lib/geshi/c_mac.php
101
%%WWWDIR%%/templates/Elegant/images/added.png
102
%%WEBSVNDIR%%/lib/geshi/caddcl.php
102
%%WWWDIR%%/templates/Elegant/images/arrow-in.png
103
%%WEBSVNDIR%%/lib/geshi/cadlisp.php
103
%%WWWDIR%%/templates/Elegant/images/arrow-out.png
104
%%WEBSVNDIR%%/lib/geshi/cfdg.php
104
%%WWWDIR%%/templates/Elegant/images/bg-gray-dark.png
105
%%WEBSVNDIR%%/lib/geshi/cfm.php
105
%%WWWDIR%%/templates/Elegant/images/bg-gray-light.png
106
%%WEBSVNDIR%%/lib/geshi/chaiscript.php
106
%%WWWDIR%%/templates/Elegant/images/bg-page-header.png
107
%%WEBSVNDIR%%/lib/geshi/cil.php
107
%%WWWDIR%%/templates/Elegant/images/bg-table-divider.png
108
%%WEBSVNDIR%%/lib/geshi/clojure.php
108
%%WWWDIR%%/templates/Elegant/images/bg-table-header.png
109
%%WEBSVNDIR%%/lib/geshi/cmake.php
109
%%WWWDIR%%/templates/Elegant/images/blame.png
110
%%WEBSVNDIR%%/lib/geshi/cobol.php
110
%%WWWDIR%%/templates/Elegant/images/blank.png
111
%%WEBSVNDIR%%/lib/geshi/cpp-qt.php
111
%%WWWDIR%%/templates/Elegant/images/cube-blue.png
112
%%WEBSVNDIR%%/lib/geshi/cpp.php
112
%%WWWDIR%%/templates/Elegant/images/deleted.png
113
%%WEBSVNDIR%%/lib/geshi/csharp.php
113
%%WWWDIR%%/templates/Elegant/images/detail.png
114
%%WEBSVNDIR%%/lib/geshi/css.php
114
%%WWWDIR%%/templates/Elegant/images/diff.png
115
%%WEBSVNDIR%%/lib/geshi/cuesheet.php
115
%%WWWDIR%%/templates/Elegant/images/download.png
116
%%WEBSVNDIR%%/lib/geshi/d.php
116
%%WWWDIR%%/templates/Elegant/images/eye.png
117
%%WEBSVNDIR%%/lib/geshi/dcs.php
117
%%WWWDIR%%/templates/Elegant/images/favicon.ico
118
%%WEBSVNDIR%%/lib/geshi/delphi.php
118
%%WWWDIR%%/templates/Elegant/images/file-c.png
119
%%WEBSVNDIR%%/lib/geshi/diff.php
119
%%WWWDIR%%/templates/Elegant/images/file-cpp.png
120
%%WEBSVNDIR%%/lib/geshi/div.php
120
%%WWWDIR%%/templates/Elegant/images/file-css.png
121
%%WEBSVNDIR%%/lib/geshi/dos.php
121
%%WWWDIR%%/templates/Elegant/images/file-h.png
122
%%WEBSVNDIR%%/lib/geshi/dot.php
122
%%WWWDIR%%/templates/Elegant/images/file-html.png
123
%%WEBSVNDIR%%/lib/geshi/e.php
123
%%WWWDIR%%/templates/Elegant/images/file-image.png
124
%%WEBSVNDIR%%/lib/geshi/ecmascript.php
124
%%WWWDIR%%/templates/Elegant/images/file-java.png
125
%%WEBSVNDIR%%/lib/geshi/eiffel.php
125
%%WWWDIR%%/templates/Elegant/images/file-m.png
126
%%WEBSVNDIR%%/lib/geshi/email.php
126
%%WWWDIR%%/templates/Elegant/images/file-php.png
127
%%WEBSVNDIR%%/lib/geshi/erlang.php
127
%%WWWDIR%%/templates/Elegant/images/file-py.png
128
%%WEBSVNDIR%%/lib/geshi/f1.php
128
%%WWWDIR%%/templates/Elegant/images/file-xml.png
129
%%WEBSVNDIR%%/lib/geshi/fo.php
129
%%WWWDIR%%/templates/Elegant/images/file.png
130
%%WEBSVNDIR%%/lib/geshi/fortran.php
130
%%WWWDIR%%/templates/Elegant/images/folder.png
131
%%WEBSVNDIR%%/lib/geshi/freebasic.php
131
%%WWWDIR%%/templates/Elegant/images/home.png
132
%%WEBSVNDIR%%/lib/geshi/fsharp.php
132
%%WWWDIR%%/templates/Elegant/images/information.png
133
%%WEBSVNDIR%%/lib/geshi/gambas.php
133
%%WWWDIR%%/templates/Elegant/images/log.png
134
%%WEBSVNDIR%%/lib/geshi/gdb.php
134
%%WWWDIR%%/templates/Elegant/images/modified.png
135
%%WEBSVNDIR%%/lib/geshi/genero.php
135
%%WWWDIR%%/templates/Elegant/images/next.png
136
%%WEBSVNDIR%%/lib/geshi/genie.php
136
%%WWWDIR%%/templates/Elegant/images/parent.png
137
%%WEBSVNDIR%%/lib/geshi/gettext.php
137
%%WWWDIR%%/templates/Elegant/images/pilcrow.png
138
%%WEBSVNDIR%%/lib/geshi/glsl.php
138
%%WWWDIR%%/templates/Elegant/images/previous.png
139
%%WEBSVNDIR%%/lib/geshi/gml.php
139
%%WWWDIR%%/templates/Elegant/images/remove.png
140
%%WEBSVNDIR%%/lib/geshi/gnuplot.php
140
%%WWWDIR%%/templates/Elegant/images/repository.png
141
%%WEBSVNDIR%%/lib/geshi/go.php
141
%%WWWDIR%%/templates/Elegant/images/repository24.png
142
%%WEBSVNDIR%%/lib/geshi/groovy.php
142
%%WWWDIR%%/templates/Elegant/images/reverse.png
143
%%WEBSVNDIR%%/lib/geshi/gwbasic.php
143
%%WWWDIR%%/templates/Elegant/images/revision.png
144
%%WEBSVNDIR%%/lib/geshi/haskell.php
144
%%WWWDIR%%/templates/Elegant/images/rss.png
145
%%WEBSVNDIR%%/lib/geshi/hicest.php
145
%%WWWDIR%%/templates/Elegant/images/stop.png
146
%%WEBSVNDIR%%/lib/geshi/hq9plus.php
146
%%WWWDIR%%/templates/Elegant/images/subversion-s.png
147
%%WEBSVNDIR%%/lib/geshi/html4strict.php
147
%%WWWDIR%%/templates/Elegant/images/valid.png
148
%%WEBSVNDIR%%/lib/geshi/icon.php
148
%%WWWDIR%%/templates/Elegant/images/warning.png
149
%%WEBSVNDIR%%/lib/geshi/idl.php
149
%%WWWDIR%%/templates/Elegant/images/youngest.png
150
%%WEBSVNDIR%%/lib/geshi/ini.php
150
%%WWWDIR%%/templates/Elegant/index.tmpl
151
%%WEBSVNDIR%%/lib/geshi/inno.php
151
%%WWWDIR%%/templates/Elegant/log.tmpl
152
%%WEBSVNDIR%%/lib/geshi/intercal.php
152
%%WWWDIR%%/templates/Elegant/revision-popup.js
153
%%WEBSVNDIR%%/lib/geshi/io.php
153
%%WWWDIR%%/templates/Elegant/revision.tmpl
154
%%WEBSVNDIR%%/lib/geshi/j.php
154
%%WWWDIR%%/templates/Elegant/styles.css
155
%%WEBSVNDIR%%/lib/geshi/java.php
155
@sample %%WWWDIR%%/templates/Elegant/user_greeting.tmpl %%WWWDIR%%/templates/Elegant/user_greeting.tmpl.sample
156
%%WEBSVNDIR%%/lib/geshi/java5.php
156
%%WWWDIR%%/templates/calm/README.txt
157
%%WEBSVNDIR%%/lib/geshi/javascript.php
157
%%WWWDIR%%/templates/calm/blame.tmpl
158
%%WEBSVNDIR%%/lib/geshi/jquery.php
158
%%WWWDIR%%/templates/calm/compare.tmpl
159
%%WEBSVNDIR%%/lib/geshi/kixtart.php
159
%%WWWDIR%%/templates/calm/diff.tmpl
160
%%WEBSVNDIR%%/lib/geshi/klonec.php
160
%%WWWDIR%%/templates/calm/directory.tmpl
161
%%WEBSVNDIR%%/lib/geshi/klonecpp.php
161
%%WWWDIR%%/templates/calm/file.tmpl
162
%%WEBSVNDIR%%/lib/geshi/latex.php
162
%%WWWDIR%%/templates/calm/footer.tmpl
163
%%WEBSVNDIR%%/lib/geshi/lb.php
163
%%WWWDIR%%/templates/calm/header.tmpl
164
%%WEBSVNDIR%%/lib/geshi/lisp.php
164
%%WWWDIR%%/templates/calm/images/add.png
165
%%WEBSVNDIR%%/lib/geshi/locobasic.php
165
%%WWWDIR%%/templates/calm/images/arrow_in.png
166
%%WEBSVNDIR%%/lib/geshi/logtalk.php
166
%%WWWDIR%%/templates/calm/images/arrow_out.png
167
%%WEBSVNDIR%%/lib/geshi/lolcode.php
167
%%WWWDIR%%/templates/calm/images/blame.png
168
%%WEBSVNDIR%%/lib/geshi/lotusformulas.php
168
%%WWWDIR%%/templates/calm/images/bullet_add.png
169
%%WEBSVNDIR%%/lib/geshi/lotusscript.php
169
%%WWWDIR%%/templates/calm/images/bullet_delete.png
170
%%WEBSVNDIR%%/lib/geshi/lscript.php
170
%%WWWDIR%%/templates/calm/images/bullet_yellow.png
171
%%WEBSVNDIR%%/lib/geshi/lsl2.php
171
%%WWWDIR%%/templates/calm/images/compress.png
172
%%WEBSVNDIR%%/lib/geshi/lua.php
172
%%WWWDIR%%/templates/calm/images/css.png
173
%%WEBSVNDIR%%/lib/geshi/m68k.php
173
%%WWWDIR%%/templates/calm/images/cube_green.png
174
%%WEBSVNDIR%%/lib/geshi/magiksf.php
174
%%WWWDIR%%/templates/calm/images/delete.png
175
%%WEBSVNDIR%%/lib/geshi/make.php
175
%%WWWDIR%%/templates/calm/images/diff.png
176
%%WEBSVNDIR%%/lib/geshi/mapbasic.php
176
%%WWWDIR%%/templates/calm/images/e-node.png
177
%%WEBSVNDIR%%/lib/geshi/matlab.php
177
%%WWWDIR%%/templates/calm/images/exclamation.png
178
%%WEBSVNDIR%%/lib/geshi/mirc.php
178
%%WWWDIR%%/templates/calm/images/eye.png
179
%%WEBSVNDIR%%/lib/geshi/mmix.php
179
%%WWWDIR%%/templates/calm/images/favicon.ico
180
%%WEBSVNDIR%%/lib/geshi/modula2.php
180
%%WWWDIR%%/templates/calm/images/file.png
181
%%WEBSVNDIR%%/lib/geshi/modula3.php
181
%%WWWDIR%%/templates/calm/images/filec.png
182
%%WEBSVNDIR%%/lib/geshi/mpasm.php
182
%%WWWDIR%%/templates/calm/images/filedb.png
183
%%WEBSVNDIR%%/lib/geshi/mxml.php
183
%%WWWDIR%%/templates/calm/images/fileh.png
184
%%WEBSVNDIR%%/lib/geshi/mysql.php
184
%%WWWDIR%%/templates/calm/images/filepaint.png
185
%%WEBSVNDIR%%/lib/geshi/newlisp.php
185
%%WWWDIR%%/templates/calm/images/filephp.png
186
%%WEBSVNDIR%%/lib/geshi/nsis.php
186
%%WWWDIR%%/templates/calm/images/filetxt.png
187
%%WEBSVNDIR%%/lib/geshi/oberon2.php
187
%%WWWDIR%%/templates/calm/images/filexml.png
188
%%WEBSVNDIR%%/lib/geshi/objc.php
188
%%WWWDIR%%/templates/calm/images/folder.png
189
%%WEBSVNDIR%%/lib/geshi/objeck.php
189
%%WWWDIR%%/templates/calm/images/html.png
190
%%WEBSVNDIR%%/lib/geshi/ocaml-brief.php
190
%%WWWDIR%%/templates/calm/images/i-node.png
191
%%WEBSVNDIR%%/lib/geshi/ocaml.php
191
%%WWWDIR%%/templates/calm/images/l-node.png
192
%%WEBSVNDIR%%/lib/geshi/oobas.php
192
%%WWWDIR%%/templates/calm/images/link.png
193
%%WEBSVNDIR%%/lib/geshi/oracle11.php
193
%%WWWDIR%%/templates/calm/images/log.png
194
%%WEBSVNDIR%%/lib/geshi/oracle8.php
194
%%WWWDIR%%/templates/calm/images/next.png
195
%%WEBSVNDIR%%/lib/geshi/oxygene.php
195
%%WWWDIR%%/templates/calm/images/page_white_add.png
196
%%WEBSVNDIR%%/lib/geshi/oz.php
196
%%WWWDIR%%/templates/calm/images/page_white_delete.png
197
%%WEBSVNDIR%%/lib/geshi/pascal.php
197
%%WWWDIR%%/templates/calm/images/page_white_edit.png
198
%%WEBSVNDIR%%/lib/geshi/pcre.php
198
%%WWWDIR%%/templates/calm/images/pilcrow.png
199
%%WEBSVNDIR%%/lib/geshi/per.php
199
%%WWWDIR%%/templates/calm/images/pilcrow_delete.png
200
%%WEBSVNDIR%%/lib/geshi/perl.php
200
%%WWWDIR%%/templates/calm/images/previous.png
201
%%WEBSVNDIR%%/lib/geshi/perl6.php
201
%%WWWDIR%%/templates/calm/images/script.png
202
%%WEBSVNDIR%%/lib/geshi/pf.php
202
%%WWWDIR%%/templates/calm/images/sitemap_color.png
203
%%WEBSVNDIR%%/lib/geshi/php-brief.php
203
%%WWWDIR%%/templates/calm/images/submitbg.png
204
%%WEBSVNDIR%%/lib/geshi/php.php
204
%%WWWDIR%%/templates/calm/images/t-node.png
205
%%WEBSVNDIR%%/lib/geshi/pic16.php
205
%%WWWDIR%%/templates/calm/images/textbg.png
206
%%WEBSVNDIR%%/lib/geshi/pike.php
206
%%WWWDIR%%/templates/calm/images/toggledown.png
207
%%WEBSVNDIR%%/lib/geshi/pixelbender.php
207
%%WWWDIR%%/templates/calm/images/toggleup.png
208
%%WEBSVNDIR%%/lib/geshi/plsql.php
208
%%WWWDIR%%/templates/calm/images/up.png
209
%%WEBSVNDIR%%/lib/geshi/postgresql.php
209
%%WWWDIR%%/templates/calm/images/xml.gif
210
%%WEBSVNDIR%%/lib/geshi/povray.php
210
%%WWWDIR%%/templates/calm/index.tmpl
211
%%WEBSVNDIR%%/lib/geshi/powerbuilder.php
211
%%WWWDIR%%/templates/calm/log.tmpl
212
%%WEBSVNDIR%%/lib/geshi/powershell.php
212
%%WWWDIR%%/templates/calm/revision.tmpl
213
%%WEBSVNDIR%%/lib/geshi/progress.php
213
%%WWWDIR%%/templates/calm/styles.css
214
%%WEBSVNDIR%%/lib/geshi/prolog.php
214
@sample %%WWWDIR%%/templates/calm/user_greeting.tmpl %%WWWDIR%%/templates/calm/user_greeting.tmpl.sample
215
%%WEBSVNDIR%%/lib/geshi/properties.php
215
@postunexec echo "==> If your are permanently removing this package consider deleting %%PREFIX%%/%%ETCDIR%%!"
216
%%WEBSVNDIR%%/lib/geshi/providex.php
216
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%ETCDIR%%/subversion
217
%%WEBSVNDIR%%/lib/geshi/purebasic.php
217
@dir %%ETCDIR%%
218
%%WEBSVNDIR%%/lib/geshi/python.php
219
%%WEBSVNDIR%%/lib/geshi/q.php
220
%%WEBSVNDIR%%/lib/geshi/qbasic.php
221
%%WEBSVNDIR%%/lib/geshi/rails.php
222
%%WEBSVNDIR%%/lib/geshi/rebol.php
223
%%WEBSVNDIR%%/lib/geshi/reg.php
224
%%WEBSVNDIR%%/lib/geshi/robots.php
225
%%WEBSVNDIR%%/lib/geshi/rpmspec.php
226
%%WEBSVNDIR%%/lib/geshi/rsplus.php
227
%%WEBSVNDIR%%/lib/geshi/ruby.php
228
%%WEBSVNDIR%%/lib/geshi/sas.php
229
%%WEBSVNDIR%%/lib/geshi/scala.php
230
%%WEBSVNDIR%%/lib/geshi/scheme.php
231
%%WEBSVNDIR%%/lib/geshi/scilab.php
232
%%WEBSVNDIR%%/lib/geshi/sdlbasic.php
233
%%WEBSVNDIR%%/lib/geshi/smalltalk.php
234
%%WEBSVNDIR%%/lib/geshi/smarty.php
235
%%WEBSVNDIR%%/lib/geshi/sql.php
236
%%WEBSVNDIR%%/lib/geshi/systemverilog.php
237
%%WEBSVNDIR%%/lib/geshi/tcl.php
238
%%WEBSVNDIR%%/lib/geshi/teraterm.php
239
%%WEBSVNDIR%%/lib/geshi/text.php
240
%%WEBSVNDIR%%/lib/geshi/thinbasic.php
241
%%WEBSVNDIR%%/lib/geshi/tsql.php
242
%%WEBSVNDIR%%/lib/geshi/typoscript.php
243
%%WEBSVNDIR%%/lib/geshi/unicon.php
244
%%WEBSVNDIR%%/lib/geshi/vala.php
245
%%WEBSVNDIR%%/lib/geshi/vb.php
246
%%WEBSVNDIR%%/lib/geshi/vbnet.php
247
%%WEBSVNDIR%%/lib/geshi/verilog.php
248
%%WEBSVNDIR%%/lib/geshi/vhdl.php
249
%%WEBSVNDIR%%/lib/geshi/vim.php
250
%%WEBSVNDIR%%/lib/geshi/visualfoxpro.php
251
%%WEBSVNDIR%%/lib/geshi/visualprolog.php
252
%%WEBSVNDIR%%/lib/geshi/whitespace.php
253
%%WEBSVNDIR%%/lib/geshi/whois.php
254
%%WEBSVNDIR%%/lib/geshi/winbatch.php
255
%%WEBSVNDIR%%/lib/geshi/xbasic.php
256
%%WEBSVNDIR%%/lib/geshi/xml.php
257
%%WEBSVNDIR%%/lib/geshi/xorg_conf.php
258
%%WEBSVNDIR%%/lib/geshi/xpp.php
259
%%WEBSVNDIR%%/lib/geshi/z80.php
260
%%WEBSVNDIR%%/lib/geshi/zxbasic.php
261
%%WEBSVNDIR%%/lib/geshi.php
262
%%WEBSVNDIR%%/lib/pear/Archive/Tar.php
263
%%WEBSVNDIR%%/lib/pear/PEAR.php
264
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/native.php
265
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/shell.php
266
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/string.php
267
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/xdiff.php
268
%%WEBSVNDIR%%/lib/pear/Text/Diff/Mapped.php
269
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer/context.php
270
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer/inline.php
271
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer/unified.php
272
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer.php
273
%%WEBSVNDIR%%/lib/pear/Text/Diff/ThreeWay.php
274
%%WEBSVNDIR%%/lib/pear/Text/Diff.php
275
%%WEBSVNDIR%%/lib/pear/Text/Diff3.php
276
%%WEBSVNDIR%%/license.txt
277
%%WEBSVNDIR%%/listing.php
278
%%WEBSVNDIR%%/log.php
279
%%WEBSVNDIR%%/revision.php
280
%%WEBSVNDIR%%/rss.php
281
%%WEBSVNDIR%%/templates/BlueGrey/blame.tmpl
282
%%WEBSVNDIR%%/templates/BlueGrey/compare.tmpl
283
%%WEBSVNDIR%%/templates/BlueGrey/diff.tmpl
284
%%WEBSVNDIR%%/templates/BlueGrey/directory.tmpl
285
%%WEBSVNDIR%%/templates/BlueGrey/file.tmpl
286
%%WEBSVNDIR%%/templates/BlueGrey/footer.tmpl
287
%%WEBSVNDIR%%/templates/BlueGrey/header.tmpl
288
%%WEBSVNDIR%%/templates/BlueGrey/images/e-node.png
289
%%WEBSVNDIR%%/templates/BlueGrey/images/favicon.ico
290
%%WEBSVNDIR%%/templates/BlueGrey/images/file.png
291
%%WEBSVNDIR%%/templates/BlueGrey/images/filec.png
292
%%WEBSVNDIR%%/templates/BlueGrey/images/filecpp.png
293
%%WEBSVNDIR%%/templates/BlueGrey/images/fileh.png
294
%%WEBSVNDIR%%/templates/BlueGrey/images/filehtml.png
295
%%WEBSVNDIR%%/templates/BlueGrey/images/filejava.png
296
%%WEBSVNDIR%%/templates/BlueGrey/images/filem.png
297
%%WEBSVNDIR%%/templates/BlueGrey/images/filepy.png
298
%%WEBSVNDIR%%/templates/BlueGrey/images/files.png
299
%%WEBSVNDIR%%/templates/BlueGrey/images/folder-open.png
300
%%WEBSVNDIR%%/templates/BlueGrey/images/folder.png
301
%%WEBSVNDIR%%/templates/BlueGrey/images/i-node.png
302
%%WEBSVNDIR%%/templates/BlueGrey/images/l-node.png
303
%%WEBSVNDIR%%/templates/BlueGrey/images/repo.png
304
%%WEBSVNDIR%%/templates/BlueGrey/images/rss.gif
305
%%WEBSVNDIR%%/templates/BlueGrey/images/t-node.png
306
%%WEBSVNDIR%%/templates/BlueGrey/images/websvn.png
307
%%WEBSVNDIR%%/templates/BlueGrey/index.tmpl
308
%%WEBSVNDIR%%/templates/BlueGrey/log.tmpl
309
%%WEBSVNDIR%%/templates/BlueGrey/png.js
310
%%WEBSVNDIR%%/templates/BlueGrey/revision.tmpl
311
%%WEBSVNDIR%%/templates/BlueGrey/styles.css
312
%%WEBSVNDIR%%/templates/Elegant/blame.tmpl
313
%%WEBSVNDIR%%/templates/Elegant/compare.tmpl
314
%%WEBSVNDIR%%/templates/Elegant/diff.tmpl
315
%%WEBSVNDIR%%/templates/Elegant/directory.tmpl
316
%%WEBSVNDIR%%/templates/Elegant/file.tmpl
317
%%WEBSVNDIR%%/templates/Elegant/footer.tmpl
318
%%WEBSVNDIR%%/templates/Elegant/header.tmpl
319
%%WEBSVNDIR%%/templates/Elegant/images/README.txt
320
%%WEBSVNDIR%%/templates/Elegant/images/added.png
321
%%WEBSVNDIR%%/templates/Elegant/images/arrow-in.png
322
%%WEBSVNDIR%%/templates/Elegant/images/arrow-out.png
323
%%WEBSVNDIR%%/templates/Elegant/images/bg-gray-dark.png
324
%%WEBSVNDIR%%/templates/Elegant/images/bg-gray-light.png
325
%%WEBSVNDIR%%/templates/Elegant/images/bg-page-header.png
326
%%WEBSVNDIR%%/templates/Elegant/images/bg-table-divider.png
327
%%WEBSVNDIR%%/templates/Elegant/images/bg-table-header.png
328
%%WEBSVNDIR%%/templates/Elegant/images/blame.png
329
%%WEBSVNDIR%%/templates/Elegant/images/blank.png
330
%%WEBSVNDIR%%/templates/Elegant/images/cube-blue.png
331
%%WEBSVNDIR%%/templates/Elegant/images/deleted.png
332
%%WEBSVNDIR%%/templates/Elegant/images/detail.png
333
%%WEBSVNDIR%%/templates/Elegant/images/diff.png
334
%%WEBSVNDIR%%/templates/Elegant/images/download.png
335
%%WEBSVNDIR%%/templates/Elegant/images/eye.png
336
%%WEBSVNDIR%%/templates/Elegant/images/favicon.ico
337
%%WEBSVNDIR%%/templates/Elegant/images/file-c.png
338
%%WEBSVNDIR%%/templates/Elegant/images/file-cpp.png
339
%%WEBSVNDIR%%/templates/Elegant/images/file-css.png
340
%%WEBSVNDIR%%/templates/Elegant/images/file-h.png
341
%%WEBSVNDIR%%/templates/Elegant/images/file-html.png
342
%%WEBSVNDIR%%/templates/Elegant/images/file-image.png
343
%%WEBSVNDIR%%/templates/Elegant/images/file-java.png
344
%%WEBSVNDIR%%/templates/Elegant/images/file-m.png
345
%%WEBSVNDIR%%/templates/Elegant/images/file-php.png
346
%%WEBSVNDIR%%/templates/Elegant/images/file-py.png
347
%%WEBSVNDIR%%/templates/Elegant/images/file-xml.png
348
%%WEBSVNDIR%%/templates/Elegant/images/file.png
349
%%WEBSVNDIR%%/templates/Elegant/images/folder.png
350
%%WEBSVNDIR%%/templates/Elegant/images/home.png
351
%%WEBSVNDIR%%/templates/Elegant/images/information.png
352
%%WEBSVNDIR%%/templates/Elegant/images/log.png
353
%%WEBSVNDIR%%/templates/Elegant/images/modified.png
354
%%WEBSVNDIR%%/templates/Elegant/images/next.png
355
%%WEBSVNDIR%%/templates/Elegant/images/parent.png
356
%%WEBSVNDIR%%/templates/Elegant/images/pilcrow.png
357
%%WEBSVNDIR%%/templates/Elegant/images/previous.png
358
%%WEBSVNDIR%%/templates/Elegant/images/remove.png
359
%%WEBSVNDIR%%/templates/Elegant/images/repository.png
360
%%WEBSVNDIR%%/templates/Elegant/images/repository24.png
361
%%WEBSVNDIR%%/templates/Elegant/images/reverse.png
362
%%WEBSVNDIR%%/templates/Elegant/images/revision.png
363
%%WEBSVNDIR%%/templates/Elegant/images/rss.png
364
%%WEBSVNDIR%%/templates/Elegant/images/stop.png
365
%%WEBSVNDIR%%/templates/Elegant/images/subversion-s.png
366
%%WEBSVNDIR%%/templates/Elegant/images/valid.png
367
%%WEBSVNDIR%%/templates/Elegant/images/warning.png
368
%%WEBSVNDIR%%/templates/Elegant/images/youngest.png
369
%%WEBSVNDIR%%/templates/Elegant/index.tmpl
370
%%WEBSVNDIR%%/templates/Elegant/log.tmpl
371
%%WEBSVNDIR%%/templates/Elegant/revision-popup.js
372
%%WEBSVNDIR%%/templates/Elegant/revision.tmpl
373
%%WEBSVNDIR%%/templates/Elegant/styles.css
374
%%WEBSVNDIR%%/templates/calm/README.txt
375
%%WEBSVNDIR%%/templates/calm/blame.tmpl
376
%%WEBSVNDIR%%/templates/calm/compare.tmpl
377
%%WEBSVNDIR%%/templates/calm/diff.tmpl
378
%%WEBSVNDIR%%/templates/calm/directory.tmpl
379
%%WEBSVNDIR%%/templates/calm/file.tmpl
380
%%WEBSVNDIR%%/templates/calm/footer.tmpl
381
%%WEBSVNDIR%%/templates/calm/header.tmpl
382
%%WEBSVNDIR%%/templates/calm/images/add.png
383
%%WEBSVNDIR%%/templates/calm/images/arrow_in.png
384
%%WEBSVNDIR%%/templates/calm/images/arrow_out.png
385
%%WEBSVNDIR%%/templates/calm/images/blame.png
386
%%WEBSVNDIR%%/templates/calm/images/bullet_add.png
387
%%WEBSVNDIR%%/templates/calm/images/bullet_delete.png
388
%%WEBSVNDIR%%/templates/calm/images/bullet_yellow.png
389
%%WEBSVNDIR%%/templates/calm/images/compress.png
390
%%WEBSVNDIR%%/templates/calm/images/css.png
391
%%WEBSVNDIR%%/templates/calm/images/cube_green.png
392
%%WEBSVNDIR%%/templates/calm/images/delete.png
393
%%WEBSVNDIR%%/templates/calm/images/diff.png
394
%%WEBSVNDIR%%/templates/calm/images/e-node.png
395
%%WEBSVNDIR%%/templates/calm/images/exclamation.png
396
%%WEBSVNDIR%%/templates/calm/images/eye.png
397
%%WEBSVNDIR%%/templates/calm/images/favicon.ico
398
%%WEBSVNDIR%%/templates/calm/images/file.png
399
%%WEBSVNDIR%%/templates/calm/images/filec.png
400
%%WEBSVNDIR%%/templates/calm/images/filedb.png
401
%%WEBSVNDIR%%/templates/calm/images/fileh.png
402
%%WEBSVNDIR%%/templates/calm/images/filepaint.png
403
%%WEBSVNDIR%%/templates/calm/images/filephp.png
404
%%WEBSVNDIR%%/templates/calm/images/files.png
405
%%WEBSVNDIR%%/templates/calm/images/filetxt.png
406
%%WEBSVNDIR%%/templates/calm/images/filexml.png
407
%%WEBSVNDIR%%/templates/calm/images/folder.png
408
%%WEBSVNDIR%%/templates/calm/images/html.png
409
%%WEBSVNDIR%%/templates/calm/images/i-node.png
410
%%WEBSVNDIR%%/templates/calm/images/l-node.png
411
%%WEBSVNDIR%%/templates/calm/images/link.png
412
%%WEBSVNDIR%%/templates/calm/images/log.png
413
%%WEBSVNDIR%%/templates/calm/images/next.png
414
%%WEBSVNDIR%%/templates/calm/images/page_white_add.png
415
%%WEBSVNDIR%%/templates/calm/images/page_white_delete.png
416
%%WEBSVNDIR%%/templates/calm/images/page_white_edit.png
417
%%WEBSVNDIR%%/templates/calm/images/pilcrow.png
418
%%WEBSVNDIR%%/templates/calm/images/pilcrow_delete.png
419
%%WEBSVNDIR%%/templates/calm/images/previous.png
420
%%WEBSVNDIR%%/templates/calm/images/script.png
421
%%WEBSVNDIR%%/templates/calm/images/sitemap_color.png
422
%%WEBSVNDIR%%/templates/calm/images/submitbg.png
423
%%WEBSVNDIR%%/templates/calm/images/t-node.png
424
%%WEBSVNDIR%%/templates/calm/images/textbg.png
425
%%WEBSVNDIR%%/templates/calm/images/toggledown.png
426
%%WEBSVNDIR%%/templates/calm/images/toggleup.png
427
%%WEBSVNDIR%%/templates/calm/images/up.png
428
%%WEBSVNDIR%%/templates/calm/images/xml.gif
429
%%WEBSVNDIR%%/templates/calm/index.tmpl
430
%%WEBSVNDIR%%/templates/calm/log.tmpl
431
%%WEBSVNDIR%%/templates/calm/png.js
432
%%WEBSVNDIR%%/templates/calm/revision.tmpl
433
%%WEBSVNDIR%%/templates/calm/styles.css
434
%%WEBSVNDIR%%/wsvn.php

Return to bug 236284