canvas_webex 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +19 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +661 -0
- data/README.md +28 -0
- data/Rakefile +7 -0
- data/app/models/cisco_webex_conference.rb +102 -0
- data/app/views/plugins/_webex_settings.html.erb +34 -0
- data/canvas_webex.gemspec +26 -0
- data/lib/canvas/plugins/cisco_webex.rb +47 -0
- data/lib/canvas/plugins/validators/cisco_webex_validator.rb +77 -0
- data/lib/canvas_webex.rb +60 -0
- data/lib/canvas_webex/meeting.rb +84 -0
- data/lib/canvas_webex/service.rb +120 -0
- data/lib/canvas_webex/version.rb +22 -0
- data/spec/fixtures/create_meeting.xml +22 -0
- data/spec/fixtures/get_meeting.xml +129 -0
- data/spec/fixtures/host_meeting_url.xml +18 -0
- data/spec/fixtures/join_meeting_url.xml +21 -0
- data/spec/fixtures/meeting_list.xml +374 -0
- data/spec/fixtures/recording_list.xml +57 -0
- data/spec/lib/canvas_webex/meeting_spec.rb +31 -0
- data/spec/lib/canvas_webex/service_spec.rb +48 -0
- data/spec/spec_helper.rb +42 -0
- metadata +161 -0
@@ -0,0 +1,120 @@
|
|
1
|
+
module CanvasWebex
|
2
|
+
class Service
|
3
|
+
attr_reader :webex_id, :password, :site_id, :site_name, :partner_id, :status
|
4
|
+
|
5
|
+
def initialize(webex_id, password, site_id, site_name, partner_id)
|
6
|
+
@webex_id, @password, @site_id, @site_name, @partner_id = [webex_id, password, site_id, site_name, partner_id]
|
7
|
+
end
|
8
|
+
|
9
|
+
def list_summary_meetings
|
10
|
+
body = xml_request do |xml|
|
11
|
+
xml.bodyContent('xsi:type' => 'java:com.webex.service.binding.meeting.LstsummaryMeeting'){
|
12
|
+
xml.listControl{
|
13
|
+
xml.startFrom 1
|
14
|
+
xml.listMethod 'OR'
|
15
|
+
}
|
16
|
+
xml.order{
|
17
|
+
xml.orderAD 'ASC'
|
18
|
+
xml.orderBy 'STARTTIME'
|
19
|
+
xml.orderAD 'ASC'
|
20
|
+
xml.orderBy 'CONFNAME'
|
21
|
+
}
|
22
|
+
}
|
23
|
+
end
|
24
|
+
request(body)
|
25
|
+
end
|
26
|
+
|
27
|
+
def create_meeting(confName, options = {})
|
28
|
+
body = xml_request do |xml|
|
29
|
+
xml.bodyContent('xsi:type' =>'java:com.webex.service.binding.meeting.CreateMeeting'){
|
30
|
+
xml.metaData{
|
31
|
+
xml.confName confName
|
32
|
+
}
|
33
|
+
xml.schedule{
|
34
|
+
xml.startDate
|
35
|
+
xml.duration(options[:duration].to_i)
|
36
|
+
}
|
37
|
+
}
|
38
|
+
end
|
39
|
+
request(body)
|
40
|
+
end
|
41
|
+
|
42
|
+
def host_meeting_url(meeting_key, email)
|
43
|
+
body = xml_request(email) do |xml|
|
44
|
+
xml.bodyContent('xsi:type' => 'java:com.webex.service.binding.meeting.GethosturlMeeting'){
|
45
|
+
xml.meetingKey meeting_key
|
46
|
+
}
|
47
|
+
end
|
48
|
+
request(body)
|
49
|
+
end
|
50
|
+
|
51
|
+
def join_meeting_url(meeting_key, email)
|
52
|
+
body = xml_request(email) do |xml|
|
53
|
+
xml.bodyContent('xsi:type' => 'java:com.webex.service.binding.meeting.GetjoinurlMeeting'){
|
54
|
+
xml.meetingKey meeting_key
|
55
|
+
}
|
56
|
+
end
|
57
|
+
request(body)
|
58
|
+
end
|
59
|
+
|
60
|
+
def get_meeting(meeting_key)
|
61
|
+
body = xml_request do |xml|
|
62
|
+
xml.bodyContent('xsi:type' => 'java:com.webex.service.binding.meeting.GetMeeting'){
|
63
|
+
xml.meetingKey meeting_key
|
64
|
+
}
|
65
|
+
end
|
66
|
+
request(body)
|
67
|
+
end
|
68
|
+
|
69
|
+
def list_recordings(meeting_key)
|
70
|
+
body = xml_request do |xml|
|
71
|
+
xml.bodyContent('xsi:type' => 'java:com.webex.service.binding.ep.LstRecording'){
|
72
|
+
xml.listControl{
|
73
|
+
xml.startFrom 0
|
74
|
+
}
|
75
|
+
xml.sessionKey meeting_key
|
76
|
+
xml.hostWebExID @webex_id
|
77
|
+
xml.returnSessionDetails 'true'
|
78
|
+
}
|
79
|
+
end
|
80
|
+
request(body)
|
81
|
+
end
|
82
|
+
|
83
|
+
|
84
|
+
def xml_request(email = nil)
|
85
|
+
Nokogiri::XML::Builder.new(:encoding => 'UTF-8') do |xml|
|
86
|
+
xml.message('xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
|
87
|
+
'xmlns:serv' => "http://www.webex.com/schemas/2002/06/service",
|
88
|
+
'xsi:schemaLocation' => "http://www.webex.com/schemas/2002/06/service"){
|
89
|
+
xml.parent.namespace = xml.parent.namespace_definitions.find{|ns|ns.prefix=="serv"}
|
90
|
+
xml.header{
|
91
|
+
xml.parent.namespace = xml.parent.namespace_definitions.first
|
92
|
+
xml.securityContext {
|
93
|
+
xml.webExID @webex_id
|
94
|
+
xml.password @password
|
95
|
+
xml.siteID @site_id
|
96
|
+
xml.partnerID @partner_id if !!@partner_id
|
97
|
+
xml.email email if !!email
|
98
|
+
}
|
99
|
+
}
|
100
|
+
xml.body{
|
101
|
+
xml.parent.namespace = xml.parent.namespace_definitions.first
|
102
|
+
yield xml
|
103
|
+
}
|
104
|
+
}
|
105
|
+
end.to_xml
|
106
|
+
end
|
107
|
+
|
108
|
+
def request(body)
|
109
|
+
uri = URI.parse("https://#{@site_name}.webex.com")
|
110
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
111
|
+
http.use_ssl = true
|
112
|
+
request = Net::HTTP::Post.new("/WBXService/XMLService")
|
113
|
+
request['Content-Type'] = 'text/xml;charset=UTF-8'
|
114
|
+
request.body = body
|
115
|
+
xml = Nokogiri::XML(http.request(request).body).remove_namespaces!
|
116
|
+
xml.at_xpath('/message/header/response/result').try(:text) == 'SUCCESS' && xml.at_xpath('/message/body/bodyContent')
|
117
|
+
end
|
118
|
+
|
119
|
+
end
|
120
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2012 Instructure, Inc.
|
3
|
+
#
|
4
|
+
# This file is part of Canvas.
|
5
|
+
#
|
6
|
+
# Canvas is free software: you can redistribute it and/or modify it under
|
7
|
+
# the terms of the GNU Affero General Public License as published by the Free
|
8
|
+
# Software Foundation, version 3 of the License.
|
9
|
+
#
|
10
|
+
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
|
11
|
+
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
12
|
+
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
13
|
+
# details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Affero General Public License along
|
16
|
+
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
#
|
18
|
+
|
19
|
+
module CanvasWebex
|
20
|
+
VERSION = "0.0.1"
|
21
|
+
end
|
22
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
|
3
|
+
xmlns:com="http://www.webex.com/schemas/2002/06/common"
|
4
|
+
xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting"
|
5
|
+
xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
|
6
|
+
<serv:header>
|
7
|
+
<serv:response>
|
8
|
+
<serv:result>SUCCESS</serv:result>
|
9
|
+
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
|
10
|
+
</serv:response>
|
11
|
+
</serv:header>
|
12
|
+
<serv:body>
|
13
|
+
<serv:bodyContent xsi:type="meet:createMeetingResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
14
|
+
<meet:meetingkey>807833538</meet:meetingkey>
|
15
|
+
<meet:iCalendarURL>
|
16
|
+
<serv:host>https://instructure.webex.com/instructure/j.php?ED=237482992&UID=496574192&ICS=MIFH&ST=1</serv:host>
|
17
|
+
<serv:attendee>https://instructure.webex.com/instructure/j.php?ED=237482992&UID=496574192&ICS=MIFA&ST=1</serv:attendee>
|
18
|
+
</meet:iCalendarURL>
|
19
|
+
<meet:guestToken>53fb4f65b2e53852813cc8c6c976e49a</meet:guestToken>
|
20
|
+
</serv:bodyContent>
|
21
|
+
</serv:body>
|
22
|
+
</serv:message>
|
@@ -0,0 +1,129 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
|
3
|
+
xmlns:com="http://www.webex.com/schemas/2002/06/common"
|
4
|
+
xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting"
|
5
|
+
xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
|
6
|
+
<serv:header>
|
7
|
+
<serv:response>
|
8
|
+
<serv:result>SUCCESS</serv:result>
|
9
|
+
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
|
10
|
+
</serv:response>
|
11
|
+
</serv:header>
|
12
|
+
<serv:body>
|
13
|
+
<serv:bodyContent xsi:type="meet:getMeetingResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
14
|
+
<meet:accessControl>
|
15
|
+
<meet:listToPublic>false</meet:listToPublic>
|
16
|
+
<meet:isPublic>false</meet:isPublic>
|
17
|
+
<meet:meetingPassword></meet:meetingPassword>
|
18
|
+
</meet:accessControl>
|
19
|
+
<meet:metaData>
|
20
|
+
<meet:confName>test</meet:confName>
|
21
|
+
<meet:meetingType>564</meet:meetingType>
|
22
|
+
<meet:invitation></meet:invitation>
|
23
|
+
<meet:isInternal>false</meet:isInternal>
|
24
|
+
</meet:metaData>
|
25
|
+
<meet:participants>
|
26
|
+
<meet:maxUserNumber>4</meet:maxUserNumber>
|
27
|
+
<meet:attendees/>
|
28
|
+
</meet:participants>
|
29
|
+
<meet:enableOptions>
|
30
|
+
<meet:chat>true</meet:chat>
|
31
|
+
<meet:poll>true</meet:poll>
|
32
|
+
<meet:audioVideo>true</meet:audioVideo>
|
33
|
+
<meet:attendeeList>false</meet:attendeeList>
|
34
|
+
<meet:fileShare>true</meet:fileShare>
|
35
|
+
<meet:presentation>true</meet:presentation>
|
36
|
+
<meet:applicationShare>true</meet:applicationShare>
|
37
|
+
<meet:desktopShare>true</meet:desktopShare>
|
38
|
+
<meet:webTour>true</meet:webTour>
|
39
|
+
<meet:meetingRecord>true</meet:meetingRecord>
|
40
|
+
<meet:annotation>false</meet:annotation>
|
41
|
+
<meet:importDocument>false</meet:importDocument>
|
42
|
+
<meet:saveDocument>false</meet:saveDocument>
|
43
|
+
<meet:printDocument>false</meet:printDocument>
|
44
|
+
<meet:pointer>false</meet:pointer>
|
45
|
+
<meet:switchPage>false</meet:switchPage>
|
46
|
+
<meet:fullScreen>false</meet:fullScreen>
|
47
|
+
<meet:thumbnail>false</meet:thumbnail>
|
48
|
+
<meet:zoom>false</meet:zoom>
|
49
|
+
<meet:copyPage>false</meet:copyPage>
|
50
|
+
<meet:rcAppShare>true</meet:rcAppShare>
|
51
|
+
<meet:rcDesktopShare>true</meet:rcDesktopShare>
|
52
|
+
<meet:rcWebTour>true</meet:rcWebTour>
|
53
|
+
<meet:javaClient>false</meet:javaClient>
|
54
|
+
<meet:nativeClient>false</meet:nativeClient>
|
55
|
+
<meet:attendeeRecordMeeting>false</meet:attendeeRecordMeeting>
|
56
|
+
<meet:voip>true</meet:voip>
|
57
|
+
<meet:faxIntoMeeting>false</meet:faxIntoMeeting>
|
58
|
+
<meet:enableReg>false</meet:enableReg>
|
59
|
+
<meet:supportQandA>true</meet:supportQandA>
|
60
|
+
<meet:supportFeedback>true</meet:supportFeedback>
|
61
|
+
<meet:supportBreakoutSessions>false</meet:supportBreakoutSessions>
|
62
|
+
<meet:supportPanelists>false</meet:supportPanelists>
|
63
|
+
<meet:supportRemoteComputer>false</meet:supportRemoteComputer>
|
64
|
+
<meet:supportShareWebContent>true</meet:supportShareWebContent>
|
65
|
+
<meet:supportUCFWebPages>false</meet:supportUCFWebPages>
|
66
|
+
<meet:supportUCFRichMedia>false</meet:supportUCFRichMedia>
|
67
|
+
<meet:autoDeleteAfterMeetingEnd>true</meet:autoDeleteAfterMeetingEnd>
|
68
|
+
<meet:viewAnyDoc>false</meet:viewAnyDoc>
|
69
|
+
<meet:viewAnyPage>false</meet:viewAnyPage>
|
70
|
+
<meet:allowContactPrivate>false</meet:allowContactPrivate>
|
71
|
+
<meet:chatHost>false</meet:chatHost>
|
72
|
+
<meet:chatPresenter>false</meet:chatPresenter>
|
73
|
+
<meet:chatAllAttendees>false</meet:chatAllAttendees>
|
74
|
+
<meet:multiVideo>false</meet:multiVideo>
|
75
|
+
<meet:notes>true</meet:notes>
|
76
|
+
<meet:closedCaptions>false</meet:closedCaptions>
|
77
|
+
<meet:singleNote>false</meet:singleNote>
|
78
|
+
<meet:sendFeedback>false</meet:sendFeedback>
|
79
|
+
<meet:displayQuickStartHost>true</meet:displayQuickStartHost>
|
80
|
+
<meet:displayQuickStartAttendees>false</meet:displayQuickStartAttendees>
|
81
|
+
<meet:supportE2E>false</meet:supportE2E>
|
82
|
+
<meet:supportPKI>false</meet:supportPKI>
|
83
|
+
<meet:HQvideo>false</meet:HQvideo>
|
84
|
+
<meet:HDvideo>false</meet:HDvideo>
|
85
|
+
<meet:viewVideoThumbs>true</meet:viewVideoThumbs>
|
86
|
+
</meet:enableOptions>
|
87
|
+
<meet:schedule>
|
88
|
+
<meet:startDate>10/22/2013 10:59:19</meet:startDate>
|
89
|
+
<meet:timeZoneID>4</meet:timeZoneID>
|
90
|
+
<meet:timeZone>GMT-08:00, Pacific (San Jose)</meet:timeZone>
|
91
|
+
<meet:duration>60</meet:duration>
|
92
|
+
<meet:openTime>0</meet:openTime>
|
93
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
94
|
+
<meet:showFileStartMode>false</meet:showFileStartMode>
|
95
|
+
<meet:showFileContPlayFlag>false</meet:showFileContPlayFlag>
|
96
|
+
<meet:showFileInterVal>0</meet:showFileInterVal>
|
97
|
+
<meet:entryExitTone>0</meet:entryExitTone>
|
98
|
+
<meet:extNotifyTime>0</meet:extNotifyTime>
|
99
|
+
<meet:joinTeleconfBeforeHost>false</meet:joinTeleconfBeforeHost>
|
100
|
+
<meet:firstAttendeeAsPresenter>false</meet:firstAttendeeAsPresenter>
|
101
|
+
</meet:schedule>
|
102
|
+
<meet:telephony>
|
103
|
+
<meet:telephonySupport>NONE</meet:telephonySupport>
|
104
|
+
</meet:telephony>
|
105
|
+
<meet:tracking/>
|
106
|
+
<meet:repeat>
|
107
|
+
<meet:repeatType>NO_REPEAT</meet:repeatType>
|
108
|
+
</meet:repeat>
|
109
|
+
<meet:remind/>
|
110
|
+
<meet:attendeeOptions>
|
111
|
+
<meet:request>false</meet:request>
|
112
|
+
<meet:registration>false</meet:registration>
|
113
|
+
<meet:auto>false</meet:auto>
|
114
|
+
<meet:participantLimit>0</meet:participantLimit>
|
115
|
+
<meet:excludePassword>false</meet:excludePassword>
|
116
|
+
<meet:joinRequiresAccount>false</meet:joinRequiresAccount>
|
117
|
+
</meet:attendeeOptions>
|
118
|
+
<meet:meetingkey>807833538</meet:meetingkey>
|
119
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
120
|
+
<meet:hostJoined>false</meet:hostJoined>
|
121
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
122
|
+
<meet:telePresence>false</meet:telePresence>
|
123
|
+
<meet:hostKey>744277</meet:hostKey>
|
124
|
+
<meet:eventID>237482992</meet:eventID>
|
125
|
+
<meet:guestToken>53fb4f65b2e53852813cc8c6c976e49a</meet:guestToken>
|
126
|
+
<meet:hostType>1019001</meet:hostType>
|
127
|
+
</serv:bodyContent>
|
128
|
+
</serv:body>
|
129
|
+
</serv:message>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
|
3
|
+
xmlns:com="http://www.webex.com/schemas/2002/06/common"
|
4
|
+
xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting"
|
5
|
+
xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
|
6
|
+
<serv:header>
|
7
|
+
<serv:response>
|
8
|
+
<serv:result>SUCCESS</serv:result>
|
9
|
+
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
|
10
|
+
</serv:response>
|
11
|
+
</serv:header>
|
12
|
+
<serv:body>
|
13
|
+
<serv:bodyContent xsi:type="meet:gethosturlMeetingResponse"
|
14
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
15
|
+
<meet:hostMeetingURL>https://instructure.webex.com/instructure/p.php?AT=LI&WID=oxana&TK=73408e679d3219e2e28c8dd602e28f22e0499fc872cf35c919e3e9265e63c639&MU=https%3A%2F%2Finstructure.webex.com%2Finstructure%2Fm.php%3FAT%3DHM%26MK%3D807833538%26Rnd%3D0.749232360055296</meet:hostMeetingURL>
|
16
|
+
</serv:bodyContent>
|
17
|
+
</serv:body>
|
18
|
+
</serv:message>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
|
3
|
+
xmlns:com="http://www.webex.com/schemas/2002/06/common"
|
4
|
+
xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting"
|
5
|
+
xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
|
6
|
+
<serv:header>
|
7
|
+
<serv:response>
|
8
|
+
<serv:result>SUCCESS</serv:result>
|
9
|
+
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
|
10
|
+
</serv:response>
|
11
|
+
</serv:header>
|
12
|
+
<serv:body>
|
13
|
+
<serv:bodyContent xsi:type="meet:getjoinurlMeetingResponse"
|
14
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
15
|
+
<meet:joinMeetingURL>https://instructure.webex.com/instructure/e.php?AT=SI&MK=807833538
|
16
|
+
</meet:joinMeetingURL>
|
17
|
+
<meet:inviteMeetingURL>https://instructure.webex.com/instructure/j.php?ED=237482992&UID=0&RT=MiM0
|
18
|
+
</meet:inviteMeetingURL>
|
19
|
+
</serv:bodyContent>
|
20
|
+
</serv:body>
|
21
|
+
</serv:message>
|
@@ -0,0 +1,374 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<serv:message xmlns:serv="http://www.webex.com/schemas/2002/06/service"
|
3
|
+
xmlns:com="http://www.webex.com/schemas/2002/06/common"
|
4
|
+
xmlns:meet="http://www.webex.com/schemas/2002/06/service/meeting"
|
5
|
+
xmlns:att="http://www.webex.com/schemas/2002/06/service/attendee">
|
6
|
+
<serv:header>
|
7
|
+
<serv:response>
|
8
|
+
<serv:result>SUCCESS</serv:result>
|
9
|
+
<serv:gsbStatus>PRIMARY</serv:gsbStatus>
|
10
|
+
</serv:response>
|
11
|
+
</serv:header>
|
12
|
+
<serv:body>
|
13
|
+
<serv:bodyContent xsi:type="meet:lstsummaryMeetingResponse"
|
14
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
15
|
+
<meet:meeting>
|
16
|
+
<meet:meetingKey>805510316</meet:meetingKey>
|
17
|
+
<meet:confName>KT Discussion: Liferay Custom Feature</meet:confName>
|
18
|
+
<meet:meetingType>564</meet:meetingType>
|
19
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
20
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
21
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
22
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
23
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
24
|
+
<meet:startDate>05/08/2013 11:00:00</meet:startDate>
|
25
|
+
<meet:duration>120</meet:duration>
|
26
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
27
|
+
<meet:hostJoined>false</meet:hostJoined>
|
28
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
29
|
+
<meet:telePresence>false</meet:telePresence>
|
30
|
+
</meet:meeting>
|
31
|
+
<meet:meeting>
|
32
|
+
<meet:meetingKey>803069111</meet:meetingKey>
|
33
|
+
<meet:confName>Custom Community Recognition and Communication Portlets</meet:confName>
|
34
|
+
<meet:meetingType>564</meet:meetingType>
|
35
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
36
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
37
|
+
<meet:timeZoneID>4</meet:timeZoneID>
|
38
|
+
<meet:timeZone>GMT-07:00, Pacific (San Francisco)</meet:timeZone>
|
39
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
40
|
+
<meet:startDate>06/24/2013 01:00:00</meet:startDate>
|
41
|
+
<meet:duration>60</meet:duration>
|
42
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
43
|
+
<meet:hostJoined>false</meet:hostJoined>
|
44
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
45
|
+
<meet:telePresence>false</meet:telePresence>
|
46
|
+
</meet:meeting>
|
47
|
+
<meet:meeting>
|
48
|
+
<meet:meetingKey>800345685</meet:meetingKey>
|
49
|
+
<meet:confName>Daily Stand-Up</meet:confName>
|
50
|
+
<meet:meetingType>564</meet:meetingType>
|
51
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
52
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
53
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
54
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
55
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
56
|
+
<meet:startDate>07/02/2013 16:00:00</meet:startDate>
|
57
|
+
<meet:duration>15</meet:duration>
|
58
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
59
|
+
<meet:hostJoined>false</meet:hostJoined>
|
60
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
61
|
+
<meet:telePresence>false</meet:telePresence>
|
62
|
+
</meet:meeting>
|
63
|
+
<meet:meeting>
|
64
|
+
<meet:meetingKey>805758645</meet:meetingKey>
|
65
|
+
<meet:confName>Daily Stand -Up</meet:confName>
|
66
|
+
<meet:meetingType>564</meet:meetingType>
|
67
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
68
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
69
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
70
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
71
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
72
|
+
<meet:startDate>07/09/2013 16:00:00</meet:startDate>
|
73
|
+
<meet:duration>15</meet:duration>
|
74
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
75
|
+
<meet:hostJoined>false</meet:hostJoined>
|
76
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
77
|
+
<meet:telePresence>false</meet:telePresence>
|
78
|
+
</meet:meeting>
|
79
|
+
<meet:meeting>
|
80
|
+
<meet:meetingKey>806204177</meet:meetingKey>
|
81
|
+
<meet:confName>Daily Stand-up</meet:confName>
|
82
|
+
<meet:meetingType>564</meet:meetingType>
|
83
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
84
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
85
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
86
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
87
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
88
|
+
<meet:startDate>07/10/2013 16:00:00</meet:startDate>
|
89
|
+
<meet:duration>15</meet:duration>
|
90
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
91
|
+
<meet:hostJoined>false</meet:hostJoined>
|
92
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
93
|
+
<meet:telePresence>false</meet:telePresence>
|
94
|
+
</meet:meeting>
|
95
|
+
<meet:meeting>
|
96
|
+
<meet:meetingKey>806882731</meet:meetingKey>
|
97
|
+
<meet:confName>Daily Stand-up</meet:confName>
|
98
|
+
<meet:meetingType>564</meet:meetingType>
|
99
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
100
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
101
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
102
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
103
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
104
|
+
<meet:startDate>07/10/2013 16:00:00</meet:startDate>
|
105
|
+
<meet:duration>15</meet:duration>
|
106
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
107
|
+
<meet:hostJoined>false</meet:hostJoined>
|
108
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
109
|
+
<meet:telePresence>false</meet:telePresence>
|
110
|
+
</meet:meeting>
|
111
|
+
<meet:meeting>
|
112
|
+
<meet:meetingKey>800982917</meet:meetingKey>
|
113
|
+
<meet:confName>Daily Stand -Up</meet:confName>
|
114
|
+
<meet:meetingType>564</meet:meetingType>
|
115
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
116
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
117
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
118
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
119
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
120
|
+
<meet:startDate>07/11/2013 16:00:00</meet:startDate>
|
121
|
+
<meet:duration>15</meet:duration>
|
122
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
123
|
+
<meet:hostJoined>false</meet:hostJoined>
|
124
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
125
|
+
<meet:telePresence>false</meet:telePresence>
|
126
|
+
</meet:meeting>
|
127
|
+
<meet:meeting>
|
128
|
+
<meet:meetingKey>807385192</meet:meetingKey>
|
129
|
+
<meet:confName>Daily Stand - Up</meet:confName>
|
130
|
+
<meet:meetingType>564</meet:meetingType>
|
131
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
132
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
133
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
134
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
135
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
136
|
+
<meet:startDate>07/12/2013 04:00:00</meet:startDate>
|
137
|
+
<meet:duration>15</meet:duration>
|
138
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
139
|
+
<meet:hostJoined>false</meet:hostJoined>
|
140
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
141
|
+
<meet:telePresence>false</meet:telePresence>
|
142
|
+
</meet:meeting>
|
143
|
+
<meet:meeting>
|
144
|
+
<meet:meetingKey>809835377</meet:meetingKey>
|
145
|
+
<meet:confName>Check Point ( Community project)</meet:confName>
|
146
|
+
<meet:meetingType>564</meet:meetingType>
|
147
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
148
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
149
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
150
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
151
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
152
|
+
<meet:startDate>07/15/2013 14:00:00</meet:startDate>
|
153
|
+
<meet:duration>30</meet:duration>
|
154
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
155
|
+
<meet:hostJoined>false</meet:hostJoined>
|
156
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
157
|
+
<meet:telePresence>false</meet:telePresence>
|
158
|
+
</meet:meeting>
|
159
|
+
<meet:meeting>
|
160
|
+
<meet:meetingKey>800702897</meet:meetingKey>
|
161
|
+
<meet:confName>Daily Stand-Up</meet:confName>
|
162
|
+
<meet:meetingType>564</meet:meetingType>
|
163
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
164
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
165
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
166
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
167
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
168
|
+
<meet:startDate>07/15/2013 16:00:00</meet:startDate>
|
169
|
+
<meet:duration>15</meet:duration>
|
170
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
171
|
+
<meet:hostJoined>false</meet:hostJoined>
|
172
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
173
|
+
<meet:telePresence>false</meet:telePresence>
|
174
|
+
</meet:meeting>
|
175
|
+
<meet:meeting>
|
176
|
+
<meet:meetingKey>805868396</meet:meetingKey>
|
177
|
+
<meet:confName>Daily Stand - Up</meet:confName>
|
178
|
+
<meet:meetingType>564</meet:meetingType>
|
179
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
180
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
181
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
182
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
183
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
184
|
+
<meet:startDate>07/16/2013 16:00:00</meet:startDate>
|
185
|
+
<meet:duration>15</meet:duration>
|
186
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
187
|
+
<meet:hostJoined>false</meet:hostJoined>
|
188
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
189
|
+
<meet:telePresence>false</meet:telePresence>
|
190
|
+
</meet:meeting>
|
191
|
+
<meet:meeting>
|
192
|
+
<meet:meetingKey>806275562</meet:meetingKey>
|
193
|
+
<meet:confName>Daily Stand-Up</meet:confName>
|
194
|
+
<meet:meetingType>564</meet:meetingType>
|
195
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
196
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
197
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
198
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
199
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
200
|
+
<meet:startDate>07/17/2013 16:00:00</meet:startDate>
|
201
|
+
<meet:duration>15</meet:duration>
|
202
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
203
|
+
<meet:hostJoined>false</meet:hostJoined>
|
204
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
205
|
+
<meet:telePresence>false</meet:telePresence>
|
206
|
+
</meet:meeting>
|
207
|
+
<meet:meeting>
|
208
|
+
<meet:meetingKey>808348445</meet:meetingKey>
|
209
|
+
<meet:confName>Daily Stand-Up</meet:confName>
|
210
|
+
<meet:meetingType>564</meet:meetingType>
|
211
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
212
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
213
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
214
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
215
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
216
|
+
<meet:startDate>07/19/2013 16:00:00</meet:startDate>
|
217
|
+
<meet:duration>15</meet:duration>
|
218
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
219
|
+
<meet:hostJoined>false</meet:hostJoined>
|
220
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
221
|
+
<meet:telePresence>false</meet:telePresence>
|
222
|
+
</meet:meeting>
|
223
|
+
<meet:meeting>
|
224
|
+
<meet:meetingKey>805846241</meet:meetingKey>
|
225
|
+
<meet:confName>CAT5-Lab Demo</meet:confName>
|
226
|
+
<meet:meetingType>564</meet:meetingType>
|
227
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
228
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
229
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
230
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
231
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
232
|
+
<meet:startDate>08/17/2013 14:00:00</meet:startDate>
|
233
|
+
<meet:duration>60</meet:duration>
|
234
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
235
|
+
<meet:hostJoined>false</meet:hostJoined>
|
236
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
237
|
+
<meet:telePresence>false</meet:telePresence>
|
238
|
+
</meet:meeting>
|
239
|
+
<meet:meeting>
|
240
|
+
<meet:meetingKey>804265191</meet:meetingKey>
|
241
|
+
<meet:confName>NetSpace Discussions</meet:confName>
|
242
|
+
<meet:meetingType>564</meet:meetingType>
|
243
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
244
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
245
|
+
<meet:timeZoneID>4</meet:timeZoneID>
|
246
|
+
<meet:timeZone>GMT-07:00, Pacific (San Francisco)</meet:timeZone>
|
247
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
248
|
+
<meet:startDate>08/26/2013 08:33:20</meet:startDate>
|
249
|
+
<meet:duration>60</meet:duration>
|
250
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
251
|
+
<meet:hostJoined>false</meet:hostJoined>
|
252
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
253
|
+
<meet:telePresence>false</meet:telePresence>
|
254
|
+
</meet:meeting>
|
255
|
+
<meet:meeting>
|
256
|
+
<meet:meetingKey>807323253</meet:meetingKey>
|
257
|
+
<meet:confName>KT Discussion : Community Code Walk Thru</meet:confName>
|
258
|
+
<meet:meetingType>564</meet:meetingType>
|
259
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
260
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
261
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
262
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
263
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
264
|
+
<meet:startDate>09/06/2013 13:00:00</meet:startDate>
|
265
|
+
<meet:duration>60</meet:duration>
|
266
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
267
|
+
<meet:hostJoined>false</meet:hostJoined>
|
268
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
269
|
+
<meet:telePresence>false</meet:telePresence>
|
270
|
+
</meet:meeting>
|
271
|
+
<meet:meeting>
|
272
|
+
<meet:meetingKey>804799194</meet:meetingKey>
|
273
|
+
<meet:confName>Community Project Weekly Status Call</meet:confName>
|
274
|
+
<meet:meetingType>564</meet:meetingType>
|
275
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
276
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
277
|
+
<meet:timeZoneID>4</meet:timeZoneID>
|
278
|
+
<meet:timeZone>GMT-07:00, Pacific (San Francisco)</meet:timeZone>
|
279
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
280
|
+
<meet:startDate>09/20/2013 15:00:00</meet:startDate>
|
281
|
+
<meet:duration>60</meet:duration>
|
282
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
283
|
+
<meet:hostJoined>false</meet:hostJoined>
|
284
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
285
|
+
<meet:telePresence>false</meet:telePresence>
|
286
|
+
</meet:meeting>
|
287
|
+
<meet:meeting>
|
288
|
+
<meet:meetingKey>806518364</meet:meetingKey>
|
289
|
+
<meet:confName>PHCC SSO Tool Demo</meet:confName>
|
290
|
+
<meet:meetingType>564</meet:meetingType>
|
291
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
292
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
293
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
294
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
295
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
296
|
+
<meet:startDate>09/20/2013 16:00:00</meet:startDate>
|
297
|
+
<meet:duration>30</meet:duration>
|
298
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
299
|
+
<meet:hostJoined>false</meet:hostJoined>
|
300
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
301
|
+
<meet:telePresence>false</meet:telePresence>
|
302
|
+
</meet:meeting>
|
303
|
+
<meet:meeting>
|
304
|
+
<meet:meetingKey>808175662</meet:meetingKey>
|
305
|
+
<meet:confName>Video Frame Editor Tool Q&A</meet:confName>
|
306
|
+
<meet:meetingType>564</meet:meetingType>
|
307
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
308
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
309
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
310
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
311
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
312
|
+
<meet:startDate>10/02/2013 15:00:00</meet:startDate>
|
313
|
+
<meet:duration>30</meet:duration>
|
314
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
315
|
+
<meet:hostJoined>false</meet:hostJoined>
|
316
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
317
|
+
<meet:telePresence>false</meet:telePresence>
|
318
|
+
</meet:meeting>
|
319
|
+
<meet:meeting>
|
320
|
+
<meet:meetingKey>809457009</meet:meetingKey>
|
321
|
+
<meet:confName>ProctorU-Canvas Project Sync-up</meet:confName>
|
322
|
+
<meet:meetingType>564</meet:meetingType>
|
323
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
324
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
325
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
326
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
327
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
328
|
+
<meet:startDate>10/11/2013 15:00:00</meet:startDate>
|
329
|
+
<meet:duration>15</meet:duration>
|
330
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
331
|
+
<meet:hostJoined>false</meet:hostJoined>
|
332
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
333
|
+
<meet:telePresence>false</meet:telePresence>
|
334
|
+
</meet:meeting>
|
335
|
+
<meet:meeting>
|
336
|
+
<meet:meetingKey>809689307</meet:meetingKey>
|
337
|
+
<meet:confName>Canvas- WebEx Integration Status Call</meet:confName>
|
338
|
+
<meet:meetingType>564</meet:meetingType>
|
339
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
340
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
341
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
342
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
343
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
344
|
+
<meet:startDate>10/16/2013 14:00:00</meet:startDate>
|
345
|
+
<meet:duration>30</meet:duration>
|
346
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
347
|
+
<meet:hostJoined>false</meet:hostJoined>
|
348
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
349
|
+
<meet:telePresence>false</meet:telePresence>
|
350
|
+
</meet:meeting>
|
351
|
+
<meet:meeting>
|
352
|
+
<meet:meetingKey>804136355</meet:meetingKey>
|
353
|
+
<meet:confName>Review updated student UX flow chart - GLU</meet:confName>
|
354
|
+
<meet:meetingType>564</meet:meetingType>
|
355
|
+
<meet:hostWebExID>oxana</meet:hostWebExID>
|
356
|
+
<meet:otherHostWebExID>oxana</meet:otherHostWebExID>
|
357
|
+
<meet:timeZoneID>6</meet:timeZoneID>
|
358
|
+
<meet:timeZone>GMT-06:00, Mountain (Denver)</meet:timeZone>
|
359
|
+
<meet:status>NOT_INPROGRESS</meet:status>
|
360
|
+
<meet:startDate>10/22/2013 13:00:00</meet:startDate>
|
361
|
+
<meet:duration>60</meet:duration>
|
362
|
+
<meet:listStatus>UNLISTED</meet:listStatus>
|
363
|
+
<meet:hostJoined>false</meet:hostJoined>
|
364
|
+
<meet:participantsJoined>false</meet:participantsJoined>
|
365
|
+
<meet:telePresence>false</meet:telePresence>
|
366
|
+
</meet:meeting>
|
367
|
+
<meet:matchingRecords>
|
368
|
+
<serv:total>22</serv:total>
|
369
|
+
<serv:returned>22</serv:returned>
|
370
|
+
<serv:startFrom>1</serv:startFrom>
|
371
|
+
</meet:matchingRecords>
|
372
|
+
</serv:bodyContent>
|
373
|
+
</serv:body>
|
374
|
+
</serv:message>
|