Package bscw ::
Package api ::
Package blog ::
Module ap_addblogcomment
|
|
Module ap_addblogcomment
add a new comment to note in a blog
returns id of new comment
API definition:
API = (
('note_id', ASCII, 1),
('body ', UNICODE, 1),
)
body should be HTML formated
API definition::
API = (('note_id', 'ASCII string', 1),
('body ', 'Unicode string', 1))
(c) Fraunhofer FIT, 2010
|
param_def()
return the parameter definition |
|
|
|
do_it(request,
note_id,
body)
see above |
|
|
|
addblogcomment(request,
blog,
note,
subject,
body) |
|
|