Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/book.py
blob: f65b4932b968b37a7eb4046ca4cc4508160a36d8 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

import os
import gtk
import logging
from gettext import gettext as _

from sugar.activity.activity import get_bundle_path, get_activity_root

from Processing.IO_Manager import IO_Manager

logger = logging.getLogger('infoslicer')

wiki = None
custom = None

class Book(IO_Manager):
    def __init__(self, preinstalled, dirname):
        IO_Manager.__init__(self, 0)
        self.workingDir = os.path.join(get_activity_root(), dirname)

        if not os.path.exists(self.workingDir):
            os.makedirs(self.workingDir, 0777)

            for i in preinstalled:
                filepath = os.path.join(get_bundle_path(), 'Processing',
                        'demolibrary', i[1])

                logger.debug("install library: opening %s" % filepath)
                open_file = open(filepath, "r")
                contents = open_file.read()
                open_file.close()

                logger.debug("install library: saving page %s" % i[0])
                self.save_page(i[0], contents, get_images=True)
                logger.debug("install library: save successful")

        pages = self.get_pages()
        if pages:
            self.article = self.load_article(pages[0])
        else:
            self.article = Article()

class WikiBook(Book):
    def __init__(self):
        PREINSTALLED = [
            (_('Lion (from en.wikipedia.org)'),     "lion-wikipedia.dita"),
            (_('Tiger (from en.wikipedia.org)'),    "tiger-wikipedia.dita"),
            (_('Giraffe (from en.wikipedia.org)'),  "giraffe-wikipedia.dita"),
            (_('Zebra (from en.wikipedia.org)'),    "zebra-wikipedia.dita") ]
        Book.__init__(self, PREINSTALLED, 'data/book')

class CustomBook(Book):
    def __init__(self):
        PREINSTALLED = [
            (_('Giraffe'), "giraffe-blank.dita") ]
        Book.__init__(self, PREINSTALLED, 'tmp/book')

def init():
    global wiki, custom
    wiki = WikiBook()
    custom = CustomBook()