Ejemplo n.º 1
0
 def __init__(self):
     ZModelWithAttributes.__init__(self)
     self.categories = []
     self.pingServices = []
     self.trackbacks = []
     self.tagspaceUrls = []
     self.customMetaData = {}
Ejemplo n.º 2
0
 def __init__(self):
     ZModelWithAttributes.__init__(self)
     self.categories = []
     self.pingServices = []
     self.trackbacks = []
     self.tagspaceUrls = []
     self.customMetaData = {}
Ejemplo n.º 3
0
    def __init__(self, accountDirectory):
        ZModelWithAttributes.__init__(self)

        self.accountDirectory = accountDirectory
        self.id = None
        self.apiInfo = None
        self.preferences = self._createPreferences()
Ejemplo n.º 4
0
    def __init__(self, accountDirectory):
        ZModelWithAttributes.__init__(self)

        self.accountDirectory = accountDirectory
        self.id = None
        self.apiInfo = None
        self.preferences = self._createPreferences()
Ejemplo n.º 5
0
    def __init__(self, id = None, systemId = None):
        # server side attributes such as atom feed etc. are maintained in the base class.
        ZModelWithAttributes.__init__(self)
        self._setId(id)

        # system id is an optional id that can be used to track
        # blogs, posts, categories across multiple accounts.
        # (equivalent to a "guid" with a single raven repository)
        # This id is normally assigned by the application/api user
        self.systemId = systemId
        self.debugMode = False
        self.logger = None
Ejemplo n.º 6
0
 def __init__(self):
     ZModelWithAttributes.__init__(self)
Ejemplo n.º 7
0
    def __init__(self):
        ZModelWithAttributes.__init__(self)

        self.trackbacks = []
Ejemplo n.º 8
0
 def __init__(self, pingUrl, entryUrl, title, summary):
     ZModelWithAttributes.__init__(self)
     self.setAttribute(u"ping", pingUrl)  #$NON-NLS-1$
     self.setAttribute(u"url", entryUrl)  #$NON-NLS-1$
     self.setAttribute(u"title", title)  #$NON-NLS-1$
     self.setAttribute(u"summary", summary)  #$NON-NLS-1$
Ejemplo n.º 9
0
 def __init__(self, id, localFile):
     ZModelWithAttributes.__init__(self)
     self.setAttribute(u"id", id) #$NON-NLS-1$
     self.localFile = localFile
Ejemplo n.º 10
0
 def __init__(self):
     ZModelWithAttributes.__init__(self)
Ejemplo n.º 11
0
 def __init__(self, pingUrl, entryUrl, title, summary):
     ZModelWithAttributes.__init__(self)
     self.setAttribute(u"ping", pingUrl) #$NON-NLS-1$
     self.setAttribute(u"url", entryUrl) #$NON-NLS-1$
     self.setAttribute(u"title", title) #$NON-NLS-1$
     self.setAttribute(u"summary", summary) #$NON-NLS-1$
Ejemplo n.º 12
0
 def __init__(self):
     ZModelWithAttributes.__init__(self)
     self.id = None
     self.categories = []
     self.preferences = None
     self.account = None
Ejemplo n.º 13
0
    def __init__(self):
        ZModelWithAttributes.__init__(self)

        self.trackbacks = []
Ejemplo n.º 14
0
 def __init__(self):
     ZModelWithAttributes.__init__(self)
     self.id = None
     self.categories = []
     self.preferences = None
     self.account = None
Ejemplo n.º 15
0
 def __init__(self, id, localFile):
     ZModelWithAttributes.__init__(self)
     self.setAttribute(u"id", id)  #$NON-NLS-1$
     self.localFile = localFile