/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 bzrlib/plugins/news_merge/parser.py

  • Committer: Martin Pool
  • Date: 2005-08-24 08:59:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050824085932-c61f1f1f1c930e13
- Add a simple UIFactory 

  The idea of this is to let a client of bzrlib set some 
  policy about how output is displayed.

  In this revision all that's done is that progress bars
  are constructed by a policy established by the application
  rather than being randomly constructed in the library 
  or passed down the calls.  This avoids progress bars
  popping up while running the test suite and cleans up
  some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2010 Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
"""Simple parser for bzr's NEWS file.
18
 
 
19
 
Simple as this is, it's a bit over-powered for news_merge's needs, which only
20
 
cares about 'bullet' and 'everything else'.
21
 
 
22
 
This module can be run as a standalone Python program; pass it a filename and
23
 
it will print the parsed form of a file (a series of 2-tuples, see
24
 
simple_parse's docstring).
25
 
"""
26
 
 
27
 
 
28
 
def simple_parse_lines(lines):
29
 
    """Same as simple_parse, but takes an iterable of strs rather than a single
30
 
    str.
31
 
    """
32
 
    return simple_parse(''.join(lines))
33
 
 
34
 
 
35
 
def simple_parse(content):
36
 
    """Returns blocks, where each block is a 2-tuple (kind, text).
37
 
    
38
 
    :kind: one of 'heading', 'release', 'section', 'empty' or 'text'.
39
 
    :text: a str, including newlines.
40
 
    """
41
 
    blocks = content.split('\n\n')
42
 
    for block in blocks:
43
 
        if block.startswith('###'):
44
 
            # First line is ###...: Top heading
45
 
            yield 'heading', block
46
 
            continue
47
 
        last_line = block.rsplit('\n', 1)[-1]
48
 
        if last_line.startswith('###'):
49
 
            # last line is ###...: 2nd-level heading
50
 
            yield 'release', block
51
 
        elif last_line.startswith('***'):
52
 
            # last line is ***...: 3rd-level heading
53
 
            yield 'section', block
54
 
        elif block.startswith('* '):
55
 
            # bullet
56
 
            yield 'bullet', block
57
 
        elif block.strip() == '':
58
 
            # empty
59
 
            yield 'empty', block
60
 
        else:
61
 
            # plain text
62
 
            yield 'text', block
63
 
 
64
 
 
65
 
if __name__ == '__main__':
66
 
    import sys
67
 
    content = open(sys.argv[1], 'rb').read()
68
 
    for result in simple_parse(content):
69
 
        print result