1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

devel/websvn: update port to 2.4

While here, pass maintainership to submitter

PR:		236284
Submitted by:	Michael Osipov <michael.osipov@siemens.com>
Approved by:	ychsiao@ychsiao.org (maintainer)
This commit is contained in:
Steve Wills 2019-03-07 19:27:25 +00:00
parent d2bc5049ca
commit e53f66e8a8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=494989
7 changed files with 263 additions and 507 deletions

View File

@ -1,32 +1,50 @@
# Created by: Yuan-Chung Hsiao (ychsiao@ychsiao.idv.tw)
# $FreeBSD$
PORTNAME= websvn
PORTVERSION= 2.3.3
PORTREVISION= 1
PORTVERSION= 2.4
CATEGORIES= devel www
MASTER_SITES= http://websvn.tigris.org/files/documents/1380/49056/
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
MAINTAINER= ychsiao@ychsiao.org
COMMENT= Subversion repository web frontend
MAINTAINER= michael.osipov@siemens.com
COMMENT= Online Subversion repository browser
LICENSE= GPLv2+
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/license.txt
USES= cpe
USE_PHP= iconv pcre xml
NO_BUILD= yes
RUN_DEPENDS= ${LOCALBASE}/bin/svn:devel/subversion \
${PEARDIR}/Archive/Tar.php:devel/pear@${PHP_FLAVOR} \
${PEARDIR}/geshi.php:devel/pear-geshi@${PHP_FLAVOR} \
${PEARDIR}/Text/Diff.php:devel/pear-Text_Diff@${PHP_FLAVOR}
WEBSVNDIR?= ${WWWDIR_REL}
USES= php:flavors cpe
USE_GITHUB= yes
GH_ACCOUNT= ${PORTNAME}php
USE_PHP= iconv pcre xml mbstring
NO_BUILD= yes
NO_ARCH= yes
PEARDIR?= ${LOCALBASE}/share/pear
SUB_FILES= pkg-message
SUB_LIST+= WEBSVNDIR="${WEBSVNDIR}"
PLIST_SUB+= WEBSVNDIR="${WEBSVNDIR}"
PLIST_SUB+= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
post-patch:
@${REINPLACE_CMD} -E \
-e 's|^// \$$config->setSvnConfigDir.+|$$config->setSvnConfigDir('"'"'${ETCDIR}/subversion'"'"')\;|' \
-e 's|^// \$$config->setSVNCommandPath.+|$$config->setSVNCommandPath('"'"'${LOCALBASE}/bin'"'"')\;|' \
-e 's|^// \$$config->useGeshi.+|$$config->useGeshi()\;|' \
${WRKSRC}/include/distconfig.php
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/${WEBSVNDIR}
(cd ${WRKSRC} \
&& ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/${WEBSVNDIR})
${FIND} ${STAGEDIR}${PREFIX}/${WEBSVNDIR} -type f -exec ${CHMOD} 644 {} +
@(cd ${WRKSRC} \
&& ${RM} README.md changes.txt include/.gitignore)
@${MKDIR} ${STAGEDIR}${WWWDIR}
@(cd ${WRKSRC} \
&& ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
post-install:
@${MKDIR} ${STAGEDIR}${ETCDIR}/subversion
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (websvn-2.3.3.tar.gz) = 67d5cb7ffb087f8a92e3dcad10f16612baac4d15a60d659aa8b6e06200ac8742
SIZE (websvn-2.3.3.tar.gz) = 882779
TIMESTAMP = 1551703252
SHA256 (websvnphp-websvn-2.4_GH0.tar.gz) = a6a06c957b48b909d1eb09b313255e0903bfbe39bbfdafc80b920c4108791b0a
SIZE (websvnphp-websvn-2.4_GH0.tar.gz) = 209331

View File

@ -1,37 +0,0 @@
Arbitrary files with a known path can be accessed in websvn by committing a
symlink to a repository and then downloading the file (using the download
link).
Author: Thijs Kinkhorst <thijs@debian.org>
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775682
--- dl.php.orig 2011-06-27 09:02:52 UTC
+++ dl.php
@@ -137,6 +137,18 @@ if ($rep) {
exit(0);
}
+ // For security reasons, disallow direct downloads of filenames that
+ // are a symlink, since they may be a symlink to anywhere (/etc/passwd)
+ // Deciding whether the symlink is relative and legal within the
+ // repository would be nice but seems to error prone at this moment.
+ if ( is_link($tempDir.DIRECTORY_SEPARATOR.$archiveName) ) {
+ header('HTTP/1.x 500 Internal Server Error', true, 500);
+ error_log('to be downloaded file is symlink, aborting: '.$archiveName);
+ print 'Download of symlinks disallowed: "'.xml_entities($archiveName).'".';
+ removeDirectory($tempDir);
+ exit(0);
+ }
+
// Set timestamp of exported directory (and subdirectories) to timestamp of
// the revision so every archive of a given revision has the same timestamp.
$revDate = $logEntry->date;
@@ -180,7 +192,7 @@ if ($rep) {
$downloadMimeType = 'application/x-zip';
$downloadArchive .= '.zip';
// Create zip file
- $cmd = $config->zip.' -r '.quote($downloadArchive).' '.quote($archiveName);
+ $cmd = $config->zip.' --symlinks -r '.quote($downloadArchive).' '.quote($archiveName);
execCommand($cmd, $retcode);
if ($retcode != 0) {
error_log('Unable to call zip command: '.$cmd);

View File

@ -1,12 +0,0 @@
Obtained from: Debian
--- include/setup.php.orig 2011-06-27 09:12:51 UTC
+++ include/setup.php
@@ -467,7 +467,7 @@ $vars['indexurl'] = $config->getURL('',
$vars['validationurl'] = getFullURL($_SERVER['SCRIPT_NAME']).'?'.buildQuery($queryParams + array('template' => $template, 'language' => $language), '%26');
// To avoid a possible XSS exploit, need to clean up the passed-in path first
-$path = !empty($_REQUEST['path']) ? $_REQUEST['path'] : null;
+$path = !empty($_REQUEST['path']) ? escape($_REQUEST['path']) : null;
if ($path === null || $path === '')
$path = '/';
$vars['safepath'] = escape($path);

View File

@ -1,4 +1,7 @@
----------------------------------------------------
To setup websvn, please edit the configuration file:
%%PREFIX%%/%%WEBSVNDIR%%/include/config.php
To setup WebSVN, please edit the configuration file:
%%WWWDIR%%/include/config.php
and modify your web server's configuration to serve
WebSVN actually!
----------------------------------------------------

View File

@ -1,7 +1,7 @@
WebSVN offers a view onto your subversion repositories that's been designed
WebSVN offers a view onto your Subversion repositories that's been designed
to reflect the Subversion methodology. You can view the log of any file or
directory and see a list of all the files changed, added or deleted in any
given revision. You can also view the differences between 2 versions of
given revision. You can also view the differences between two versions of
a file so as to see exactly what was changed in a particular revision.
WWW: http://websvn.info/
WWW: https://websvnphp.github.io/

View File

@ -1,434 +1,217 @@
%%WEBSVNDIR%%/blame.php
%%WEBSVNDIR%%/cache/tmp
%%WEBSVNDIR%%/changes.txt
%%WEBSVNDIR%%/comp.php
%%WEBSVNDIR%%/diff.php
%%WEBSVNDIR%%/dl.php
%%WEBSVNDIR%%/doc/install.html
%%WEBSVNDIR%%/doc/style.css
%%WEBSVNDIR%%/doc/templates.html
%%WEBSVNDIR%%/filedetails.php
%%WEBSVNDIR%%/include/accessfile.php
%%WEBSVNDIR%%/include/auth.php
%%WEBSVNDIR%%/include/bugtraq.php
%%WEBSVNDIR%%/include/command.php
%%WEBSVNDIR%%/include/configclass.php
%%WEBSVNDIR%%/include/diff_inc.php
%%WEBSVNDIR%%/include/diff_util.php
@sample %%WEBSVNDIR%%/include/distconfig.php %%WWWDIR%%/include/config.php
%%WEBSVNDIR%%/include/header
%%WEBSVNDIR%%/include/setup.php
%%WEBSVNDIR%%/include/svnlook.php
%%WEBSVNDIR%%/include/template.php
%%WEBSVNDIR%%/include/utils.php
%%WEBSVNDIR%%/include/version.php
%%WEBSVNDIR%%/index.php
%%WEBSVNDIR%%/javascript/blame-popup.js
%%WEBSVNDIR%%/javascript/group-collapse.js
%%WEBSVNDIR%%/languages/catalan.php
%%WEBSVNDIR%%/languages/chinese-simplified.php
%%WEBSVNDIR%%/languages/chinese-traditional.php
%%WEBSVNDIR%%/languages/czech.php
%%WEBSVNDIR%%/languages/danish.php
%%WEBSVNDIR%%/languages/dutch.php
%%WEBSVNDIR%%/languages/english.php
%%WEBSVNDIR%%/languages/finnish.php
%%WEBSVNDIR%%/languages/french.php
%%WEBSVNDIR%%/languages/german.php
%%WEBSVNDIR%%/languages/hebrew.php
%%WEBSVNDIR%%/languages/hindi.php
%%WEBSVNDIR%%/languages/hungarian.php
%%WEBSVNDIR%%/languages/indonesian.php
%%WEBSVNDIR%%/languages/italian.php
%%WEBSVNDIR%%/languages/japanese.php
%%WEBSVNDIR%%/languages/korean.php
%%WEBSVNDIR%%/languages/languages.php
%%WEBSVNDIR%%/languages/macedonian.php
%%WEBSVNDIR%%/languages/marathi.php
%%WEBSVNDIR%%/languages/norwegian.php
%%WEBSVNDIR%%/languages/polish.php
%%WEBSVNDIR%%/languages/portuguese-br.php
%%WEBSVNDIR%%/languages/portuguese.php
%%WEBSVNDIR%%/languages/russian.php
%%WEBSVNDIR%%/languages/slovak.php
%%WEBSVNDIR%%/languages/slovenian.php
%%WEBSVNDIR%%/languages/spanish.php
%%WEBSVNDIR%%/languages/swedish.php
%%WEBSVNDIR%%/languages/turkish.php
%%WEBSVNDIR%%/languages/ukrainian.php
%%WEBSVNDIR%%/languages/uzbek.php
%%WEBSVNDIR%%/lib/geshi/c_loadrunner.php
%%WEBSVNDIR%%/lib/geshi/bascomavr.php
%%WEBSVNDIR%%/lib/geshi/yaml.php
%%WEBSVNDIR%%/lib/geshi/coffeescript.php
%%WEBSVNDIR%%/lib/geshi/euphoria.php
%%WEBSVNDIR%%/lib/geshi/llvm.php
%%WEBSVNDIR%%/lib/geshi/falcon.php
%%WEBSVNDIR%%/lib/geshi/epc.php
%%WEBSVNDIR%%/lib/geshi/uscript.php
%%WEBSVNDIR%%/lib/geshi/proftpd.php
%%WEBSVNDIR%%/lib/geshi/html5.php
%%WEBSVNDIR%%/lib/geshi/pycon.php
%%WEBSVNDIR%%/lib/geshi/pli.php
%%WEBSVNDIR%%/lib/geshi/4cs.php
%%WEBSVNDIR%%/lib/geshi/6502acme.php
%%WEBSVNDIR%%/lib/geshi/6502kickass.php
%%WEBSVNDIR%%/lib/geshi/6502tasm.php
%%WEBSVNDIR%%/lib/geshi/68000devpac.php
%%WEBSVNDIR%%/lib/geshi/abap.php
%%WEBSVNDIR%%/lib/geshi/actionscript.php
%%WEBSVNDIR%%/lib/geshi/actionscript3.php
%%WEBSVNDIR%%/lib/geshi/ada.php
%%WEBSVNDIR%%/lib/geshi/algol68.php
%%WEBSVNDIR%%/lib/geshi/apache.php
%%WEBSVNDIR%%/lib/geshi/applescript.php
%%WEBSVNDIR%%/lib/geshi/apt_sources.php
%%WEBSVNDIR%%/lib/geshi/asm.php
%%WEBSVNDIR%%/lib/geshi/asp.php
%%WEBSVNDIR%%/lib/geshi/autoconf.php
%%WEBSVNDIR%%/lib/geshi/autohotkey.php
%%WEBSVNDIR%%/lib/geshi/autoit.php
%%WEBSVNDIR%%/lib/geshi/avisynth.php
%%WEBSVNDIR%%/lib/geshi/awk.php
%%WEBSVNDIR%%/lib/geshi/bash.php
%%WEBSVNDIR%%/lib/geshi/basic4gl.php
%%WEBSVNDIR%%/lib/geshi/bf.php
%%WEBSVNDIR%%/lib/geshi/bibtex.php
%%WEBSVNDIR%%/lib/geshi/blitzbasic.php
%%WEBSVNDIR%%/lib/geshi/bnf.php
%%WEBSVNDIR%%/lib/geshi/boo.php
%%WEBSVNDIR%%/lib/geshi/c.php
%%WEBSVNDIR%%/lib/geshi/c_mac.php
%%WEBSVNDIR%%/lib/geshi/caddcl.php
%%WEBSVNDIR%%/lib/geshi/cadlisp.php
%%WEBSVNDIR%%/lib/geshi/cfdg.php
%%WEBSVNDIR%%/lib/geshi/cfm.php
%%WEBSVNDIR%%/lib/geshi/chaiscript.php
%%WEBSVNDIR%%/lib/geshi/cil.php
%%WEBSVNDIR%%/lib/geshi/clojure.php
%%WEBSVNDIR%%/lib/geshi/cmake.php
%%WEBSVNDIR%%/lib/geshi/cobol.php
%%WEBSVNDIR%%/lib/geshi/cpp-qt.php
%%WEBSVNDIR%%/lib/geshi/cpp.php
%%WEBSVNDIR%%/lib/geshi/csharp.php
%%WEBSVNDIR%%/lib/geshi/css.php
%%WEBSVNDIR%%/lib/geshi/cuesheet.php
%%WEBSVNDIR%%/lib/geshi/d.php
%%WEBSVNDIR%%/lib/geshi/dcs.php
%%WEBSVNDIR%%/lib/geshi/delphi.php
%%WEBSVNDIR%%/lib/geshi/diff.php
%%WEBSVNDIR%%/lib/geshi/div.php
%%WEBSVNDIR%%/lib/geshi/dos.php
%%WEBSVNDIR%%/lib/geshi/dot.php
%%WEBSVNDIR%%/lib/geshi/e.php
%%WEBSVNDIR%%/lib/geshi/ecmascript.php
%%WEBSVNDIR%%/lib/geshi/eiffel.php
%%WEBSVNDIR%%/lib/geshi/email.php
%%WEBSVNDIR%%/lib/geshi/erlang.php
%%WEBSVNDIR%%/lib/geshi/f1.php
%%WEBSVNDIR%%/lib/geshi/fo.php
%%WEBSVNDIR%%/lib/geshi/fortran.php
%%WEBSVNDIR%%/lib/geshi/freebasic.php
%%WEBSVNDIR%%/lib/geshi/fsharp.php
%%WEBSVNDIR%%/lib/geshi/gambas.php
%%WEBSVNDIR%%/lib/geshi/gdb.php
%%WEBSVNDIR%%/lib/geshi/genero.php
%%WEBSVNDIR%%/lib/geshi/genie.php
%%WEBSVNDIR%%/lib/geshi/gettext.php
%%WEBSVNDIR%%/lib/geshi/glsl.php
%%WEBSVNDIR%%/lib/geshi/gml.php
%%WEBSVNDIR%%/lib/geshi/gnuplot.php
%%WEBSVNDIR%%/lib/geshi/go.php
%%WEBSVNDIR%%/lib/geshi/groovy.php
%%WEBSVNDIR%%/lib/geshi/gwbasic.php
%%WEBSVNDIR%%/lib/geshi/haskell.php
%%WEBSVNDIR%%/lib/geshi/hicest.php
%%WEBSVNDIR%%/lib/geshi/hq9plus.php
%%WEBSVNDIR%%/lib/geshi/html4strict.php
%%WEBSVNDIR%%/lib/geshi/icon.php
%%WEBSVNDIR%%/lib/geshi/idl.php
%%WEBSVNDIR%%/lib/geshi/ini.php
%%WEBSVNDIR%%/lib/geshi/inno.php
%%WEBSVNDIR%%/lib/geshi/intercal.php
%%WEBSVNDIR%%/lib/geshi/io.php
%%WEBSVNDIR%%/lib/geshi/j.php
%%WEBSVNDIR%%/lib/geshi/java.php
%%WEBSVNDIR%%/lib/geshi/java5.php
%%WEBSVNDIR%%/lib/geshi/javascript.php
%%WEBSVNDIR%%/lib/geshi/jquery.php
%%WEBSVNDIR%%/lib/geshi/kixtart.php
%%WEBSVNDIR%%/lib/geshi/klonec.php
%%WEBSVNDIR%%/lib/geshi/klonecpp.php
%%WEBSVNDIR%%/lib/geshi/latex.php
%%WEBSVNDIR%%/lib/geshi/lb.php
%%WEBSVNDIR%%/lib/geshi/lisp.php
%%WEBSVNDIR%%/lib/geshi/locobasic.php
%%WEBSVNDIR%%/lib/geshi/logtalk.php
%%WEBSVNDIR%%/lib/geshi/lolcode.php
%%WEBSVNDIR%%/lib/geshi/lotusformulas.php
%%WEBSVNDIR%%/lib/geshi/lotusscript.php
%%WEBSVNDIR%%/lib/geshi/lscript.php
%%WEBSVNDIR%%/lib/geshi/lsl2.php
%%WEBSVNDIR%%/lib/geshi/lua.php
%%WEBSVNDIR%%/lib/geshi/m68k.php
%%WEBSVNDIR%%/lib/geshi/magiksf.php
%%WEBSVNDIR%%/lib/geshi/make.php
%%WEBSVNDIR%%/lib/geshi/mapbasic.php
%%WEBSVNDIR%%/lib/geshi/matlab.php
%%WEBSVNDIR%%/lib/geshi/mirc.php
%%WEBSVNDIR%%/lib/geshi/mmix.php
%%WEBSVNDIR%%/lib/geshi/modula2.php
%%WEBSVNDIR%%/lib/geshi/modula3.php
%%WEBSVNDIR%%/lib/geshi/mpasm.php
%%WEBSVNDIR%%/lib/geshi/mxml.php
%%WEBSVNDIR%%/lib/geshi/mysql.php
%%WEBSVNDIR%%/lib/geshi/newlisp.php
%%WEBSVNDIR%%/lib/geshi/nsis.php
%%WEBSVNDIR%%/lib/geshi/oberon2.php
%%WEBSVNDIR%%/lib/geshi/objc.php
%%WEBSVNDIR%%/lib/geshi/objeck.php
%%WEBSVNDIR%%/lib/geshi/ocaml-brief.php
%%WEBSVNDIR%%/lib/geshi/ocaml.php
%%WEBSVNDIR%%/lib/geshi/oobas.php
%%WEBSVNDIR%%/lib/geshi/oracle11.php
%%WEBSVNDIR%%/lib/geshi/oracle8.php
%%WEBSVNDIR%%/lib/geshi/oxygene.php
%%WEBSVNDIR%%/lib/geshi/oz.php
%%WEBSVNDIR%%/lib/geshi/pascal.php
%%WEBSVNDIR%%/lib/geshi/pcre.php
%%WEBSVNDIR%%/lib/geshi/per.php
%%WEBSVNDIR%%/lib/geshi/perl.php
%%WEBSVNDIR%%/lib/geshi/perl6.php
%%WEBSVNDIR%%/lib/geshi/pf.php
%%WEBSVNDIR%%/lib/geshi/php-brief.php
%%WEBSVNDIR%%/lib/geshi/php.php
%%WEBSVNDIR%%/lib/geshi/pic16.php
%%WEBSVNDIR%%/lib/geshi/pike.php
%%WEBSVNDIR%%/lib/geshi/pixelbender.php
%%WEBSVNDIR%%/lib/geshi/plsql.php
%%WEBSVNDIR%%/lib/geshi/postgresql.php
%%WEBSVNDIR%%/lib/geshi/povray.php
%%WEBSVNDIR%%/lib/geshi/powerbuilder.php
%%WEBSVNDIR%%/lib/geshi/powershell.php
%%WEBSVNDIR%%/lib/geshi/progress.php
%%WEBSVNDIR%%/lib/geshi/prolog.php
%%WEBSVNDIR%%/lib/geshi/properties.php
%%WEBSVNDIR%%/lib/geshi/providex.php
%%WEBSVNDIR%%/lib/geshi/purebasic.php
%%WEBSVNDIR%%/lib/geshi/python.php
%%WEBSVNDIR%%/lib/geshi/q.php
%%WEBSVNDIR%%/lib/geshi/qbasic.php
%%WEBSVNDIR%%/lib/geshi/rails.php
%%WEBSVNDIR%%/lib/geshi/rebol.php
%%WEBSVNDIR%%/lib/geshi/reg.php
%%WEBSVNDIR%%/lib/geshi/robots.php
%%WEBSVNDIR%%/lib/geshi/rpmspec.php
%%WEBSVNDIR%%/lib/geshi/rsplus.php
%%WEBSVNDIR%%/lib/geshi/ruby.php
%%WEBSVNDIR%%/lib/geshi/sas.php
%%WEBSVNDIR%%/lib/geshi/scala.php
%%WEBSVNDIR%%/lib/geshi/scheme.php
%%WEBSVNDIR%%/lib/geshi/scilab.php
%%WEBSVNDIR%%/lib/geshi/sdlbasic.php
%%WEBSVNDIR%%/lib/geshi/smalltalk.php
%%WEBSVNDIR%%/lib/geshi/smarty.php
%%WEBSVNDIR%%/lib/geshi/sql.php
%%WEBSVNDIR%%/lib/geshi/systemverilog.php
%%WEBSVNDIR%%/lib/geshi/tcl.php
%%WEBSVNDIR%%/lib/geshi/teraterm.php
%%WEBSVNDIR%%/lib/geshi/text.php
%%WEBSVNDIR%%/lib/geshi/thinbasic.php
%%WEBSVNDIR%%/lib/geshi/tsql.php
%%WEBSVNDIR%%/lib/geshi/typoscript.php
%%WEBSVNDIR%%/lib/geshi/unicon.php
%%WEBSVNDIR%%/lib/geshi/vala.php
%%WEBSVNDIR%%/lib/geshi/vb.php
%%WEBSVNDIR%%/lib/geshi/vbnet.php
%%WEBSVNDIR%%/lib/geshi/verilog.php
%%WEBSVNDIR%%/lib/geshi/vhdl.php
%%WEBSVNDIR%%/lib/geshi/vim.php
%%WEBSVNDIR%%/lib/geshi/visualfoxpro.php
%%WEBSVNDIR%%/lib/geshi/visualprolog.php
%%WEBSVNDIR%%/lib/geshi/whitespace.php
%%WEBSVNDIR%%/lib/geshi/whois.php
%%WEBSVNDIR%%/lib/geshi/winbatch.php
%%WEBSVNDIR%%/lib/geshi/xbasic.php
%%WEBSVNDIR%%/lib/geshi/xml.php
%%WEBSVNDIR%%/lib/geshi/xorg_conf.php
%%WEBSVNDIR%%/lib/geshi/xpp.php
%%WEBSVNDIR%%/lib/geshi/z80.php
%%WEBSVNDIR%%/lib/geshi/zxbasic.php
%%WEBSVNDIR%%/lib/geshi.php
%%WEBSVNDIR%%/lib/pear/Archive/Tar.php
%%WEBSVNDIR%%/lib/pear/PEAR.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/native.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/shell.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/string.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Engine/xdiff.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Mapped.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer/context.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer/inline.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer/unified.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/Renderer.php
%%WEBSVNDIR%%/lib/pear/Text/Diff/ThreeWay.php
%%WEBSVNDIR%%/lib/pear/Text/Diff.php
%%WEBSVNDIR%%/lib/pear/Text/Diff3.php
%%WEBSVNDIR%%/license.txt
%%WEBSVNDIR%%/listing.php
%%WEBSVNDIR%%/log.php
%%WEBSVNDIR%%/revision.php
%%WEBSVNDIR%%/rss.php
%%WEBSVNDIR%%/templates/BlueGrey/blame.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/compare.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/diff.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/directory.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/file.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/footer.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/header.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/images/e-node.png
%%WEBSVNDIR%%/templates/BlueGrey/images/favicon.ico
%%WEBSVNDIR%%/templates/BlueGrey/images/file.png
%%WEBSVNDIR%%/templates/BlueGrey/images/filec.png
%%WEBSVNDIR%%/templates/BlueGrey/images/filecpp.png
%%WEBSVNDIR%%/templates/BlueGrey/images/fileh.png
%%WEBSVNDIR%%/templates/BlueGrey/images/filehtml.png
%%WEBSVNDIR%%/templates/BlueGrey/images/filejava.png
%%WEBSVNDIR%%/templates/BlueGrey/images/filem.png
%%WEBSVNDIR%%/templates/BlueGrey/images/filepy.png
%%WEBSVNDIR%%/templates/BlueGrey/images/files.png
%%WEBSVNDIR%%/templates/BlueGrey/images/folder-open.png
%%WEBSVNDIR%%/templates/BlueGrey/images/folder.png
%%WEBSVNDIR%%/templates/BlueGrey/images/i-node.png
%%WEBSVNDIR%%/templates/BlueGrey/images/l-node.png
%%WEBSVNDIR%%/templates/BlueGrey/images/repo.png
%%WEBSVNDIR%%/templates/BlueGrey/images/rss.gif
%%WEBSVNDIR%%/templates/BlueGrey/images/t-node.png
%%WEBSVNDIR%%/templates/BlueGrey/images/websvn.png
%%WEBSVNDIR%%/templates/BlueGrey/index.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/log.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/png.js
%%WEBSVNDIR%%/templates/BlueGrey/revision.tmpl
%%WEBSVNDIR%%/templates/BlueGrey/styles.css
%%WEBSVNDIR%%/templates/Elegant/blame.tmpl
%%WEBSVNDIR%%/templates/Elegant/compare.tmpl
%%WEBSVNDIR%%/templates/Elegant/diff.tmpl
%%WEBSVNDIR%%/templates/Elegant/directory.tmpl
%%WEBSVNDIR%%/templates/Elegant/file.tmpl
%%WEBSVNDIR%%/templates/Elegant/footer.tmpl
%%WEBSVNDIR%%/templates/Elegant/header.tmpl
%%WEBSVNDIR%%/templates/Elegant/images/README.txt
%%WEBSVNDIR%%/templates/Elegant/images/added.png
%%WEBSVNDIR%%/templates/Elegant/images/arrow-in.png
%%WEBSVNDIR%%/templates/Elegant/images/arrow-out.png
%%WEBSVNDIR%%/templates/Elegant/images/bg-gray-dark.png
%%WEBSVNDIR%%/templates/Elegant/images/bg-gray-light.png
%%WEBSVNDIR%%/templates/Elegant/images/bg-page-header.png
%%WEBSVNDIR%%/templates/Elegant/images/bg-table-divider.png
%%WEBSVNDIR%%/templates/Elegant/images/bg-table-header.png
%%WEBSVNDIR%%/templates/Elegant/images/blame.png
%%WEBSVNDIR%%/templates/Elegant/images/blank.png
%%WEBSVNDIR%%/templates/Elegant/images/cube-blue.png
%%WEBSVNDIR%%/templates/Elegant/images/deleted.png
%%WEBSVNDIR%%/templates/Elegant/images/detail.png
%%WEBSVNDIR%%/templates/Elegant/images/diff.png
%%WEBSVNDIR%%/templates/Elegant/images/download.png
%%WEBSVNDIR%%/templates/Elegant/images/eye.png
%%WEBSVNDIR%%/templates/Elegant/images/favicon.ico
%%WEBSVNDIR%%/templates/Elegant/images/file-c.png
%%WEBSVNDIR%%/templates/Elegant/images/file-cpp.png
%%WEBSVNDIR%%/templates/Elegant/images/file-css.png
%%WEBSVNDIR%%/templates/Elegant/images/file-h.png
%%WEBSVNDIR%%/templates/Elegant/images/file-html.png
%%WEBSVNDIR%%/templates/Elegant/images/file-image.png
%%WEBSVNDIR%%/templates/Elegant/images/file-java.png
%%WEBSVNDIR%%/templates/Elegant/images/file-m.png
%%WEBSVNDIR%%/templates/Elegant/images/file-php.png
%%WEBSVNDIR%%/templates/Elegant/images/file-py.png
%%WEBSVNDIR%%/templates/Elegant/images/file-xml.png
%%WEBSVNDIR%%/templates/Elegant/images/file.png
%%WEBSVNDIR%%/templates/Elegant/images/folder.png
%%WEBSVNDIR%%/templates/Elegant/images/home.png
%%WEBSVNDIR%%/templates/Elegant/images/information.png
%%WEBSVNDIR%%/templates/Elegant/images/log.png
%%WEBSVNDIR%%/templates/Elegant/images/modified.png
%%WEBSVNDIR%%/templates/Elegant/images/next.png
%%WEBSVNDIR%%/templates/Elegant/images/parent.png
%%WEBSVNDIR%%/templates/Elegant/images/pilcrow.png
%%WEBSVNDIR%%/templates/Elegant/images/previous.png
%%WEBSVNDIR%%/templates/Elegant/images/remove.png
%%WEBSVNDIR%%/templates/Elegant/images/repository.png
%%WEBSVNDIR%%/templates/Elegant/images/repository24.png
%%WEBSVNDIR%%/templates/Elegant/images/reverse.png
%%WEBSVNDIR%%/templates/Elegant/images/revision.png
%%WEBSVNDIR%%/templates/Elegant/images/rss.png
%%WEBSVNDIR%%/templates/Elegant/images/stop.png
%%WEBSVNDIR%%/templates/Elegant/images/subversion-s.png
%%WEBSVNDIR%%/templates/Elegant/images/valid.png
%%WEBSVNDIR%%/templates/Elegant/images/warning.png
%%WEBSVNDIR%%/templates/Elegant/images/youngest.png
%%WEBSVNDIR%%/templates/Elegant/index.tmpl
%%WEBSVNDIR%%/templates/Elegant/log.tmpl
%%WEBSVNDIR%%/templates/Elegant/revision-popup.js
%%WEBSVNDIR%%/templates/Elegant/revision.tmpl
%%WEBSVNDIR%%/templates/Elegant/styles.css
%%WEBSVNDIR%%/templates/calm/README.txt
%%WEBSVNDIR%%/templates/calm/blame.tmpl
%%WEBSVNDIR%%/templates/calm/compare.tmpl
%%WEBSVNDIR%%/templates/calm/diff.tmpl
%%WEBSVNDIR%%/templates/calm/directory.tmpl
%%WEBSVNDIR%%/templates/calm/file.tmpl
%%WEBSVNDIR%%/templates/calm/footer.tmpl
%%WEBSVNDIR%%/templates/calm/header.tmpl
%%WEBSVNDIR%%/templates/calm/images/add.png
%%WEBSVNDIR%%/templates/calm/images/arrow_in.png
%%WEBSVNDIR%%/templates/calm/images/arrow_out.png
%%WEBSVNDIR%%/templates/calm/images/blame.png
%%WEBSVNDIR%%/templates/calm/images/bullet_add.png
%%WEBSVNDIR%%/templates/calm/images/bullet_delete.png
%%WEBSVNDIR%%/templates/calm/images/bullet_yellow.png
%%WEBSVNDIR%%/templates/calm/images/compress.png
%%WEBSVNDIR%%/templates/calm/images/css.png
%%WEBSVNDIR%%/templates/calm/images/cube_green.png
%%WEBSVNDIR%%/templates/calm/images/delete.png
%%WEBSVNDIR%%/templates/calm/images/diff.png
%%WEBSVNDIR%%/templates/calm/images/e-node.png
%%WEBSVNDIR%%/templates/calm/images/exclamation.png
%%WEBSVNDIR%%/templates/calm/images/eye.png
%%WEBSVNDIR%%/templates/calm/images/favicon.ico
%%WEBSVNDIR%%/templates/calm/images/file.png
%%WEBSVNDIR%%/templates/calm/images/filec.png
%%WEBSVNDIR%%/templates/calm/images/filedb.png
%%WEBSVNDIR%%/templates/calm/images/fileh.png
%%WEBSVNDIR%%/templates/calm/images/filepaint.png
%%WEBSVNDIR%%/templates/calm/images/filephp.png
%%WEBSVNDIR%%/templates/calm/images/files.png
%%WEBSVNDIR%%/templates/calm/images/filetxt.png
%%WEBSVNDIR%%/templates/calm/images/filexml.png
%%WEBSVNDIR%%/templates/calm/images/folder.png
%%WEBSVNDIR%%/templates/calm/images/html.png
%%WEBSVNDIR%%/templates/calm/images/i-node.png
%%WEBSVNDIR%%/templates/calm/images/l-node.png
%%WEBSVNDIR%%/templates/calm/images/link.png
%%WEBSVNDIR%%/templates/calm/images/log.png
%%WEBSVNDIR%%/templates/calm/images/next.png
%%WEBSVNDIR%%/templates/calm/images/page_white_add.png
%%WEBSVNDIR%%/templates/calm/images/page_white_delete.png
%%WEBSVNDIR%%/templates/calm/images/page_white_edit.png
%%WEBSVNDIR%%/templates/calm/images/pilcrow.png
%%WEBSVNDIR%%/templates/calm/images/pilcrow_delete.png
%%WEBSVNDIR%%/templates/calm/images/previous.png
%%WEBSVNDIR%%/templates/calm/images/script.png
%%WEBSVNDIR%%/templates/calm/images/sitemap_color.png
%%WEBSVNDIR%%/templates/calm/images/submitbg.png
%%WEBSVNDIR%%/templates/calm/images/t-node.png
%%WEBSVNDIR%%/templates/calm/images/textbg.png
%%WEBSVNDIR%%/templates/calm/images/toggledown.png
%%WEBSVNDIR%%/templates/calm/images/toggleup.png
%%WEBSVNDIR%%/templates/calm/images/up.png
%%WEBSVNDIR%%/templates/calm/images/xml.gif
%%WEBSVNDIR%%/templates/calm/index.tmpl
%%WEBSVNDIR%%/templates/calm/log.tmpl
%%WEBSVNDIR%%/templates/calm/png.js
%%WEBSVNDIR%%/templates/calm/revision.tmpl
%%WEBSVNDIR%%/templates/calm/styles.css
%%WEBSVNDIR%%/wsvn.php
%%WWWDIR%%/blame.php
%%WWWDIR%%/browse.php
%%WWWDIR%%/cache/tmp
%%WWWDIR%%/comp.php
%%WWWDIR%%/diff.php
%%WWWDIR%%/dl.php
%%WWWDIR%%/filedetails.php
%%WWWDIR%%/include/authz.php
%%WWWDIR%%/include/bugtraq.php
%%WWWDIR%%/include/command.php
%%WWWDIR%%/include/configclass.php
%%WWWDIR%%/include/diff_inc.php
%%WWWDIR%%/include/diff_util.php
@sample(,%%WWWGRP%%,640) %%WWWDIR%%/include/distconfig.php %%WWWDIR%%/include/config.php
%%WWWDIR%%/include/header
%%WWWDIR%%/include/setup.php
%%WWWDIR%%/include/svnlook.php
%%WWWDIR%%/include/template.php
%%WWWDIR%%/include/utils.php
%%WWWDIR%%/include/version.php
%%WWWDIR%%/index.php
%%WWWDIR%%/javascript/blame-popup.js
%%WWWDIR%%/javascript/compare-checkboxes.js
%%WWWDIR%%/javascript/group-collapse.js
%%WWWDIR%%/javascript/ie-png-transparency.js
%%WWWDIR%%/languages/catalan.php
%%WWWDIR%%/languages/chinese-simplified.php
%%WWWDIR%%/languages/chinese-traditional.php
%%WWWDIR%%/languages/czech.php
%%WWWDIR%%/languages/danish.php
%%WWWDIR%%/languages/dutch.php
%%WWWDIR%%/languages/english.php
%%WWWDIR%%/languages/finnish.php
%%WWWDIR%%/languages/french.php
%%WWWDIR%%/languages/german.php
%%WWWDIR%%/languages/hebrew.php
%%WWWDIR%%/languages/hindi.php
%%WWWDIR%%/languages/hungarian.php
%%WWWDIR%%/languages/indonesian.php
%%WWWDIR%%/languages/italian.php
%%WWWDIR%%/languages/japanese.php
%%WWWDIR%%/languages/korean.php
%%WWWDIR%%/languages/languages.php
%%WWWDIR%%/languages/macedonian.php
%%WWWDIR%%/languages/marathi.php
%%WWWDIR%%/languages/norwegian.php
%%WWWDIR%%/languages/polish.php
%%WWWDIR%%/languages/portuguese-br.php
%%WWWDIR%%/languages/portuguese.php
%%WWWDIR%%/languages/russian.php
%%WWWDIR%%/languages/slovak.php
%%WWWDIR%%/languages/slovenian.php
%%WWWDIR%%/languages/spanish.php
%%WWWDIR%%/languages/swedish.php
%%WWWDIR%%/languages/turkish.php
%%WWWDIR%%/languages/ukrainian.php
%%WWWDIR%%/languages/uzbek.php
%%WWWDIR%%/license.txt
%%WWWDIR%%/listing.php
%%WWWDIR%%/log.php
%%WWWDIR%%/multiviews.php
%%WWWDIR%%/revision.php
%%WWWDIR%%/rss.php
%%WWWDIR%%/templates/BlueGrey/blame.tmpl
%%WWWDIR%%/templates/BlueGrey/compare.tmpl
%%WWWDIR%%/templates/BlueGrey/diff.tmpl
%%WWWDIR%%/templates/BlueGrey/directory.tmpl
%%WWWDIR%%/templates/BlueGrey/file.tmpl
%%WWWDIR%%/templates/BlueGrey/footer.tmpl
%%WWWDIR%%/templates/BlueGrey/header.tmpl
%%WWWDIR%%/templates/BlueGrey/images/e-node.png
%%WWWDIR%%/templates/BlueGrey/images/favicon.ico
%%WWWDIR%%/templates/BlueGrey/images/file.png
%%WWWDIR%%/templates/BlueGrey/images/filec.png
%%WWWDIR%%/templates/BlueGrey/images/filecpp.png
%%WWWDIR%%/templates/BlueGrey/images/fileh.png
%%WWWDIR%%/templates/BlueGrey/images/filehtml.png
%%WWWDIR%%/templates/BlueGrey/images/filejava.png
%%WWWDIR%%/templates/BlueGrey/images/filem.png
%%WWWDIR%%/templates/BlueGrey/images/filepy.png
%%WWWDIR%%/templates/BlueGrey/images/folder-open.png
%%WWWDIR%%/templates/BlueGrey/images/folder.png
%%WWWDIR%%/templates/BlueGrey/images/i-node.png
%%WWWDIR%%/templates/BlueGrey/images/l-node.png
%%WWWDIR%%/templates/BlueGrey/images/repo.png
%%WWWDIR%%/templates/BlueGrey/images/rss.gif
%%WWWDIR%%/templates/BlueGrey/images/t-node.png
%%WWWDIR%%/templates/BlueGrey/images/websvn.png
%%WWWDIR%%/templates/BlueGrey/index.tmpl
%%WWWDIR%%/templates/BlueGrey/log.tmpl
%%WWWDIR%%/templates/BlueGrey/revision.tmpl
%%WWWDIR%%/templates/BlueGrey/styles.css
%%WWWDIR%%/templates/Elegant/blame.tmpl
%%WWWDIR%%/templates/Elegant/compare.tmpl
%%WWWDIR%%/templates/Elegant/diff.tmpl
%%WWWDIR%%/templates/Elegant/directory.tmpl
%%WWWDIR%%/templates/Elegant/file.tmpl
%%WWWDIR%%/templates/Elegant/footer.tmpl
%%WWWDIR%%/templates/Elegant/header.tmpl
%%WWWDIR%%/templates/Elegant/images/README.txt
%%WWWDIR%%/templates/Elegant/images/added.png
%%WWWDIR%%/templates/Elegant/images/arrow-in.png
%%WWWDIR%%/templates/Elegant/images/arrow-out.png
%%WWWDIR%%/templates/Elegant/images/bg-gray-dark.png
%%WWWDIR%%/templates/Elegant/images/bg-gray-light.png
%%WWWDIR%%/templates/Elegant/images/bg-page-header.png
%%WWWDIR%%/templates/Elegant/images/bg-table-divider.png
%%WWWDIR%%/templates/Elegant/images/bg-table-header.png
%%WWWDIR%%/templates/Elegant/images/blame.png
%%WWWDIR%%/templates/Elegant/images/blank.png
%%WWWDIR%%/templates/Elegant/images/cube-blue.png
%%WWWDIR%%/templates/Elegant/images/deleted.png
%%WWWDIR%%/templates/Elegant/images/detail.png
%%WWWDIR%%/templates/Elegant/images/diff.png
%%WWWDIR%%/templates/Elegant/images/download.png
%%WWWDIR%%/templates/Elegant/images/eye.png
%%WWWDIR%%/templates/Elegant/images/favicon.ico
%%WWWDIR%%/templates/Elegant/images/file-c.png
%%WWWDIR%%/templates/Elegant/images/file-cpp.png
%%WWWDIR%%/templates/Elegant/images/file-css.png
%%WWWDIR%%/templates/Elegant/images/file-h.png
%%WWWDIR%%/templates/Elegant/images/file-html.png
%%WWWDIR%%/templates/Elegant/images/file-image.png
%%WWWDIR%%/templates/Elegant/images/file-java.png
%%WWWDIR%%/templates/Elegant/images/file-m.png
%%WWWDIR%%/templates/Elegant/images/file-php.png
%%WWWDIR%%/templates/Elegant/images/file-py.png
%%WWWDIR%%/templates/Elegant/images/file-xml.png
%%WWWDIR%%/templates/Elegant/images/file.png
%%WWWDIR%%/templates/Elegant/images/folder.png
%%WWWDIR%%/templates/Elegant/images/home.png
%%WWWDIR%%/templates/Elegant/images/information.png
%%WWWDIR%%/templates/Elegant/images/log.png
%%WWWDIR%%/templates/Elegant/images/modified.png
%%WWWDIR%%/templates/Elegant/images/next.png
%%WWWDIR%%/templates/Elegant/images/parent.png
%%WWWDIR%%/templates/Elegant/images/pilcrow.png
%%WWWDIR%%/templates/Elegant/images/previous.png
%%WWWDIR%%/templates/Elegant/images/remove.png
%%WWWDIR%%/templates/Elegant/images/repository.png
%%WWWDIR%%/templates/Elegant/images/repository24.png
%%WWWDIR%%/templates/Elegant/images/reverse.png
%%WWWDIR%%/templates/Elegant/images/revision.png
%%WWWDIR%%/templates/Elegant/images/rss.png
%%WWWDIR%%/templates/Elegant/images/stop.png
%%WWWDIR%%/templates/Elegant/images/subversion-s.png
%%WWWDIR%%/templates/Elegant/images/valid.png
%%WWWDIR%%/templates/Elegant/images/warning.png
%%WWWDIR%%/templates/Elegant/images/youngest.png
%%WWWDIR%%/templates/Elegant/index.tmpl
%%WWWDIR%%/templates/Elegant/log.tmpl
%%WWWDIR%%/templates/Elegant/revision-popup.js
%%WWWDIR%%/templates/Elegant/revision.tmpl
%%WWWDIR%%/templates/Elegant/styles.css
@sample %%WWWDIR%%/templates/Elegant/user_greeting.tmpl %%WWWDIR%%/templates/Elegant/user_greeting.tmpl.sample
%%WWWDIR%%/templates/calm/README.txt
%%WWWDIR%%/templates/calm/blame.tmpl
%%WWWDIR%%/templates/calm/compare.tmpl
%%WWWDIR%%/templates/calm/diff.tmpl
%%WWWDIR%%/templates/calm/directory.tmpl
%%WWWDIR%%/templates/calm/file.tmpl
%%WWWDIR%%/templates/calm/footer.tmpl
%%WWWDIR%%/templates/calm/header.tmpl
%%WWWDIR%%/templates/calm/images/add.png
%%WWWDIR%%/templates/calm/images/arrow_in.png
%%WWWDIR%%/templates/calm/images/arrow_out.png
%%WWWDIR%%/templates/calm/images/blame.png
%%WWWDIR%%/templates/calm/images/bullet_add.png
%%WWWDIR%%/templates/calm/images/bullet_delete.png
%%WWWDIR%%/templates/calm/images/bullet_yellow.png
%%WWWDIR%%/templates/calm/images/compress.png
%%WWWDIR%%/templates/calm/images/css.png
%%WWWDIR%%/templates/calm/images/cube_green.png
%%WWWDIR%%/templates/calm/images/delete.png
%%WWWDIR%%/templates/calm/images/diff.png
%%WWWDIR%%/templates/calm/images/e-node.png
%%WWWDIR%%/templates/calm/images/exclamation.png
%%WWWDIR%%/templates/calm/images/eye.png
%%WWWDIR%%/templates/calm/images/favicon.ico
%%WWWDIR%%/templates/calm/images/file.png
%%WWWDIR%%/templates/calm/images/filec.png
%%WWWDIR%%/templates/calm/images/filedb.png
%%WWWDIR%%/templates/calm/images/fileh.png
%%WWWDIR%%/templates/calm/images/filepaint.png
%%WWWDIR%%/templates/calm/images/filephp.png
%%WWWDIR%%/templates/calm/images/filetxt.png
%%WWWDIR%%/templates/calm/images/filexml.png
%%WWWDIR%%/templates/calm/images/folder.png
%%WWWDIR%%/templates/calm/images/html.png
%%WWWDIR%%/templates/calm/images/i-node.png
%%WWWDIR%%/templates/calm/images/l-node.png
%%WWWDIR%%/templates/calm/images/link.png
%%WWWDIR%%/templates/calm/images/log.png
%%WWWDIR%%/templates/calm/images/next.png
%%WWWDIR%%/templates/calm/images/page_white_add.png
%%WWWDIR%%/templates/calm/images/page_white_delete.png
%%WWWDIR%%/templates/calm/images/page_white_edit.png
%%WWWDIR%%/templates/calm/images/pilcrow.png
%%WWWDIR%%/templates/calm/images/pilcrow_delete.png
%%WWWDIR%%/templates/calm/images/previous.png
%%WWWDIR%%/templates/calm/images/script.png
%%WWWDIR%%/templates/calm/images/sitemap_color.png
%%WWWDIR%%/templates/calm/images/submitbg.png
%%WWWDIR%%/templates/calm/images/t-node.png
%%WWWDIR%%/templates/calm/images/textbg.png
%%WWWDIR%%/templates/calm/images/toggledown.png
%%WWWDIR%%/templates/calm/images/toggleup.png
%%WWWDIR%%/templates/calm/images/up.png
%%WWWDIR%%/templates/calm/images/xml.gif
%%WWWDIR%%/templates/calm/index.tmpl
%%WWWDIR%%/templates/calm/log.tmpl
%%WWWDIR%%/templates/calm/revision.tmpl
%%WWWDIR%%/templates/calm/styles.css
@sample %%WWWDIR%%/templates/calm/user_greeting.tmpl %%WWWDIR%%/templates/calm/user_greeting.tmpl.sample
@postunexec echo "==> If your are permanently removing this package consider deleting %%PREFIX%%/%%ETCDIR%%!"
@dir(%%WWWOWN%%,%%WWWGRP%%,) %%ETCDIR%%/subversion
@dir %%ETCDIR%%