/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: Richard Wilbur
  • Date: 2016-02-04 19:07:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6618.
  • Revision ID: richard.wilbur@gmail.com-20160204190728-p0zvfii6zase0fw7
Update COPYING.txt from the original http://www.gnu.org/licenses/gpl-2.0.txt  (Only differences were in whitespace.)  Thanks to Petr Stodulka for pointing out the discrepancy.

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
 
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://wiki.bazaar.canonical.com/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.
 
25
* `Testing <testing.html>`_ |--| Guide to writing tests for Bazaar.
26
26
 
27
27
* `Code Review <code-review.html>`_.
28
28
 
29
 
* `Breezy Code Style Guide <code-style.html>`_.
 
29
* `Bazaar Code Style Guide <code-style.html>`_.
30
30
 
31
31
* `Writing plugins <http://doc.bazaar.canonical.com/plugins/en/plugin-development.html>`_
32
 
  |--| specific advice on writing Breezy plugins. (web link)
 
32
  |--| specific advice on writing Bazaar plugins. (web link)
33
33
 
34
34
* `Documenting changes <documenting-changes.html>`_.
35
35
 
36
36
Process
37
37
=======
38
38
 
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.
 
39
* `The Bazaar Development Cycle <cycle.html>`_ |--| The monthly
 
40
  development cycle and how to run it.
 
41
 
 
42
* `Releasing Bazaar <releasing.html>`_ |--|
 
43
  Checklist to make a release of Bazaar.
 
44
 
 
45
* `Managing the Bazaar PPA <ppa.html>`_ |--| Packaging Bazaar for Ubuntu.
43
46
 
44
47
* `Giving back <http://wiki.bazaar.canonical.com/BzrGivingBack>`_ (wiki) |--| How to get
45
 
  your changes to Breezy integrated into a release.
 
48
  your changes to Bazaar integrated into a release.
46
49
 
47
50
* `Profiling notes <profiling.html>`_ |--| Instructions on how to profile
48
 
  brz code and visualize the results.
 
51
  bzr code and visualize the results.
49
52
 
50
53
* `EC2 resources <ec2.html>`_ |--| A team resource for
51
54
  Windows packaging and testing, and Ubuntu testing.
52
55
 
53
 
* `Tracking Bugs in Breezy <bug-handling.html>`_ |--| How we use the bug
 
56
* `Tracking Bugs in Bazaar <bug-handling.html>`_ |--| How we use the bug
54
57
  tracker.
55
58
 
56
59
Architecture overviews
63
66
=====
64
67
 
65
68
* `Performance roadmap <performance-roadmap.html>`_ |--| The roadmap
66
 
  for fixing performance in brz over the next few releases.
 
69
  for fixing performance in bzr over the next few releases.
67
70
 
68
71
* `Co-located branches <colocated-branches.html>`_ |--| Planned(?) support
69
72
  for storing multiple branches in one file-system directory.
70
73
 
71
 
* `Breezy Windows Shell Extension Options <tortoise-strategy.html>`_ |--|
72
 
  Implementation strategy for Breezy Windows Shell Extensions, aka
 
74
* `Bazaar Windows Shell Extension Options <tortoise-strategy.html>`_ |--|
 
75
  Implmentation strategy for Bazaar Windows Shell Extensions, aka
73
76
  TortoiseBzr.
74
77
 
75
78
* `CHK Optimized index <improved_chk_index.html>`_
85
88
* `Authentication ring <authentication-ring.html>`_ |--| Configuring
86
89
  authentication.
87
90
 
88
 
* `Bundles <bundles.html>`_ |--| All about brz bundles.
 
91
* `Bundles <bundles.html>`_ |--| All about bzr bundles.
89
92
 
90
93
* `Container format <container-format.html>`_ |--| Notes on a container format
91
 
  for streaming and storing Breezy data.
 
94
  for streaming and storing Bazaar data.
92
95
 
93
96
* `Groupcompress <groupcompress-design.html>`_ |--| Notes on the compression
94
97
  technology used in CHK repositories.
111
114
* `Integration Guide <integration.html>`_ |--| A guide to integrate bzrlib into
112
115
  any python application.
113
116
 
114
 
* `Breezy and case-insensitive file systems <case-insensitive-file-systems.html>`_
115
 
  |--| How Breezy operates on case-insensitive file systems such as commonly
 
117
* `Bazaar and case-insensitive file systems <case-insensitive-file-systems.html>`_
 
118
  |--| How Bazaar operates on case-insensitive file systems such as commonly
116
119
  found on Windows, USB sticks, etc.
117
120
 
118
121
* `Development repository formats <development-repo.html>`_ |--| How to
129
132
Implementation notes
130
133
====================
131
134
 
132
 
* `BTree Index Prefetch <btree_index_prefetch.html>`_ |--| How brz decides
 
135
* `BTree Index Prefetch <btree_index_prefetch.html>`_ |--| How bzr decides
133
136
  to pre-read extra nodes in the btree index.
134
137
 
135
138
* `Computing last_modified values <last-modified.html>`_ for inventory
145
148
 
146
149
* `dirstate <dirstate.html>`_ |--| An observation re. the dirstate file
147
150
 
148
 
* `"brz update" performance analysis <update.html>`_ |--| "brz update"
 
151
* `"bzr update" performance analysis <update.html>`_ |--| "bzr update"
149
152
  performance analysis
150
153
 
151
154