~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-26 08:36:00 UTC
  • mto: (1165.3.1 submissions)
  • mto: This revision was merged to the branch mainline in revision 1174.
  • Revision ID: grantw@unimelb.edu.au-20090326083600-0nywchy08dzi0us1
Add an initial project selection UI to SubmitView.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
/* Creates a group */
26
26
function create_new_group(projectsetid)
27
27
{
28
 
    groupnm = window.prompt('Please enter a name for the group','');
29
 
 
30
 
    /* If the provided name is empty, or the prompt is cancelled, stop. */
31
 
    if (groupnm)
32
 
    {
33
 
        args = {
34
 
            'projectsetid': projectsetid,
35
 
            'groupnm':groupnm,
36
 
            'nick': groupnm
37
 
        };
38
 
        response = ajax_call(null, serviceapp, 'create_group', args, 'POST');
39
 
        if (response.status == 200)
40
 
        {
41
 
            /* pass */
42
 
        }
43
 
        else if (response.status == 400)
44
 
        {
45
 
            alert("Could not create group: " + response.getResponseHeader('X-IVLE-Error'));
46
 
        }
47
 
        else
48
 
        {
49
 
            alert("Error: Could not add group. Does it already exist?");
50
 
        }
51
 
        /* Reload the display */
52
 
        window.location.href = window.location.href;
53
 
    }
 
28
    groupnm = window.prompt('Please enter a name for the group');
 
29
    args = {'projectsetid': projectsetid, 'groupnm':groupnm, 'nick': groupnm};
 
30
    response = ajax_call(null, serviceapp, 'create_group', args, 'POST');
 
31
    if (response.status == 200)
 
32
    {
 
33
        /* pass */
 
34
    }
 
35
    else
 
36
    {
 
37
        alert("Error: Could not add group. Does it already exist?");
 
38
    }
 
39
    /* Reload the display */
 
40
    window.location.href = window.location.href;
54
41
}
55
42
 
56
43
function manage_group(offeringid, groupid, namespace)
86
73
        var ul = document.createElement("ul");
87
74
        for (var i=0; i<groupmembers.length; i++)
88
75
        {
89
 
            var member = groupmembers[i];
90
 
 
91
 
            var li = dom_make_text_elem("li", member.fullname + " (" +
92
 
                                              member.login + ")");
93
 
            var rmbutton = document.createElement("input");
94
 
            rmbutton.value = "Remove";
95
 
            rmbutton.type = "image";
96
 
            /* XXX: There must be a better way to do this! */
97
 
            rmbutton.src = "/+media/ivle.webapp.groups/cross.png";
98
 
 
99
 
            $(rmbutton).click(function(offeringid, login, groupid, elemnm)
100
 
            {
101
 
                return function() {
102
 
                    if (!confirm("Are you sure want to revoke this user's membership?"))
103
 
                        return;
104
 
                    this.disabled = true;
105
 
                    var args = {'login': login, 'groupid': groupid};
106
 
                    ajax_call(null, serviceapp, 'unassign_group', args, 'POST');
107
 
                    list_projectgroup_contents(offeringid, groupid, elemnm);
108
 
                };
109
 
            }(offeringid, member.login, groupid, elemnm));
110
 
 
111
 
            li.appendChild(rmbutton);
 
76
            var li = dom_make_text_elem("li", groupmembers[i].fullname + " (" +
 
77
                                              groupmembers[i].login + ")");
112
78
            ul.appendChild(li);
113
79
        }
114
80