1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{% extends "layout.html" %}
{% set title = 'Table of Contents' %}
{% block body %}
<h2>Core documentation</h2>
<table class="contentstable" align="center" style="margin-left: 30px"><tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("en/user-guide/index") }}">User Guide</a><br/>
<span class="linkdescr">how to use Bazaar effectively</span>
</p>
<p class="biglink"><a class="biglink" href="{{ pathto("en/tutorials/index") }}">Tutorials</a><br/>
<span class="linkdescr">brief introductions</span>
</p>
<p class="biglink"><a class="biglink" href="{{ pathto("en/quick-reference/index") }}">Quick Reference</a><br/>
<span class="linkdescr">for your wall</span>
</p>
<p class="biglink"><a class="biglink" href="{{ pathto("en/user-reference/bzr_man") }}">User Reference</a><br/>
<span class="linkdescr">all the gory details</span>
</p>
</td><td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("en/release-notes/NEWS") }}">Release Notes</a><br/>
<span class="linkdescr">what's new</span>
</p>
<p class="biglink"><a class="biglink" href="{{ pathto("en/upgrade-guide/index") }}">Upgrade Guide</a><br/>
<span class="linkdescr">moving to Bazaar 2.x</span>
</p>
<p class="biglink"><a class="biglink" href="http://doc.bazaar-vcs.org/migration/en/">Migration Docs</a><br/>
<span class="linkdescr">for refugees of other tools</span>
</p>
<p class="biglink"><a class="biglink" href="http://doc.bazaar-vcs.org/plugins/en/">Plugins Guide</a><br/>
<span class="linkdescr">help on popular plugins</span>
</p>
</td></tr>
</table>
<p>Keen to help? See the <a href="http://doc.bazaar-vcs.org/latest/developers/">Developer Docs</a>
for policies and tools on contributing code, tests and documentation.</p>
<h2>Related Links</h2>
<table class="contentstable" align="center" style="margin-left: 30px"><tr>
<td width="25%">
<p><a href="https://answers.launchpad.net/bzr">FAQ</a>
</p>
</td><td width="25%">
<p><a href="http://bazaar-vcs.org/BzrGlossary/">Glossary</a>
</p>
</td><td width="25%">
<p><a href="{{ pathto("search") }}">Search</a>
</p>
</td></tr>
</table>
<hr>
<p>Other languages:
<a href="{{ pathto("index.es") }}">Spanish</a>,
<a href="{{ pathto("index.ru") }}">Russian</a>
</p>
{% endblock %}
|