[QGIS Commit] r10014 - in trunk/qgis: . doc

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sun Jan 25 06:54:02 EST 2009


Author: wonder
Date: 2009-01-25 06:54:02 -0500 (Sun, 25 Jan 2009)
New Revision: 10014

Modified:
   trunk/qgis/CODING
   trunk/qgis/doc/CODING.t2t
Log:
updated SVN repository address in developer's manual


Modified: trunk/qgis/CODING
===================================================================
--- trunk/qgis/CODING	2009-01-25 09:50:02 UTC (rev 10013)
+++ trunk/qgis/CODING	2009-01-25 11:54:02 UTC (rev 10014)
@@ -431,7 +431,7 @@
 To check out QGIS HEAD:
 
 
-    svn --username [your user name] co https://svn.qgis.org/repos/qgis/trunk/qgis
+    svn --username [your user name] co https://svn.osgeo.org/qgis/trunk/qgis
 
 
 
@@ -448,12 +448,12 @@
 To check out a branch
 
 
-    svn co https://svn.qgis.org/repos/qgis/branches/<branch name>
+    svn co https://svn.osgeo.org/qgis/branches/<branch name>
 
 To check out SVN stable trunk:
 
 
-    svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis_unstable
+    svn co https://svn.osgeo.org/qgis/trunk/qgis qgis_trunk
 
 
 /!\ Note: If you are behind a proxy server, edit your ~/subversion/servers file to specify 
@@ -471,7 +471,7 @@
 If you're interested in checking out Quantum GIS documentation sources:
 
 
-    svn co https://svn.qgis.org/repos/qgis_docs/trunk qgis_docs
+    svn co https://svn.osgeo.org/qgis/docs/trunk qgis_docs
 
 
 You can also take a look at DocumentationWritersCorner for more information.
@@ -531,7 +531,7 @@
 stable state. To create a branch use the following command:
 
 
-  svn copy https://svn.qgis.org/repos/qgis/trunk/qgis https://svn.qgis.org/repos/qgis/branches/qgis_newfeature
+  svn copy https://svn.osgeo.org/qgis/trunk/qgis https://svn.osgeo.org/qgis/branches/qgis_newfeature
   svn commit -m "New feature branch"
 
 
@@ -546,8 +546,8 @@
 
   timlinux at timlinux-desktop:~/dev/cpp/qgis_raster_transparency_branch$ svn info
   Caminho: .
-  URL: https://svn.qgis.org/repos/qgis/branches/raster_transparency_branch
-  Raiz do Repositório: https://svn.qgis.org/repos/qgis
+  URL: https://svn.osgeo.org/qgis/branches/raster_transparency_branch
+  Raiz do Repositório: https://svn.osgeo.org/qgis
   UUID do repositório: c8812cc2-4d05-0410-92ff-de0c093fc19c
   Revisão: 6546
   Tipo de Nó: diretório
@@ -562,13 +562,13 @@
 current revision. You can do a dry run of the merge like this:
 
 
-  svn merge --dry-run -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
+  svn merge --dry-run -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
 
 
 After you are happy with the changes that will be made do the merge for real like this:
 
 
-  svn merge -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
+  svn merge -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
   svn commit -m "Merged upstream changes from trunk to my branch"
 
 
@@ -652,7 +652,7 @@
 Checkout the sources:
 
 
-  svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis
+  svn co https://svn.osgeo.org/qgis/trunk/qgis qgis
 
 
 Build the sources (see INSTALL document for proper detailed instructions)

Modified: trunk/qgis/doc/CODING.t2t
===================================================================
--- trunk/qgis/doc/CODING.t2t	2009-01-25 09:50:02 UTC (rev 10013)
+++ trunk/qgis/doc/CODING.t2t	2009-01-25 11:54:02 UTC (rev 10014)
@@ -342,7 +342,7 @@
 == Accessing the Repository ==
 To check out QGIS HEAD:
 ```
-  svn --username [your user name] co https://svn.qgis.org/repos/qgis/trunk/qgis
+  svn --username [your user name] co https://svn.osgeo.org/qgis/trunk/qgis
 ```
 
 
@@ -356,11 +356,11 @@
 
 To check out a branch
 ```
-  svn co https://svn.qgis.org/repos/qgis/branches/<branch name>
+  svn co https://svn.osgeo.org/qgis/branches/<branch name>
 ```
 To check out SVN stable trunk:
 ```
-  svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis_unstable
+  svn co https://svn.osgeo.org/qgis/trunk/qgis qgis_trunk
 ```
 
 /!\ **Note:** If you are behind a proxy server, edit your ~/subversion/servers file to specify 
@@ -375,7 +375,7 @@
 
 If you're interested in checking out Quantum GIS documentation sources:
 ```
-  svn co https://svn.qgis.org/repos/qgis_docs/trunk qgis_docs
+  svn co https://svn.osgeo.org/qgis/docs/trunk qgis_docs
 ```
 
 You can also take a look at DocumentationWritersCorner for more information.
@@ -426,7 +426,7 @@
 stable state. To create a branch use the following command:
 
 ```
-svn copy https://svn.qgis.org/repos/qgis/trunk/qgis https://svn.qgis.org/repos/qgis/branches/qgis_newfeature
+svn copy https://svn.osgeo.org/qgis/trunk/qgis https://svn.osgeo.org/qgis/branches/qgis_newfeature
 svn commit -m "New feature branch"
 ```
 
@@ -439,8 +439,8 @@
 ```
 timlinux at timlinux-desktop:~/dev/cpp/qgis_raster_transparency_branch$ svn info
 Caminho: .
-URL: https://svn.qgis.org/repos/qgis/branches/raster_transparency_branch
-Raiz do Repositório: https://svn.qgis.org/repos/qgis
+URL: https://svn.osgeo.org/qgis/branches/raster_transparency_branch
+Raiz do Repositório: https://svn.osgeo.org/qgis
 UUID do repositório: c8812cc2-4d05-0410-92ff-de0c093fc19c
 Revisão: 6546
 Tipo de Nó: diretório
@@ -455,13 +455,13 @@
 current revision. You can do a dry run of the merge like this:
 
 ```
-svn merge --dry-run -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
+svn merge --dry-run -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
 ```
 
 After you are happy with the changes that will be made do the merge for real like this:
 
 ```
-svn merge -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
+svn merge -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
 svn commit -m "Merged upstream changes from trunk to my branch"
 ```
 
@@ -535,7 +535,7 @@
 Checkout the sources:
 
 ```
-svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis
+svn co https://svn.osgeo.org/qgis/trunk/qgis qgis
 ```
 
 



More information about the QGIS-commit mailing list