123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Web Based Subversion Repository Browsing with WebSVN</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Web Based SVN.Web Based Subversion,Subversion Browser,Subversion,Apache,Install Guide,Browser Based,Self-Hosted,HTTPD,SVN,WebSVN,PHP,Web Based Tools,Code Repository,Source Code Tracking,Version Control,Web Based,SVN Server,SVN Basics,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Web Based Subversion Repository Browsing with WebSVN">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Web Based Subversion Repository Browsing with WebSVN</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Prerequisites</h2>
- <ul>
- <li>Subversion installed on the web server (Video tutorial: )</li>
- <li>Apache with PHP support</li>
- </ul>
- <h2>Installing WebSVN</h2>
- <p>From the project's GitHub:<br />
- 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 two versions of a file so as to see exactly what was changed in a particular revision.</p>
- <ol>
- <li>Download WebSVN <a href="https://github.com/websvnphp/websvn" target="_blank">Download</a></li>
- <li>Extract the WebSVN files</li>
- <li>Rename the extracted folder WebSVN</li>
- <li>Copy the entire extracted folder to Apache install directory/htdocs</li>
- <li>Make a copy of the include/distconfig.php and name it config.php</li>
- <li>Edit config.php in a text editor</li>
- <li>Find $config->parentPath and set the value to the parent path of the Subversion repositories (ie G:\\SVN)</li>
- <li>Save the file</li>
- <li>Open a web browser and navigate to http(s)://DNSorIP/WebSVN</li>
- <li>Enjoy a web based view into your Subversion repositories</li>
- </ol>
- <p>If you receive errors about svn.exe or other svn commands failing, make sure the Subversion /bin directory is in the system path and that the user running the web server process has read access to the Subversion parent path specified in config.php</p>
- </div>
- </div>
- </body>
- </html>
-
|