├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── blame.php ├── browse.php ├── cache └── tmp ├── changes.txt ├── comp.php ├── composer.json ├── diff.php ├── dl.php ├── filedetails.php ├── include ├── .gitignore ├── authz.php ├── bugtraq.php ├── command.php ├── configclass.php ├── diff_inc.php ├── diff_util.php ├── distconfig.php ├── header ├── setup.php ├── svnlook.php ├── template.php ├── utils.php └── version.php ├── index.php ├── javascript ├── blame-popup.js ├── collapsible.js ├── compare-checkboxes.js └── jquery-1.12.4.min.js ├── languages ├── catalan.php ├── chinese-simplified.php ├── chinese-traditional.php ├── czech.php ├── danish.php ├── dutch.php ├── english.php ├── finnish.php ├── french.php ├── german.php ├── hebrew.php ├── hindi.php ├── hungarian.php ├── indonesian.php ├── italian.php ├── japanese.php ├── korean.php ├── languages.php ├── macedonian.php ├── marathi.php ├── norwegian.php ├── polish.php ├── portuguese-br.php ├── portuguese.php ├── russian.php ├── slovak.php ├── slovenian.php ├── spanish.php ├── swedish.php ├── turkish.php ├── ukrainian.php └── uzbek.php ├── license.txt ├── listing.php ├── log.php ├── multiviews.php ├── revision.php ├── rss.php ├── search.php └── templates ├── BlueGrey ├── blame.tmpl ├── compare.tmpl ├── diff.tmpl ├── directory.tmpl ├── file.tmpl ├── footer.tmpl ├── header.tmpl ├── images │ ├── directory-open.png │ ├── directory.png │ ├── e-node.png │ ├── favicon.ico │ ├── file.png │ ├── filec.png │ ├── filecpp.png │ ├── fileh.png │ ├── filehtml.png │ ├── filejava.png │ ├── filem.png │ ├── filepy.png │ ├── i-node.png │ ├── l-node.png │ ├── repo.png │ ├── rss.gif │ ├── t-node.png │ └── websvn.png ├── index.tmpl ├── log.tmpl ├── revision.tmpl └── styles.css ├── Elegant ├── blame.tmpl ├── compare.tmpl ├── diff.tmpl ├── directory.tmpl ├── file.tmpl ├── footer.tmpl ├── header.tmpl ├── images │ ├── README.txt │ ├── added.png │ ├── arrow-in.png │ ├── arrow-out.png │ ├── bg-gray-dark.png │ ├── bg-gray-light.png │ ├── bg-page-header.png │ ├── bg-table-divider.png │ ├── bg-table-header.png │ ├── blame.png │ ├── blank.png │ ├── cube-blue.png │ ├── deleted.png │ ├── detail.png │ ├── diff.png │ ├── directory.png │ ├── download.png │ ├── eye.png │ ├── favicon.ico │ ├── file-c.png │ ├── file-cpp.png │ ├── file-css.png │ ├── file-h.png │ ├── file-html.png │ ├── file-image.png │ ├── file-java.png │ ├── file-m.png │ ├── file-php.png │ ├── file-py.png │ ├── file-xml.png │ ├── file.png │ ├── home.png │ ├── information.png │ ├── log.png │ ├── modified.png │ ├── next.png │ ├── parent.png │ ├── pilcrow.png │ ├── previous.png │ ├── remove.png │ ├── repository.png │ ├── repository24.png │ ├── reverse.png │ ├── revision.png │ ├── rss.png │ ├── stop.png │ ├── subversion-s.png │ ├── valid.png │ ├── warning.png │ └── youngest.png ├── index.tmpl ├── log.tmpl ├── revision-popup.js ├── revision.tmpl ├── styles.css └── user_greeting.tmpl └── calm ├── README.txt ├── blame.tmpl ├── compare.tmpl ├── diff.tmpl ├── directory.tmpl ├── file.tmpl ├── footer.tmpl ├── header.tmpl ├── images ├── add.png ├── arrow_in.png ├── arrow_out.png ├── blame.png ├── bullet_add.png ├── bullet_delete.png ├── bullet_yellow.png ├── compress.png ├── css.png ├── cube_green.png ├── delete.png ├── diff.png ├── directory.png ├── e-node.png ├── exclamation.png ├── eye.png ├── favicon.ico ├── file.png ├── filec.png ├── filedb.png ├── fileh.png ├── filepaint.png ├── filephp.png ├── filetxt.png ├── filexml.png ├── html.png ├── i-node.png ├── l-node.png ├── link.png ├── log.png ├── next.png ├── page_white_add.png ├── page_white_delete.png ├── page_white_edit.png ├── pilcrow.png ├── pilcrow_delete.png ├── previous.png ├── script.png ├── sitemap_color.png ├── submitbg.png ├── t-node.png ├── textbg.png ├── toggle-down.png ├── toggle-up.png ├── up.png └── xml.gif ├── index.tmpl ├── log.tmpl ├── revision.tmpl ├── styles.css └── user_greeting.tmpl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/README.md -------------------------------------------------------------------------------- /blame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/blame.php -------------------------------------------------------------------------------- /browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/browse.php -------------------------------------------------------------------------------- /cache/tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/cache/tmp -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/changes.txt -------------------------------------------------------------------------------- /comp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/comp.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/composer.json -------------------------------------------------------------------------------- /diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/diff.php -------------------------------------------------------------------------------- /dl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/dl.php -------------------------------------------------------------------------------- /filedetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/filedetails.php -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | /config.php 2 | -------------------------------------------------------------------------------- /include/authz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/authz.php -------------------------------------------------------------------------------- /include/bugtraq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/bugtraq.php -------------------------------------------------------------------------------- /include/command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/command.php -------------------------------------------------------------------------------- /include/configclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/configclass.php -------------------------------------------------------------------------------- /include/diff_inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/diff_inc.php -------------------------------------------------------------------------------- /include/diff_util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/diff_util.php -------------------------------------------------------------------------------- /include/distconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/distconfig.php -------------------------------------------------------------------------------- /include/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/header -------------------------------------------------------------------------------- /include/setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/setup.php -------------------------------------------------------------------------------- /include/svnlook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/svnlook.php -------------------------------------------------------------------------------- /include/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/template.php -------------------------------------------------------------------------------- /include/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/utils.php -------------------------------------------------------------------------------- /include/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/include/version.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/index.php -------------------------------------------------------------------------------- /javascript/blame-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/javascript/blame-popup.js -------------------------------------------------------------------------------- /javascript/collapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/javascript/collapsible.js -------------------------------------------------------------------------------- /javascript/compare-checkboxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/javascript/compare-checkboxes.js -------------------------------------------------------------------------------- /javascript/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/javascript/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /languages/catalan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/catalan.php -------------------------------------------------------------------------------- /languages/chinese-simplified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/chinese-simplified.php -------------------------------------------------------------------------------- /languages/chinese-traditional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/chinese-traditional.php -------------------------------------------------------------------------------- /languages/czech.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/czech.php -------------------------------------------------------------------------------- /languages/danish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/danish.php -------------------------------------------------------------------------------- /languages/dutch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/dutch.php -------------------------------------------------------------------------------- /languages/english.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/english.php -------------------------------------------------------------------------------- /languages/finnish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/finnish.php -------------------------------------------------------------------------------- /languages/french.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/french.php -------------------------------------------------------------------------------- /languages/german.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/german.php -------------------------------------------------------------------------------- /languages/hebrew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/hebrew.php -------------------------------------------------------------------------------- /languages/hindi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/hindi.php -------------------------------------------------------------------------------- /languages/hungarian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/hungarian.php -------------------------------------------------------------------------------- /languages/indonesian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/indonesian.php -------------------------------------------------------------------------------- /languages/italian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/italian.php -------------------------------------------------------------------------------- /languages/japanese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/japanese.php -------------------------------------------------------------------------------- /languages/korean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/korean.php -------------------------------------------------------------------------------- /languages/languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/languages.php -------------------------------------------------------------------------------- /languages/macedonian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/macedonian.php -------------------------------------------------------------------------------- /languages/marathi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/marathi.php -------------------------------------------------------------------------------- /languages/norwegian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/norwegian.php -------------------------------------------------------------------------------- /languages/polish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/polish.php -------------------------------------------------------------------------------- /languages/portuguese-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/portuguese-br.php -------------------------------------------------------------------------------- /languages/portuguese.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/portuguese.php -------------------------------------------------------------------------------- /languages/russian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/russian.php -------------------------------------------------------------------------------- /languages/slovak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/slovak.php -------------------------------------------------------------------------------- /languages/slovenian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/slovenian.php -------------------------------------------------------------------------------- /languages/spanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/spanish.php -------------------------------------------------------------------------------- /languages/swedish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/swedish.php -------------------------------------------------------------------------------- /languages/turkish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/turkish.php -------------------------------------------------------------------------------- /languages/ukrainian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/ukrainian.php -------------------------------------------------------------------------------- /languages/uzbek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/languages/uzbek.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/license.txt -------------------------------------------------------------------------------- /listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/listing.php -------------------------------------------------------------------------------- /log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/log.php -------------------------------------------------------------------------------- /multiviews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/multiviews.php -------------------------------------------------------------------------------- /revision.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/revision.php -------------------------------------------------------------------------------- /rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/rss.php -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/search.php -------------------------------------------------------------------------------- /templates/BlueGrey/blame.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/blame.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/compare.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/compare.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/diff.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/diff.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/directory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/directory.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/file.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/file.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/footer.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/header.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/images/directory-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/directory-open.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/directory.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/e-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/e-node.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/favicon.ico -------------------------------------------------------------------------------- /templates/BlueGrey/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/file.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/filec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/filec.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/filecpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/filecpp.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/fileh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/fileh.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/filehtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/filehtml.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/filejava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/filejava.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/filem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/filem.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/filepy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/filepy.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/i-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/i-node.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/l-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/l-node.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/repo.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/rss.gif -------------------------------------------------------------------------------- /templates/BlueGrey/images/t-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/t-node.png -------------------------------------------------------------------------------- /templates/BlueGrey/images/websvn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/images/websvn.png -------------------------------------------------------------------------------- /templates/BlueGrey/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/index.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/log.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/log.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/revision.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/revision.tmpl -------------------------------------------------------------------------------- /templates/BlueGrey/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/BlueGrey/styles.css -------------------------------------------------------------------------------- /templates/Elegant/blame.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/blame.tmpl -------------------------------------------------------------------------------- /templates/Elegant/compare.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/compare.tmpl -------------------------------------------------------------------------------- /templates/Elegant/diff.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/diff.tmpl -------------------------------------------------------------------------------- /templates/Elegant/directory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/directory.tmpl -------------------------------------------------------------------------------- /templates/Elegant/file.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/file.tmpl -------------------------------------------------------------------------------- /templates/Elegant/footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/footer.tmpl -------------------------------------------------------------------------------- /templates/Elegant/header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/header.tmpl -------------------------------------------------------------------------------- /templates/Elegant/images/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/README.txt -------------------------------------------------------------------------------- /templates/Elegant/images/added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/added.png -------------------------------------------------------------------------------- /templates/Elegant/images/arrow-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/arrow-in.png -------------------------------------------------------------------------------- /templates/Elegant/images/arrow-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/arrow-out.png -------------------------------------------------------------------------------- /templates/Elegant/images/bg-gray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/bg-gray-dark.png -------------------------------------------------------------------------------- /templates/Elegant/images/bg-gray-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/bg-gray-light.png -------------------------------------------------------------------------------- /templates/Elegant/images/bg-page-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/bg-page-header.png -------------------------------------------------------------------------------- /templates/Elegant/images/bg-table-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/bg-table-divider.png -------------------------------------------------------------------------------- /templates/Elegant/images/bg-table-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/bg-table-header.png -------------------------------------------------------------------------------- /templates/Elegant/images/blame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/blame.png -------------------------------------------------------------------------------- /templates/Elegant/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/blank.png -------------------------------------------------------------------------------- /templates/Elegant/images/cube-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/cube-blue.png -------------------------------------------------------------------------------- /templates/Elegant/images/deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/deleted.png -------------------------------------------------------------------------------- /templates/Elegant/images/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/detail.png -------------------------------------------------------------------------------- /templates/Elegant/images/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/diff.png -------------------------------------------------------------------------------- /templates/Elegant/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/directory.png -------------------------------------------------------------------------------- /templates/Elegant/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/download.png -------------------------------------------------------------------------------- /templates/Elegant/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/eye.png -------------------------------------------------------------------------------- /templates/Elegant/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/favicon.ico -------------------------------------------------------------------------------- /templates/Elegant/images/file-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-c.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-cpp.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-css.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-h.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-html.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-image.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-java.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-m.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-php.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-py.png -------------------------------------------------------------------------------- /templates/Elegant/images/file-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file-xml.png -------------------------------------------------------------------------------- /templates/Elegant/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/file.png -------------------------------------------------------------------------------- /templates/Elegant/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/home.png -------------------------------------------------------------------------------- /templates/Elegant/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/information.png -------------------------------------------------------------------------------- /templates/Elegant/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/log.png -------------------------------------------------------------------------------- /templates/Elegant/images/modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/modified.png -------------------------------------------------------------------------------- /templates/Elegant/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/next.png -------------------------------------------------------------------------------- /templates/Elegant/images/parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/parent.png -------------------------------------------------------------------------------- /templates/Elegant/images/pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/pilcrow.png -------------------------------------------------------------------------------- /templates/Elegant/images/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/previous.png -------------------------------------------------------------------------------- /templates/Elegant/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/remove.png -------------------------------------------------------------------------------- /templates/Elegant/images/repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/repository.png -------------------------------------------------------------------------------- /templates/Elegant/images/repository24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/repository24.png -------------------------------------------------------------------------------- /templates/Elegant/images/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/reverse.png -------------------------------------------------------------------------------- /templates/Elegant/images/revision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/revision.png -------------------------------------------------------------------------------- /templates/Elegant/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/rss.png -------------------------------------------------------------------------------- /templates/Elegant/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/stop.png -------------------------------------------------------------------------------- /templates/Elegant/images/subversion-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/subversion-s.png -------------------------------------------------------------------------------- /templates/Elegant/images/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/valid.png -------------------------------------------------------------------------------- /templates/Elegant/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/warning.png -------------------------------------------------------------------------------- /templates/Elegant/images/youngest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/images/youngest.png -------------------------------------------------------------------------------- /templates/Elegant/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/index.tmpl -------------------------------------------------------------------------------- /templates/Elegant/log.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/log.tmpl -------------------------------------------------------------------------------- /templates/Elegant/revision-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/revision-popup.js -------------------------------------------------------------------------------- /templates/Elegant/revision.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/revision.tmpl -------------------------------------------------------------------------------- /templates/Elegant/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/styles.css -------------------------------------------------------------------------------- /templates/Elegant/user_greeting.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/Elegant/user_greeting.tmpl -------------------------------------------------------------------------------- /templates/calm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/README.txt -------------------------------------------------------------------------------- /templates/calm/blame.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/blame.tmpl -------------------------------------------------------------------------------- /templates/calm/compare.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/compare.tmpl -------------------------------------------------------------------------------- /templates/calm/diff.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/diff.tmpl -------------------------------------------------------------------------------- /templates/calm/directory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/directory.tmpl -------------------------------------------------------------------------------- /templates/calm/file.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/file.tmpl -------------------------------------------------------------------------------- /templates/calm/footer.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/footer.tmpl -------------------------------------------------------------------------------- /templates/calm/header.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/header.tmpl -------------------------------------------------------------------------------- /templates/calm/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/add.png -------------------------------------------------------------------------------- /templates/calm/images/arrow_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/arrow_in.png -------------------------------------------------------------------------------- /templates/calm/images/arrow_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/arrow_out.png -------------------------------------------------------------------------------- /templates/calm/images/blame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/blame.png -------------------------------------------------------------------------------- /templates/calm/images/bullet_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/bullet_add.png -------------------------------------------------------------------------------- /templates/calm/images/bullet_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/bullet_delete.png -------------------------------------------------------------------------------- /templates/calm/images/bullet_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/bullet_yellow.png -------------------------------------------------------------------------------- /templates/calm/images/compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/compress.png -------------------------------------------------------------------------------- /templates/calm/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/css.png -------------------------------------------------------------------------------- /templates/calm/images/cube_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/cube_green.png -------------------------------------------------------------------------------- /templates/calm/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/delete.png -------------------------------------------------------------------------------- /templates/calm/images/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/diff.png -------------------------------------------------------------------------------- /templates/calm/images/directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/directory.png -------------------------------------------------------------------------------- /templates/calm/images/e-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/e-node.png -------------------------------------------------------------------------------- /templates/calm/images/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/exclamation.png -------------------------------------------------------------------------------- /templates/calm/images/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/eye.png -------------------------------------------------------------------------------- /templates/calm/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/favicon.ico -------------------------------------------------------------------------------- /templates/calm/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/file.png -------------------------------------------------------------------------------- /templates/calm/images/filec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/filec.png -------------------------------------------------------------------------------- /templates/calm/images/filedb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/filedb.png -------------------------------------------------------------------------------- /templates/calm/images/fileh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/fileh.png -------------------------------------------------------------------------------- /templates/calm/images/filepaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/filepaint.png -------------------------------------------------------------------------------- /templates/calm/images/filephp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/filephp.png -------------------------------------------------------------------------------- /templates/calm/images/filetxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/filetxt.png -------------------------------------------------------------------------------- /templates/calm/images/filexml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/filexml.png -------------------------------------------------------------------------------- /templates/calm/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/html.png -------------------------------------------------------------------------------- /templates/calm/images/i-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/i-node.png -------------------------------------------------------------------------------- /templates/calm/images/l-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/l-node.png -------------------------------------------------------------------------------- /templates/calm/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/link.png -------------------------------------------------------------------------------- /templates/calm/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/log.png -------------------------------------------------------------------------------- /templates/calm/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/next.png -------------------------------------------------------------------------------- /templates/calm/images/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/page_white_add.png -------------------------------------------------------------------------------- /templates/calm/images/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/page_white_delete.png -------------------------------------------------------------------------------- /templates/calm/images/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/page_white_edit.png -------------------------------------------------------------------------------- /templates/calm/images/pilcrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/pilcrow.png -------------------------------------------------------------------------------- /templates/calm/images/pilcrow_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/pilcrow_delete.png -------------------------------------------------------------------------------- /templates/calm/images/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/previous.png -------------------------------------------------------------------------------- /templates/calm/images/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/script.png -------------------------------------------------------------------------------- /templates/calm/images/sitemap_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/sitemap_color.png -------------------------------------------------------------------------------- /templates/calm/images/submitbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/submitbg.png -------------------------------------------------------------------------------- /templates/calm/images/t-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/t-node.png -------------------------------------------------------------------------------- /templates/calm/images/textbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/textbg.png -------------------------------------------------------------------------------- /templates/calm/images/toggle-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/toggle-down.png -------------------------------------------------------------------------------- /templates/calm/images/toggle-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/toggle-up.png -------------------------------------------------------------------------------- /templates/calm/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/up.png -------------------------------------------------------------------------------- /templates/calm/images/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/images/xml.gif -------------------------------------------------------------------------------- /templates/calm/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/index.tmpl -------------------------------------------------------------------------------- /templates/calm/log.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/log.tmpl -------------------------------------------------------------------------------- /templates/calm/revision.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/revision.tmpl -------------------------------------------------------------------------------- /templates/calm/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/styles.css -------------------------------------------------------------------------------- /templates/calm/user_greeting.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websvnphp/websvn/HEAD/templates/calm/user_greeting.tmpl --------------------------------------------------------------------------------