source: products/SimpleBlog/branches/plone-2.1-Blogging-APIs/TrackBack.py @ 3665

Last change on this file since 3665 was 1, checked in by myroslav, 18 years ago

Building directory structure

File size: 1.2 KB
RevLine 
[1]1from Products.Archetypes.public import *
2#from Products.Archetypes.BaseContent import BaseContent
3from config import *
4
5schema = BaseSchema +  Schema((
6    StringField('url',
7                widget=StringWidget(label_msgid = 'label_url',
8                                    description_msgid = 'help_url'),
9               ),
10    StringField('blog_name',
11                widget=StringWidget(label_msgid = 'label_blog_name',
12                                    description_msgid = 'help_blog_name'),
13               ),
14    TextField('excerpt',
15               widget = RichWidget(label = "excerpt",
16                                  label_msgid = "label_excerpt",
17                                  i18n_domain = "plone")),
18
19    ))
20
21
22class TrackBack(BaseContent):
23    """Track Back Info container
24       title - title of track Back
25       url - server ping url
26       blog_name - blog-sender name
27       excerpt - simplified content text
28    """
29    schema = schema
30
31    # Override original ExtensibleMetadata method
32    # for prevent "Unauthorized" exception raicing
33    def allowDiscussion(self, allowDiscussion=None, **kw):
34        """ """
35        return None
36
37
38registerType(TrackBack) 
Note: See TracBrowser for help on using the repository browser.