/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml">
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
4
<head>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
5
<base href="http://bazaar-vcs.org" />
6
<script type="text/javascript" src=
7
"/htdocs/bazaarNew/js/opacity.js">
8
</script>
9
<link rel="shortcut icon" href=
10
"/Welcome?action=AttachFile&amp;do=get&amp;target=favicon.ico"
11
type="image/x-icon" />
12
<meta http-equiv="Content-Type" content=
13
"text/html; charset=us-ascii" />
14
<meta name="robots" content="index,follow" />
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
15
<title>Welcome - Bazaar Version Control</title>
16
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
17
<script type="text/javascript" src="/htdocs/common/js/common.js">
18
</script>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
19
<script type="text/javascript">
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
20
//<![CDATA[
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
21
<!--// common functions
22
23
// We keep here the state of the search box
24
searchIsDisabled = false;
25
26
function searchChange(e) {
27
    // Update search buttons status according to search box content.
28
    // Ignore empty or whitespace search term.
29
    var value = e.value.replace(/\s+/, '');
30
    if (value == '' || searchIsDisabled) { 
31
        searchSetDisabled(true);
32
    } else {
33
        searchSetDisabled(false);
34
    }
35
}
36
37
function searchSetDisabled(flag) {
38
    // Enable or disable search
39
    document.getElementById('fullsearch').disabled = flag;
40
    document.getElementById('titlesearch').disabled = flag;
41
}
42
43
function searchFocus(e) {
44
    // Update search input content on focus
45
    if (e.value == 'Search') {
46
        e.value = '';
47
        e.className = '';
48
        searchIsDisabled = false;
49
    }
50
}
51
52
function searchBlur(e) {
53
    // Update search input content on blur
54
    if (e.value == '') {
55
        e.value = 'Search';
56
        e.className = 'disabled';
57
        searchIsDisabled = true;
58
    }
59
}
60
61
function actionsMenuInit(title) {
62
    // Initialize action menu
63
    for (i = 0; i < document.forms.length; i++) {
64
        var form = document.forms[i];
65
        if (form.className == 'actionsmenu') {
66
            // Check if this form needs update
67
            var div = form.getElementsByTagName('div')[0];
68
            var label = div.getElementsByTagName('label')[0];
69
            if (label) {
70
                // This is the first time: remove label and do buton.
71
                div.removeChild(label);
72
                var dobutton = div.getElementsByTagName('input')[0];
73
                div.removeChild(dobutton);
74
                // and add menu title
75
                var select = div.getElementsByTagName('select')[0];
76
                var item = document.createElement('option');
77
                item.appendChild(document.createTextNode(title));
78
                item.value = 'show';
79
                select.insertBefore(item, select.options[0]);
80
                select.selectedIndex = 0;
81
            }
82
        }
83
    }
84
}
85
//-->
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
86
//]]>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
87
</script>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
88
<link rel="stylesheet" type="text/css" charset="utf-8" media="all"
89
href="/htdocs/bazaarNew/css/common.css" />
90
<link rel="stylesheet" type="text/css" charset="utf-8" media=
91
"screen" href="/htdocs/bazaarNew/css/screen.css" />
92
<link rel="stylesheet" type="text/css" charset="utf-8" media=
93
"print" href="/htdocs/bazaarNew/css/print.css" />
94
<link rel="stylesheet" type="text/css" charset="utf-8" media=
95
"projection" href="/htdocs/bazaarNew/css/projection.css" />
96
<link rel="stylesheet" type="text/css" charset="utf-8" media=
97
"screen" href="/htdocs/bazaarNew/css/v4.css" />
98
<link rel="stylesheet" type="text/css" charset="utf-8" media=
99
"screen" href="/htdocs/bazaarNew/css/screen2.css" />
100
<link rel="stylesheet" type="text/css" charset="utf-8" media=
101
"screen" href="/htdocs/bazaarNew/css/twoColumnsRight.css" />
102
<link rel="alternate" title="Bazaar Version Control Recent Changes"
103
href="/RecentChanges?action=rss_rc&amp;ddiffs=1&amp;unique=1" type=
104
"application/rss+xml" />
105
<link rel="Start" href="/Welcome" />
106
<link rel="Alternate" title="Wiki Markup" href=
107
"/Welcome?action=raw" />
108
<link rel="Alternate" media="print" title="Print View" href=
109
"/Welcome?action=print" />
110
<link rel="Appendix" title="favicon.ico" href=
111
"/Welcome?action=AttachFile&amp;do=view&amp;target=favicon.ico" />
112
<link rel="Search" href="/FindPage" />
113
<link rel="Index" href="/TitleIndex" />
114
<link rel="Glossary" href="/WordIndex" />
115
<link rel="Help" href="/HelpOnFormatting" />
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
116
</head>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
117
<body lang="en" dir="ltr" xml:lang="en">
118
<div id="page_header1_div"><script type="text/javascript">
119
//<![CDATA[
120
gui_editor_link_text = gui_editor_link_href = null;
121
//]]>
122
</script></div>
123
<div id="pageWrapper">
124
<hr class="hide" />
125
<div id="masthead" class="inside">
126
<div id="logoimage"><a href="/"><img src=
127
"/htdocs/bazaarNew/css/logo.png" width="144" height="149" alt=
128
"Bazaar" /></a></div>
129
<h1><a href="/">Bazaar</a></h1>
130
<p>GPL Distributed Version Control Software</p>
131
</div>
132
<hr class="hide" />
133
<div class="hnav">
134
<ul>
135
<li class="hide"><a class="hide" href="#skipToContent"><em>Skip
136
Navigation</em></a> <span class="divider">:</span></li>
137
<li><a href="/Documentation" id="hnav_learn" name=
138
"hnav_learn">Learn</a> <span class="divider">:</span></li>
139
<li><a href="/Download" id="hnav_get" name="hnav_get">Get</a>
140
<span class="divider">:</span></li>
141
<li><a href="/BzrSupport" id="hnav_community" name=
142
"hnav_community">Community</a> <span class="divider">:</span></li>
143
<li><a href="/BzrPlugins" id="hnav_plugins" name=
144
"hnav_plugins">Plugins</a></li>
145
</ul>
146
</div>
147
<div id="outerColumnContainer">
148
<div id="innerColumnContainer">
149
<hr class="hide" />
150
<div id="leftColumn">
151
<div class="inside"></div>
152
</div>
153
<hr class="hide" />
154
<div id="rightColumn">
155
<div class="inside">
156
<div id="searchbox">
157
<form name="search" method="get" action="" id="search">
158
<div><input type="hidden" name="action" value="fullsearch" id=
159
"fullsearch" /> <input type="hidden" name="context" value="180" />
160
<input type="hidden" name="fullsearch" value="Text" /> <label for=
161
"search_q">Search Bazaar</label> <input type="text" name="value"
162
id="search_q" value="" onfocus="searchFocus(this)" onblur=
163
"searchBlur(this)" onkeyup="searchChange(this)" onchange=
164
"searchChange(this)" alt="Search" /> <input type="submit" value=
165
"go" name="go" id="search_go" /></div>
166
</form>
167
</div>
168
<div id="searchform"></div>
169
<div id="username" class="vnav">
170
<h4>Website Links</h4>
171
<ul>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
172
<li><a href="/AaronBentley">AaronBentley</a></li>
173
<li><a href="/UserPreferences">User Preferences</a></li>
174
<li><a href="/FindPage">FindPage</a></li>
175
<li><a href="/RecentChanges">RecentChanges</a></li>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
176
<li><a name="editlink" href=
177
"/Welcome?action=edit&amp;editor=textonly" id="editlink">Edit
178
Page</a></li>
179
<li><a href="/Welcome?action=info">Page History</a></li>
180
<li><a href="/Welcome?action=subscribe">Subscribe</a></li>
181
<li>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
182
<form class="actionsmenu" method="get" action="">
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
183
<div><label>More Actions:</label> <select name="action" onchange=
184
"if ((this.selectedIndex != 0) &amp;&amp; (this.options[this.selectedIndex].disabled == false)) { this.form.submit(); } this.selectedIndex = 0;">
185
<option value="raw">Raw Text</option>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
186
<option value="print">Print View</option>
187
<option value="refresh">Delete Cache</option>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
188
<option value="show" disabled="disabled" class="disabled">
189
------------</option>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
190
<option value="SpellCheck">Check Spelling</option>
191
<option value="LikePages">Like Pages</option>
192
<option value="LocalSiteMap">Local Site Map</option>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
193
<option value="show" disabled="disabled" class="disabled">
194
------------</option>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
195
<option value="RenamePage">Rename Page</option>
196
<option value="DeletePage">Delete Page</option>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
197
<option value="show" disabled="disabled" class="disabled">
198
------------</option>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
199
<option value="AttachFile">Attach File</option>
200
<option value="Despam">Despam</option>
201
<option value="MyPages">My Pages</option>
202
<option value="PackagePages">Package Pages</option>
203
<option value="RenderAsDocbook">Render As Docbook</option>
204
<option value="SubscribeUser">Subscribe User</option>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
205
</select> <input type="submit" value="Do" /></div>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
206
<script type="text/javascript">
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
207
//<![CDATA[
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
208
<!--// Init menu
209
actionsMenuInit('More Actions:');
210
//-->
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
211
//]]>
212
</script></form>
213
</li>
214
</ul>
215
</div>
216
</div>
217
</div>
218
<div id="contentColumn" class="page_Welcome">
219
<hr class="hide" />
220
<div id="msg" class="vnav"></div>
221
<a name="skipToContent" id="skipToContent"></a>
222
<div class="inside">
223
<!--<img id="navProtection" width="1" height="1" border="0" src="/htdocs/bazaarNew/css/spacer.gif" alt="" style="height: 1px"/>-->
224
<div dir="ltr" id="content" lang="en" xml:lang="en"><span class=
225
"anchor" id="top"></span> <span class="anchor" id="line-8"></span>
226
<h1 id="head-31592baed255c2a5cdfdaafb9521b837ea61021f">Performance
227
Drive Under Way</h1>
228
<span class="anchor" id="line-9"></span>
229
<p class="line879">There was substantial progress on performance
230
since 0.8. See <a href="/Performance/0.9">Performance/0.9</a>,
231
<a href="/Performance/0.10">Performance/0.10</a> and <a href=
232
"/Performance/0.11">Performance/0.11</a>. Thanks to everyone who
233
has contributed patches and ideas! The focus from here to 1.0 will
234
continue to be performance and documentation. Already there is work
235
in progress to: <span class="anchor" id="line-10"></span></p>
236
<span class="anchor" id="line-11"></span>
237
<ul>
238
<li>
239
<p class="line879">write a <a href="/SmartServer">SmartServer</a>
240
for high speed network operations (first look in 0.11).
241
<span class="anchor" id="line-12"></span></p>
242
</li>
243
<li>
244
<p class="line886">optimise file system access (tune our code and
245
data structures to minimise probable disk io and disk seeking)
246
<span class="anchor" id="line-13"></span></p>
247
</li>
248
<li>
249
<p class="line886">optimise file formats for performance without
250
sacrificing proven correctness and completeness <span class=
251
"anchor" id="line-14"></span></p>
252
</li>
253
<li>
254
<p class="line886">tune the codepaths that are most heavily used
255
<span class="anchor" id="line-15"></span></p>
256
</li>
257
<li>
258
<p class="line886">ensure that large imports are only done when
259
needed, and use lightweight imports where possible <span class=
260
"anchor" id="line-16"></span></p>
261
<span class="anchor" id="line-17"></span></li>
262
</ul>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
263
<h1 id="head-ceb9b8e0146b0ce087048f495b2ff2964c5d57ec">News</h1>
264
<span class="anchor" id="line-18"></span>
2054.2.2 by Aaron Bentley
Run HTML tidy to convert bazaar-vcs.org to xhtml
265
<h2 id="head-39a1524e97c9a6ba89ecee7856cb1a2e68134373">27th
266
September 2006 - 0.11rc2 released</h2>
267
<span class="anchor" id="line-19"></span>
268
<p class="line879">bzr 0.11rc2 has been released. This release
269
candidate corrects two regressions that occured from 0.10. Windows
270
developers and users with very large source trees should upgrade
271
immediately. Release <a class="https" href=
272
"https://lists.canonical.com/archives/bazaar-ng/2006q3/017581.html">
273
announcement</a> or <a class="http" href=
274
"http://bazaar-vcs.org/releases/src/bzr-0.11rc2.tar.gz">download
275
now</a>. For details of the original 0.11 release candidate, see
276
the <a class="https" href=
277
"https://lists.canonical.com/archives/bazaar-ng/2006q3/017502.html">
278
announcement</a>. <span class="anchor" id="line-20"></span></p>
279
<span class="anchor" id="line-21"></span>
280
<h2 id="head-9940b3014f81c7b8ca65aa3235341588859d09dd">4th
281
September 2006 - 0.10 released</h2>
282
<span class="anchor" id="line-22"></span>
283
<p class="line879">bzr 0.10 has been released after a smooth beta
284
period. <a class="http" href=
285
"http://bazaar-vcs.org/releases/src/bzr-0.10.tar.gz">download it
286
now</a>! <span class="anchor" id="line-23"></span></p>
287
<span class="anchor" id="line-24"></span>
288
<h1 id="head-c2a87bc7d0bc411d33e18585154e534201115501">What is
289
Bazaar?</h1>
290
<span class="anchor" id="line-25"></span>
291
<p class="line879">Bazaar is a decentralized revision control
292
system designed to be easy for developers and end users alike.
293
Decentralized revision control systems give people the ability to
294
work over the internet using the <a class="http" href=
295
"http://en.wikipedia.org/wiki/The_Cathedral_and_the_Bazaar">bazaar
296
development model</a>. When you use Bazaar, you can commit to your
297
own branches of your favorite free software projects without
298
needing special permission. For more information, see: <span class=
299
"anchor" id="line-26"></span></p>
300
<span class="anchor" id="line-27"></span>
301
<ul>
302
<li>
303
<p class="line903"><a href="/Bzr">What Is Bazaar?</a> <span class=
304
"anchor" id="line-28"></span></p>
305
</li>
306
<li>
307
<p class="line903"><a href="/WhoUsesBzr">Who Uses Bazaar?</a>
308
<span class="anchor" id="line-29"></span></p>
309
</li>
310
<li>
311
<p class="line903"><a href="/BzrFeatures">Bazaar Features</a>
312
<span class="anchor" id="line-30"></span></p>
313
</li>
314
<li>
315
<p class="line903"><a href="/FAQ">FAQ</a> (Frequently Asked
316
Questions) <span class="anchor" id="line-31"></span></p>
317
</li>
318
<li>
319
<p class="line903"><a href="/BzrGlossary">Bazaar Glossary</a>
320
<span class="anchor" id="line-32"></span></p>
321
</li>
322
<li>
323
<p class="line903"><a href="/ReleaseRoadmap">What's Coming</a> (the
324
release roadmap) <span class="anchor" id="line-33"></span></p>
325
<span class="anchor" id="line-34"></span></li>
326
</ul>
327
<h1 id="head-54a84f21f8314a452aecfb4e2da59fcb246fee7b">Where do I
328
get it?</h1>
329
<span class="anchor" id="line-35"></span>
330
<p class="line886">The easiest place to get Bazaar is with your
331
distribution. Do not despair if your distribution does not have
332
Bazaar, as plain installation is still easy. <span class="anchor"
333
id="line-36"></span></p>
334
<span class="anchor" id="line-37"></span>
335
<ul>
336
<li>
337
<p class="line903"><a href="/DistroDownloads">Packages</a> -
338
Downloads for various distributions <span class="anchor" id=
339
"line-38"></span></p>
340
</li>
341
<li>
342
<p class="line903"><a href="/OfficialDownloads">Source</a> - Source
343
downloads <span class="anchor" id="line-39"></span></p>
344
</li>
345
<li>
346
<p class="line903"><a href="/WindowsDownloads">Windows</a> -
347
Downloads for windows <span class="anchor" id="line-40"></span></p>
348
<span class="anchor" id="line-41"></span></li>
349
</ul>
350
<h1 id="head-400b61668c5f3ab729ffbfeed0f9fc93e853044e">How do I
351
install it?</h1>
352
<span class="anchor" id="line-42"></span>
353
<p class="line879">Installation for Bazaar is a snap. Supported
354
operating systems include Linux, FreeBSD, Windows (Native &amp;
355
Cygwin) and Solaris. If you can run Python 2.4, then you can run
356
Bazaar. <span class="anchor" id="line-43"></span></p>
357
<span class="anchor" id="line-44"></span>
358
<ul>
359
<li>
360
<p class="line903"><a href="/DistroDownloads">Packages</a> -
361
Downloads for various distributions <span class="anchor" id=
362
"line-45"></span></p>
363
</li>
364
<li>
365
<p class="line903"><a href="/Installation">Generic</a> - Generic
366
Installation Instructions. <span class="anchor" id=
367
"line-46"></span></p>
368
</li>
369
<li>
370
<p class="line903"><a href="/BzrOnPureWindows">Native Windows</a> -
371
Installation of Bazaar on Native windows. <span class="anchor" id=
372
"line-47"></span></p>
373
<span class="anchor" id="line-48"></span></li>
374
</ul>
375
<h1 id="head-6350ee8bfd03b56b430e775595af1eb29ac7bdb4">How do I use
376
it?</h1>
377
<span class="anchor" id="line-49"></span>
378
<p class="line886">Included are the pearls of wisdom from people
379
that have already branched off into a new world of development.
380
<span class="anchor" id="line-50"></span></p>
381
<span class="anchor" id="line-51"></span>
382
<ul>
383
<li>
384
<p class="line903"><a href="/Documentation">Documents</a> - The
385
main documentation page for Bazaar. <span class="anchor" id=
386
"line-52"></span></p>
387
</li>
388
<li>
389
<p class="line903"><a href="/IntroductionToBzr">Introduction</a> -
390
Introduction to Bazaar gives a walkthough of the simpler commands.
391
<span class="anchor" id="line-53"></span></p>
392
</li>
393
<li>
394
<p class="line903"><a href="/QuickHackingWithBzr">Mini Tutorial</a>
395
- The five minutes Bazaar Tutorial. <span class="anchor" id=
396
"line-54"></span></p>
397
</li>
398
<li>
399
<p class="line903"><a href="/BzrRevisionSpec">Revision Specs</a> -
400
Arguments for -r that can be given with "bzr log", "bzr merge" and
401
such. <span class="anchor" id="line-55"></span></p>
402
<span class="anchor" id="line-56"></span></li>
403
</ul>
404
<h1 id="head-148c5debbd034308b67411c490e69555ee5a03a3">How does it
405
compare?</h1>
406
<span class="anchor" id="line-57"></span>
407
<p class="line886">If you're familiar with other version control
408
systems, you might like to see a quick comparison to them, or read
409
guidelines to help you understand how to use bzr most effectively
410
given your current experience. <span class="anchor" id=
411
"line-58"></span></p>
412
<span class="anchor" id="line-59"></span>
413
<ul>
414
<li>
415
<p class="line903"><a href="/BzrForCVSUsers">BzrForCVSUsers</a> -
416
Learning Bazaar for CVS users. <span class="anchor" id=
417
"line-60"></span></p>
418
</li>
419
<li>
420
<p class="line903"><a href="/BzrForGITUsers">BzrForGITUsers</a> -
421
(In progress) Learning Bazaar for GIT users <span class="anchor"
422
id="line-61"></span></p>
423
</li>
424
<li>
425
<p class="line903"><a href="/RcsComparisons">RcsComparisons</a> -
426
Comparison table of functionality and performance with Bazaar, GIT,
427
Mercurial, SVN and other VCS systems. <span class="anchor" id=
428
"line-62"></span></p>
429
<span class="anchor" id="line-63"></span></li>
430
</ul>
431
<h1 id="head-e966f9f6520262482dc713218b2a916600636f14">How can I
432
get Help?</h1>
433
<span class="anchor" id="line-64"></span>
434
<p class="line879">Our primary page for getting help is the
435
<a href="/BzrSupport">BzrSupport</a> page. <span class="anchor" id=
436
"line-65"></span></p>
437
<span class="anchor" id="line-66"></span>
438
<ul>
439
<li>
440
<p class="line903"><a class="https" href=
441
"https://launchpad.net/products/bzr/+bugs">Bug Tracker</a> - You
442
can check here to see if someone else is experiencing the same
443
problem that you are. <span class="anchor" id="line-67"></span></p>
444
</li>
445
<li>
446
<p class="line903"><a class="http" href=
447
"http://lists.canonical.com/mailman/listinfo/bazaar-ng">Mailing
448
List</a> - A high volume list focused upon Bazaar development and
449
support. <span class="anchor" id="line-68"></span></p>
450
</li>
451
<li>
452
<p class="line886">IRC - #bzr on irc.freenode.net <span class=
453
"anchor" id="line-69"></span></p>
454
<span class="anchor" id="line-70"></span></li>
455
</ul>
456
<h1 id="head-45d36005ff61e184525081c9c40ed26ded3c8f02">How can I
457
contribute?</h1>
458
<span class="anchor" id="line-71"></span>
459
<p class="line879">Our primary development doc page is <a href=
460
"/BzrDevelopment">BzrDevelopment</a>. <span class="anchor" id=
461
"line-72"></span></p>
462
<span class="anchor" id="line-73"></span>
463
<ul>
464
<li>
465
<p class="line903"><a href="/BzrDevelopment">Development
466
Instructions</a> - We keep our main development instructions here.
467
<span class="anchor" id="line-74"></span></p>
468
</li>
469
<li>
470
<p class="line903"><a href="/OfficialDownloads">Source Code</a> -
471
Source code to get hacking with. <span class="anchor" id=
472
"line-75"></span></p>
473
</li>
474
<li>
475
<p class="line903"><a class="https" href=
476
"https://launchpad.net/products/bzr/+specs">Specifications</a> -
477
Specifications list which things are being worked on today and are
478
likely to be worked on next. <span class="anchor" id=
479
"line-76"></span></p>
480
</li>
481
<li>
482
<p class="line903"><a class="https" href=
483
"https://launchpad.net/products/bzr/+bugs">BugTracker</a> - Open
484
bugs that you can work on. <span class="anchor" id=
485
"line-77"></span></p>
486
<span class="anchor" id="line-78"></span></li>
487
</ul>
488
<p class="line879">You are also welcome to improve this wiki site.
489
To edit pages, please <a href="/UserPreferences">register</a>.
490
Anonymous editing is disabled to prevent spammer attacks.
491
<span class="anchor" id="line-79"></span></p>
492
<span class="anchor" id="bottom"></span></div>
493
</div>
494
<div class="clear mozclear"></div>
495
</div>
496
</div>
497
<div class="hide" id="nsFooterClear"><!-- for NS4's sake --></div>
498
<hr class="hide" />
499
<div id="footer" class="inside">
500
<p style="margin:0;">&copy; 2006 - <a href=
501
"http://canonical.com/">Canonical Ltd.</a></p>
502
<div id="endofpage"></div>
503
<div id="footer_custom_html"></div>
504
<div id="footer_links"></div>
505
</div>
506
<hr class="hide" /></div>
507
</div>
508
</body>
2054.2.1 by Aaron Bentley
Start work on pretty rest conversion
509
</html>