|
View:
New views
8 Messages
—
Rating Filter:
Alert me
|
|
|
[WebSVN] Using remote repo with svn://Hello,
I just would like to known if it's possible to use websvn with a remote repo using svn:// connections? eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', NULL, 'username', 'password'); And is it necessary to have subversion installated on the server which display the remote repo? Why? Best regards, Yokav. ------------------------------------------------------ http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398967 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
Re: [WebSVN] Using remote repo with svn://Yes, it's possible to use any URL that Subversion supports. I have
used file://, svn://, and http:// myself without a problem. Yes, the server where the repository resides must have Subversion installed. If it weren't, how would you access the repository? If you use http://, Apache must use the mod_dav_svn plugin, and if you use svn://, the svnserve daemon hosts the repository. Unless the server in question is mapped to a path accessible with the file:// protocol from the WebSVN machine, you must use a network protocol, which necessitates having SVN installed. - Quinn On Sep 23, 2009, at 9:12 AM, Yokav wrote: > Hello, > > I just would like to known if it's possible to use websvn with a > remote > repo using svn:// connections? > > eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', NULL, > 'username', 'password'); > > And is it necessary to have subversion installated on the server which > display the remote repo? Why? > > Best regards, Yokav. > > ------------------------------------------------------ > http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398967 > > To unsubscribe from this discussion, e-mail: [dev- > unsubscribe@...]. http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398974 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
Re: [WebSVN] Using remote repo with svn://Thanks for your reply :)
I've lighttpd on the remote server, so I use subversion+svnserve (svn://). And on the displaying server, I use Apache without subversion, I don't need it because the repo is on the remote server. But on the displaying server websvn return me an error: Error running this command: svn --config-dir /tmp --version So websvn try to use svn command... I don't have the last version of websvn, I will try to update all of that this week-end and find the problem. Le 23/09/09 18:28, Quinn Taylor a écrit : > Yes, it's possible to use any URL that Subversion supports. I have > used file://, svn://, and http:// myself without a problem. > > Yes, the server where the repository resides must have Subversion > installed. If it weren't, how would you access the repository? If you > use http://, Apache must use the mod_dav_svn plugin, and if you use svn://, > the svnserve daemon hosts the repository. Unless the server in > question is mapped to a path accessible with the file:// protocol from > the WebSVN machine, you must use a network protocol, which > necessitates having SVN installed. > > - Quinn > > > On Sep 23, 2009, at 9:12 AM, Yokav wrote: > >> Hello, >> >> I just would like to known if it's possible to use websvn with a >> remote >> repo using svn:// connections? >> >> eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', NULL, >> 'username', 'password'); >> >> And is it necessary to have subversion installated on the server which >> display the remote repo? Why? >> >> Best regards, Yokav. >> >> ------------------------------------------------------ >> http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398967 >> >> To unsubscribe from this discussion, e-mail: [dev- >> unsubscribe@...]. > > ------------------------------------------------------ > http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398974 > > To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. ------------------------------------------------------ http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399007 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
Re: [WebSVN] Using remote repo with svn://You actually do need it on the "displaying" server, the one running
WebSVN. This is because although the repository is on a different machine, WebSVN performs SVN operations using the remote URL. For example, "svn list svn://example.com/path/to/repository" will list the contents of your repository. You'll need to install SVN yourself — WebSVN relies on it and doesn't include it. - Quinn On Sep 23, 2009, at 11:11 AM, Yokav wrote: > Thanks for your reply :) > > I've lighttpd on the remote server, so I use subversion+svnserve > (svn://). > > And on the displaying server, I use Apache without subversion, I don't > need it because the repo is on the remote server. But on the > displaying > server websvn return me an error: > > Error running this command: svn --config-dir /tmp --version > > So websvn try to use svn command... > I don't have the last version of websvn, I will try to update all of > that this week-end and find the problem. > > > Le 23/09/09 18:28, Quinn Taylor a écrit : >> Yes, it's possible to use any URL that Subversion supports. I have >> used file://, svn://, and http:// myself without a problem. >> >> Yes, the server where the repository resides must have Subversion >> installed. If it weren't, how would you access the repository? If you >> use http://, Apache must use the mod_dav_svn plugin, and if you use svn://, >> the svnserve daemon hosts the repository. Unless the server in >> question is mapped to a path accessible with the file:// protocol >> from >> the WebSVN machine, you must use a network protocol, which >> necessitates having SVN installed. >> >> - Quinn >> >> >> On Sep 23, 2009, at 9:12 AM, Yokav wrote: >> >>> Hello, >>> >>> I just would like to known if it's possible to use websvn with a >>> remote >>> repo using svn:// connections? >>> >>> eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', >>> NULL, >>> 'username', 'password'); >>> >>> And is it necessary to have subversion installated on the server >>> which >>> display the remote repo? Why? >>> >>> Best regards, Yokav. >>> >>> ------------------------------------------------------ >>> http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398967 >>> >>> To unsubscribe from this discussion, e-mail: [dev- >>> unsubscribe@...]. >> >> ------------------------------------------------------ >> http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398974 >> >> To unsubscribe from this discussion, e-mail: [dev- >> unsubscribe@...]. > > ------------------------------------------------------ > http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399007 > > To unsubscribe from this discussion, e-mail: [dev- > unsubscribe@...]. http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399009 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
Re: [WebSVN] Using remote repo with svn://Thanks for your answer, I added subversion to the displaying server and
now it's ok. I updated from 2.1.0 to 2.2.1, everything works fine! ;) I attached an update of the french translation file. Le 23/09/09 20:16, Quinn Taylor a écrit : > You actually do need it on the "displaying" server, the one running > WebSVN. This is because although the repository is on a different > machine, WebSVN performs SVN operations using the remote URL. For > example, "svn list svn://example.com/path/to/repository" will list the > contents of your repository. You'll need to install SVN yourself — > WebSVN relies on it and doesn't include it. > > - Quinn > > On Sep 23, 2009, at 11:11 AM, Yokav wrote: > >> Thanks for your reply :) >> >> I've lighttpd on the remote server, so I use subversion+svnserve >> (svn://). >> >> And on the displaying server, I use Apache without subversion, I don't >> need it because the repo is on the remote server. But on the >> displaying >> server websvn return me an error: >> >> Error running this command: svn --config-dir /tmp --version >> >> So websvn try to use svn command... >> I don't have the last version of websvn, I will try to update all of >> that this week-end and find the problem. >> >> >> Le 23/09/09 18:28, Quinn Taylor a écrit : >>> Yes, it's possible to use any URL that Subversion supports. I have >>> used file://, svn://, and http:// myself without a problem. >>> >>> Yes, the server where the repository resides must have Subversion >>> installed. If it weren't, how would you access the repository? If you >>> use http://, Apache must use the mod_dav_svn plugin, and if you use svn://, >>> the svnserve daemon hosts the repository. Unless the server in >>> question is mapped to a path accessible with the file:// protocol >>> from >>> the WebSVN machine, you must use a network protocol, which >>> necessitates having SVN installed. >>> >>> - Quinn >>> >>> >>> On Sep 23, 2009, at 9:12 AM, Yokav wrote: >>> >>>> Hello, >>>> >>>> I just would like to known if it's possible to use websvn with a >>>> remote >>>> repo using svn:// connections? >>>> >>>> eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', >>>> NULL, >>>> 'username', 'password'); >>>> >>>> And is it necessary to have subversion installated on the server >>>> which >>>> display the remote repo? Why? >>>> >>>> Best regards, Yokav. >>>> >>>> ------------------------------------------------------ >>>> http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398967 >>>> >>>> To unsubscribe from this discussion, e-mail: [dev- >>>> unsubscribe@...]. >>> >>> ------------------------------------------------------ >>> http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398974 >>> >>> To unsubscribe from this discussion, e-mail: [dev- >>> unsubscribe@...]. >> >> ------------------------------------------------------ >> http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399007 >> >> To unsubscribe from this discussion, e-mail: [dev- >> unsubscribe@...]. > > ------------------------------------------------------ > http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399009 > > To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399176 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
Re: [WebSVN] Using remote repo with svn://No problem, glad to help. Thanks for the updated French translation,
I've committed it to trunk. We need to talk about getting 2.3.0 released — there are a lot of good changes hanging around in trunk which I think users would benefit from... - Quinn On Sep 24, 2009, at 1:23 AM, Yokav wrote: > Thanks for your answer, I added subversion to the displaying server > and > now it's ok. > I updated from 2.1.0 to 2.2.1, everything works fine! ;) > > I attached an update of the french translation file. > > Le 23/09/09 20:16, Quinn Taylor a écrit : >> You actually do need it on the "displaying" server, the one running >> WebSVN. This is because although the repository is on a different >> machine, WebSVN performs SVN operations using the remote URL. For >> example, "svn list svn://example.com/path/to/repository" will list >> the >> contents of your repository. You'll need to install SVN yourself — >> WebSVN relies on it and doesn't include it. >> >> - Quinn >> >> On Sep 23, 2009, at 11:11 AM, Yokav wrote: >> >>> Thanks for your reply :) >>> >>> I've lighttpd on the remote server, so I use subversion+svnserve >>> (svn://). >>> >>> And on the displaying server, I use Apache without subversion, I >>> don't >>> need it because the repo is on the remote server. But on the >>> displaying >>> server websvn return me an error: >>> >>> Error running this command: svn --config-dir /tmp --version >>> >>> So websvn try to use svn command... >>> I don't have the last version of websvn, I will try to update all of >>> that this week-end and find the problem. http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2399310 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
RE: Re: [WebSVN] Using remote repo with svn://Greetings,
Has anyone tried this using HTTPS? THX -Mike > Yes, it's possible to use any URL that Subversion supports. I have > used file://, svn://, and http:// myself without a problem. > > Yes, the server where the repository resides must have Subversion > installed. If it weren't, how would you access the repository? If you > use http://, Apache must use the mod_dav_svn plugin, and if you use svn://, > the svnserve daemon hosts the repository. Unless the server in > question is mapped to a path accessible with the file:// protocol from > the WebSVN machine, you must use a network protocol, which > necessitates having SVN installed. > > - Quinn > > > On Sep 23, 2009, at 9:12 AM, Yokav wrote: > > > Hello, > > > > I just would like to known if it's possible to use websvn with a > > remote > > repo using svn:// connections? > > > > eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', NULL, > > 'username', 'password'); > > > > And is it necessary to have subversion installated on the server which > > display the remote repo? Why? > > > > Best regards, Yokav. > > > > ------------------------------------------------------ > > http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2398967 > > > > To unsubscribe from this discussion, e-mail: [dev- > > unsubscribe@...]. ------------------------------------------------------ http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2405306 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
|
|
Re: [WebSVN] Using remote repo with svn://Are you asking because you've tried it and it hasn't worked? Do you
need to use the functionality, or are you just curious? (If it's the latter, try the SVN for a SourceForge.net project, they're usually on https, although they tend to be slow as mud...) It should work fine. Depending on the host and the SSL certificate, you may have to permanently accept the cert as the user which runs your web server. - Quinn On Oct 8, 2009, at 1:39 PM, webpost@... wrote: > Greetings, > Has anyone tried this using HTTPS? > THX > -Mike > >> Yes, it's possible to use any URL that Subversion supports. I have >> used file://, svn://, and http:// myself without a problem. >> >> Yes, the server where the repository resides must have Subversion >> installed. If it weren't, how would you access the repository? If you >> use http://, Apache must use the mod_dav_svn plugin, and if you use svn://, >> the svnserve daemon hosts the repository. Unless the server in >> question is mapped to a path accessible with the file:// protocol >> from >> the WebSVN machine, you must use a network protocol, which >> necessitates having SVN installed. >> >> - Quinn >> >> >> On Sep 23, 2009, at 9:12 AM, Yokav wrote: >> >>> Hello, >>> >>> I just would like to known if it's possible to use websvn with a >>> remote >>> repo using svn:// connections? >>> >>> eg: $config->addRepository('NameToDisplay', 'svn://path/to/rep', >>> NULL, >>> 'username', 'password'); >>> >>> And is it necessary to have subversion installated on the server >>> which >>> display the remote repo? Why? >>> >>> Best regards, Yokav. http://websvn.tigris.org/ds/viewMessage.do?dsForumId=1547&dsMessageId=2405575 To unsubscribe from this discussion, e-mail: [dev-unsubscribe@...]. |
| Free embeddable forum powered by Nabble | Forum Help |