summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--downloads.php10
-rw-r--r--svn-tutorial.txt29
2 files changed, 34 insertions, 5 deletions
diff --git a/downloads.php b/downloads.php
index 800609e..31d12d7 100644
--- a/downloads.php
+++ b/downloads.php
@@ -20,17 +20,17 @@ href="http://sourceforge.net/project/showfiles.php?group_id=106790">files
page</a> on SourceForge. Note however that they are no longer supported and
likely to no longer work.</p>
-<h3>CVS access</h3>
+<h3>SVN access</h3>
-<p>The latest version is always available from CVS, see the
-<a href="http://sourceforge.net/cvs/?group_id=106790">CVS instructions</a> at
+<p>The latest version is always available from SVN, see the
+<a href="http://sourceforge.net/svn/?group_id=106790">SVN instructions</a> at
SourceForge. The client module is named <i>tmw</i>. For anonymouse users this
means to use the command:<br/>
<br/>
-<i>cvs -z3 -d:pserver:anonymous@cvs.themanaworld.org:/cvsroot/themanaworld co -P tmw</i><br/>
+<i>svn co https://svn.sourceforge.net/svnroot/themanaworld/tmw/trunk tmw</i><br/>
<br/>
For more instructions you can also read our small guide on
-<a href="cvs-tutorial.txt">how to use CVS</a>. Use the CVS version only if
+<a href="svn-tutorial.txt">how to use SVN</a>. Use the SVN version only if
you're interested in testing the latest changes.
<h3>Debian repository</h3>
diff --git a/svn-tutorial.txt b/svn-tutorial.txt
new file mode 100644
index 0000000..f033d50
--- /dev/null
+++ b/svn-tutorial.txt
@@ -0,0 +1,29 @@
+// Quick SVN guide
+// Authors: ElvenProgrammer, Chetic, Bjorn Lindeijer, Matt
+
+1. Intro
+
+If you don't know what SVN is, I suggest you to just get the latest release.
+There are currently no SVN snapshots available. If you want the latest
+developments, you have to work with SVN and compile yourself, as described
+below.
+
+2. Get latest SVN
+
+If you're a Linux user just type
+
+svn co https://svn.sourceforge.net/svnroot/themanaworld/tmw/trunk tmw
+
+If you're a Windows user, follow this brief guide:
+
+ 0. Get TortoiseSVN at http://tortoisesvn.sourceforge.net/ , install it, reboot if
+ necessary.
+ 1. Go to the folder where you want your TMW SVN folder to be.
+ 2. Right click and choose SVN Checkout.
+ 3. In the URL of repository field, write "https://svn.sourceforge.net/svnroot/themanaworld/tmw/trunk" without the quotation
+ marks.
+ 4. Set the Revision to HEAD
+ 5. Press OK
+
+When you want to update the SVN, simply right click in or on the SVN folder
+called tmw and choose "Update SVN" \ No newline at end of file