Re: [Trac] noob - PROPFIND 301 error

2006-04-02 Thread Emmanuel Blot
 This means that you need to configure your Apache server as without
 Trac if you want a SVN client to access the repository.

  whoa.. what a min. I just read this again. Are you saying you can't run
 trac AND svn simultaneously in apache?
  This clearly can't be the case.

No, you can safely run both on the same server.
What I meant was: you need to configure SVN as you would do without
Trac, then configure Trac - whichever the order.

Cheers,
Manu
___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-02 Thread Matthew Good
On Sat, 2006-04-01 at 17:40 -0800, Brad Fuller wrote:
 Matthew Good wrote: 
  On Sat, 2006-04-01 at 15:36 -0800, Brad Fuller wrote:

   Is there anything magic about the SVN directives working with trac?
   The reason I came to my conclusion was I actually set up a couple in
   httpd.conf (actually subversion.conf) and httpd didn't start up:
   
   Location /project1
   DAV svn
   SVNParentPath /var/svn/project1
   etc..
   /Location
   
  
  I believe you want SVNParentPath /var/svn since it would appear that
  project1 is the actual repository and /var/svn is the parent path
  where your repositories will be located.

 right, thanks for pointing that out. That should have been SVNPath
 
 What complicates matters is that I am using seaside on my main :80
 port for the webserver. It appends a unique key to the end of the
 domain name for access to different areas of the site. No need to
 explain that, except to say that I'm using SSL for trac (which, as I
 said works fine now.)
 
 So, to access the svn repos I'll need to use another virtualhost on
 another port. but, I'm still getting the 301 error. Here's what I
 have, very simple:
 
 VirtualHost *:8000
 DocumentRoot /var/svn
 ServerName my.domain.com
 Location /project1
  DAV svn
  SVNPath /var/svn/project1
 /Location
 /VirtualHost
 
 I can get to the repo from a web browser by:
http://my.domain.com:8000/project1
 
 But, curiously I get this when trying to checkout via svn:
svn: PROPFIND request failed on '/project1
svn: PROPFIND of '/project1': 301 Moved Permanently
 (http://my.domain.com:8000)

Well, I'd try taking this thread over the the Subversion mailing list
since I'm not sure what else to suggest.

-- 
Matthew Good [EMAIL PROTECTED]

___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-02 Thread Brad Fuller




Matthew Good wrote:

  since I'm not sure what else to suggest. Well, I'd try taking this thread over the the Subversion mailing list
  

yep, I'll do that. thanks.
Just letting people know the issues. Trac works great so far!
thanks,
brad


___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-01 Thread Emmanuel Blot
 First of all, I was a bit confused with the SVN part. I figured (being
 an SVN user and admin) that to utilize the svn repos I would need to
 configure the directives in the httpd.conf (or subversion.conf) config
 file. But, it looks like trac takes care of all that.
 Please tell me that I've guessed right here ;-)

Unfortunately, you guessed wrong ;-)

Trac provides an improved browser of the SVN repository, that is nice
HTML presentation of the repository contents, but not SVN access. In
other words, a SVN client (svn, TortoiseSVN, etc.) cannot access the
SVN repository through Trac. From a more technical perspective Trac
does not provide WebDAV access to the repository.

This means that you need to configure your Apache server as without
Trac if you want a SVN client to access the repository.

HTH,
Manu
___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-01 Thread Brad Fuller




Emmanuel Blot wrote:

  
First of all, I was a bit confused with the SVN part. I figured (being
an SVN user and admin) that to utilize the svn repos I would need to
configure the directives in the httpd.conf (or subversion.conf) config
file. But, it looks like trac takes care of all that.
Please tell me that I've guessed right here ;-)

  
  
Unfortunately, you guessed wrong ;-)

Trac provides an improved browser of the SVN repository, that is nice
HTML presentation of the repository contents, but not SVN access. In
other words, a SVN client (svn, TortoiseSVN, etc.) cannot access the
SVN repository through Trac. From a more technical perspective Trac
does not provide WebDAV access to the repository.

This means that you need to configure your Apache server as without
Trac if you want a SVN client to access the repository.
  


thanks!
Is there anything magic about the SVN directives working with trac? The
reason I came to my conclusion was I actually set up a couple in
httpd.conf (actually subversion.conf) and httpd didn't start up:

Location /project1
 DAV svn
 SVNParentPath /var/svn/project1
etc..
/Location

Unfortunately, httpd didn't start up and didn't provide any errors
either.

(yes, dav_module, dav_svn_module are loaded)

any help would be appreciated (for instance a short copy of your svn
directives)


___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-01 Thread Brad Fuller




Brad Fuller wrote:

  
Emmanuel Blot wrote:
  

  First of all, I was a bit confused with the SVN part. I figured (being
an SVN user and admin) that to utilize the svn repos I would need to
configure the directives in the httpd.conf (or subversion.conf) config
file. But, it looks like trac takes care of all that.
Please tell me that I've guessed right here ;-)



Unfortunately, you guessed wrong ;-)

Trac provides an improved browser of the SVN repository, that is nice
HTML presentation of the repository contents, but not SVN access. In
other words, a SVN client (svn, TortoiseSVN, etc.) cannot access the
SVN repository through Trac. From a more technical perspective Trac
does not provide WebDAV access to the repository.

This means that you need to configure your Apache server as without
Trac if you want a SVN client to access the repository.

  

whoa.. what a min. I just read this again. Are you saying you can't run
trac AND svn simultaneously in apache?
This clearly can't be the case.


  
  
  
  
thanks!
Is there anything magic about the SVN directives working with trac? The
reason I came to my conclusion was I actually set up a couple in
httpd.conf (actually subversion.conf) and httpd didn't start up:
  
Location /project1
 DAV svn
 SVNParentPath /var/svn/project1
etc..
/Location
  
Unfortunately, httpd didn't start up and didn't provide any errors
either.
  
(yes, dav_module, dav_svn_module are loaded)
  
any help would be appreciated (for instance a short copy of your svn
directives)
  

___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac
  





___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-01 Thread Matthew Good
On Sat, 2006-04-01 at 15:36 -0800, Brad Fuller wrote:
 Is there anything magic about the SVN directives working with trac?
 The reason I came to my conclusion was I actually set up a couple in
 httpd.conf (actually subversion.conf) and httpd didn't start up:
 
 Location /project1
 DAV svn
 SVNParentPath /var/svn/project1
 etc..
 /Location

I believe you want SVNParentPath /var/svn since it would appear that
project1 is the actual repository and /var/svn is the parent path
where your repositories will be located.

-- 
Matthew Good [EMAIL PROTECTED]

___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac


Re: [Trac] noob - PROPFIND 301 error

2006-04-01 Thread Brad Fuller




Matthew Good wrote:

  On Sat, 2006-04-01 at 15:36 -0800, Brad Fuller wrote:
  
  
Is there anything magic about the SVN directives working with trac?
The reason I came to my conclusion was I actually set up a couple in
httpd.conf (actually subversion.conf) and httpd didn't start up:

Location /project1
DAV svn
SVNParentPath /var/svn/project1
etc..
/Location

  
  
I believe you want "SVNParentPath /var/svn" since it would appear that
"project1" is the actual repository and /var/svn is the "parent path"
where your repositories will be located.
  

right, thanks for pointing that out. That should have been SVNPath

What complicates matters is that I am using seaside on my main :80 port
for the webserver. It appends a unique key to the end of the domain
name for access to different areas of the site. No need to explain
that, except to say that I'm using SSL for trac (which, as I said works
fine now.)

So, to access the svn repos I'll need to use another virtualhost on
another port. but, I'm still getting the 301 error. Here's what I have,
very simple:

VirtualHost *:8000
 DocumentRoot /var/svn
 ServerName my.domain.com
 Location /project1
  DAV svn
  SVNPath /var/svn/project1
 /Location
/VirtualHost

I can get to the repo from a web browser by:
 http://my.domain.com:8000/project1

But, curiously I get this when trying to checkout via svn:
 svn: PROPFIND request failed on '/project1
 svn: PROPFIND of '/project1': 301 Moved Permanently
(http://my.domain.com:8000)






 




___
Trac mailing list
Trac@lists.edgewall.com
http://lists.edgewall.com/mailman/listinfo/trac