IVLE 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,9 +7,10 @@ Gem::Specification.new do |s|
7
7
  s.version = IVLE::VERSION
8
8
  s.authors = ["Ng Guoyou"]
9
9
  s.email = ["fauxface+github@gmail.com"]
10
- s.homepage = "https://github.com/Fauxface/ivle"
10
+ s.homepage = "https://github.com/gyng/ivle"
11
11
  s.summary = %q{Basic Ruby gem wrapper for NUS IVLE LAPI interface.}
12
12
  s.description = %q{Basic Ruby gem wrapper for NUS IVLE LAPI interface. All methods are implemented (but not tested).}
13
+ s.license = 'MIT'
13
14
 
14
15
  s.rubyforge_project = "IVLE"
15
16
 
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Basic Ruby gem wrapper for NUS IVLE LAPI interface. All methods are implemented (but not tested).
4
4
 
5
5
  * [IVLE LAPI documentation](http://wiki.nus.edu.sg/display/ivlelapi/Home)
6
- * A skeleton gem documentation is available in `doc`.
6
+ * A skeleton gem documentation is available in `doc`, or [here](http://fauxface.github.io/ivle/).
7
7
 
8
8
  This gem is in beta and is not guaranteed to work 100%. If you encounter problems, submit an issue (preferably with the bugfix) and I'll get on it.
9
9
 
@@ -69,6 +69,8 @@
69
69
 
70
70
  <li class="file"><a href="./Gemfile.html">Gemfile</a>
71
71
 
72
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
73
+
72
74
  <li class="file"><a href="./Rakefile.html">Rakefile</a>
73
75
 
74
76
  </ul>
@@ -79,6 +79,8 @@
79
79
 
80
80
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
81
81
 
82
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
83
+
82
84
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
83
85
 
84
86
  </ul>
@@ -51,6 +51,8 @@
51
51
 
52
52
  <li class="file"><a href="./Gemfile.html">Gemfile</a>
53
53
 
54
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
55
+
54
56
  <li class="file"><a href="./Rakefile.html">Rakefile</a>
55
57
 
56
58
  </ul>
@@ -101,6 +101,8 @@
101
101
 
102
102
  <li class="file"><a href="./Gemfile.html">Gemfile</a>
103
103
 
104
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
105
+
104
106
  <li class="file"><a href="./Rakefile.html">Rakefile</a>
105
107
 
106
108
  </ul>
@@ -173,6 +173,8 @@
173
173
 
174
174
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
175
175
 
176
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
177
+
176
178
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
177
179
 
178
180
  </ul>
@@ -312,7 +314,7 @@
312
314
 
313
315
  <div class="method-heading">
314
316
  <span class="method-name">new</span><span
315
- class="method-args">(api_key, username, password)</span>
317
+ class="method-args">(*args)</span>
316
318
  <span class="method-click-advice">click to toggle source</span>
317
319
  </div>
318
320
 
@@ -325,10 +327,17 @@
325
327
 
326
328
  <div class="method-source-code" id="new-source">
327
329
  <pre><span class="ruby-comment"># File lib/IVLE.rb, line 62</span>
328
- <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">api_key</span>, <span class="ruby-identifier">username</span>, <span class="ruby-identifier">password</span>)
329
- <span class="ruby-keyword">self</span>.<span class="ruby-identifier">api_key</span> = <span class="ruby-identifier">api_key</span>
330
- <span class="ruby-keyword">self</span>.<span class="ruby-identifier">username</span> = <span class="ruby-identifier">username</span>
331
- <span class="ruby-keyword">self</span>.<span class="ruby-identifier">password</span> = <span class="ruby-identifier">password</span>
330
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(*<span class="ruby-identifier">args</span>)
331
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">api_key</span> = <span class="ruby-identifier">args</span>[<span class="ruby-value">0</span>]
332
+
333
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator">==</span> <span class="ruby-value">2</span>
334
+ <span class="ruby-ivar">@access_token</span> = <span class="ruby-identifier">args</span>[<span class="ruby-value">1</span>]
335
+ <span class="ruby-keyword">elsif</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator">==</span> <span class="ruby-value">3</span>
336
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">username</span> = <span class="ruby-identifier">args</span>[<span class="ruby-value">1</span>]
337
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">password</span> = <span class="ruby-identifier">args</span>[<span class="ruby-value">2</span>]
338
+ <span class="ruby-keyword">else</span>
339
+ <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span> <span class="ruby-node">&quot;Expected 2 or 3 arguments, got #{args.size}&quot;</span>
340
+ <span class="ruby-keyword">end</span>
332
341
  <span class="ruby-keyword">end</span></pre>
333
342
  </div><!-- new-source -->
334
343
 
@@ -363,7 +372,7 @@ public. Call this yourself if my implementation fails.</p>
363
372
 
364
373
 
365
374
  <div class="method-source-code" id="api-source">
366
- <pre><span class="ruby-comment"># File lib/IVLE.rb, line 70</span>
375
+ <pre><span class="ruby-comment"># File lib/IVLE.rb, line 77</span>
367
376
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">api</span>(<span class="ruby-identifier">method</span>, <span class="ruby-identifier">params</span>={}, <span class="ruby-identifier">verb</span>=<span class="ruby-value">:get</span>, <span class="ruby-identifier">add_auth</span>=<span class="ruby-keyword">true</span>)
368
377
  <span class="ruby-identifier">params</span> = <span class="ruby-identifier">add_auth</span>(<span class="ruby-identifier">params</span>) <span class="ruby-keyword">if</span> <span class="ruby-identifier">add_auth</span>
369
378
  <span class="ruby-identifier">resp</span> = <span class="ruby-identifier">client</span>.<span class="ruby-identifier">send</span>(<span class="ruby-identifier">verb</span>, <span class="ruby-node">&quot;api/Lapi.svc/#{method}&quot;</span>, <span class="ruby-identifier">params</span>)
@@ -395,7 +404,7 @@ public. Call this yourself if my implementation fails.</p>
395
404
 
396
405
 
397
406
  <div class="method-source-code" id="api_post-source">
398
- <pre><span class="ruby-comment"># File lib/IVLE.rb, line 76</span>
407
+ <pre><span class="ruby-comment"># File lib/IVLE.rb, line 83</span>
399
408
  <span class="ruby-keyword">def</span> <span class="ruby-identifier">api_post</span>(<span class="ruby-identifier">method</span>, <span class="ruby-identifier">params</span>={})
400
409
  <span class="ruby-identifier">api</span>(<span class="ruby-identifier">method</span>, <span class="ruby-identifier">params</span>, <span class="ruby-value">:post</span>)
401
410
  <span class="ruby-keyword">end</span></pre>
@@ -85,6 +85,8 @@
85
85
 
86
86
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
87
87
 
88
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
89
+
88
90
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
89
91
 
90
92
  </ul>
@@ -145,6 +145,8 @@
145
145
 
146
146
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
147
147
 
148
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
149
+
148
150
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
149
151
 
150
152
  </ul>
@@ -87,6 +87,8 @@
87
87
 
88
88
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
89
89
 
90
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
91
+
90
92
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
91
93
 
92
94
  </ul>
@@ -79,6 +79,8 @@
79
79
 
80
80
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
81
81
 
82
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
83
+
82
84
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
83
85
 
84
86
  </ul>
@@ -99,6 +99,8 @@
99
99
 
100
100
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
101
101
 
102
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
103
+
102
104
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
103
105
 
104
106
  </ul>
@@ -79,6 +79,8 @@
79
79
 
80
80
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
81
81
 
82
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
83
+
82
84
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
83
85
 
84
86
  </ul>
@@ -101,6 +101,8 @@
101
101
 
102
102
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
103
103
 
104
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
105
+
104
106
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
105
107
 
106
108
  </ul>
@@ -79,6 +79,8 @@
79
79
 
80
80
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
81
81
 
82
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
83
+
82
84
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
83
85
 
84
86
  </ul>
@@ -81,6 +81,8 @@
81
81
 
82
82
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
83
83
 
84
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
85
+
84
86
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
85
87
 
86
88
  </ul>
@@ -85,6 +85,8 @@
85
85
 
86
86
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
87
87
 
88
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
89
+
88
90
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
89
91
 
90
92
  </ul>
@@ -97,6 +97,8 @@
97
97
 
98
98
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
99
99
 
100
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
101
+
100
102
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
101
103
 
102
104
  </ul>
@@ -81,6 +81,8 @@
81
81
 
82
82
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
83
83
 
84
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
85
+
84
86
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
85
87
 
86
88
  </ul>
@@ -85,6 +85,8 @@
85
85
 
86
86
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
87
87
 
88
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
89
+
88
90
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
89
91
 
90
92
  </ul>
@@ -79,6 +79,8 @@
79
79
 
80
80
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
81
81
 
82
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
83
+
82
84
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
83
85
 
84
86
  </ul>
@@ -107,6 +107,8 @@
107
107
 
108
108
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
109
109
 
110
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
111
+
110
112
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
111
113
 
112
114
  </ul>
@@ -89,6 +89,8 @@
89
89
 
90
90
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
91
91
 
92
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
93
+
92
94
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
93
95
 
94
96
  </ul>
@@ -85,6 +85,8 @@
85
85
 
86
86
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
87
87
 
88
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
89
+
88
90
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
89
91
 
90
92
  </ul>
@@ -81,6 +81,8 @@
81
81
 
82
82
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
83
83
 
84
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
85
+
84
86
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
85
87
 
86
88
  </ul>
@@ -81,6 +81,8 @@
81
81
 
82
82
  <li class="file"><a href="../Gemfile.html">Gemfile</a>
83
83
 
84
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
85
+
84
86
  <li class="file"><a href="../Rakefile.html">Rakefile</a>
85
87
 
86
88
  </ul>
@@ -0,0 +1,151 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=IBM437" http-equiv="Content-Type">
6
+
7
+ <title>LICENSE - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body class="file">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="project-metadata">
47
+ <nav id="fileindex-section" class="section project-section">
48
+ <h3 class="section-header">Pages</h3>
49
+
50
+ <ul>
51
+
52
+ <li class="file"><a href="./Gemfile.html">Gemfile</a>
53
+
54
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
55
+
56
+ <li class="file"><a href="./Rakefile.html">Rakefile</a>
57
+
58
+ </ul>
59
+ </nav>
60
+
61
+ <nav id="classindex-section" class="section project-section">
62
+ <h3 class="section-header">Class and Module Index</h3>
63
+
64
+ <ul class="link-list">
65
+
66
+ <li><a href="./IVLE.html">IVLE</a>
67
+
68
+ <li><a href="./IVLE/API.html">IVLE::API</a>
69
+
70
+ <li><a href="./IVLE/Announcement.html">IVLE::Announcement</a>
71
+
72
+ <li><a href="./IVLE/Community.html">IVLE::Community</a>
73
+
74
+ <li><a href="./IVLE/Consultation.html">IVLE::Consultation</a>
75
+
76
+ <li><a href="./IVLE/DeltaDatasets.html">IVLE::DeltaDatasets</a>
77
+
78
+ <li><a href="./IVLE/Forum.html">IVLE::Forum</a>
79
+
80
+ <li><a href="./IVLE/Gradebook.html">IVLE::Gradebook</a>
81
+
82
+ <li><a href="./IVLE/IVLEModule.html">IVLE::IVLEModule</a>
83
+
84
+ <li><a href="./IVLE/IVLENews.html">IVLE::IVLENews</a>
85
+
86
+ <li><a href="./IVLE/LibraryEReserves.html">IVLE::LibraryEReserves</a>
87
+
88
+ <li><a href="./IVLE/Login.html">IVLE::Login</a>
89
+
90
+ <li><a href="./IVLE/MyOrganizer.html">IVLE::MyOrganizer</a>
91
+
92
+ <li><a href="./IVLE/OpenWebcastLectures.html">IVLE::OpenWebcastLectures</a>
93
+
94
+ <li><a href="./IVLE/Poll.html">IVLE::Poll</a>
95
+
96
+ <li><a href="./IVLE/Profile.html">IVLE::Profile</a>
97
+
98
+ <li><a href="./IVLE/RostersAndGroups.html">IVLE::RostersAndGroups</a>
99
+
100
+ <li><a href="./IVLE/StudentEvents.html">IVLE::StudentEvents</a>
101
+
102
+ <li><a href="./IVLE/Timetable.html">IVLE::Timetable</a>
103
+
104
+ <li><a href="./IVLE/Webcast.html">IVLE::Webcast</a>
105
+
106
+ <li><a href="./IVLE/Workbin.html">IVLE::Workbin</a>
107
+
108
+ <li><a href="./Fixtures.html">Fixtures</a>
109
+
110
+ <li><a href="./Fixtures/IVLE.html">Fixtures::IVLE</a>
111
+
112
+ <li><a href="./Object.html">Object</a>
113
+
114
+ </ul>
115
+ </nav>
116
+
117
+ </div>
118
+ </nav>
119
+
120
+ <div id="documentation" class="description">
121
+
122
+ <p>Copyright (C) 2013 Ng Guoyou</p>
123
+
124
+ <p>Permission is hereby granted, free of charge, to any person obtaining a
125
+ copy of this software and associated documentation files (the "Software"),
126
+ to deal in the Software without restriction, including without limitation
127
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
128
+ and/or sell copies of the Software, and to permit persons to whom the
129
+ Software is furnished to do so, subject to the following conditions:</p>
130
+
131
+ <p>The above copyright notice and this permission notice shall be included in
132
+ all copies or substantial portions of the Software.</p>
133
+
134
+ <p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
135
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
136
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
137
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
138
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
139
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
140
+ DEALINGS IN THE SOFTWARE.</p>
141
+
142
+ </div>
143
+
144
+
145
+
146
+ <footer id="validator-badges">
147
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
148
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.1.
149
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
150
+ </footer>
151
+
@@ -87,6 +87,8 @@
87
87
 
88
88
  <li class="file"><a href="./Gemfile.html">Gemfile</a>
89
89
 
90
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
91
+
90
92
  <li class="file"><a href="./Rakefile.html">Rakefile</a>
91
93
 
92
94
  </ul>
@@ -51,6 +51,8 @@
51
51
 
52
52
  <li class="file"><a href="./Gemfile.html">Gemfile</a>
53
53
 
54
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
55
+
54
56
  <li class="file"><a href="./Rakefile.html">Rakefile</a>
55
57
 
56
58
  </ul>
@@ -1,26 +1,27 @@
1
- Sun, 04 Aug 2013 15:21:49 +0800
2
- ./Gemfile Wed, 31 Jul 2013 23:38:46 +0800
3
- ./lib/IVLE/api/announcement.rb Sun, 04 Aug 2013 15:13:02 +0800
4
- ./lib/IVLE/api/community.rb Sun, 04 Aug 2013 15:14:47 +0800
5
- ./lib/IVLE/api/consultation.rb Sun, 04 Aug 2013 15:14:56 +0800
6
- ./lib/IVLE/api/delta_datasets.rb Sun, 04 Aug 2013 15:15:01 +0800
7
- ./lib/IVLE/api/forum.rb Sun, 04 Aug 2013 15:15:24 +0800
8
- ./lib/IVLE/api/gradebook.rb Sun, 04 Aug 2013 15:15:29 +0800
9
- ./lib/IVLE/api/ivle_news.rb Sun, 04 Aug 2013 15:15:31 +0800
10
- ./lib/IVLE/api/library_ereserves.rb Sun, 04 Aug 2013 15:15:39 +0800
11
- ./lib/IVLE/api/login.rb Sun, 04 Aug 2013 13:34:22 +0800
12
- ./lib/IVLE/api/module.rb Sun, 04 Aug 2013 15:16:02 +0800
13
- ./lib/IVLE/api/my_organizer.rb Sun, 04 Aug 2013 15:16:47 +0800
14
- ./lib/IVLE/api/open_webcast_lectures.rb Sun, 04 Aug 2013 15:17:00 +0800
15
- ./lib/IVLE/api/poll.rb Sun, 04 Aug 2013 15:17:25 +0800
16
- ./lib/IVLE/api/profile.rb Sun, 04 Aug 2013 14:59:24 +0800
17
- ./lib/IVLE/api/rosters_and_groups.rb Sun, 04 Aug 2013 15:17:59 +0800
18
- ./lib/IVLE/api/student_events.rb Sun, 04 Aug 2013 15:18:19 +0800
19
- ./lib/IVLE/api/timetable.rb Sun, 04 Aug 2013 15:18:25 +0800
20
- ./lib/IVLE/api/webcast.rb Sun, 04 Aug 2013 15:18:35 +0800
21
- ./lib/IVLE/api/workbin.rb Sun, 04 Aug 2013 15:18:40 +0800
22
- ./lib/IVLE/version.rb Wed, 31 Jul 2013 23:38:46 +0800
23
- ./lib/IVLE.rb Sun, 04 Aug 2013 15:00:33 +0800
24
- ./Rakefile Wed, 31 Jul 2013 23:38:46 +0800
25
- ./spec/api/api_spec.rb Fri, 02 Aug 2013 22:55:14 +0800
26
- ./spec/fixtures/ivle.rb Fri, 02 Aug 2013 22:49:47 +0800
1
+ Sun, 04 Aug 2013 16:36:37 +0800
2
+ ./Gemfile Sun, 04 Aug 2013 16:33:59 +0800
3
+ ./lib/IVLE/api/announcement.rb Sun, 04 Aug 2013 16:33:59 +0800
4
+ ./lib/IVLE/api/community.rb Sun, 04 Aug 2013 16:33:59 +0800
5
+ ./lib/IVLE/api/consultation.rb Sun, 04 Aug 2013 16:33:59 +0800
6
+ ./lib/IVLE/api/delta_datasets.rb Sun, 04 Aug 2013 16:33:59 +0800
7
+ ./lib/IVLE/api/forum.rb Sun, 04 Aug 2013 16:33:59 +0800
8
+ ./lib/IVLE/api/gradebook.rb Sun, 04 Aug 2013 16:33:59 +0800
9
+ ./lib/IVLE/api/ivle_news.rb Sun, 04 Aug 2013 16:33:59 +0800
10
+ ./lib/IVLE/api/library_ereserves.rb Sun, 04 Aug 2013 16:33:59 +0800
11
+ ./lib/IVLE/api/login.rb Sun, 04 Aug 2013 16:33:59 +0800
12
+ ./lib/IVLE/api/module.rb Sun, 04 Aug 2013 16:33:59 +0800
13
+ ./lib/IVLE/api/my_organizer.rb Sun, 04 Aug 2013 16:33:59 +0800
14
+ ./lib/IVLE/api/open_webcast_lectures.rb Sun, 04 Aug 2013 16:33:59 +0800
15
+ ./lib/IVLE/api/poll.rb Sun, 04 Aug 2013 16:33:59 +0800
16
+ ./lib/IVLE/api/profile.rb Sun, 04 Aug 2013 16:33:59 +0800
17
+ ./lib/IVLE/api/rosters_and_groups.rb Sun, 04 Aug 2013 16:33:59 +0800
18
+ ./lib/IVLE/api/student_events.rb Sun, 04 Aug 2013 16:33:59 +0800
19
+ ./lib/IVLE/api/timetable.rb Sun, 04 Aug 2013 16:33:59 +0800
20
+ ./lib/IVLE/api/webcast.rb Sun, 04 Aug 2013 16:33:59 +0800
21
+ ./lib/IVLE/api/workbin.rb Sun, 04 Aug 2013 16:33:59 +0800
22
+ ./lib/IVLE/version.rb Sun, 04 Aug 2013 16:33:59 +0800
23
+ ./lib/IVLE.rb Sun, 04 Aug 2013 16:33:59 +0800
24
+ ./LICENSE Sun, 04 Aug 2013 16:33:59 +0800
25
+ ./Rakefile Sun, 04 Aug 2013 16:33:59 +0800
26
+ ./spec/api/api_spec.rb Sun, 04 Aug 2013 16:33:59 +0800
27
+ ./spec/fixtures/ivle.rb Sun, 04 Aug 2013 16:33:59 +0800
@@ -51,6 +51,8 @@
51
51
 
52
52
  <li class="file"><a href="./Gemfile.html">Gemfile</a>
53
53
 
54
+ <li class="file"><a href="./LICENSE.html">LICENSE</a>
55
+
54
56
  <li class="file"><a href="./Rakefile.html">Rakefile</a>
55
57
 
56
58
  </ul>
@@ -1 +1 @@
1
- var search_data = {"index":{"searchIndex":["fixtures","ivle","ivle","api","announcement","community","consultation","deltadatasets","forum","gradebook","ivlemodule","ivlenews","libraryereserves","login","myorganizer","openwebcastlectures","poll","profile","rostersandgroups","studentevents","timetable","webcast","workbin","object","announcement_add()","announcement_add_log()","announcements()","announcements_unread()","api()","api_post()","class_group_sign_up()","class_group_sign_up_remove()","class_roster()","code_table_week_types()","communities()","community()","community_add_member()","community_announcements()","community_categories()","community_create()","community_create_comment()","community_create_task()","community_delete_comment()","community_delete_member()","community_delete_task()","community_forum_add_log_by_post()","community_forum_headings()","community_forum_new_topic()","community_forum_posts()","community_forum_reply_post()","community_get_all_comments()","community_get_all_tasks()","community_get_comment()","community_get_sub_task()","community_get_task()","community_join()","community_members()","community_quit()","community_search()","community_tags()","community_update()","community_update_comment()","community_update_member()","community_update_task()","community_weblinks()","community_workbin_files()","community_workbin_folders()","consultation_cancel_slot()","consultation_module_facilitators_with_slots()","consultation_sign_up()","consultation_signed_up_slots()","consultation_slots()","delta_module_timetable()","download_file()","download_file()","forum()","forum_heading_threads()","forum_headings()","forum_post_new_thread()","forum_reply_thread()","forum_sale_of_used_textbooks()","forum_student_feedback()","forum_thread()","forum_thread_add_log()","forum_threads()","forums()","group_projects_by_user()","groups_by_user()","groups_by_user_and_module()","guest_roster()","lib_ereserve_files()","lib_ereserves()","module()","module_class_group_users()","module_class_groups()","module_information()","module_lecturers()","module_official_group_users()","module_reading()","module_reading_formatted()","module_reading_unformatted()","module_weblinks()","modules()","modules_search()","modules_staff()","modules_student()","modules_taken()","my_organizer_acad_semester_info()","my_organizer_add_personal_event()","my_organizer_delete_personal_event()","my_organizer_events()","my_organizer_ivle()","my_organizer_personal()","my_organizer_special_days()","my_organizer_update_personal_event()","new()","open_webcast_add_log()","open_webcasts()","poll_get_voted_user()","poll_get_voted_user_other()","poll_submit_vote()","polls()","profile_view()","project_enrolled_groups()","project_group_remove_sign_up()","project_group_sign_up()","project_group_users()","project_self_enrol_groups()","public_news()","read_fixture()","root()","settings()","student_event_post_new_event()","student_events()","student_events_categories()","student_events_category()","student_events_committee()","student_events_committees()","timetable_module()","timetable_module_exam()","timetable_student()","timetable_student()","timetable_student_module()","useremail_get()","userid_get()","username_get()","validate()","webcast_add_log()","webcasts()","workbins()","workbins()","gemfile","rakefile"],"longSearchIndex":["fixtures","fixtures::ivle","ivle","ivle::api","ivle::announcement","ivle::community","ivle::consultation","ivle::deltadatasets","ivle::forum","ivle::gradebook","ivle::ivlemodule","ivle::ivlenews","ivle::libraryereserves","ivle::login","ivle::myorganizer","ivle::openwebcastlectures","ivle::poll","ivle::profile","ivle::rostersandgroups","ivle::studentevents","ivle::timetable","ivle::webcast","ivle::workbin","object","ivle::announcement#announcement_add()","ivle::announcement#announcement_add_log()","ivle::announcement#announcements()","ivle::announcement#announcements_unread()","ivle::api#api()","ivle::api#api_post()","ivle::rostersandgroups#class_group_sign_up()","ivle::rostersandgroups#class_group_sign_up_remove()","ivle::rostersandgroups#class_roster()","ivle::myorganizer#code_table_week_types()","ivle::community#communities()","ivle::community#community()","ivle::community#community_add_member()","ivle::community#community_announcements()","ivle::community#community_categories()","ivle::community#community_create()","ivle::community#community_create_comment()","ivle::community#community_create_task()","ivle::community#community_delete_comment()","ivle::community#community_delete_member()","ivle::community#community_delete_task()","ivle::community#community_forum_add_log_by_post()","ivle::community#community_forum_headings()","ivle::community#community_forum_new_topic()","ivle::community#community_forum_posts()","ivle::community#community_forum_reply_post()","ivle::community#community_get_all_comments()","ivle::community#community_get_all_tasks()","ivle::community#community_get_comment()","ivle::community#community_get_sub_task()","ivle::community#community_get_task()","ivle::community#community_join()","ivle::community#community_members()","ivle::community#community_quit()","ivle::community#community_search()","ivle::community#community_tags()","ivle::community#community_update()","ivle::community#community_update_comment()","ivle::community#community_update_member()","ivle::community#community_update_task()","ivle::community#community_weblinks()","ivle::community#community_workbin_files()","ivle::community#community_workbin_folders()","ivle::consultation#consultation_cancel_slot()","ivle::consultation#consultation_module_facilitators_with_slots()","ivle::consultation#consultation_sign_up()","ivle::consultation#consultation_signed_up_slots()","ivle::consultation#consultation_slots()","ivle::deltadatasets#delta_module_timetable()","ivle::community#download_file()","ivle::workbin#download_file()","ivle::forum#forum()","ivle::forum#forum_heading_threads()","ivle::forum#forum_headings()","ivle::forum#forum_post_new_thread()","ivle::forum#forum_reply_thread()","ivle::forum#forum_sale_of_used_textbooks()","ivle::forum#forum_student_feedback()","ivle::forum#forum_thread()","ivle::forum#forum_thread_add_log()","ivle::forum#forum_threads()","ivle::forum#forums()","ivle::rostersandgroups#group_projects_by_user()","ivle::rostersandgroups#groups_by_user()","ivle::rostersandgroups#groups_by_user_and_module()","ivle::rostersandgroups#guest_roster()","ivle::libraryereserves#lib_ereserve_files()","ivle::libraryereserves#lib_ereserves()","ivle::ivlemodule#module()","ivle::rostersandgroups#module_class_group_users()","ivle::rostersandgroups#module_class_groups()","ivle::ivlemodule#module_information()","ivle::ivlemodule#module_lecturers()","ivle::rostersandgroups#module_official_group_users()","ivle::ivlemodule#module_reading()","ivle::ivlemodule#module_reading_formatted()","ivle::ivlemodule#module_reading_unformatted()","ivle::ivlemodule#module_weblinks()","ivle::ivlemodule#modules()","ivle::ivlemodule#modules_search()","ivle::ivlemodule#modules_staff()","ivle::ivlemodule#modules_student()","ivle::ivlemodule#modules_taken()","ivle::myorganizer#my_organizer_acad_semester_info()","ivle::myorganizer#my_organizer_add_personal_event()","ivle::myorganizer#my_organizer_delete_personal_event()","ivle::myorganizer#my_organizer_events()","ivle::myorganizer#my_organizer_ivle()","ivle::myorganizer#my_organizer_personal()","ivle::myorganizer#my_organizer_special_days()","ivle::myorganizer#my_organizer_update_personal_event()","ivle::api::new()","ivle::openwebcastlectures#open_webcast_add_log()","ivle::openwebcastlectures#open_webcasts()","ivle::poll#poll_get_voted_user()","ivle::poll#poll_get_voted_user_other()","ivle::poll#poll_submit_vote()","ivle::poll#polls()","ivle::profile#profile_view()","ivle::rostersandgroups#project_enrolled_groups()","ivle::rostersandgroups#project_group_remove_sign_up()","ivle::rostersandgroups#project_group_sign_up()","ivle::rostersandgroups#project_group_users()","ivle::rostersandgroups#project_self_enrol_groups()","ivle::ivlenews#public_news()","fixtures::ivle#read_fixture()","ivle::root()","ivle::settings()","ivle::studentevents#student_event_post_new_event()","ivle::studentevents#student_events()","ivle::studentevents#student_events_categories()","ivle::studentevents#student_events_category()","ivle::studentevents#student_events_committee()","ivle::studentevents#student_events_committees()","ivle::timetable#timetable_module()","ivle::timetable#timetable_module_exam()","ivle::myorganizer#timetable_student()","ivle::timetable#timetable_student()","ivle::timetable#timetable_student_module()","ivle::login#useremail_get()","ivle::login#userid_get()","ivle::login#username_get()","ivle::login#validate()","ivle::webcast#webcast_add_log()","ivle::webcast#webcasts()","ivle::gradebook#workbins()","ivle::workbin#workbins()","",""],"info":[["Fixtures","","Fixtures.html","",""],["Fixtures::IVLE","","Fixtures/IVLE.html","",""],["IVLE","","IVLE.html","",""],["IVLE::API","","IVLE/API.html","",""],["IVLE::Announcement","","IVLE/Announcement.html","",""],["IVLE::Community","","IVLE/Community.html","",""],["IVLE::Consultation","","IVLE/Consultation.html","",""],["IVLE::DeltaDatasets","","IVLE/DeltaDatasets.html","",""],["IVLE::Forum","","IVLE/Forum.html","",""],["IVLE::Gradebook","","IVLE/Gradebook.html","",""],["IVLE::IVLEModule","","IVLE/IVLEModule.html","",""],["IVLE::IVLENews","","IVLE/IVLENews.html","",""],["IVLE::LibraryEReserves","","IVLE/LibraryEReserves.html","",""],["IVLE::Login","","IVLE/Login.html","",""],["IVLE::MyOrganizer","","IVLE/MyOrganizer.html","",""],["IVLE::OpenWebcastLectures","","IVLE/OpenWebcastLectures.html","",""],["IVLE::Poll","","IVLE/Poll.html","",""],["IVLE::Profile","","IVLE/Profile.html","",""],["IVLE::RostersAndGroups","","IVLE/RostersAndGroups.html","",""],["IVLE::StudentEvents","","IVLE/StudentEvents.html","",""],["IVLE::Timetable","","IVLE/Timetable.html","",""],["IVLE::Webcast","","IVLE/Webcast.html","",""],["IVLE::Workbin","","IVLE/Workbin.html","",""],["Object","","Object.html","",""],["announcement_add","IVLE::Announcement","IVLE/Announcement.html#method-i-announcement_add","(course_id, ann_title, ann_message, send_email)",""],["announcement_add_log","IVLE::Announcement","IVLE/Announcement.html#method-i-announcement_add_log","(ann_event_id)",""],["announcements","IVLE::Announcement","IVLE/Announcement.html#method-i-announcements","(course_id, duration=0, title_only=false)",""],["announcements_unread","IVLE::Announcement","IVLE/Announcement.html#method-i-announcements_unread","(title_only=false)",""],["api","IVLE::API","IVLE/API.html#method-i-api","(method, params={}, verb=:get, add_auth=true)","<p>I don't trust the API documentation so this is now public. Call this\nyourself if my implementation fails. ...\n"],["api_post","IVLE::API","IVLE/API.html#method-i-api_post","(method, params={})",""],["class_group_sign_up","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-class_group_sign_up","(course_id, group_id)",""],["class_group_sign_up_remove","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-class_group_sign_up_remove","(course_id, group_id)",""],["class_roster","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-class_roster","(course_id)",""],["code_table_week_types","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-code_table_week_types","()",""],["communities","IVLE::Community","IVLE/Community.html#method-i-communities","(duration=0)",""],["community","IVLE::Community","IVLE/Community.html#method-i-community","(com_id, duration=0)",""],["community_add_member","IVLE::Community","IVLE/Community.html#method-i-community_add_member","(com_id, member_id, member_type)",""],["community_announcements","IVLE::Community","IVLE/Community.html#method-i-community_announcements","(com_id, duration=0)",""],["community_categories","IVLE::Community","IVLE/Community.html#method-i-community_categories","(active_only=false)",""],["community_create","IVLE::Community","IVLE/Community.html#method-i-community_create","(title, description, access_type, default_forum, default_workbin, category_id, tags)",""],["community_create_comment","IVLE::Community","IVLE/Community.html#method-i-community_create_comment","(task_id, comment)",""],["community_create_task","IVLE::Community","IVLE/Community.html#method-i-community_create_task","(com_id, task_name, task_description, parent_task_id, task_status, task_priority, task_due_date)",""],["community_delete_comment","IVLE::Community","IVLE/Community.html#method-i-community_delete_comment","(comment_id)",""],["community_delete_member","IVLE::Community","IVLE/Community.html#method-i-community_delete_member","(com_id, member_id)",""],["community_delete_task","IVLE::Community","IVLE/Community.html#method-i-community_delete_task","(task_id)",""],["community_forum_add_log_by_post","IVLE::Community","IVLE/Community.html#method-i-community_forum_add_log_by_post","(post_id)",""],["community_forum_headings","IVLE::Community","IVLE/Community.html#method-i-community_forum_headings","(com_id, including_posts=true, duration=0)",""],["community_forum_new_topic","IVLE::Community","IVLE/Community.html#method-i-community_forum_new_topic","(heading_id, title, message)",""],["community_forum_posts","IVLE::Community","IVLE/Community.html#method-i-community_forum_posts","(heading_id, duration=0)",""],["community_forum_reply_post","IVLE::Community","IVLE/Community.html#method-i-community_forum_reply_post","(post_id, title, message)",""],["community_get_all_comments","IVLE::Community","IVLE/Community.html#method-i-community_get_all_comments","(task_id)",""],["community_get_all_tasks","IVLE::Community","IVLE/Community.html#method-i-community_get_all_tasks","(com_id)",""],["community_get_comment","IVLE::Community","IVLE/Community.html#method-i-community_get_comment","(comment_id)",""],["community_get_sub_task","IVLE::Community","IVLE/Community.html#method-i-community_get_sub_task","(task_id)",""],["community_get_task","IVLE::Community","IVLE/Community.html#method-i-community_get_task","(task_id)",""],["community_join","IVLE::Community","IVLE/Community.html#method-i-community_join","(com_id)",""],["community_members","IVLE::Community","IVLE/Community.html#method-i-community_members","(com_id)",""],["community_quit","IVLE::Community","IVLE/Community.html#method-i-community_quit","(com_id)",""],["community_search","IVLE::Community","IVLE/Community.html#method-i-community_search","(search_type, keyword, active_only=false, title_only=false)",""],["community_tags","IVLE::Community","IVLE/Community.html#method-i-community_tags","(active_only=false)",""],["community_update","IVLE::Community","IVLE/Community.html#method-i-community_update","(com_id, title, description, access_type, default_forum, default_workbin, category_id, tags, display_members_to, opening_date, expiry_date)",""],["community_update_comment","IVLE::Community","IVLE/Community.html#method-i-community_update_comment","(comment_id, comment)",""],["community_update_member","IVLE::Community","IVLE/Community.html#method-i-community_update_member","(com_id, member_id, member_type)",""],["community_update_task","IVLE::Community","IVLE/Community.html#method-i-community_update_task","(task_id, task_name, task_description, parent_task_id, task_status, task_priority, task_due_date)",""],["community_weblinks","IVLE::Community","IVLE/Community.html#method-i-community_weblinks","(com_id)",""],["community_workbin_files","IVLE::Community","IVLE/Community.html#method-i-community_workbin_files","(folder_id, duration=0)",""],["community_workbin_folders","IVLE::Community","IVLE/Community.html#method-i-community_workbin_folders","(com_id, including_files=true, duration=0)",""],["consultation_cancel_slot","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_cancel_slot","(consultation_id)",""],["consultation_module_facilitators_with_slots","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_module_facilitators_with_slots","(course_id, include_slots, slot_type)",""],["consultation_sign_up","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_sign_up","(consultation_id)",""],["consultation_signed_up_slots","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_signed_up_slots","()",""],["consultation_slots","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_slots","(lec_id, slot_type)",""],["delta_module_timetable","IVLE::DeltaDatasets","IVLE/DeltaDatasets.html#method-i-delta_module_timetable","(last_modified, module_code=nil)",""],["download_file","IVLE::Community","IVLE/Community.html#method-i-download_file","(id)",""],["download_file","IVLE::Workbin","IVLE/Workbin.html#method-i-download_file","(id)",""],["forum","IVLE::Forum","IVLE/Forum.html#method-i-forum","(forum_id, duration=0, include_threads=true)",""],["forum_heading_threads","IVLE::Forum","IVLE/Forum.html#method-i-forum_heading_threads","(heading_id, duration=0, get_main_topics_only=false)",""],["forum_headings","IVLE::Forum","IVLE/Forum.html#method-i-forum_headings","(forum_id, duration=0, include_threads=true)",""],["forum_post_new_thread","IVLE::Forum","IVLE/Forum.html#method-i-forum_post_new_thread","(heading_id, title, reply)",""],["forum_reply_thread","IVLE::Forum","IVLE/Forum.html#method-i-forum_reply_thread","(thread_id, title, reply)",""],["forum_sale_of_used_textbooks","IVLE::Forum","IVLE/Forum.html#method-i-forum_sale_of_used_textbooks","(duration=0, include_threads=true)",""],["forum_student_feedback","IVLE::Forum","IVLE/Forum.html#method-i-forum_student_feedback","(duration=0, include_threads=true)",""],["forum_thread","IVLE::Forum","IVLE/Forum.html#method-i-forum_thread","(thread_id)",""],["forum_thread_add_log","IVLE::Forum","IVLE/Forum.html#method-i-forum_thread_add_log","(thread_id)",""],["forum_threads","IVLE::Forum","IVLE/Forum.html#method-i-forum_threads","(forum_id, duration=0, get_sub_threads=true)",""],["forums","IVLE::Forum","IVLE/Forum.html#method-i-forums","(course_id, duration=0, include_threads=true, title_only=false)",""],["group_projects_by_user","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-group_projects_by_user","(course_id, include_groups, group_type)",""],["groups_by_user","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-groups_by_user","()",""],["groups_by_user_and_module","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-groups_by_user_and_module","(course_id=nil, acad_year=nil, semester=nil)",""],["guest_roster","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-guest_roster","(course_id)",""],["lib_ereserve_files","IVLE::LibraryEReserves","IVLE/LibraryEReserves.html#method-i-lib_ereserve_files","(folder_id)",""],["lib_ereserves","IVLE::LibraryEReserves","IVLE/LibraryEReserves.html#method-i-lib_ereserves","(course_id, title_only=false)",""],["module","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module","(course_id, title_only=false, duration=0, include_all_info=true)",""],["module_class_group_users","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-module_class_group_users","(class_group_id)",""],["module_class_groups","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-module_class_groups","(course_id, flag)",""],["module_information","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_information","(course_id, duration=0)",""],["module_lecturers","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_lecturers","(course_id, duration=0)",""],["module_official_group_users","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-module_official_group_users","(course_id, module_code, group_name, acad_year, semester, group_type)",""],["module_reading","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_reading","(course_id, duration=0)",""],["module_reading_formatted","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_reading_formatted","(course_id, duration=0)",""],["module_reading_unformatted","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_reading_unformatted","(course_id, duration=0)",""],["module_weblinks","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_weblinks","(course_id)",""],["modules","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules","(duration=0, include_all_info=true)",""],["modules_search","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_search","(search_parameters={}, duration=0, include_all_info=true)",""],["modules_staff","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_staff","(duration=0, include_all_info=true)",""],["modules_student","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_student","(duration=0, include_all_info=true)",""],["modules_taken","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_taken","(student_id)",""],["my_organizer_acad_semester_info","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_acad_semester_info","(acad_year, semester)",""],["my_organizer_add_personal_event","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_add_personal_event","(event_title, venue, event_date_time, description, recur_type, str_days, recur_till_date)",""],["my_organizer_delete_personal_event","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_delete_personal_event","(event_id, delete_all_recurrence=true)",""],["my_organizer_events","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_events","(start_date=nil, end_date=nil)",""],["my_organizer_ivle","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_ivle","(start_date=nil, end_date=nil)",""],["my_organizer_personal","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_personal","(start_date=nil, end_date=nil)",""],["my_organizer_special_days","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_special_days","(start_date=nil, end_date=nil)",""],["my_organizer_update_personal_event","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_update_personal_event","(event_id, event_title, venue, event_date_time, description, recur_type, weekly_recur_every, str_days, recur_from_date, recur_till_date, update_recurrence_event)",""],["new","IVLE::API","IVLE/API.html#method-c-new","(api_key, username, password)",""],["open_webcast_add_log","IVLE::OpenWebcastLectures","IVLE/OpenWebcastLectures.html#method-i-open_webcast_add_log","(media_channel_id, media_channel_item_id)",""],["open_webcasts","IVLE::OpenWebcastLectures","IVLE/OpenWebcastLectures.html#method-i-open_webcasts","(acad_year, semester, title_only=false, media_channel_id=nil)",""],["poll_get_voted_user","IVLE::Poll","IVLE/Poll.html#method-i-poll_get_voted_user","(poll_id, poll_question_id, poll_question_option_id)",""],["poll_get_voted_user_other","IVLE::Poll","IVLE/Poll.html#method-i-poll_get_voted_user_other","(poll_id, poll_question_id, poll_question_option_id)",""],["poll_submit_vote","IVLE::Poll","IVLE/Poll.html#method-i-poll_submit_vote","(poll_id, poll_question_id, poll_question_option_id, other_text)",""],["polls","IVLE::Poll","IVLE/Poll.html#method-i-polls","(course_id, poll_id, title_only=false)",""],["profile_view","IVLE::Profile","IVLE/Profile.html#method-i-profile_view","()",""],["project_enrolled_groups","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_enrolled_groups","()",""],["project_group_remove_sign_up","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_group_remove_sign_up","(project_group_id)",""],["project_group_sign_up","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_group_sign_up","(project_group_id)",""],["project_group_users","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_group_users","(project_group_id)",""],["project_self_enrol_groups","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_self_enrol_groups","(project_id)",""],["public_news","IVLE::IVLENews","IVLE/IVLENews.html#method-i-public_news","(title_only=false)",""],["read_fixture","Fixtures::IVLE","Fixtures/IVLE.html#method-i-read_fixture","(name)",""],["root","IVLE","IVLE.html#method-c-root","()",""],["settings","IVLE","IVLE.html#method-c-settings","()",""],["student_event_post_new_event","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_event_post_new_event","(category_id, committee_id, evt_start_date, evt_end_date)",""],["student_events","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events","(title_only=false)",""],["student_events_categories","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_categories","(include_events=true, title_only=false)",""],["student_events_category","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_category","(category_id, title_only=false)",""],["student_events_committee","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_committee","(committee_id, title_only=false)",""],["student_events_committees","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_committees","(include_events=true, title_only=false)",""],["timetable_module","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_module","(course_id)",""],["timetable_module_exam","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_module_exam","(course_id)",""],["timetable_student","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-timetable_student","(acad_year, semester)",""],["timetable_student","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_student","(acad_year, semester)",""],["timetable_student_module","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_student_module","(course_id)",""],["useremail_get","IVLE::Login","IVLE/Login.html#method-i-useremail_get","(api_key, token)",""],["userid_get","IVLE::Login","IVLE/Login.html#method-i-userid_get","(api_key, token)",""],["username_get","IVLE::Login","IVLE/Login.html#method-i-username_get","(api_key, token)",""],["validate","IVLE::Login","IVLE/Login.html#method-i-validate","(api_key, token)",""],["webcast_add_log","IVLE::Webcast","IVLE/Webcast.html#method-i-webcast_add_log","(media_channel_id, media_channel_item_id)",""],["webcasts","IVLE::Webcast","IVLE/Webcast.html#method-i-webcasts","(course_id, duration=0, media_channel_id=nil)",""],["workbins","IVLE::Gradebook","IVLE/Gradebook.html#method-i-workbins","(course_id)",""],["workbins","IVLE::Workbin","IVLE/Workbin.html#method-i-workbins","(course_id, duration=0, workbin_id=nil, title_only=false)",""],["Gemfile","","Gemfile.html","","<p>source \"rubygems.org\"\n<p># Specify your gem's dependencies in IVLE.gemspec gemspec\n"],["Rakefile","","Rakefile.html","","<p>require \"bundler/gem_tasks\"\n"]]}}
1
+ var search_data = {"index":{"searchIndex":["fixtures","ivle","ivle","api","announcement","community","consultation","deltadatasets","forum","gradebook","ivlemodule","ivlenews","libraryereserves","login","myorganizer","openwebcastlectures","poll","profile","rostersandgroups","studentevents","timetable","webcast","workbin","object","announcement_add()","announcement_add_log()","announcements()","announcements_unread()","api()","api_post()","class_group_sign_up()","class_group_sign_up_remove()","class_roster()","code_table_week_types()","communities()","community()","community_add_member()","community_announcements()","community_categories()","community_create()","community_create_comment()","community_create_task()","community_delete_comment()","community_delete_member()","community_delete_task()","community_forum_add_log_by_post()","community_forum_headings()","community_forum_new_topic()","community_forum_posts()","community_forum_reply_post()","community_get_all_comments()","community_get_all_tasks()","community_get_comment()","community_get_sub_task()","community_get_task()","community_join()","community_members()","community_quit()","community_search()","community_tags()","community_update()","community_update_comment()","community_update_member()","community_update_task()","community_weblinks()","community_workbin_files()","community_workbin_folders()","consultation_cancel_slot()","consultation_module_facilitators_with_slots()","consultation_sign_up()","consultation_signed_up_slots()","consultation_slots()","delta_module_timetable()","download_file()","download_file()","forum()","forum_heading_threads()","forum_headings()","forum_post_new_thread()","forum_reply_thread()","forum_sale_of_used_textbooks()","forum_student_feedback()","forum_thread()","forum_thread_add_log()","forum_threads()","forums()","group_projects_by_user()","groups_by_user()","groups_by_user_and_module()","guest_roster()","lib_ereserve_files()","lib_ereserves()","module()","module_class_group_users()","module_class_groups()","module_information()","module_lecturers()","module_official_group_users()","module_reading()","module_reading_formatted()","module_reading_unformatted()","module_weblinks()","modules()","modules_search()","modules_staff()","modules_student()","modules_taken()","my_organizer_acad_semester_info()","my_organizer_add_personal_event()","my_organizer_delete_personal_event()","my_organizer_events()","my_organizer_ivle()","my_organizer_personal()","my_organizer_special_days()","my_organizer_update_personal_event()","new()","open_webcast_add_log()","open_webcasts()","poll_get_voted_user()","poll_get_voted_user_other()","poll_submit_vote()","polls()","profile_view()","project_enrolled_groups()","project_group_remove_sign_up()","project_group_sign_up()","project_group_users()","project_self_enrol_groups()","public_news()","read_fixture()","root()","settings()","student_event_post_new_event()","student_events()","student_events_categories()","student_events_category()","student_events_committee()","student_events_committees()","timetable_module()","timetable_module_exam()","timetable_student()","timetable_student()","timetable_student_module()","useremail_get()","userid_get()","username_get()","validate()","webcast_add_log()","webcasts()","workbins()","workbins()","gemfile","license","rakefile"],"longSearchIndex":["fixtures","fixtures::ivle","ivle","ivle::api","ivle::announcement","ivle::community","ivle::consultation","ivle::deltadatasets","ivle::forum","ivle::gradebook","ivle::ivlemodule","ivle::ivlenews","ivle::libraryereserves","ivle::login","ivle::myorganizer","ivle::openwebcastlectures","ivle::poll","ivle::profile","ivle::rostersandgroups","ivle::studentevents","ivle::timetable","ivle::webcast","ivle::workbin","object","ivle::announcement#announcement_add()","ivle::announcement#announcement_add_log()","ivle::announcement#announcements()","ivle::announcement#announcements_unread()","ivle::api#api()","ivle::api#api_post()","ivle::rostersandgroups#class_group_sign_up()","ivle::rostersandgroups#class_group_sign_up_remove()","ivle::rostersandgroups#class_roster()","ivle::myorganizer#code_table_week_types()","ivle::community#communities()","ivle::community#community()","ivle::community#community_add_member()","ivle::community#community_announcements()","ivle::community#community_categories()","ivle::community#community_create()","ivle::community#community_create_comment()","ivle::community#community_create_task()","ivle::community#community_delete_comment()","ivle::community#community_delete_member()","ivle::community#community_delete_task()","ivle::community#community_forum_add_log_by_post()","ivle::community#community_forum_headings()","ivle::community#community_forum_new_topic()","ivle::community#community_forum_posts()","ivle::community#community_forum_reply_post()","ivle::community#community_get_all_comments()","ivle::community#community_get_all_tasks()","ivle::community#community_get_comment()","ivle::community#community_get_sub_task()","ivle::community#community_get_task()","ivle::community#community_join()","ivle::community#community_members()","ivle::community#community_quit()","ivle::community#community_search()","ivle::community#community_tags()","ivle::community#community_update()","ivle::community#community_update_comment()","ivle::community#community_update_member()","ivle::community#community_update_task()","ivle::community#community_weblinks()","ivle::community#community_workbin_files()","ivle::community#community_workbin_folders()","ivle::consultation#consultation_cancel_slot()","ivle::consultation#consultation_module_facilitators_with_slots()","ivle::consultation#consultation_sign_up()","ivle::consultation#consultation_signed_up_slots()","ivle::consultation#consultation_slots()","ivle::deltadatasets#delta_module_timetable()","ivle::community#download_file()","ivle::workbin#download_file()","ivle::forum#forum()","ivle::forum#forum_heading_threads()","ivle::forum#forum_headings()","ivle::forum#forum_post_new_thread()","ivle::forum#forum_reply_thread()","ivle::forum#forum_sale_of_used_textbooks()","ivle::forum#forum_student_feedback()","ivle::forum#forum_thread()","ivle::forum#forum_thread_add_log()","ivle::forum#forum_threads()","ivle::forum#forums()","ivle::rostersandgroups#group_projects_by_user()","ivle::rostersandgroups#groups_by_user()","ivle::rostersandgroups#groups_by_user_and_module()","ivle::rostersandgroups#guest_roster()","ivle::libraryereserves#lib_ereserve_files()","ivle::libraryereserves#lib_ereserves()","ivle::ivlemodule#module()","ivle::rostersandgroups#module_class_group_users()","ivle::rostersandgroups#module_class_groups()","ivle::ivlemodule#module_information()","ivle::ivlemodule#module_lecturers()","ivle::rostersandgroups#module_official_group_users()","ivle::ivlemodule#module_reading()","ivle::ivlemodule#module_reading_formatted()","ivle::ivlemodule#module_reading_unformatted()","ivle::ivlemodule#module_weblinks()","ivle::ivlemodule#modules()","ivle::ivlemodule#modules_search()","ivle::ivlemodule#modules_staff()","ivle::ivlemodule#modules_student()","ivle::ivlemodule#modules_taken()","ivle::myorganizer#my_organizer_acad_semester_info()","ivle::myorganizer#my_organizer_add_personal_event()","ivle::myorganizer#my_organizer_delete_personal_event()","ivle::myorganizer#my_organizer_events()","ivle::myorganizer#my_organizer_ivle()","ivle::myorganizer#my_organizer_personal()","ivle::myorganizer#my_organizer_special_days()","ivle::myorganizer#my_organizer_update_personal_event()","ivle::api::new()","ivle::openwebcastlectures#open_webcast_add_log()","ivle::openwebcastlectures#open_webcasts()","ivle::poll#poll_get_voted_user()","ivle::poll#poll_get_voted_user_other()","ivle::poll#poll_submit_vote()","ivle::poll#polls()","ivle::profile#profile_view()","ivle::rostersandgroups#project_enrolled_groups()","ivle::rostersandgroups#project_group_remove_sign_up()","ivle::rostersandgroups#project_group_sign_up()","ivle::rostersandgroups#project_group_users()","ivle::rostersandgroups#project_self_enrol_groups()","ivle::ivlenews#public_news()","fixtures::ivle#read_fixture()","ivle::root()","ivle::settings()","ivle::studentevents#student_event_post_new_event()","ivle::studentevents#student_events()","ivle::studentevents#student_events_categories()","ivle::studentevents#student_events_category()","ivle::studentevents#student_events_committee()","ivle::studentevents#student_events_committees()","ivle::timetable#timetable_module()","ivle::timetable#timetable_module_exam()","ivle::myorganizer#timetable_student()","ivle::timetable#timetable_student()","ivle::timetable#timetable_student_module()","ivle::login#useremail_get()","ivle::login#userid_get()","ivle::login#username_get()","ivle::login#validate()","ivle::webcast#webcast_add_log()","ivle::webcast#webcasts()","ivle::gradebook#workbins()","ivle::workbin#workbins()","","",""],"info":[["Fixtures","","Fixtures.html","",""],["Fixtures::IVLE","","Fixtures/IVLE.html","",""],["IVLE","","IVLE.html","",""],["IVLE::API","","IVLE/API.html","",""],["IVLE::Announcement","","IVLE/Announcement.html","",""],["IVLE::Community","","IVLE/Community.html","",""],["IVLE::Consultation","","IVLE/Consultation.html","",""],["IVLE::DeltaDatasets","","IVLE/DeltaDatasets.html","",""],["IVLE::Forum","","IVLE/Forum.html","",""],["IVLE::Gradebook","","IVLE/Gradebook.html","",""],["IVLE::IVLEModule","","IVLE/IVLEModule.html","",""],["IVLE::IVLENews","","IVLE/IVLENews.html","",""],["IVLE::LibraryEReserves","","IVLE/LibraryEReserves.html","",""],["IVLE::Login","","IVLE/Login.html","",""],["IVLE::MyOrganizer","","IVLE/MyOrganizer.html","",""],["IVLE::OpenWebcastLectures","","IVLE/OpenWebcastLectures.html","",""],["IVLE::Poll","","IVLE/Poll.html","",""],["IVLE::Profile","","IVLE/Profile.html","",""],["IVLE::RostersAndGroups","","IVLE/RostersAndGroups.html","",""],["IVLE::StudentEvents","","IVLE/StudentEvents.html","",""],["IVLE::Timetable","","IVLE/Timetable.html","",""],["IVLE::Webcast","","IVLE/Webcast.html","",""],["IVLE::Workbin","","IVLE/Workbin.html","",""],["Object","","Object.html","",""],["announcement_add","IVLE::Announcement","IVLE/Announcement.html#method-i-announcement_add","(course_id, ann_title, ann_message, send_email)",""],["announcement_add_log","IVLE::Announcement","IVLE/Announcement.html#method-i-announcement_add_log","(ann_event_id)",""],["announcements","IVLE::Announcement","IVLE/Announcement.html#method-i-announcements","(course_id, duration=0, title_only=false)",""],["announcements_unread","IVLE::Announcement","IVLE/Announcement.html#method-i-announcements_unread","(title_only=false)",""],["api","IVLE::API","IVLE/API.html#method-i-api","(method, params={}, verb=:get, add_auth=true)","<p>I don't trust the API documentation so this is now public. Call this\nyourself if my implementation fails. ...\n"],["api_post","IVLE::API","IVLE/API.html#method-i-api_post","(method, params={})",""],["class_group_sign_up","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-class_group_sign_up","(course_id, group_id)",""],["class_group_sign_up_remove","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-class_group_sign_up_remove","(course_id, group_id)",""],["class_roster","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-class_roster","(course_id)",""],["code_table_week_types","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-code_table_week_types","()",""],["communities","IVLE::Community","IVLE/Community.html#method-i-communities","(duration=0)",""],["community","IVLE::Community","IVLE/Community.html#method-i-community","(com_id, duration=0)",""],["community_add_member","IVLE::Community","IVLE/Community.html#method-i-community_add_member","(com_id, member_id, member_type)",""],["community_announcements","IVLE::Community","IVLE/Community.html#method-i-community_announcements","(com_id, duration=0)",""],["community_categories","IVLE::Community","IVLE/Community.html#method-i-community_categories","(active_only=false)",""],["community_create","IVLE::Community","IVLE/Community.html#method-i-community_create","(title, description, access_type, default_forum, default_workbin, category_id, tags)",""],["community_create_comment","IVLE::Community","IVLE/Community.html#method-i-community_create_comment","(task_id, comment)",""],["community_create_task","IVLE::Community","IVLE/Community.html#method-i-community_create_task","(com_id, task_name, task_description, parent_task_id, task_status, task_priority, task_due_date)",""],["community_delete_comment","IVLE::Community","IVLE/Community.html#method-i-community_delete_comment","(comment_id)",""],["community_delete_member","IVLE::Community","IVLE/Community.html#method-i-community_delete_member","(com_id, member_id)",""],["community_delete_task","IVLE::Community","IVLE/Community.html#method-i-community_delete_task","(task_id)",""],["community_forum_add_log_by_post","IVLE::Community","IVLE/Community.html#method-i-community_forum_add_log_by_post","(post_id)",""],["community_forum_headings","IVLE::Community","IVLE/Community.html#method-i-community_forum_headings","(com_id, including_posts=true, duration=0)",""],["community_forum_new_topic","IVLE::Community","IVLE/Community.html#method-i-community_forum_new_topic","(heading_id, title, message)",""],["community_forum_posts","IVLE::Community","IVLE/Community.html#method-i-community_forum_posts","(heading_id, duration=0)",""],["community_forum_reply_post","IVLE::Community","IVLE/Community.html#method-i-community_forum_reply_post","(post_id, title, message)",""],["community_get_all_comments","IVLE::Community","IVLE/Community.html#method-i-community_get_all_comments","(task_id)",""],["community_get_all_tasks","IVLE::Community","IVLE/Community.html#method-i-community_get_all_tasks","(com_id)",""],["community_get_comment","IVLE::Community","IVLE/Community.html#method-i-community_get_comment","(comment_id)",""],["community_get_sub_task","IVLE::Community","IVLE/Community.html#method-i-community_get_sub_task","(task_id)",""],["community_get_task","IVLE::Community","IVLE/Community.html#method-i-community_get_task","(task_id)",""],["community_join","IVLE::Community","IVLE/Community.html#method-i-community_join","(com_id)",""],["community_members","IVLE::Community","IVLE/Community.html#method-i-community_members","(com_id)",""],["community_quit","IVLE::Community","IVLE/Community.html#method-i-community_quit","(com_id)",""],["community_search","IVLE::Community","IVLE/Community.html#method-i-community_search","(search_type, keyword, active_only=false, title_only=false)",""],["community_tags","IVLE::Community","IVLE/Community.html#method-i-community_tags","(active_only=false)",""],["community_update","IVLE::Community","IVLE/Community.html#method-i-community_update","(com_id, title, description, access_type, default_forum, default_workbin, category_id, tags, display_members_to, opening_date, expiry_date)",""],["community_update_comment","IVLE::Community","IVLE/Community.html#method-i-community_update_comment","(comment_id, comment)",""],["community_update_member","IVLE::Community","IVLE/Community.html#method-i-community_update_member","(com_id, member_id, member_type)",""],["community_update_task","IVLE::Community","IVLE/Community.html#method-i-community_update_task","(task_id, task_name, task_description, parent_task_id, task_status, task_priority, task_due_date)",""],["community_weblinks","IVLE::Community","IVLE/Community.html#method-i-community_weblinks","(com_id)",""],["community_workbin_files","IVLE::Community","IVLE/Community.html#method-i-community_workbin_files","(folder_id, duration=0)",""],["community_workbin_folders","IVLE::Community","IVLE/Community.html#method-i-community_workbin_folders","(com_id, including_files=true, duration=0)",""],["consultation_cancel_slot","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_cancel_slot","(consultation_id)",""],["consultation_module_facilitators_with_slots","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_module_facilitators_with_slots","(course_id, include_slots, slot_type)",""],["consultation_sign_up","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_sign_up","(consultation_id)",""],["consultation_signed_up_slots","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_signed_up_slots","()",""],["consultation_slots","IVLE::Consultation","IVLE/Consultation.html#method-i-consultation_slots","(lec_id, slot_type)",""],["delta_module_timetable","IVLE::DeltaDatasets","IVLE/DeltaDatasets.html#method-i-delta_module_timetable","(last_modified, module_code=nil)",""],["download_file","IVLE::Community","IVLE/Community.html#method-i-download_file","(id)",""],["download_file","IVLE::Workbin","IVLE/Workbin.html#method-i-download_file","(id)",""],["forum","IVLE::Forum","IVLE/Forum.html#method-i-forum","(forum_id, duration=0, include_threads=true)",""],["forum_heading_threads","IVLE::Forum","IVLE/Forum.html#method-i-forum_heading_threads","(heading_id, duration=0, get_main_topics_only=false)",""],["forum_headings","IVLE::Forum","IVLE/Forum.html#method-i-forum_headings","(forum_id, duration=0, include_threads=true)",""],["forum_post_new_thread","IVLE::Forum","IVLE/Forum.html#method-i-forum_post_new_thread","(heading_id, title, reply)",""],["forum_reply_thread","IVLE::Forum","IVLE/Forum.html#method-i-forum_reply_thread","(thread_id, title, reply)",""],["forum_sale_of_used_textbooks","IVLE::Forum","IVLE/Forum.html#method-i-forum_sale_of_used_textbooks","(duration=0, include_threads=true)",""],["forum_student_feedback","IVLE::Forum","IVLE/Forum.html#method-i-forum_student_feedback","(duration=0, include_threads=true)",""],["forum_thread","IVLE::Forum","IVLE/Forum.html#method-i-forum_thread","(thread_id)",""],["forum_thread_add_log","IVLE::Forum","IVLE/Forum.html#method-i-forum_thread_add_log","(thread_id)",""],["forum_threads","IVLE::Forum","IVLE/Forum.html#method-i-forum_threads","(forum_id, duration=0, get_sub_threads=true)",""],["forums","IVLE::Forum","IVLE/Forum.html#method-i-forums","(course_id, duration=0, include_threads=true, title_only=false)",""],["group_projects_by_user","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-group_projects_by_user","(course_id, include_groups, group_type)",""],["groups_by_user","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-groups_by_user","()",""],["groups_by_user_and_module","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-groups_by_user_and_module","(course_id=nil, acad_year=nil, semester=nil)",""],["guest_roster","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-guest_roster","(course_id)",""],["lib_ereserve_files","IVLE::LibraryEReserves","IVLE/LibraryEReserves.html#method-i-lib_ereserve_files","(folder_id)",""],["lib_ereserves","IVLE::LibraryEReserves","IVLE/LibraryEReserves.html#method-i-lib_ereserves","(course_id, title_only=false)",""],["module","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module","(course_id, title_only=false, duration=0, include_all_info=true)",""],["module_class_group_users","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-module_class_group_users","(class_group_id)",""],["module_class_groups","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-module_class_groups","(course_id, flag)",""],["module_information","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_information","(course_id, duration=0)",""],["module_lecturers","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_lecturers","(course_id, duration=0)",""],["module_official_group_users","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-module_official_group_users","(course_id, module_code, group_name, acad_year, semester, group_type)",""],["module_reading","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_reading","(course_id, duration=0)",""],["module_reading_formatted","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_reading_formatted","(course_id, duration=0)",""],["module_reading_unformatted","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_reading_unformatted","(course_id, duration=0)",""],["module_weblinks","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-module_weblinks","(course_id)",""],["modules","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules","(duration=0, include_all_info=true)",""],["modules_search","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_search","(search_parameters={}, duration=0, include_all_info=true)",""],["modules_staff","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_staff","(duration=0, include_all_info=true)",""],["modules_student","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_student","(duration=0, include_all_info=true)",""],["modules_taken","IVLE::IVLEModule","IVLE/IVLEModule.html#method-i-modules_taken","(student_id)",""],["my_organizer_acad_semester_info","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_acad_semester_info","(acad_year, semester)",""],["my_organizer_add_personal_event","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_add_personal_event","(event_title, venue, event_date_time, description, recur_type, str_days, recur_till_date)",""],["my_organizer_delete_personal_event","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_delete_personal_event","(event_id, delete_all_recurrence=true)",""],["my_organizer_events","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_events","(start_date=nil, end_date=nil)",""],["my_organizer_ivle","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_ivle","(start_date=nil, end_date=nil)",""],["my_organizer_personal","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_personal","(start_date=nil, end_date=nil)",""],["my_organizer_special_days","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_special_days","(start_date=nil, end_date=nil)",""],["my_organizer_update_personal_event","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-my_organizer_update_personal_event","(event_id, event_title, venue, event_date_time, description, recur_type, weekly_recur_every, str_days, recur_from_date, recur_till_date, update_recurrence_event)",""],["new","IVLE::API","IVLE/API.html#method-c-new","(*args)",""],["open_webcast_add_log","IVLE::OpenWebcastLectures","IVLE/OpenWebcastLectures.html#method-i-open_webcast_add_log","(media_channel_id, media_channel_item_id)",""],["open_webcasts","IVLE::OpenWebcastLectures","IVLE/OpenWebcastLectures.html#method-i-open_webcasts","(acad_year, semester, title_only=false, media_channel_id=nil)",""],["poll_get_voted_user","IVLE::Poll","IVLE/Poll.html#method-i-poll_get_voted_user","(poll_id, poll_question_id, poll_question_option_id)",""],["poll_get_voted_user_other","IVLE::Poll","IVLE/Poll.html#method-i-poll_get_voted_user_other","(poll_id, poll_question_id, poll_question_option_id)",""],["poll_submit_vote","IVLE::Poll","IVLE/Poll.html#method-i-poll_submit_vote","(poll_id, poll_question_id, poll_question_option_id, other_text)",""],["polls","IVLE::Poll","IVLE/Poll.html#method-i-polls","(course_id, poll_id, title_only=false)",""],["profile_view","IVLE::Profile","IVLE/Profile.html#method-i-profile_view","()",""],["project_enrolled_groups","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_enrolled_groups","()",""],["project_group_remove_sign_up","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_group_remove_sign_up","(project_group_id)",""],["project_group_sign_up","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_group_sign_up","(project_group_id)",""],["project_group_users","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_group_users","(project_group_id)",""],["project_self_enrol_groups","IVLE::RostersAndGroups","IVLE/RostersAndGroups.html#method-i-project_self_enrol_groups","(project_id)",""],["public_news","IVLE::IVLENews","IVLE/IVLENews.html#method-i-public_news","(title_only=false)",""],["read_fixture","Fixtures::IVLE","Fixtures/IVLE.html#method-i-read_fixture","(name)",""],["root","IVLE","IVLE.html#method-c-root","()",""],["settings","IVLE","IVLE.html#method-c-settings","()",""],["student_event_post_new_event","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_event_post_new_event","(category_id, committee_id, evt_start_date, evt_end_date)",""],["student_events","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events","(title_only=false)",""],["student_events_categories","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_categories","(include_events=true, title_only=false)",""],["student_events_category","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_category","(category_id, title_only=false)",""],["student_events_committee","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_committee","(committee_id, title_only=false)",""],["student_events_committees","IVLE::StudentEvents","IVLE/StudentEvents.html#method-i-student_events_committees","(include_events=true, title_only=false)",""],["timetable_module","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_module","(course_id)",""],["timetable_module_exam","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_module_exam","(course_id)",""],["timetable_student","IVLE::MyOrganizer","IVLE/MyOrganizer.html#method-i-timetable_student","(acad_year, semester)",""],["timetable_student","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_student","(acad_year, semester)",""],["timetable_student_module","IVLE::Timetable","IVLE/Timetable.html#method-i-timetable_student_module","(course_id)",""],["useremail_get","IVLE::Login","IVLE/Login.html#method-i-useremail_get","(api_key, token)",""],["userid_get","IVLE::Login","IVLE/Login.html#method-i-userid_get","(api_key, token)",""],["username_get","IVLE::Login","IVLE/Login.html#method-i-username_get","(api_key, token)",""],["validate","IVLE::Login","IVLE/Login.html#method-i-validate","(api_key, token)",""],["webcast_add_log","IVLE::Webcast","IVLE/Webcast.html#method-i-webcast_add_log","(media_channel_id, media_channel_item_id)",""],["webcasts","IVLE::Webcast","IVLE/Webcast.html#method-i-webcasts","(course_id, duration=0, media_channel_id=nil)",""],["workbins","IVLE::Gradebook","IVLE/Gradebook.html#method-i-workbins","(course_id)",""],["workbins","IVLE::Workbin","IVLE/Workbin.html#method-i-workbins","(course_id, duration=0, workbin_id=nil, title_only=false)",""],["Gemfile","","Gemfile.html","","<p>source \"rubygems.org\"\n<p># Specify your gem's dependencies in IVLE.gemspec gemspec\n"],["LICENSE","","LICENSE.html","","<p>Copyright (C) 2013 Ng Guoyou\n<p>Permission is hereby granted, free of charge, to any person obtaining a\ncopy ...\n"],["Rakefile","","Rakefile.html","","<p>require \"bundler/gem_tasks\"\n"]]}}
@@ -27,6 +27,9 @@
27
27
  <ul>
28
28
  <li class="file">
29
29
  <a href="Gemfile.html">Gemfile</a>
30
+ </li>
31
+ <li class="file">
32
+ <a href="LICENSE.html">LICENSE</a>
30
33
  </li>
31
34
  <li class="file">
32
35
  <a href="Rakefile.html">Rakefile</a>
@@ -1,3 +1,3 @@
1
1
  module IVLE
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: IVLE
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-04 00:00:00.000000000 Z
12
+ date: 2013-08-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
16
- requirement: &24432132 !ruby/object:Gem::Requirement
16
+ requirement: &23884128 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *24432132
24
+ version_requirements: *23884128
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: faraday_middleware
27
- requirement: &24431880 !ruby/object:Gem::Requirement
27
+ requirement: &23883876 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *24431880
35
+ version_requirements: *23883876
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: mechanize
38
- requirement: &24431628 !ruby/object:Gem::Requirement
38
+ requirement: &23883624 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *24431628
46
+ version_requirements: *23883624
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: nokogiri
49
- requirement: &24431376 !ruby/object:Gem::Requirement
49
+ requirement: &23883372 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *24431376
57
+ version_requirements: *23883372
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: rspec
60
- requirement: &24431124 !ruby/object:Gem::Requirement
60
+ requirement: &23883120 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '0'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *24431124
68
+ version_requirements: *23883120
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: debugger
71
- requirement: &24430872 !ruby/object:Gem::Requirement
71
+ requirement: &23882868 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,10 +76,10 @@ dependencies:
76
76
  version: '0'
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *24430872
79
+ version_requirements: *23882868
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: fakeweb
82
- requirement: &24430620 !ruby/object:Gem::Requirement
82
+ requirement: &23882616 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
85
  - - ! '>='
@@ -87,7 +87,7 @@ dependencies:
87
87
  version: '0'
88
88
  type: :development
89
89
  prerelease: false
90
- version_requirements: *24430620
90
+ version_requirements: *23882616
91
91
  description: Basic Ruby gem wrapper for NUS IVLE LAPI interface. All methods are implemented
92
92
  (but not tested).
93
93
  email:
@@ -127,6 +127,7 @@ files:
127
127
  - doc/IVLE/Timetable.html
128
128
  - doc/IVLE/Webcast.html
129
129
  - doc/IVLE/Workbin.html
130
+ - doc/LICENSE.html
130
131
  - doc/Object.html
131
132
  - doc/Rakefile.html
132
133
  - doc/created.rid
@@ -189,8 +190,9 @@ files:
189
190
  - spec/fixtures/api/modules.json
190
191
  - spec/fixtures/ivle.rb
191
192
  - spec/fixtures/modules.json
192
- homepage: https://github.com/Fauxface/ivle
193
- licenses: []
193
+ homepage: https://github.com/gyng/ivle
194
+ licenses:
195
+ - MIT
194
196
  post_install_message:
195
197
  rdoc_options: []
196
198
  require_paths: