~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/groups/media/groups.js

  • Committer: William Grant
  • Date: 2009-03-01 23:22:05 UTC
  • Revision ID: grantw@unimelb.edu.au-20090301232205-wc78lxf5s8p269fc
Remove some unused functions from groups.js.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
serviceapp = 'userservice';
24
24
 
25
 
function create(offeringid)
26
 
{
27
 
    /* TODO: Write this function */
28
 
}
29
 
 
30
 
/* Displays the selected group in the group adminsitration area
31
 
 */
32
 
function manage_subject()
33
 
{
34
 
    /* Get the subject id from the select box */
35
 
    var subject_select = document.getElementById("subject_select");
36
 
    var subject_div = document.getElementById("subject_div");
37
 
    var subjectid = parseInt(subject_select.value);
38
 
 
39
 
    /* List active offerings */
40
 
    dom_removechildren(subject_div);
41
 
    var p = dom_make_text_elem("h2", "Active Offerings");
42
 
    subject_div.appendChild(p);
43
 
    var callback = function(xhr) 
44
 
    {
45
 
        var offerings = JSON.parse(xhr.responseText);
46
 
        for (var i=0; i<offerings.length; i++)
47
 
        {
48
 
            var offering = offerings[i];
49
 
            var text = offering.subj_name + ", Semester " + offering.semester + " " + offering.year;
50
 
            var h3 = dom_make_text_elem("h3", text);
51
 
            subject_div.appendChild(h3);
52
 
            var div = document.createElement("div");
53
 
            subject_div.appendChild(div);
54
 
            manage_subject_offering(offering['offeringid'], div);
55
 
        }
56
 
    }
57
 
    ajax_call(callback, serviceapp, 'get_active_offerings', {'subjectid': subjectid}, 'GET');
58
 
}
59
 
 
60
25
/* Manages the display of a single offerings groups
61
26
 * Takes a offeringid and element to attach the results to
62
27
 */