Skip to content

Commit 686eefc

Browse files
author
wonder
committedJan 25, 2009
updated SVN repository address in developer's manual
git-svn-id: http://svn.osgeo.org/qgis/trunk@10014 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 771c57d commit 686eefc

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed
 

‎CODING

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ This page describes how to get started using the QGIS Subversion repository
431431
To check out QGIS HEAD:
432432

433433

434-
svn --username [your user name] co https://svn.qgis.org/repos/qgis/trunk/qgis
434+
svn --username [your user name] co https://svn.osgeo.org/qgis/trunk/qgis
435435

436436

437437

@@ -448,12 +448,12 @@ for more information. The Links page contains a good selection of SVN clients fo
448448
To check out a branch
449449

450450

451-
svn co https://svn.qgis.org/repos/qgis/branches/<branch name>
451+
svn co https://svn.osgeo.org/qgis/branches/<branch name>
452452

453453
To check out SVN stable trunk:
454454

455455

456-
svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis_unstable
456+
svn co https://svn.osgeo.org/qgis/trunk/qgis qgis_trunk
457457

458458

459459
/!\ Note: If you are behind a proxy server, edit your ~/subversion/servers file to specify
@@ -471,7 +471,7 @@ See the INSTALL file in the source tree for specific instructions on building de
471471
If you're interested in checking out Quantum GIS documentation sources:
472472

473473

474-
svn co https://svn.qgis.org/repos/qgis_docs/trunk qgis_docs
474+
svn co https://svn.osgeo.org/qgis/docs/trunk qgis_docs
475475

476476

477477
You can also take a look at DocumentationWritersCorner for more information.
@@ -531,7 +531,7 @@ We prefer that new feature developments happen out of trunk so that trunk remain
531531
stable state. To create a branch use the following command:
532532

533533

534-
svn copy https://svn.qgis.org/repos/qgis/trunk/qgis https://svn.qgis.org/repos/qgis/branches/qgis_newfeature
534+
svn copy https://svn.osgeo.org/qgis/trunk/qgis https://svn.osgeo.org/qgis/branches/qgis_newfeature
535535
svn commit -m "New feature branch"
536536

537537

@@ -546,8 +546,8 @@ numbers of your branch which will produce output something like this:
546546

547547
timlinux@timlinux-desktop:~/dev/cpp/qgis_raster_transparency_branch$ svn info
548548
Caminho: .
549-
URL: https://svn.qgis.org/repos/qgis/branches/raster_transparency_branch
550-
Raiz do Repositório: https://svn.qgis.org/repos/qgis
549+
URL: https://svn.osgeo.org/qgis/branches/raster_transparency_branch
550+
Raiz do Repositório: https://svn.osgeo.org/qgis
551551
UUID do repositório: c8812cc2-4d05-0410-92ff-de0c093fc19c
552552
Revisão: 6546
553553
Tipo de Nó: diretório
@@ -562,13 +562,13 @@ The second revision number shows the revision number of the start revision of yo
562562
current revision. You can do a dry run of the merge like this:
563563

564564

565-
svn merge --dry-run -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
565+
svn merge --dry-run -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
566566

567567

568568
After you are happy with the changes that will be made do the merge for real like this:
569569

570570

571-
svn merge -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
571+
svn merge -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
572572
svn commit -m "Merged upstream changes from trunk to my branch"
573573

574574

@@ -652,7 +652,7 @@ several substantial patches that demonstrate their understanding of modifying th
652652
Checkout the sources:
653653

654654

655-
svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis
655+
svn co https://svn.osgeo.org/qgis/trunk/qgis qgis
656656

657657

658658
Build the sources (see INSTALL document for proper detailed instructions)

‎doc/CODING.t2t

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ This page describes how to get started using the QGIS Subversion repository
342342
== Accessing the Repository ==
343343
To check out QGIS HEAD:
344344
```
345-
svn --username [your user name] co https://svn.qgis.org/repos/qgis/trunk/qgis
345+
svn --username [your user name] co https://svn.osgeo.org/qgis/trunk/qgis
346346
```
347347

348348

@@ -356,11 +356,11 @@ for more information. The Links page contains a good selection of SVN clients fo
356356

357357
To check out a branch
358358
```
359-
svn co https://svn.qgis.org/repos/qgis/branches/<branch name>
359+
svn co https://svn.osgeo.org/qgis/branches/<branch name>
360360
```
361361
To check out SVN stable trunk:
362362
```
363-
svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis_unstable
363+
svn co https://svn.osgeo.org/qgis/trunk/qgis qgis_trunk
364364
```
365365

366366
/!\ **Note:** If you are behind a proxy server, edit your ~/subversion/servers file to specify
@@ -375,7 +375,7 @@ See the INSTALL file in the source tree for specific instructions on building de
375375

376376
If you're interested in checking out Quantum GIS documentation sources:
377377
```
378-
svn co https://svn.qgis.org/repos/qgis_docs/trunk qgis_docs
378+
svn co https://svn.osgeo.org/qgis/docs/trunk qgis_docs
379379
```
380380

381381
You can also take a look at DocumentationWritersCorner for more information.
@@ -426,7 +426,7 @@ We prefer that new feature developments happen out of trunk so that trunk remain
426426
stable state. To create a branch use the following command:
427427

428428
```
429-
svn copy https://svn.qgis.org/repos/qgis/trunk/qgis https://svn.qgis.org/repos/qgis/branches/qgis_newfeature
429+
svn copy https://svn.osgeo.org/qgis/trunk/qgis https://svn.osgeo.org/qgis/branches/qgis_newfeature
430430
svn commit -m "New feature branch"
431431
```
432432

@@ -439,8 +439,8 @@ numbers of your branch which will produce output something like this:
439439
```
440440
timlinux@timlinux-desktop:~/dev/cpp/qgis_raster_transparency_branch$ svn info
441441
Caminho: .
442-
URL: https://svn.qgis.org/repos/qgis/branches/raster_transparency_branch
443-
Raiz do Repositório: https://svn.qgis.org/repos/qgis
442+
URL: https://svn.osgeo.org/qgis/branches/raster_transparency_branch
443+
Raiz do Repositório: https://svn.osgeo.org/qgis
444444
UUID do repositório: c8812cc2-4d05-0410-92ff-de0c093fc19c
445445
Revisão: 6546
446446
Tipo de Nó: diretório
@@ -455,13 +455,13 @@ The second revision number shows the revision number of the start revision of yo
455455
current revision. You can do a dry run of the merge like this:
456456

457457
```
458-
svn merge --dry-run -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
458+
svn merge --dry-run -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
459459
```
460460

461461
After you are happy with the changes that will be made do the merge for real like this:
462462

463463
```
464-
svn merge -r 6495:6546 https://svn.qgis.org/repos/qgis/trunk/qgis
464+
svn merge -r 6495:6546 https://svn.osgeo.org/qgis/trunk/qgis
465465
svn commit -m "Merged upstream changes from trunk to my branch"
466466
```
467467

@@ -535,7 +535,7 @@ several substantial patches that demonstrate their understanding of modifying th
535535
Checkout the sources:
536536

537537
```
538-
svn co https://svn.qgis.org/repos/qgis/trunk/qgis qgis
538+
svn co https://svn.osgeo.org/qgis/trunk/qgis qgis
539539
```
540540

541541

0 commit comments

Comments
 (0)
Please sign in to comment.