~bzr-pqm/bzr/bzr.dev

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
63
64
65
66
67
68
69
70
71
{% 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("whats-new/whats-new-in-2.6") }}">What's New in Bazaar 2.6?</a><br/>
        <span class="linkdescr">what's new in this release</span>
      </p>
        <p class="biglink"><a class="biglink" href="{{ pathto("user-guide/index") }}">User Guide</a><br/>
        <span class="linkdescr">how to use the command line client</span>
      </p>
      <p class="biglink"><a class="biglink" href="{{ pathto("tutorials/index") }}">Tutorials</a><br/>
      <span class="linkdescr">brief introductions</span>
      </p>
      <p class="biglink"><a class="biglink" href="{{ pathto("quick-reference/index") }}">Quick Reference</a><br/>
      <span class="linkdescr">for your wall</span>
      </p>
    </td><td width="50%">
    <p class="biglink"><a class="biglink" href="{{ pathto("release-notes/index") }}">Release Notes</a><br/>
      <span class="linkdescr">a detailed log of changes</span>
      </p>
      <p class="biglink"><a class="biglink" href="{{ pathto("upgrade-guide/index") }}">Upgrade Guide</a><br/>
      <span class="linkdescr">moving to Bazaar 2.x</span>
      </p>
      <p class="biglink"><a class="biglink" href="{{ pathto("user-reference/index") }}">User Reference</a><br/>
      <span class="linkdescr">all the gory details</span>
      </p>
      <p class="biglink"><a class="biglink" href="{{ pathto("admin-guide/index") }}">System Admin Guide</a><br/>
      <span class="linkdescr">security, backups, etc.</span>
      </p>
    </td></tr>
  </table>

  <h2>Related links</h2>

  <table class="contentstable" align="center" style="margin-left: 30px"><tr>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="http://doc.bazaar.canonical.com/explorer/en/guide/">Desktop Guide</a><br/>
      <span class="linkdescr">how to use our GUI applications</span>
      </p>
        <p class="biglink"><a class="biglink" href="https://answers.launchpad.net/bzr/+faqs">FAQ</a><br/>
      <span class="linkdescr">frequently asked questions</span>
      </p>
      <p class="biglink"><a class="biglink" href="http://wiki.bazaar.canonical.com/BzrGlossary/">Glossary</a><br/>
      <span class="linkdescr">help with terminology</span>
      </p>
    </td>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="../developers/">Developer Docs</a><br/>
        <span class="linkdescr">improving and extending bzr</span>
      </p>
      <p class="biglink"><a class="biglink" href="http://doc.bazaar.canonical.com/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.canonical.com/plugins/en/">Plugins Guide</a><br/>
      <span class="linkdescr">help on popular plugins</span>
      </p>
    </td></tr>

    <tr><td colspan="2">
	These documents are also available in <a href="../es/index.html">Spanish</a>,
	<a href="../ja/index.html">Japanese</a>, 
	and <a href="../ru/index.html">Russian</a>.
    </td></tr>
  </table>

{% endblock %}