[Crossfire-wiki] [Crossfire DokuWiki] page changed: downloading

no-reply_wiki at metalforge.org no-reply_wiki at metalforge.org
Tue Feb 26 14:40:53 CST 2013


A page in your DokuWiki was added or changed. Here are the details:

Date        : 2013/02/26 14:40
User        : leaf
Edit Summary: SVN URL updates

@@ -9,13 +9,13 @@
  
  ==== SVN via SourceForge ====
  
  The general commands to check out a module (archtypes, client, maps, server map editor, et al) is the following:
-   * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/arch</nowiki>
-   * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/client</nowiki>
-   * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/maps</nowiki>
+   * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/arch</nowiki>
+   * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/client</nowiki>
+   * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/maps</nowiki>
    * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/gridarta</nowiki>
-   * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/server</nowiki>
+   * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/server</nowiki>
  
  ==== Trunk & Branch: ====
  
  You will also notice that there are directories labeled as trunk and branch.
@@ -37,25 +37,25 @@
  
  Note: The commands, below, presume you are in the directory where the archetypes, client, maps or server currently reside.
  
    * Branch: 
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/arch/branches/1.12</nowiki>
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/client/branches/1.12</nowiki>
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/maps/branches/1.12</nowiki>
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/server/branches/1.12</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/arch/branches/1.12</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/client/branches/1.12</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/maps/branches/1.12</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/server/branches/1.12</nowiki>
    * Trunk: 
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/arch/trunk</nowiki>
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/client/trunk</nowiki>
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/maps/trunk</nowiki>
-     * svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/server/trunk</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/arch/trunk</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/client/trunk</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/maps/trunk</nowiki>
+     * svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/server/trunk</nowiki>
  
  It is also possible to checkout files from SVN and have them install to a remote directory. This is accomplished by adding the file path to the end of the SVN command.
  
  For instance:
- svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/maps/branches/1.12</nowiki> /path/to/map/directory/
+ svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/maps/branches/1.12</nowiki> /path/to/map/directory/
  
  Or, more specifically:
- svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/maps/branches/1.12</nowiki> /share/crossfire/maps/
+ svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/maps/branches/1.12</nowiki> /share/crossfire/maps/
  
  This would check out the latest changes to maps 1.x branch and place them in the /share/crossfire/maps/ directory.
  
  ==== Browse the SVN Repository ====
@@ -72,38 +72,38 @@
  First you should make a choice.  Do you want to follow the supported, released version, and get eventual bugfixes for that?  Or do you want to  follow the work-in-progress for the next release?
  
  If you want to follow the supported, released version, do this:
  
- ''svn switch <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/$COMPONENT/branches/1.11</nowiki> .''
+ ''svn switch <nowiki>https://svn.code.sf.net/p/crossfire/code/$COMPONENT/branches/1.11</nowiki> .''
  
  where $COMPONENT is the thing you're following -- server, client, arch, maps.  So for example:
  
  <code>
  % cd server
- % svn switch https://crossfire.svn.sourceforge.net/svnroot/crossfire/server/branches/1.11 .
+ % svn switch https://svn.code.sf.net/p/crossfire/code/server/branches/1.11 .
  </code>
  
  But it would probably be even better to remove your checkout, and instead 
  create one from the "stable" export:
  
- ''svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/stable/</nowiki> crossfire''
+ ''svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/stable/</nowiki> crossfire''
  
  This will get all the components, on the supported version.  It has the significant benefit that when 1.12 is released, you don't have to run "switch" again; you will automatically start following that one.
  
  
  
  On the other hand, if you want to follow the work-in-progress 1.x release (more or less equivalent to the old branches/1.x):
  
- ''svn switch <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/$COMPONENT/branches/1.12</nowiki> .''
+ ''svn switch <nowiki>https://svn.code.sf.net/p/crossfire/code/$COMPONENT/branches/1.12</nowiki> .''
  
  for example:
  
  <code>
  % cd server
- % svn switch https://crossfire.svn.sourceforge.net/svnroot/crossfire/server/branches/1.12 .
+ % svn switch https://svn.code.sf.net/p/crossfire/code/server/branches/1.12 .
  </code>
  
  But it would probably be even better to remove your checkout, and instead create one from the "next" export:
  
- ''svn co <nowiki>https://crossfire.svn.sourceforge.net/svnroot/crossfire/next/</nowiki> crossfire-alpha''
+ ''svn co <nowiki>https://svn.code.sf.net/p/crossfire/code/crossfire/next/</nowiki> crossfire-alpha''
  
  This will get all the components, on the supported version.  It has the significant benefit that when 1.12 is released, you don't have to run "switch" again; you will automatically start following 1.13 instead.


IP-Address  : 65.193.16.100
Old Revision: http://wiki.metalforge.net/doku.php/downloading?rev=1232348145
New Revision: http://wiki.metalforge.net/doku.php/downloading

-- 
This mail was generated by DokuWiki at
http://wiki.metalforge.net/



More information about the crossfire-wiki mailing list