~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Guillermo Gonzalez
  • Date: 2008-09-10 00:02:06 UTC
  • mto: This revision was merged to the branch mainline in revision 221.
  • Revision ID: guillo.gonzo@gmail.com-20080910000206-kt35kgrzu8y4472v
 * update NEWS and serve-branches man page 
 * refactored all reload logic into loggerhead.util.Reloader class

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
    - Added --port, --host and --prefix options to serve-branches
 
7
      script. (Martin Albisetti)
 
8
 
 
9
    - Fixed broken template for project browsing with start-loggerhead
 
10
      (Martin Albisett)
 
11
      
 
12
    - Added --reload options to restart the application when a python 
 
13
      file change. (Guillermo Gonzalez) 
 
14
 
 
15
1.6 [15Aug2008]
 
16
----------------
 
17
 
 
18
    - Download a diffs between revisions. (Martin Albisetti)
 
19
 
 
20
    - Modified templates to make loggerhead's theme easier to
 
21
      change. (Paul Hummer)
 
22
 
 
23
    - Default sqlite interface is now sqlite3. (Robert Collins)
 
24
 
 
25
    - New ninja theme sponsored by Canonical (Martin Albisetti)
 
26
 
 
27
    - Added COPYING file and clarified copyright headers (John Arbash Meinel)
 
28
 
 
29
    - Remove the .py extension requiered by the Debian Policy.
 
30
      (Jelmer Vernooij)
 
31
 
 
32
    - New startup script serve-branches will serve Loggerhead without
 
33
      the need of configuration, and allow you to browse through directories
 
34
      and branches. (Michael Hudson)
 
35
 
 
36
    - Loggerhead is no longer a TurboGears application, but rather a
 
37
      WSGI application built using Paste (see http://wsgi.org/ and
 
38
      http://pythonpaste.org/ for more about WSGI and Paste).
 
39
 
 
40
    - URLs now use revision numbers instead of revision ids (Martin Albisetti)
 
41
 
 
42
    - The scripts no longer insist on Python 2.4 -- loggerhead works
 
43
      fine with 2.5.
 
44
 
 
45
    - Bazaar as of version 1.5 has improved in performance enough that
 
46
      the revision cache no longer gave any noticeable benefit, so it
 
47
      was removed (the files-changed cache is still useful).
 
48
 
 
49
    - The templates were rewritten in Zope's TAL markup, powered by
 
50
      the simpleTAL library -- improving both the performance and
 
51
      memory consumption of rendering by a factor of around 3 for
 
52
      large pages over the old Kid templates.
 
53
 
 
54
    - Loggerhead's poorly performing text index was disabled. bzr-search
 
55
      is now used if the plugin is installed and a text index is present
 
56
      on the branch being viewed. (Martin Albisetti, Robert Collins).
 
57
 
 
58
    - Loggerhead no longer depends on bzrlib functions deprecated in
 
59
      Bazaar 1.5 and removed in 1.6 (Martin Albisetti).
 
60
 
 
61
    - The daemonization code was made more regular, fixing bugs
 
62
      #139161 ("Starting loggerhead process may not close its stdin
 
63
      and stdout properly") and #211526 ("Codebrowse log directory has
 
64
      unnecessarily permissive permissions")
 
65
 
 
66
    - Some confusion about what the 'file_id' query argument means was
 
67
      cleared up: filter_file_id now means "filter revisions to those
 
68
      that affect this file" in all views and file_id means "examine
 
69
      this file/directory" in the annotate and inventory views.
 
70
 
 
71
    - Dates are present more compactly.
 
72
 
 
73
    - The loggerhead.conf file can specify which network interface to
 
74
      bind to (Mattias Eriksson)
 
75
 
 
76
1.2.1  [06mar2008]
 
77
------------------
 
78
 
 
79
    - The changelog view was out of order when not using the revision
 
80
      cache.
 
81
 
 
82
1.2  [04mar2008]
 
83
 
 
84
    - Michael Hudson <michael.hudson@canonical.com> has mostly taken
 
85
      over the maintenance of loggerhead.
 
86
 
 
87
    - loggerhead now has a simple test suite -- use 'nosetests' in the
 
88
      loggerhead directory to run it.
 
89
 
 
90
    - The rendering performance of pages that display large amounts of
 
91
      text was improved by a factor of 4 or so.
 
92
 
 
93
    - loggerhead no longer caches the text of the diffs between
 
94
      revisions.  It rarely helped and wasted a lot of disk space.
 
95
 
 
96
    - The layout of most pages was made more "tight" to waste less
 
97
      screen real estate, and some other UI improvements (Kent
 
98
      Gibson).
 
99
 
 
100
    - Much dead code was removed.
 
101
 
 
102
    - Loggerhead now computes the files changed between revisions only
 
103
      when it needs to know this.  This is a fairly expensive
 
104
      operation in Bazaar, and doing it less massively improves
 
105
      performance and memory usage in some situations.
 
106
 
 
107
    - Loggerhead now takes a read lock on the branch being viewed for
 
108
      the duration of each request, which improves performance
 
109
      significantly.
 
110
 
 
111
    - Loggerhead no longer uses the corruption-prone Berkely DB-backed
 
112
      shelve module for its caches, and rather (ab)uses a sqlite
 
113
      database instead.
 
114
 
 
115
    - The creation of History objects is much faster for large
 
116
      branches (Aaron Bentley).
 
117
 
 
118
    - Allow the construction of URLs using revnos and file paths as
 
119
      well as revids and fileids (bug #98826):
 
120
 
 
121
      - For changes pages, append the newest revno to display to the
 
122
        URL, like http://.../changes/<revno>
 
123
 
 
124
      - For annotate pages, append the revno to display to the URL,
 
125
        followed by the path, like http://.../annotate/<revno>/<path>
 
126
 
 
127
      - For file listing and revision pages append the revno to
 
128
        display to the URL, like http://.../files/<revno>
 
129
 
 
130
      Loggerhead still generates URLs using revision and file ids for
 
131
      the moment.
 
132
 
 
133
    - Many bugs were fixed:
 
134
 
 
135
      - Loggerhead does not escape special characters when embedding a
 
136
        revision ID in a URL (bug #88286)
 
137
 
 
138
      - Improved robustness in the face of ghosts.
 
139
 
 
140
      - Don't crash on displaying a commit with an empty message (bug
 
141
        #86247)
 
142
 
 
143
      - codebrowse fails with infinite redirections (James Henstridge,
 
144
        bug #89854)
 
145
 
 
146
      - Loggerhead fails to browse revisions that change binary files
 
147
        (James Henstridge, bug #91686)
 
148
 
 
149
      - Loggerhead atom feeds expose internal hostname (James
 
150
        Henstridge, bug #93585)
 
151
 
 
152
      - loggerhead don't like page break character (0x0C) in text
 
153
        files (bug #113313)
 
154
 
 
155
      - codebrowse source listings don't contain line number anchors
 
156
        (bug #98826)
 
157
 
 
158
      - only serve up unescaped user content with "Content-Disposition:
 
159
        attachment"
 
160
 
 
161
      - viewing the file listing consumes a lot memory (bug #116869)
 
162
 
 
163
      - loggerhead can't handle empty branches (bug #119228)
 
164
 
 
165
      - upgrading the format of a branch behind loggerhead could make
 
166
        it fail for that branch (bug #118673)
 
167
 
 
168
      - Error parsing non-ascii content (bug #117799)
 
169
 
 
170
      - Loggerhead failed on whitespace-only commit messages.
 
171
 
 
172
      - Links to diffs from within a revision do not work (bug
 
173
        #119422)
 
174
 
 
175
      - UTF-8 patches served as ISO-8859-1, fixed by served bundles as
 
176
        application/octet-stream (bug #121336)
 
177
 
 
178
      - TurboGears was turning query arguments into unicode, and bzr
 
179
        stopped accepting unicode revids (bug #175228)
 
180
 
 
181
 
 
182
1.1.1  [24jan2007]
 
183
------------------
 
184
 
 
185
    - fix broken inventory page (oops!)
 
186
 
 
187
    - fix a few rendering problems with kid and safari
 
188
 
 
189
 
 
190
1.1  [20jan2007]
 
191
----------------
 
192
 
 
193
    - new feature to compare two revisions to each other
 
194
 
 
195
    - inserted text in diffs is now blue instead of green
 
196
 
 
197
    - fixed to start and stop as a daemon now (use "-f" to run in the
 
198
      foreground), and all config is in loggerhead.conf (no need to mess with
 
199
      dev.cfg)
 
200
 
 
201
    - renamed show/hide javascript buttons to expand/collapse, and made them
 
202
      much faster
 
203
 
 
204
    - added an atom-feed link to each branch on the browse page [elliot
 
205
      murphy]
 
206
 
 
207
    - auto-publish feature for multiple branches under a single folder (see
 
208
      loggerhead.conf.example)
 
209
 
 
210
    - added the ability to share cache files per-project instead of just
 
211
      per-branch
 
212
 
 
213
    - added side-by-side diff display for the revision page (which is the
 
214
      default), with a button to switch between side-by-side and unified diff
 
215
      format
 
216
 
 
217
    - made caching use file locking, and close cleanly on shutdown
 
218
 
 
219
    - miscellaneous speed and page-size improvements
 
220
 
 
221
 
 
222
1.0  [23dec2006]
 
223
----------------
 
224
 
 
225
    - initial release
 
226