emehrkay Posted August 9, 2007 Share Posted August 9, 2007 Im looking to set up an svn or csv for my small team for us to be able to share files and keep them in a central location. Now we're using foldershare, it works fine, but has limitations. Backups are manually done by saving to a different location. The main issue is that not everyone on the team has access to their own computer (i know, but it is working for us - they have personal space that coudl be used for their checkouts), so we're looking for something that maybe has a web interface. Or a tool that doesnt need to be installed to run (if something like that exists). Any suggestions? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/ Share on other sites More sharing options...
redbullmarky Posted August 9, 2007 Share Posted August 9, 2007 if i've got your question right, then (after a bit of fiddling) I use SVN and Trac. Nothing special, just provides a front-end repos browser Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/#findComment-319567 Share on other sites More sharing options...
emehrkay Posted August 10, 2007 Author Share Posted August 10, 2007 Thanks redbull. I've done some searching and come across websvn. Would you know if this allow you to check files in and out via a browser? Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/#findComment-319924 Share on other sites More sharing options...
trq Posted August 10, 2007 Share Posted August 10, 2007 Websvn and the likes are designed for viewing repos, while you may also be able to download files, you can't check in files as far as I'm aware. Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/#findComment-319932 Share on other sites More sharing options...
emehrkay Posted August 10, 2007 Author Share Posted August 10, 2007 Websvn and the likes are designed for viewing repos, while you may also be able to download files, you can't check in files as far as I'm aware. ahh ok. that makes sense. the search continues.... Maybe I will be able to find a client that doesnt need to be installed to run. Know of any? Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/#findComment-319962 Share on other sites More sharing options...
tomfmason Posted August 10, 2007 Share Posted August 10, 2007 If you are familiar with Python you could use PySVN(basic working examples). I have played with it a little and have managed to checkout and commit a few files to my test repository. It is pretty straight forward. I am sure that a decent web based svn client could be developed using it. Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/#findComment-320030 Share on other sites More sharing options...
Daniel0 Posted August 10, 2007 Share Posted August 10, 2007 How about this? <?php $output = `svn co http://svn.something.com working_dir`; echo "<pre>$output</pre>"; ?> <?php $output = `svn update working_dir`; echo "<pre>$output</pre>"; ?> Requires SVN to be installed on the host (obviously). Quote Link to comment https://forums.phpfreaks.com/topic/63999-svncvs-hosting-packages-any-suggestions/#findComment-320080 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.