Forum

A User is an authenticated person, with a special user named Guest User that represents someone or something that is accessing the site that has not authenticated.

Forum Object

class Forum

A repository, a collection of documents.

Forum._id

The internal identifier of the repository object.

Create Forum

create_forum(a, b, c)
Parameters:
  • group_id (id) – group identifier
  • parent_id (id) – wiki identifier or None

Create a user.

Delete Forum

delete_forum(forum_id)
Parameters:forum_id (id) – user identifier

Delete a user.

Modify Forum

modify_forum(forum_id, **kwargs)
Parameters:
  • forum_id (id) – user identifier
  • kwargs – attribute values

Modify a user

Article Object

class Article

A repository, a collection of documents.

Article._id

The internal identifier of the repository object.

Create Article

create_file(a, b, c)
Parameters:
  • group_id (id) – group identifier
  • parent_id (id) – wiki identifier or None

Create a user.

Delete Article

delete_topic(article_id)
Parameters:article_id (id) – user identifier

Delete a user.

Modify Article

modify_topic(article_id, **kwargs)
Parameters:
  • article_id (id) – user identifier
  • kwargs – attribute values

Modify a user

Comment Object

class Comment

A repository, a collection of documents.

Comment._id

The internal identifier of the repository object.

Create Comment

create_comment(a, b, c)
Parameters:
  • group_id (id) – group identifier
  • parent_id (id) – wiki identifier or None

Create a user.

Delete Comment

delete_comment(comment_id)
Parameters:comment_id (id) – user identifier

Delete a user.

Modify Comment

modify_topic(comment_id, **kwargs)
Parameters:
  • comment_id (id) – user identifier
  • kwargs – attribute values

Modify a user

Tag Object

class Tag

A repository, a collection of documents.

Tag._id

The internal identifier of the repository object.

Create Tag

create_comment(a, b, c)
Parameters:
  • group_id (id) – group identifier
  • parent_id (id) – wiki identifier or None

Create a user.

Delete Tag

delete_comment(tag_id)
Parameters:tag_id (id) – user identifier

Delete a user.

Modify Tag

modify_topic(tag_id, **kwargs)
Parameters:
  • tag_id (id) – user identifier
  • kwargs – attribute values

Modify a user