Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/persistence/joke.py
blob: 8523593cf36079e369dea25ca01cccc78f694fe7 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# 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
#

from util.persistence import Persistent, PersistentProperty


class Joke(object):
  __metaclass__ = Persistent
  
  @PersistentProperty
  def id():
    '''some doc string'''
    def default(self): return 0
    def get(self): return self.__id
    def set(self, value): self.__id = value

  @PersistentProperty
  def image():
    '''the image for the joke'''
    def get(self): return self.__image
    def set(self, value): self.__image = value

  @PersistentProperty
  def image_blob():
    '''raw image data'''
    def get(self): return self.__image_blob
    def set(self, value): self.__image_blob = value
    
  @PersistentProperty
  def text():
    '''the joke question'''
    def get(self): return self.__text
    def set(self, value): self.__text = value

  @PersistentProperty
  def answer():
    '''the joke answer'''
    def get(self): return self.__answer
    def set(self, value): self.__answer = value

  @PersistentProperty
  def joker():
    '''the author of the joke'''
    def get(self): return self.__joker
    def set(self, value): self.__joker = value

  @PersistentProperty
  def joker_location():
    '''the location of the author'''
    def get(self): return self.__joker_location
    def set(self, value): self.__joker_location = value
    
  @PersistentProperty
  def joker_country():
    '''the country of the author'''
    def get(self): return self.__joker_country
    def set(self, value): self.__joker_country = value
    
  @PersistentProperty
  def show():
    '''should this joke be visible to others'''
    def default(self): return False
    def get(self): return self.__show
    def set(self, value): self.__show = value
 
 
  def test_data(self):
    #self.image = 'resources/knockknock.png'
    self.text = '''Knock, knock
Who's there ?
Alex.
Alex who?'''
    self.answer = 'Alex plain later, just let me in!'
    self.joker = 'hummingbird'
    self.joker_location = 'Cape Town'
    self.joker_country = 'South Africa'
    self.show = True
    
    return self