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

« back to all changes in this revision

Viewing changes to www/media/common/tos.js

  • Committer: Matt Giuca
  • Date: 2009-01-19 11:20:16 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: matt.giuca@gmail.com-20090119112016-b1n3y6vhh9s0rq16
ivle.database: Exercise.get_by_name, now auto-inserts and returns a new
    Exercise if it was not found in the DB.
    This may be a bad idea, but it's consistent with the existing behaviour of
    ivle.db.get_problem_problemid, so a lot of things depend on it (nothing
    explicitly creates an Exercise).

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
    /* TEMP */
80
80
    var tos_acceptbuttons = document.getElementById("tos_acceptbuttons");
81
81
    dom_removechildren(tos_acceptbuttons);
82
 
    /* Refresh the page; as the user is now (apparently) logged in */
83
 
    window.location.href = window.location.href;
 
82
 
 
83
    try
 
84
    {
 
85
        response = JSON.parse(xhr.responseText);
 
86
    }
 
87
    catch (e)
 
88
    {
 
89
        response = {'response': 'parse-failure'};
 
90
    }
 
91
 
 
92
    if (response.response == 'usrmgt-failure')
 
93
    {
 
94
    tos_acceptbuttons.appendChild(dom_make_text_elem("p",
 
95
        "Error connecting to User Management server. Please try again later.")); 
 
96
    }
 
97
    else if (response.response == 'parse-failure')
 
98
    {
 
99
    tos_acceptbuttons.appendChild(dom_make_text_elem("p",
 
100
        "Error connecting to server. Please try again later. "));
 
101
    }
 
102
    else
 
103
    {
 
104
        /* Refresh the page; as the user is now (apparently) logged in */
 
105
        window.location.href = window.location.href;
 
106
    }
84
107
}
85
108
 
86
109
function decline_license()