~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/bazaar-vcs.org.kid

  • Committer: Aaron Bentley
  • Date: 2006-11-10 01:55:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2127.
  • Revision ID: aaron.bentley@utoronto.ca-20061110015555-f48202744b630209
Ignore html docs (both kinds)

Show diffs side-by-side

added added

removed removed

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