Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/translate-toolkit-1.3.0/translate/misc/rich.py
blob: dc770294cfc20b15bd7e51bc176877e1b0ef7879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 
# Copyright 2008 Zuza Software Foundation
# 
# This file is part of translate.
#
# translate is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# translate is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with translate; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

__all__ = ['only_strings', 'map_rich']

from translate.storage.placeables import Placeable

def map_content(f, chunk):
    """If chunk is a Placeable and it has content, we need
    to modify the content as well.

    Note that this is NOT a pure function. For that, we would
    need to copy the placeables themselves."""
    if isinstance(chunk, Placeable):
        if chunk.content is not None:
            chunk.content = map_entry(f, chunk.content)
    return chunk

def map_entry(f, chunk_seq):
    """Transform every chunk in chunk_seq with the function f,
    including the inner content of any placeables."""
    return [f(map_content(f, chunk)) for chunk in chunk_seq]

def only_strings(f):
    """A decorator to ensure that f is only applied to strings
    and not Placeables. It's used to decorate the function
    passed to map_rich."""
    def decorated_f(arg):
        if not isinstance(arg, Placeable):
            return f(arg)
        else:
            return arg
    return decorated_f

def map_rich(f, rich_string):
    """Return a new list of chunk sequences, where each chunk
    sequence has f applied to it."""
    return [map_entry(f, entry) for entry in rich_string]