Actions, Parser, Macro for using a Big Blue Button instance

BigBlueButton (http://www.bigbluebutton.org) is an open source web conferencing system for distance education.

Purpose

This plugin enables your wiki to keep session parameter and to manage meetings.

Requires

The Python API for accessing the bigbluebutton server http://pypi.python.org/pypi/bigbluebutton

pip install bigbluebutton

Usage

Example Call by using http://moinmo.in/MacroMarket/FormCreate

submit_bbb_create_meeting

Stores the definitions on a wiki sub page.

    <<FormHeader(submit_bbb_create_meeting)>>
    || Meeting Name: || <<FormText(meeting_name,maxlength=50)>> ||
    || Meeting ID || <<FormText(meeting_id,maxlength=50)>> ||
    || Moderator Passwort: || <<FormText(moderator_password,maxlength=50)>> ||
    || Attendee Passwort: || <<FormText(attendee_password,maxlength=50)>> ||
    ||<-2:> <<FormSubmit(Send)>> ||
    <<FormFooter()>>

submit_bbb_join_meeting

Lets a user join a bigbluebutton meeting.

    <<FormHeader(submit_bbb_join_meeting)>>
    || Meeting ID || <<FormText(meeting_id,maxlength=50)>> ||
    || Name: || <<FormText(name,maxlength=50)>> ||
    || Password: || <<FormText(password,maxlength=50)>> ||
    ||<-2:> <<FormSubmit(Send)>> ||
    <<FormFooter()>>

submit_bbb_close_meeting

Lets a Moderator of a meeting closing this meeting.

    <<FormHeader(submit_bbb_close_meeting)>>
    || Meeting ID || <<FormText(meeting_id,maxlength=50)>> ||
    || Moderator Password: || <<FormText(password,maxlength=50)>> ||
    ||<-2:> <<FormSubmit(Send)>> ||
    <<FormFooter()>>

submit_bbb_start_meeting

This action starts a meeting, it is called by bbb_create parser.

bbb_create

Lets a user start, join, close a meeting.

#acl YOURNAME:read,write,delete,revert All:
#format bbb_create
 responsible:: YOURNAME
 meeting_name:: The name of the meeting
 meeting_id:: The ID of the meeting
 attendee_password:: The password for attendee (viewer)
 moderator_password:: The password for moderator

bbb

Shows a list of all meetings with amount of participant and moderator

<<bbb>>

Download

Actions

Parser

Macro

Security Policy

In some setups it can be that you don't want that the parsed raw data can be shown

@copyright: 2012 MoinMoin:ReimarBauer
@license: GNU GPL, see COPYING for details.

Discussion

MoinMoin: ActionMarket/BigBlueButton (last edited 2012-06-14 12:49:45 by ReimarBauer)