Merge lp:~jelmer/brz/docs into lp:brz

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Jelmer Vernooij
Approved revision: no longer in the source branch.
Merge reported by: The Breezy Bot
Merged at revision: not available
Proposed branch: lp:~jelmer/brz/docs
Merge into: lp:brz
Diff against target: 274 lines (+31/-44)
11 files modified
Makefile (+3/-3)
breezy/builtins.py (+2/-2)
breezy/bzr/bzrdir.py (+1/-1)
breezy/help_topics/en/rules.txt (+1/-1)
doc/developers/releasing.txt (+4/-17)
doc/en/_templates/index.html (+3/-3)
doc/en/admin-guide/hooks-plugins.txt (+2/-2)
doc/en/admin-guide/migration.txt (+2/-2)
doc/en/user-guide/hooks.txt (+1/-1)
doc/en/whats-new/whats-new-in-2.1.txt (+8/-8)
po/brz.pot (+4/-4)
To merge this branch: bzr merge lp:~jelmer/brz/docs
Reviewer Review Type Date Requested Status
Jelmer Vernooij Approve
Review via email: mp+412040@code.launchpad.net

Commit message

Remove more references to the Bazaar site.

Description of the change

Remove more references to the Bazaar site.

To post a comment you must log in.
Revision history for this message
Jelmer Vernooij (jelmer) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'Makefile'
2--- Makefile 2021-08-20 01:28:55 +0000
3+++ Makefile 2021-11-17 20:41:22 +0000
4@@ -295,9 +295,9 @@
5 $(PYTHON) ./brz export-pot --include-duplicates > po/brz.pot
6 echo $(TRANSLATABLE_PYFILES) | xargs \
7 xgettext --package-name "brz" \
8- --msgid-bugs-address "<bazaar@canonical.com>" \
9- --copyright-holder "Canonical" \
10- --from-code ISO-8859-1 --join --sort-by-file --add-comments=i18n: \
11+ --msgid-bugs-address "<breezy-vcs@groups.google.com>" \
12+ --copyright-holder "Breezy Developers" \
13+ --from-code UTF-8 --join --sort-by-file --add-comments=i18n: \
14 -d bzr -p po -o brz.pot
15
16
17
18=== modified file 'breezy/builtins.py'
19--- breezy/builtins.py 2021-11-13 13:01:39 +0000
20+++ breezy/builtins.py 2021-11-17 20:41:22 +0000
21@@ -2661,7 +2661,7 @@
22 GUI tools and IDEs are often better at exploring history than command
23 line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the
24 bzr-explorer shell, or the Loggerhead web interface. See the Bazaar
25- Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/> and
26+ Plugin Guide <https://www.breezy-vcs.org/doc/plugins/en/> and
27 <http://wiki.bazaar.canonical.com/IDEIntegration>.
28
29 You may find it useful to add the aliases below to ``breezy.conf``::
30@@ -5208,7 +5208,7 @@
31 adding new commands, providing additional network transports and
32 customizing log output.
33
34- See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>
35+ See the Bazaar Plugin Guide <https://www.breezy-vcs.org/doc/plugins/en/>
36 for further information on plugins including where to find them and how to
37 install them. Instructions are also provided there on how to write new
38 plugins using the Python programming language.
39
40=== modified file 'breezy/bzr/bzrdir.py'
41--- breezy/bzr/bzrdir.py 2020-07-18 23:14:00 +0000
42+++ breezy/bzr/bzrdir.py 2021-11-17 20:41:22 +0000
43@@ -76,7 +76,7 @@
44 class MissingFeature(errors.BzrError):
45
46 _fmt = ("Missing feature %(feature)s not provided by this "
47- "version of Bazaar or any plugin.")
48+ "version of Breezy or any plugin.")
49
50 def __init__(self, feature):
51 self.feature = feature
52
53=== modified file 'breezy/help_topics/en/rules.txt'
54--- breezy/help_topics/en/rules.txt 2017-05-21 14:47:52 +0000
55+++ breezy/help_topics/en/rules.txt 2021-11-17 20:41:22 +0000
56@@ -18,7 +18,7 @@
57 provide custom behaviour for selected files. For more information on
58 end of line conversion see :doc:`eol-help`.
59 Keyword support is provided by the `keywords plugin
60-<http://doc.bazaar.canonical.com/plugins/en/keywords-plugin.html>`_.
61+<https://www.breezy-vcs.org/doc/plugins/en/keywords-plugin.html>`_.
62
63 Files
64 -----
65
66=== modified file 'doc/developers/releasing.txt'
67--- doc/developers/releasing.txt 2020-06-10 23:47:24 +0000
68+++ doc/developers/releasing.txt 2021-11-17 20:41:22 +0000
69@@ -516,23 +516,10 @@
70
71 #. Announce on the Breezy website.
72
73-#. Check that the documentation for this release is available in
74- <https://www.breezy-vcs.org/doc/en/>. It should be automatically build when
75- the branch is created, by a cron script ``update-brz-docs`` on
76- ``escudero``. When the first release is created in a new series, a branch
77- needs to be created on ``escudero``::
78-
79- ssh escudero.canonical.com
80- sudo -u brz-web -s
81- cd /srv/doc.bazaar.canonical.com/
82- brz branch lp:brz/2.7 brz/brz.2.7
83-
84- And the ``brz/bin/update-brz-docs`` script needs to refer to it.
85-
86- The ``lp:brz-alldocs`` branch also needs to be updated when a new series
87- is introduced, see the ``README`` file there for more instructions
88- (looking at the branch history is also a good way to understand what
89- needs to be done and to document any policy changes).
90+#. Check that the documentation for this release is available on
91+ https://www.breezy-vcs.org/doc/en/.
92+
93+ This documentation is currently generated by a cron job run by Jelmer.
94
95 Announcing the release
96 ----------------------
97
98=== modified file 'doc/en/_templates/index.html'
99--- doc/en/_templates/index.html 2021-05-03 12:53:04 +0000
100+++ doc/en/_templates/index.html 2021-11-17 20:41:22 +0000
101@@ -39,7 +39,7 @@
102
103 <table class="contentstable" align="center" style="margin-left: 30px"><tr>
104 <td width="50%">
105- <p class="biglink"><a class="biglink" href="http://doc.bazaar.canonical.com/explorer/en/guide/">Desktop Guide</a><br/>
106+ <p class="biglink"><a class="biglink" href="https://www.breezy-vcs.org/doc/explorer/en/guide/">Desktop Guide</a><br/>
107 <span class="linkdescr">how to use our GUI applications</span>
108 </p>
109 <p class="biglink"><a class="biglink" href="https://answers.launchpad.net/brz/+faqs">FAQ</a><br/>
110@@ -53,10 +53,10 @@
111 <p class="biglink"><a class="biglink" href="{{ pathto("developers/index") }}">Developer Docs</a><br/>
112 <span class="linkdescr">improving and extending brz</span>
113 </p>
114- <p class="biglink"><a class="biglink" href="http://doc.bazaar.canonical.com/migration/en/">Migration Docs</a><br/>
115+ <p class="biglink"><a class="biglink" href="https://www.breezy-vcs.org/doc/migration/en/">Migration Docs</a><br/>
116 <span class="linkdescr">for refugees of other tools</span>
117 </p>
118- <p class="biglink"><a class="biglink" href="http://doc.bazaar.canonical.com/plugins/en/">Plugins Guide</a><br/>
119+ <p class="biglink"><a class="biglink" href="https://www.breezy-vcs.org/doc/plugins/en/">Plugins Guide</a><br/>
120 <span class="linkdescr">help on popular plugins</span>
121 </p>
122 </td></tr>
123
124=== modified file 'doc/en/admin-guide/hooks-plugins.txt'
125--- doc/en/admin-guide/hooks-plugins.txt 2020-08-13 18:22:05 +0000
126+++ doc/en/admin-guide/hooks-plugins.txt 2021-11-17 20:41:22 +0000
127@@ -22,7 +22,7 @@
128 purposes, as well as for backups and mirroring.
129
130 Information on the whole range of Bazaar plugins is available at
131-http://doc.bazaar.canonical.com/plugins/en/. For purposes of installation,
132+https://www.breezy-vcs.org/doc/plugins/en/. For purposes of installation,
133 plugins are simply python packages. They can be installed alongside Bazaar in
134 the ``breezy.plugins`` package using each plugin's ``setup.py``. They can
135 also be installed in the plugin path which is the user's
136@@ -59,7 +59,7 @@
137 mail should be sent. If it isn't set, email is sent via ``/usr/bin/mail``.
138 It can also be configured to communicate directly with an SMTP server.
139 For more details on configuring this plugin, see
140-http://doc.bazaar.canonical.com/plugins/en/email-plugin.html. As examples,
141+https://www.breezy-vcs.org/doc/plugins/en/email-plugin.html. As examples,
142 consider the following two possible configurations. A minimal one (uses
143 ``/usr/bin/mail``)
144
145
146=== modified file 'doc/en/admin-guide/migration.txt'
147--- doc/en/admin-guide/migration.txt 2020-08-13 18:22:05 +0000
148+++ doc/en/admin-guide/migration.txt 2021-11-17 20:41:22 +0000
149@@ -3,7 +3,7 @@
150
151 Migrating between version control systems can be a complicated process, and
152 Bazaar has extensive documentation on the process at
153-http://doc.bazaar.canonical.com/migration/en and we won't attempt to repeat that
154+https://www.breezy-vcs.org/doc/migration/en and we won't attempt to repeat that
155 here. We will try to give a few motivating examples for conversion from
156 Mercurial and Subversion.
157
158@@ -43,7 +43,7 @@
159 Bazaar's `svn`_ plugin provides tools for interaction with Subversion
160 projects. In fact, Bazaar can be used transparently with projects stored in
161 Subversion, but that is beyond the scope of this document. (See
162-http://doc.bazaar.canonical.com/migration/en/foreign/bzr-on-svn-projects.html for
163+https://www.breezy-vcs.org/doc/migration/en/foreign/bzr-on-svn-projects.html for
164 more on that subject.) What is relevant here is the ``svn-import`` command
165 provided by that plugin. This can import an entire subversion repository
166 including tags and branches, particularly if they are stored in Subversion's
167
168=== modified file 'doc/en/user-guide/hooks.txt'
169--- doc/en/user-guide/hooks.txt 2020-12-11 15:47:15 +0000
170+++ doc/en/user-guide/hooks.txt 2021-11-17 20:41:22 +0000
171@@ -14,7 +14,7 @@
172 see the `push-and-update plugin`_ that handles one special case of
173 server-side operations.)
174
175-.. _push-and-update plugin: http://doc.bazaar.canonical.com/plugins/en/push-and-update-plugin.html
176+.. _push-and-update plugin: https://www.breezy-vcs.org/doc/plugins/en/push-and-update-plugin.html
177
178 Using hooks
179 -----------
180
181=== modified file 'doc/en/whats-new/whats-new-in-2.1.txt'
182--- doc/en/whats-new/whats-new-in-2.1.txt 2010-12-02 09:21:11 +0000
183+++ doc/en/whats-new/whats-new-in-2.1.txt 2021-11-17 20:41:22 +0000
184@@ -124,8 +124,8 @@
185 can now be read by standard Bazaar clients. Changes can also
186 be written back via the dpush command.
187
188-.. _git: http://doc.bazaar.canonical.com/plugins/en/git-plugin.html
189-.. _hg: http://doc.bazaar.canonical.com/plugins/en/hg-plugin.html
190+.. _git: https://www.breezy-vcs.org/doc/plugins/en/git-plugin.html
191+.. _hg: https://www.breezy-vcs.org/doc/plugins/en/hg-plugin.html
192
193
194 Metaprojects
195@@ -144,9 +144,9 @@
196 be useful for building test images for a QA team or disk images
197 for installers, say.
198
199-.. _builder: http://doc.bazaar.canonical.com/plugins/en/builder-plugin.html
200-.. _externals: http://doc.bazaar.canonical.com/plugins/en/externals-plugin.html
201-.. _builddeb: http://doc.bazaar.canonical.com/plugins/en/builddeb-plugin.html
202+.. _builder: https://www.breezy-vcs.org/doc/plugins/en/builder-plugin.html
203+.. _externals: https://www.breezy-vcs.org/doc/plugins/en/externals-plugin.html
204+.. _builddeb: https://www.breezy-vcs.org/doc/plugins/en/builddeb-plugin.html
205
206
207 Colocated branch workspaces
208@@ -156,7 +156,7 @@
209 across one or more branches managed at that same location. This
210 is now supported by the new colo_ plugin and by Bazaar Explorer.
211
212-.. _colo: http://doc.bazaar.canonical.com/plugins/en/colo-plugin.html
213+.. _colo: https://www.breezy-vcs.org/doc/plugins/en/colo-plugin.html
214
215
216 Better documentation
217@@ -173,7 +173,7 @@
218 navigate through and print selected sections of.
219
220 To assist users migrating from other tools, a
221-`Survival Guide <http://doc.bazaar.canonical.com/migration/en/survival/index.html>`_
222+`Survival Guide <https://www.breezy-vcs.org/doc/migration/en/survival/index.html>`_
223 has been published explaining Bazaar to users of other tools in terms they
224 already know. Sections are provided for existing users of
225 CVS, Subversion, ClearCase, Perforce, Visual SourceSafe, Git, Mercurial,
226@@ -195,7 +195,7 @@
227 a better working tree browser and a submit delta report showing the
228 cumulative effect of a series of commits.
229 See `What's New in Bazaar Explorer 1.0?
230-<http://doc.bazaar.canonical.com/explorer/en/whats-new/whats-new-in-1.0.html>`_
231+<https://www.breezy-vcs.org/doc/explorer/en/whats-new/whats-new-in-1.0.html>`_
232 for more information.
233
234
235
236=== modified file 'po/brz.pot'
237--- po/brz.pot 2021-05-03 12:53:04 +0000
238+++ po/brz.pot 2021-11-17 20:41:22 +0000
239@@ -7,7 +7,7 @@
240 msgid ""
241 msgstr ""
242 "Project-Id-Version: brz\n"
243-"Report-Msgid-Bugs-To: <bazaar@canonical.com>\n"
244+"Report-Msgid-Bugs-To: <breey-vcs@groups.google.com>\n"
245 "POT-Creation-Date: 2021-05-03 13:48+0100\n"
246 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
247 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
248@@ -1852,7 +1852,7 @@
249 " GUI tools and IDEs are often better at exploring history than command\n"
250 " line tools: you may prefer qlog or viz from qbzr or bzr-gtk, the\n"
251 " bzr-explorer shell, or the Loggerhead web interface. See the Bazaar\n"
252-" Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/> and\n"
253+" Plugin Guide <https://www.breezy-vcs.org/doc/plugins/en/> and\n"
254 " <http://wiki.bazaar.canonical.com/IDEIntegration>."
255 msgstr ""
256
257@@ -3468,7 +3468,7 @@
258
259 #: breezy/builtins.py:5212
260 msgid ""
261-"See the Bazaar Plugin Guide <http://doc.bazaar.canonical.com/plugins/en/>\n"
262+"See the Bazaar Plugin Guide <https://www.breezy-vcs.org/doc/plugins/en/>\n"
263 "for further information on plugins including where to find them and how to\n"
264 "install them. Instructions are also provided there on how to write new\n"
265 "plugins using the Python programming language."
266@@ -14660,7 +14660,7 @@
267 "provide custom behaviour for selected files. For more information on \n"
268 "end of line conversion see :doc:`eol-help`.\n"
269 "Keyword support is provided by the `keywords plugin\n"
270-"<http://doc.bazaar.canonical.com/plugins/en/keywords-plugin.html>`_."
271+"<https://www.breezy-vcs.org/doc/plugins/en/keywords-plugin.html>`_."
272 msgstr ""
273
274 #: en/help_topics/rules.txt:23

Subscribers

People subscribed via source and target branches