/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/developers/index-plain.txt

  • Committer: Robert Collins
  • Date: 2010-05-06 11:08:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506110810-h3j07fh5gmw54s25
Cleaner matcher matching revised unlocking protocol.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
=================================
2
 
Breezy Developer Document Catalog
 
2
Bazaar Developer Document Catalog
3
3
=================================
4
4
 
5
5
 
11
11
* `Architectural Overview <overview.html>`_ |--| describes some of the
12
12
  most important classes and concepts.
13
13
 
14
 
* `breezy API reference <https://www.breezy-vcs.org/developers/api/>`_
 
14
* `bzrlib API reference <http://starship.python.net/crew/mwh/bzrlibapi/>`_
15
15
  (external link)
16
16
  |--| automatically generated API reference information
17
17
 
18
 
* `Integrating with Breezy <http://wiki.bazaar.canonical.com/Integrating_with_Bazaar>`_
19
 
  (wiki) |--| a guide for writing Python programs that work with Breezy.
 
18
* `Integrating with Bazaar <http://bazaar-vcs.org/Integrating_with_Bazaar>`_
 
19
  (wiki) |--| a guide for writing Python programs that work with Bazaar.
20
20
 
21
21
* `Revision Properties <revision-properties.html>`_ |--| An application
22
22
  can set arbitrary per-revision key/value pairs to store app-specific
23
23
  data.
24
24
 
25
 
* `Testing <testing.html>`_ |--| Guide to writing tests for Breezy.
26
 
 
27
 
* `Code Review <code-review.html>`_.
28
 
 
29
 
* `Breezy Code Style Guide <code-style.html>`_.
30
 
 
31
 
* `Writing plugins <plugin-development.html>`_
32
 
  |--| specific advice on writing Breezy plugins.
33
 
 
34
 
* `Documenting changes <documenting-changes.html>`_.
 
25
* `Testing <testing.html>`_ |--| Guide to writing tests for Bazaar.
 
26
 
 
27
* `Writing plugins <http://doc.bazaar.canonical.com/plugins/en/plugin-development.html>`_
 
28
  |--| specific advice on writing Bazaar plugins. (web link)
35
29
 
36
30
Process
37
31
=======
38
32
 
39
 
* `Releasing Breezy <releasing.html>`_ |--|
40
 
  Checklist to make a release of Breezy.
41
 
 
42
 
* `Managing the Breezy PPA <ppa.html>`_ |--| Packaging Breezy for Ubuntu.
43
 
 
44
 
* `Giving back <http://wiki.bazaar.canonical.com/BzrGivingBack>`_ (wiki) |--| How to get
45
 
  your changes to Breezy integrated into a release.
 
33
* `The Bazaar Development Cycle <cycle.html>`_ |--| The monthly
 
34
  development cycle and how to run it.
 
35
 
 
36
* `Releasing Bazaar <releasing.html>`_ |--|
 
37
  Checklist to make a release of Bazaar.
 
38
 
 
39
* `Managing the Bazaar PPA <ppa.html>`_ |--| Packaging Bazaar for Ubuntu.
 
40
 
 
41
* `Giving back <http://bazaar-vcs.org/BzrGivingBack>`_ (wiki) |--| How to get
 
42
  your changes to Bazaar integrated into a release.
46
43
 
47
44
* `Profiling notes <profiling.html>`_ |--| Instructions on how to profile
48
 
  brz code and visualize the results.
 
45
  bzr code and visualize the results.
49
46
 
50
47
* `EC2 resources <ec2.html>`_ |--| A team resource for
51
48
  Windows packaging and testing, and Ubuntu testing.
52
49
 
53
 
* `Tracking Bugs in Breezy <bug-handling.html>`_ |--| How we use the bug
 
50
* `Tracking Bugs in Bazaar <bug-handling.html>`_ |--| How we use the bug
54
51
  tracker.
55
52
 
56
 
Architecture overviews
57
 
======================
58
 
 
59
 
* `Transports <transports.html>`_ |--| Transport virtual filesystem
60
 
  abstraction.
61
 
 
62
53
Plans
63
54
=====
64
55
 
65
56
* `Performance roadmap <performance-roadmap.html>`_ |--| The roadmap
66
 
  for fixing performance in brz over the next few releases.
 
57
  for fixing performance in bzr over the next few releases.
67
58
 
68
59
* `Co-located branches <colocated-branches.html>`_ |--| Planned(?) support
69
60
  for storing multiple branches in one file-system directory.
70
61
 
71
 
* `Breezy Windows Shell Extension Options <tortoise-strategy.html>`_ |--|
72
 
  Implementation strategy for Breezy Windows Shell Extensions, aka
 
62
* `Bazaar Windows Shell Extension Options <tortoise-strategy.html>`_ |--|
 
63
  Implmentation strategy for Bazaar Windows Shell Extensions, aka
73
64
  TortoiseBzr.
74
65
 
75
66
* `CHK Optimized index <improved_chk_index.html>`_
77
68
Specifications
78
69
==============
79
70
 
80
 
* `API versioning <api-versioning.html>`_ |--| breezy API versioning.
 
71
* `API versioning <api-versioning.html>`_ |--| bzrlib API versioning.
81
72
 
82
73
* `Apport error reporting <apport.html>`_ |--| Capture data to report
83
74
  bugs.
85
76
* `Authentication ring <authentication-ring.html>`_ |--| Configuring
86
77
  authentication.
87
78
 
88
 
* `Bundles <bundles.html>`_ |--| All about brz bundles.
 
79
* `Bundles <bundles.html>`_ |--| All about bzr bundles.
89
80
 
90
81
* `Container format <container-format.html>`_ |--| Notes on a container format
91
 
  for streaming and storing Breezy data.
 
82
  for streaming and storing Bazaar data.
92
83
 
93
84
* `Groupcompress <groupcompress-design.html>`_ |--| Notes on the compression
94
85
  technology used in CHK repositories.
95
86
 
96
 
* `Indices <indices.html>`_ |--| The index facilities available within
97
 
  breezy.
 
87
* `Indices <indices.html>`_ |--| The index facilities available within bzrlib.
98
88
 
99
89
* `Inventories <inventory.html>`_ |--| Tree shape abstraction.
100
90
 
109
99
* `Repository stream <repository-stream.html>`_ |--| Notes on streaming data
110
100
  for repositories (a layer above the container format).
111
101
 
112
 
* `Integration Guide <integration.html>`_ |--| A guide to integrate breezy into
 
102
* `Integration Guide <integration.html>`_ |--| A guide to integrate bzrlib into
113
103
  any python application.
114
104
 
115
 
* `Breezy and case-insensitive file systems <case-insensitive-file-systems.html>`_
116
 
  |--| How Breezy operates on case-insensitive file systems such as commonly
 
105
* `Bazaar and case-insensitive file systems <case-insensitive-file-systems.html>`_
 
106
  |--| How Bazaar operates on case-insensitive file systems such as commonly
117
107
  found on Windows, USB sticks, etc.
118
108
 
119
109
* `Development repository formats <development-repo.html>`_ |--| How to
130
120
Implementation notes
131
121
====================
132
122
 
133
 
* `BTree Index Prefetch <btree_index_prefetch.html>`_ |--| How brz decides
 
123
* `BTree Index Prefetch <btree_index_prefetch.html>`_ |--| How bzr decides
134
124
  to pre-read extra nodes in the btree index.
135
125
 
136
126
* `Computing last_modified values <last-modified.html>`_ for inventory
146
136
 
147
137
* `dirstate <dirstate.html>`_ |--| An observation re. the dirstate file
148
138
 
149
 
* `"brz update" performance analysis <update.html>`_ |--| "brz update"
 
139
* `"bzr update" performance analysis <update.html>`_ |--| "bzr update"
150
140
  performance analysis
151
141
 
152
142