Package bscw :: Package api :: Package blog :: Module ap_addblognote
[hide private]

Module ap_addblognote

add a new note to a blog
   returns id of new note

API definition:

  API = (
    ('blog_id',      ASCII,    1),
    ('subject',      UNICODE,  1),
    ('body ',        UNICODE,  1),
    ('tags',         UNICODE,  0),
  )

  body should be HTML formated


API definition::

 API = (('blog_id', 'ASCII string', 1),
        ('subject', 'Unicode string', 1),
        ('body ', 'Unicode string', 1),
        ('tags', 'Unicode string', 0))

(c) Fraunhofer FIT, 2010


Version: $Rev: 21045 $

Functions [hide private]
 
param_def()
return the parameter definition
 
do_it(request, blog_id, subject, body, tags='')
see above
 
addblognote(request, blog, subject, body, tags='')
Variables [hide private]
  __package__ = None