Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed a potential problem when there is a large number of users #49

Merged
merged 1 commit into from Oct 30, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion bbb-tool/api/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
</parent>

<name>BigBlueButton API</name>
Expand Down
2 changes: 1 addition & 1 deletion bbb-tool/assembly/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
</parent>

<name>BigBlueButton Assembly</name>
Expand Down
2 changes: 1 addition & 1 deletion bbb-tool/bundle/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
</parent>

<name>BigBlueButton Bundles</name>
Expand Down
2 changes: 1 addition & 1 deletion bbb-tool/components/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
</parent>

<name>BigBlueButton Component Pack</name>
Expand Down
2 changes: 1 addition & 1 deletion bbb-tool/impl/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
</parent>

<name>BigBlueButton Implementation</name>
Expand Down
Expand Up @@ -468,6 +468,13 @@ public void checkJoinMeetingPreConditions(BBBMeeting meeting)
if( !tmpMeta.containsKey("contextActivity")) tmpMeta.put("contextActivity", meeting.getName() );
if( !tmpMeta.containsKey("contextActivityDescription")) tmpMeta.put("contextActivityDescription", meeting.getRecordingDescription() );

/*
* //////////////////////////////////////////////////////////////////////////////////////////////////
* //This implementation will work only for a small number of users enrolled (teachers or students)
* //this is beacuse the long a GET call can be is limited by the configuration of the Webserver
* //////////////////////////////////////////////////////////////////////////////////////////////////
*

Map<String, User> attendees = new HashMap<String, User>();
Map<String, User> moderators = new HashMap<String, User>();
List<Participant> participants = meeting.getParticipants();
Expand Down Expand Up @@ -502,6 +509,7 @@ public void checkJoinMeetingPreConditions(BBBMeeting meeting)
tmpMeta.put("meetingAttendee", meetingAttendee);

}
*/
// Metadata ends


Expand Down
4 changes: 2 additions & 2 deletions bbb-tool/pom.xml
Expand Up @@ -14,7 +14,7 @@
<name>BigBlueButton</name>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
<description>Sakai BigBlueButton integrates a Sakai instance with a BigBlueButton server, allowing Sakai users to easily create and join BigBlueButton meetings from a Sakai worksite and access playback recording.</description>

<url>http://confluence.sakaiproject.org/confluence/display/BBB</url>
Expand Down Expand Up @@ -65,7 +65,7 @@
<!-- Build tracking -->
<maven.build.timestamp.format>yyMMdd_HHmm</maven.build.timestamp.format>
<buildTimestamp>${maven.build.timestamp}</buildTimestamp>
<buildSerial>20120927_134500</buildSerial>
<buildSerial>20121030_112500</buildSerial>
<!-- Regular properties -->
<!-- entitybroker.version can be set to any version from 1.3.9 to 1.3.20,
by default it has been set up to 1.3.19, the one used with Sakai 2.8.2 -->
Expand Down
2 changes: 1 addition & 1 deletion bbb-tool/tool/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.sakaiproject.bbb</groupId>
<artifactId>bbb</artifactId>
<version>1.0.7-rc3</version>
<version>1.0.7-rc4</version>
</parent>

<name>BigBlueButton Tool</name>
Expand Down