Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/proj/en/overlays: devguide.xml
Date: Sun, 12 Oct 2008 09:23:33
Message-Id: E1KoxAg-00023f-Vb@stork.gentoo.org
1 robbat2 08/10/12 09:23:30
2
3 Modified: devguide.xml
4 Log:
5 Flip instructions to note HTTPS for all commit actions.
6
7 Revision Changes Path
8 1.10 xml/htdocs/proj/en/overlays/devguide.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/overlays/devguide.xml?rev=1.10&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/overlays/devguide.xml?rev=1.10&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/proj/en/overlays/devguide.xml?r1=1.9&r2=1.10
13
14 Index: devguide.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/proj/en/overlays/devguide.xml,v
17 retrieving revision 1.9
18 retrieving revision 1.10
19 diff -p -w -b -B -u -u -r1.9 -r1.10
20 --- devguide.xml 2 May 2008 17:46:27 -0000 1.9
21 +++ devguide.xml 12 Oct 2008 09:23:30 -0000 1.10
22 @@ -221,7 +221,11 @@ kind, then o.g.o is not for you.</p>
23 here: http://overlays.gentoo.org/proj/foo/</p>
24
25 <p>To checkout your Subversion repository, use:</p>
26 -<pre caption="Checkout your project overlay">svn co http://overlays.gentoo.org/svn/proj/foo/</pre>
27 +<pre caption="Checkout your project overlay">svn co https://overlays.gentoo.org/svn/proj/foo/</pre>
28 +
29 +<p>While you may perform read-only actions via unsecure HTTP, you must perform
30 +all commits via HTTPS. If you need to switch between modes, use:</p>
31 +<pre caption="Switching your project overlay from HTTP to HTTPS">svn sw --relocate http://overlays.gentoo.org/svn/proj/foo/ https://overlays.gentoo.org/svn/proj/foo/</pre>
32
33 <p>We maintain <uri link="http://overlays.gentoo.org/proj/">a full list of project overlays hosted on overlays.gentoo.org</uri>.</p>
34 </body>
35 @@ -234,7 +238,11 @@ here: http://overlays.gentoo.org/proj/fo
36 here: http://overlays.gentoo.org/dev/foo/</p>
37
38 <p>To checkout your Subversion repository, use:</p>
39 -<pre caption="Checkout your developer overlay">svn co http://overlays.gentoo.org/svn/dev/foo/</pre>
40 +<pre caption="Checkout your developer overlay">svn co https://overlays.gentoo.org/svn/dev/foo/</pre>
41 +
42 +<p>While you may perform read-only actions via unsecure HTTP, you must perform
43 +all commits via HTTPS. If you need to switch between modes, use:</p>
44 +<pre caption="Switching your developer overlay from HTTP to HTTPS">svn sw --relocate http://overlays.gentoo.org/svn/dev/foo/ https://overlays.gentoo.org/svn/dev/foo/</pre>
45
46 <p>We maintain <uri link="http://overlays.gentoo.org/dev/">a full list of developer overlays hosted on overlays.gentoo.org</uri>.</p>
47 </body>
48 @@ -279,7 +287,7 @@ to see installed, please let us know, an
49 <p>If you have never used Subversion before, the <uri link="http://svnbook.red-bean.com/">online book</uri> is an excellent way to learn Subversion. You can buy it in dead-tree format too if you prefer.</p>
50
51 <p>Here are some basic commands to get you started.</p>
52 -<pre caption="Checking out your overlay">svn co http://overlays.gentoo.org/proj/php</pre>
53 +<pre caption="Checking out your overlay">svn co https://overlays.gentoo.org/proj/php</pre>
54 <pre caption="Seeing which files need committing">svn status</pre>
55 <pre caption="Adding files to your overlay">svn add my.ebuild</pre>
56 <pre caption="Committing your changes">svn commit -m 'My changelog entry'</pre>