Merge lp:~ted-m-cox/serverguide/uniquebranchname into lp:serverguide/trunk

Proposed by Ted Cox
Status: Merged
Approved by: Doug Smythies
Approved revision: 252
Merged at revision: 253
Proposed branch: lp:~ted-m-cox/serverguide/uniquebranchname
Merge into: lp:serverguide/trunk
Diff against target: 79 lines (+26/-10)
3 files modified
serverguide/C/mail.xml (+1/-1)
serverguide/C/network-auth.xml (+6/-4)
serverguide/C/vcs.xml (+19/-5)
To merge this branch: bzr merge lp:~ted-m-cox/serverguide/uniquebranchname
Reviewer Review Type Date Requested Status
Doug Smythies Approve
Review via email: mp+261339@code.launchpad.net

Description of the change

Fixed some bugs and corrected some line wrapping.

To post a comment you must log in.
Revision history for this message
Doug Smythies (dsmythies) wrote :

O.K. Thanks.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'serverguide/C/mail.xml'
2--- serverguide/C/mail.xml 2014-12-04 19:53:40 +0000
3+++ serverguide/C/mail.xml 2015-06-08 03:12:49 +0000
4@@ -572,7 +572,7 @@
5 <para>
6 All the parameters you configure in the user interface are
7 stored in
8- <filename>/etc/exim4/update-exim4.conf</filename> file.
9+ <filename>/etc/exim4/update-exim4.conf.conf</filename> file.
10 If you wish to re-configure, either you re-run the
11 configuration wizard or manually edit this file
12 using your favorite editor. Once you configure, you can run
13
14=== modified file 'serverguide/C/network-auth.xml'
15--- serverguide/C/network-auth.xml 2015-02-26 20:29:30 +0000
16+++ serverguide/C/network-auth.xml 2015-06-08 03:12:49 +0000
17@@ -19,10 +19,12 @@
18 <title>OpenLDAP Server</title>
19
20 <para>
21- The Lightweight Directory Access Protocol, or LDAP, is a protocol for querying and modifying a X.500-based directory service running
22- over TCP/IP. The current LDAP version is LDAPv3, as defined in <ulink url="http://tools.ietf.org/html/rfc4510">RFC4510</ulink>, and
23- the its implementation used in Ubuntu is from OpenLDAP.
24- </para>
25+ The Lightweight Directory Access Protocol, or LDAP, is a protocol for
26+ querying and modifying a X.500-based directory service running over TCP/IP.
27+ The current LDAP version is LDAPv3, as defined in <ulink
28+ url="http://tools.ietf.org/html/rfc4510">RFC4510</ulink>, and the
29+ implementation in Ubuntu is OpenLDAP."
30+ </para>
31
32 <para>
33 So the LDAP protocol accesses LDAP directories. Here are some key concepts and terms:
34
35=== modified file 'serverguide/C/vcs.xml'
36--- serverguide/C/vcs.xml 2015-02-24 21:33:24 +0000
37+++ serverguide/C/vcs.xml 2015-06-08 03:12:49 +0000
38@@ -9,8 +9,15 @@
39 ]>
40 <chapter id="version-control-system" status="review">
41 <title>Version Control System</title>
42- <para>
43-Version control is the art of managing changes to information. It has long been a critical tool for programmers, who typically spend their time making small changes to software and then undoing those changes the next day. But the usefulness of version control software extends far beyond the bounds of the software development world. Anywhere you can find people using computers to manage information that changes often, there is room for version control.</para>
44+ <para>
45+ Version control is the art of managing changes to information. It
46+ has long been a critical tool for programmers, who typically spend
47+ their time making small changes to software and then undoing those
48+ changes the next day. But the usefulness of version control software
49+ extends far beyond the bounds of the software development world.
50+ Anywhere you can find people using computers to manage information
51+ that changes often, there is room for version control.
52+ </para>
53 <sect1 id="bazaar" status="review">
54 <title>Bazaar</title>
55 <para>
56@@ -102,13 +109,20 @@
57 </sect2>
58 <sect2 id="git-usage" status="review">
59 <title>Basic usage</title>
60- <para>The above is already sufficient to use git in a distributed and secure way, provided users have access to the machine assuming the server role via SSH. On
61- the server machine, creating a new repository can be done with</para>
62+ <para>
63+ The above is already sufficient to use git in a distributed and
64+ secure way, provided users have access to the machine assuming
65+ the server role via SSH. On the server machine, creating a new
66+ repository can be done with:
67+ </para>
68 <screen>
69 <command>git init --bare /path/to/repository</command>
70 </screen>
71 <note><para>This creates a bare repository, that cannot be used to edit files directly. If you would rather have a working copy of the contents of the repository on the server, ommit the <emphasis>--bare</emphasis> option.</para></note>
72- <para>Any client with ssh access to the machine can from then on clone the repository with</para>
73+ <para>
74+ Any client with SSH access to the machine can then clone the
75+ repository with:
76+ </para>
77 <screen>
78 <command>git clone username@hostname:/path/to/repository</command>
79 </screen>

Subscribers

People subscribed via source and target branches