Skip to content

Commit 6d485d9

Browse files
committed
more URL updates (followup 8c479db)
1 parent c27d1c0 commit 6d485d9

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

CODING

+2-2
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ If you don't need any of the extras, Perl, Python or TclTk (GUI), you can disabl
476476

477477
To clone QGIS master:
478478

479-
git://github.com/qgis/Quantum-GIS.git
479+
git://github.com/qgis/QGIS.git
480480

481481

482482
2.3. Check out a branch
@@ -1240,7 +1240,7 @@ I'm assuming you have already got a local QGIS clone containing the
12401240
source code, and have installed all needed build dependencies etc. There are
12411241
detailed in instructions on doing that here:
12421242

1243-
http://github.com/qgis/Quantum-GIS/blob/master/CODING
1243+
http://github.com/qgis/QGIS/blob/master/CODING
12441244

12451245
On my system I have checked out the code into $HOME/dev/cpp/QGIS and the
12461246
rest of the article is written assuming that, you should update these paths as

doc/CODING.t2t

+2-2
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ export NO_PYTHON=
456456
To clone QGIS master:
457457

458458
```
459-
git://github.com/qgis/Quantum-GIS.git
459+
git://github.com/qgis/QGIS.git
460460
```
461461

462462
== Check out a branch ==
@@ -1246,7 +1246,7 @@ I'm assuming you have already got a local QGIS clone containing the
12461246
source code, and have installed all needed build dependencies etc. There are
12471247
detailed in instructions on doing that here:
12481248

1249-
http://github.com/qgis/Quantum-GIS/blob/master/CODING
1249+
http://github.com/qgis/QGIS/blob/master/CODING
12501250

12511251

12521252
On my system I have checked out the code into $HOME/dev/cpp/QGIS and the

doc/jenkins.t2t

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ procedure is:
4242
- Tick enable project based security (you need to elsewhere configure your
4343
Jenkins security to per project settings)
4444
- Allow Anonymous user Read and Discover access
45-
- Set the github project to https://github.com/qgis/Quantum-GIS/
45+
- Set the github project to https://github.com/qgis/QGIS/
4646
- Set source code management to Git
47-
- Set repository url to git://github.com/qgis/Quantum-GIS.git
47+
- Set repository url to git://github.com/qgis/QGIS.git
4848
- In advanced repository url settings set refspec to :
4949

5050
```

doc/linux.t2t

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,14 @@ if you do not have edit privileges for the QGIS source repository, or use
131131

132132
```
133133
cd ${HOME}/dev/cpp
134-
git clone git://github.com/qgis/Quantum-GIS.git
134+
git clone git://github.com/qgis/QGIS.git
135135
```
136136

137137
2. Developer Checkout
138138

139139
```
140140
cd ${HOME}/dev/cpp
141-
git clone git@github.com:qgis/Quantum-GIS.git
141+
git clone git@github.com:qgis/QGIS.git
142142
```
143143

144144
== Starting the compile ==
@@ -155,7 +155,7 @@ mkdir -p ${HOME}/apps
155155
Now we create a build directory and run ccmake:
156156

157157
```
158-
cd Quantum-GIS
158+
cd QGIS
159159
mkdir build-master
160160
cd build-master
161161
ccmake ..
@@ -437,7 +437,7 @@ As for GRASS you can obtain the QGIS source code from different sources as descr
437437
in section 2 above. Once you have the sources, create a build directory in them:
438438

439439
```
440-
cd Quantum-GIS
440+
cd QGIS
441441
mkdir build
442442
cd build
443443
```

doc/msvc.t2t

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ call "%OSGEO4W_ROOT%\bin\o4w_env.bat"
9696
```
9797

9898
Start the batch file and on the command prompt checkout the QGIS source from
99-
git to the source directory ``Quantum-GIS``:
99+
git to the source directory ``QGIS``:
100100

101101

102102
```
103-
git clone git://github.com/qgis/Quantum-GIS.git
103+
git clone git://github.com/qgis/QGIS.git
104104
```
105105

106106
Create a 'build' directory somewhere. This will be where all the build output

doc/msys.t2t

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ cd c:\dev\cpp
136136
Check out sources from GIT:
137137

138138
```
139-
git clone git://github.com/qgis/Quantum-GIS.git
139+
git clone git://github.com/qgis/QGIS.git
140140
```
141141

142142
=== Compiling ===

doc/osx.t2t

+3-3
Original file line numberDiff line numberDiff line change
@@ -762,19 +762,19 @@ this.
762762
If you want to experiment with the latest development sources, go to the github
763763
QGIS project page:
764764

765-
http://github.com/qgis/Quantum-GIS
765+
http://github.com/qgis/QGIS
766766

767767
It should default to the master branch. Click the __Downloads__ button and
768768
select __Download .tar.gz__. Double-click the tarball to unzip it.
769769

770770
//Alternatively//, install git from http://git-scm.com and do the following.
771771

772-
Make a specific repository directory somewhere, e.g. ~/QGIS/Quantum-GIS, and cd
772+
Make a specific repository directory somewhere, e.g. ~/QGIS/QGIS, and cd
773773
into it. The following will read-only clone the master branch to the directory:
774774

775775
```
776776
git init
777-
git remote add -f -t master -m master qgisupstream git://github.com/qgis/Quantum-GIS.git
777+
git remote add -f -t master -m master qgisupstream git://github.com/qgis/QGIS.git
778778
git merge qgisupstream
779779

780780
```

doc/wcs-test-server.t2t

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Then do:
4242
chmod +x cgi-bin/wcstest-1.9.0
4343
mkdir -p /var/www/wcs/testdata/qgis-1.9.0/raster/
4444
cd /var/www/wcs/testdata/qgis-1.9.0/raster/
45-
cp -r /home/timlinux/Quantum-GIS/tests/testdata/raster/* .
45+
cp -r /home/timlinux/QGIS/tests/testdata/raster/* .
4646
```
4747

4848
Edit wcs.map and set the shapepath to this:

0 commit comments

Comments
 (0)