Show More
@@ -217,11 +217,9 b' class gnuarch_source(converter_source, c' | |||||
217 | return changes, copies |
|
217 | return changes, copies | |
218 |
|
218 | |||
219 | def _parsecatlog(self, data, rev): |
|
219 | def _parsecatlog(self, data, rev): | |
|
220 | readingsummary = False | |||
220 | for l in data: |
|
221 | for l in data: | |
221 | l = l.strip() |
|
222 | l = l.strip() | |
222 | if l.startswith('Summary:'): |
|
|||
223 | self.changes[rev].summary = l[len('Summary: '):] |
|
|||
224 |
|
||||
225 | if l.startswith('Standard-date:'): |
|
223 | if l.startswith('Standard-date:'): | |
226 | date = l[len('Standard-date: '):] |
|
224 | date = l[len('Standard-date: '):] | |
227 | strdate = util.strdate(date, '%Y-%m-%d %H:%M:%S') |
|
225 | strdate = util.strdate(date, '%Y-%m-%d %H:%M:%S') | |
@@ -230,6 +228,12 b' class gnuarch_source(converter_source, c' | |||||
230 | if l.startswith('Creator:'): |
|
228 | if l.startswith('Creator:'): | |
231 | self.changes[rev].author = l[len('Creator: '):] |
|
229 | self.changes[rev].author = l[len('Creator: '):] | |
232 |
|
230 | |||
|
231 | if not readingsummary and l.startswith('Summary:'): | |||
|
232 | readingsummary = True | |||
|
233 | self.changes[rev].summary = l[len('Summary: '):] | |||
|
234 | elif not l.startswith('Keywords:'): | |||
|
235 | self.changes[rev].summary += '\n%s' % l | |||
|
236 | ||||
233 | def _parsedelta(self, data, rev): |
|
237 | def _parsedelta(self, data, rev): | |
234 | for l in data: |
|
238 | for l in data: | |
235 | l = l.strip() |
|
239 | l = l.strip() |
General Comments 0
You need to be logged in to leave comments.
Login now