tags:

views:

45

answers:

4

i have test project in svn repository

how can i check it different browsers like(IE,Firefox) so i can test

means what would be a path in browser for testing project.

is ther any other method to check a project in browser

A: 

Subversion does not offer browser access by default. You will have to install something like ViewVC on your server.

Greg Hewgill
but how can i test the project in browser... please tell me the way to check it in browser like ie, firefox
vijay
Ok, sorry I don't have a clue what you are asking now. I'll leave my answer in case it's useful for you.
Greg Hewgill
thanks please if you have any idea then suggest methanks
vijay
A: 

There is a special apache module for svn (using webdav) which allows to do that. Take a look at Configuring Apache for Subversion use

After that, you can enter into svn directory browser using:

http://[your svn server]/svn/

Pmod
A: 

you should add it in /etc/httpd/conf.d/subversion.conf something like:

 <Location /svn <!--here is the path from browser-->>
   ...
   SVNPath /usr/local/svn/ <!--physical path-->

   ...
 </Location>
glaz666
A: 

Trac contains a standalone web server and a super Subversion Repository Browser.

Vanni Totaro