~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Robey Pointer
  • Date: 2006-12-20 21:17:53 UTC
  • Revision ID: robey@lag.net-20061220211753-tbgl6hlhdvqt2mu4
add top-level page listing available branches.  also a patch from matty to not require external-url in atom feeds any more

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
What's changed in loggerhead?
2
 
=============================
3
 
 
4
 
dev [future]
5
 
---------------
6
 
 
7
 
    - Loggerhead now serves bzr branches over HTTP and exposes the URL
8
 
      to branch them. Addresses bug #240577. (Jonathan Lange)
9
 
 
10
 
    - Leading blank lines in commit messages no longer result in an
11
 
      empty summary. (Colin Watson)
12
 
 
13
 
    - Added syntax highlighting to annotate view using
14
 
      python-pygments.  Partially addresses bug #306631. (Peter Bui)
15
 
 
16
 
    - Convert newlines in commit messages to HTML line breaks for
17
 
      annotate and changelog views.  Addresses bug #273688. (Peter
18
 
      Bui)
19
 
 
20
 
    - serve-branches now errors if run behind a proxy without
21
 
      paste.deploy installed.
22
 
 
23
 
    - Loggerhead should now handle file and directory names that need
24
 
      URL escaping without crashing.
25
 
 
26
 
    - The start-loggerhead script properly sets the wsgi.url_scheme
27
 
      from the server.webpath option. (neror)
28
 
 
29
 
    - The revision page defaults to unified style again, and can
30
 
      convert to a side-by-side view using Javascript.
31
 
 
32
 
    - Leading blank lines in commit messages no longer result in an
33
 
      empty summary. (Colin Watson)
34
 
 
35
 
    - The user-confusing "next" and "previous" links now read "older"
36
 
      and "newer" respectively.
37
 
 
38
 
    - The annotate view now contains line number anchors.
39
 
 
40
 
    - The annotate view does syntax highlighting using the "pygments"
41
 
      library.  (Peter Bui)
42
 
 
43
 
    - Changelog messages are now displayed with newlines preserved.
44
 
      (Peter Bui)
45
 
 
46
 
    - serve-branches now has an option, --use-cdn, to load YUI from
47
 
      Yahoo!'s CDN. (Matt Nordhoff)
48
 
 
49
 
    - Fix errors when using serve-branches --log-folder or --user-dirs.
50
 
      (It was calling config.get_option() incorrectly.) (Matt Nordhoff,
51
 
      bug #361238)
52
 
 
53
 
    - Move some caching from RAM to the disk, and other caching and
54
 
      memory usage improvements. (Michael Hudson)
55
 
 
56
 
    - Add a --cache-dir option to serve-branches to choose where to
57
 
      place the SQL cache, and only create one temporary SQL dir per
58
 
      process. (Matt Nordhoff, #358322)
59
 
 
60
 
    - Replace homebrew memory profiling code with Dozer. (Paul Hummer)
61
 
 
62
 
    - Use the branch's public_branch as the default suggested URL to
63
 
      branch from (Matt Nordhoff, #369767)
64
 
 
65
 
    - Fix a file descriptor leak (Matt Nordhoff, #370845)
66
 
 
67
 
1.10 [22Dec2008]
68
 
---------------
69
 
 
70
 
    - Add startup deamon script for Linux (Marius Kruger)
71
 
 
72
 
    - Switch navigation from file_ids to paths. Fixes bugs #260363,
73
 
      #269365 and #128926. (Martin Albisetti)
74
 
 
75
 
    - Fix bug #258710 ("the /files page explodes in an empty branch").
76
 
      Also minor improvements to the /files and /changes pages.
77
 
      (Marius Kruger)
78
 
 
79
 
    - Added --port, --host and --prefix options to serve-branches
80
 
      script. (Martin Albisetti)
81
 
 
82
 
    - Fixed broken template for project browsing with start-loggerhead
83
 
      (Martin Albisetti)
84
 
 
85
 
    - Added --reload options to restart the application when a python
86
 
      file change. (Guillermo Gonzalez)
87
 
 
88
 
    - Added error handling middleware. (Guillermo Gonzalez)
89
 
 
90
 
    - Fix bug #243415 ("Tracebacks go to console but not log
91
 
      file"). Also minor improvements to logging in serve-branches and
92
 
      start-loggerhead. (Guillermo Gonzalez)
93
 
 
94
 
1.6 [15Aug2008]
95
 
----------------
96
 
 
97
 
    - Download a diffs between revisions. (Martin Albisetti)
98
 
 
99
 
    - Modified templates to make loggerhead's theme easier to
100
 
      change. (Paul Hummer)
101
 
 
102
 
    - Default sqlite interface is now sqlite3. (Robert Collins)
103
 
 
104
 
    - New ninja theme sponsored by Canonical (Martin Albisetti)
105
 
 
106
 
    - Added COPYING file and clarified copyright headers (John Arbash Meinel)
107
 
 
108
 
    - Remove the .py extension requiered by the Debian Policy.
109
 
      (Jelmer Vernooij)
110
 
 
111
 
    - New startup script serve-branches will serve Loggerhead without
112
 
      the need of configuration, and allow you to browse through directories
113
 
      and branches. (Michael Hudson)
114
 
 
115
 
    - Loggerhead is no longer a TurboGears application, but rather a
116
 
      WSGI application built using Paste (see http://wsgi.org/ and
117
 
      http://pythonpaste.org/ for more about WSGI and Paste).
118
 
 
119
 
    - URLs now use revision numbers instead of revision ids (Martin Albisetti)
120
 
 
121
 
    - The scripts no longer insist on Python 2.4 -- loggerhead works
122
 
      fine with 2.5.
123
 
 
124
 
    - Bazaar as of version 1.5 has improved in performance enough that
125
 
      the revision cache no longer gave any noticeable benefit, so it
126
 
      was removed (the files-changed cache is still useful).
127
 
 
128
 
    - The templates were rewritten in Zope's TAL markup, powered by
129
 
      the simpleTAL library -- improving both the performance and
130
 
      memory consumption of rendering by a factor of around 3 for
131
 
      large pages over the old Kid templates.
132
 
 
133
 
    - Loggerhead's poorly performing text index was disabled. bzr-search
134
 
      is now used if the plugin is installed and a text index is present
135
 
      on the branch being viewed. (Martin Albisetti, Robert Collins).
136
 
 
137
 
    - Loggerhead no longer depends on bzrlib functions deprecated in
138
 
      Bazaar 1.5 and removed in 1.6 (Martin Albisetti).
139
 
 
140
 
    - The daemonization code was made more regular, fixing bugs
141
 
      #139161 ("Starting loggerhead process may not close its stdin
142
 
      and stdout properly") and #211526 ("Codebrowse log directory has
143
 
      unnecessarily permissive permissions")
144
 
 
145
 
    - Some confusion about what the 'file_id' query argument means was
146
 
      cleared up: filter_file_id now means "filter revisions to those
147
 
      that affect this file" in all views and file_id means "examine
148
 
      this file/directory" in the annotate and inventory views.
149
 
 
150
 
    - Dates are present more compactly.
151
 
 
152
 
    - The loggerhead.conf file can specify which network interface to
153
 
      bind to (Mattias Eriksson)
154
 
 
155
 
1.2.1  [06mar2008]
156
 
------------------
157
 
 
158
 
    - The changelog view was out of order when not using the revision
159
 
      cache.
160
 
 
161
 
1.2  [04mar2008]
162
 
 
163
 
    - Michael Hudson <michael.hudson@canonical.com> has mostly taken
164
 
      over the maintenance of loggerhead.
165
 
 
166
 
    - loggerhead now has a simple test suite -- use 'nosetests' in the
167
 
      loggerhead directory to run it.
168
 
 
169
 
    - The rendering performance of pages that display large amounts of
170
 
      text was improved by a factor of 4 or so.
171
 
 
172
 
    - loggerhead no longer caches the text of the diffs between
173
 
      revisions.  It rarely helped and wasted a lot of disk space.
174
 
 
175
 
    - The layout of most pages was made more "tight" to waste less
176
 
      screen real estate, and some other UI improvements (Kent
177
 
      Gibson).
178
 
 
179
 
    - Much dead code was removed.
180
 
 
181
 
    - Loggerhead now computes the files changed between revisions only
182
 
      when it needs to know this.  This is a fairly expensive
183
 
      operation in Bazaar, and doing it less massively improves
184
 
      performance and memory usage in some situations.
185
 
 
186
 
    - Loggerhead now takes a read lock on the branch being viewed for
187
 
      the duration of each request, which improves performance
188
 
      significantly.
189
 
 
190
 
    - Loggerhead no longer uses the corruption-prone Berkely DB-backed
191
 
      shelve module for its caches, and rather (ab)uses a sqlite
192
 
      database instead.
193
 
 
194
 
    - The creation of History objects is much faster for large
195
 
      branches (Aaron Bentley).
196
 
 
197
 
    - Allow the construction of URLs using revnos and file paths as
198
 
      well as revids and fileids (bug #98826):
199
 
 
200
 
      - For changes pages, append the newest revno to display to the
201
 
        URL, like http://.../changes/<revno>
202
 
 
203
 
      - For annotate pages, append the revno to display to the URL,
204
 
        followed by the path, like http://.../annotate/<revno>/<path>
205
 
 
206
 
      - For file listing and revision pages append the revno to
207
 
        display to the URL, like http://.../files/<revno>
208
 
 
209
 
      Loggerhead still generates URLs using revision and file ids for
210
 
      the moment.
211
 
 
212
 
    - Many bugs were fixed:
213
 
 
214
 
      - Loggerhead does not escape special characters when embedding a
215
 
        revision ID in a URL (bug #88286)
216
 
 
217
 
      - Improved robustness in the face of ghosts.
218
 
 
219
 
      - Don't crash on displaying a commit with an empty message (bug
220
 
        #86247)
221
 
 
222
 
      - codebrowse fails with infinite redirections (James Henstridge,
223
 
        bug #89854)
224
 
 
225
 
      - Loggerhead fails to browse revisions that change binary files
226
 
        (James Henstridge, bug #91686)
227
 
 
228
 
      - Loggerhead atom feeds expose internal hostname (James
229
 
        Henstridge, bug #93585)
230
 
 
231
 
      - loggerhead don't like page break character (0x0C) in text
232
 
        files (bug #113313)
233
 
 
234
 
      - codebrowse source listings don't contain line number anchors
235
 
        (bug #98826)
236
 
 
237
 
      - only serve up unescaped user content with "Content-Disposition:
238
 
        attachment"
239
 
 
240
 
      - viewing the file listing consumes a lot memory (bug #116869)
241
 
 
242
 
      - loggerhead can't handle empty branches (bug #119228)
243
 
 
244
 
      - upgrading the format of a branch behind loggerhead could make
245
 
        it fail for that branch (bug #118673)
246
 
 
247
 
      - Error parsing non-ascii content (bug #117799)
248
 
 
249
 
      - Loggerhead failed on whitespace-only commit messages.
250
 
 
251
 
      - Links to diffs from within a revision do not work (bug
252
 
        #119422)
253
 
 
254
 
      - UTF-8 patches served as ISO-8859-1, fixed by served bundles as
255
 
        application/octet-stream (bug #121336)
256
 
 
257
 
      - TurboGears was turning query arguments into unicode, and bzr
258
 
        stopped accepting unicode revids (bug #175228)
259
 
 
260
 
 
261
 
1.1.1  [24jan2007]
262
 
------------------
263
 
 
264
 
    - fix broken inventory page (oops!)
265
 
 
266
 
    - fix a few rendering problems with kid and safari
267
 
 
268
 
 
269
 
1.1  [20jan2007]
270
 
----------------
271
 
 
272
 
    - new feature to compare two revisions to each other
273
 
 
274
 
    - inserted text in diffs is now blue instead of green
275
 
 
276
 
    - fixed to start and stop as a daemon now (use "-f" to run in the
277
 
      foreground), and all config is in loggerhead.conf (no need to mess with
278
 
      dev.cfg)
279
 
 
280
 
    - renamed show/hide javascript buttons to expand/collapse, and made them
281
 
      much faster
282
 
 
283
 
    - added an atom-feed link to each branch on the browse page [elliot
284
 
      murphy]
285
 
 
286
 
    - auto-publish feature for multiple branches under a single folder (see
287
 
      loggerhead.conf.example)
288
 
 
289
 
    - added the ability to share cache files per-project instead of just
290
 
      per-branch
291
 
 
292
 
    - added side-by-side diff display for the revision page (which is the
293
 
      default), with a button to switch between side-by-side and unified diff
294
 
      format
295
 
 
296
 
    - made caching use file locking, and close cleanly on shutdown
297
 
 
298
 
    - miscellaneous speed and page-size improvements
299
 
 
300
 
 
301
 
1.0  [23dec2006]
302
 
----------------
303
 
 
304
 
    - initial release
305