~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/_templates/index.html

  • Committer: Robert Collins
  • Date: 2007-07-15 15:40:37 UTC
  • mto: (2592.3.33 repository)
  • mto: This revision was merged to the branch mainline in revision 2624.
  • Revision ID: robertc@robertcollins.net-20070715154037-3ar8g89decddc9su
Make GraphIndex accept nodes as key, value, references, so that the method
signature is closer to what a simple key->value index delivers. Also
change the behaviour when the reference list count is zero to accept
key, value as nodes, and emit key, value to make it identical in that case
to a simple key->value index. This may not be a good idea, but for now it
seems ok.

Show diffs side-by-side

added added

removed removed

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