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

« back to all changes in this revision

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

  • Committer: me at id
  • Date: 2009-01-15 01:29:07 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1147
ivle.makeuser: Don't create a local.auth. It wasn't used anywhere, and seems
    to have only been there for historical reasons.
setup.configure: Remove svn_auth_local from the config.py boilerplate; it was
    used solely by ivle.makeuser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
512
512
    return make_path(path_join.apply(null, arguments));
513
513
}
514
514
 
515
 
/** Same as app_path but creates a properly-escaped site-relative URL.
516
 
 */
517
 
function app_url(app /*,...*/)
518
 
{
519
 
    return urlencode_path(app_path.apply(null, arguments));
520
 
}
521
 
 
522
515
/** Generates an absolute URL to a public application
523
516
 */
524
 
function public_app_url(app /*,...*/)
 
517
function public_app_path(app /*,...*/)
525
518
{
526
 
    return "http://" + public_host + app_url.apply(null, arguments);
 
519
    return location.protocol + "//" + public_host
 
520
        + make_path(path_join.apply(null, arguments));
527
521
}
528
522
 
529
523
/** Given a path, gets the "basename" (the last path segment).
628
622
 * \param app IVLE app to call (such as "fileservice").
629
623
 * \param path URL path to make the request to, within the application.
630
624
 * \param args Argument object, as described in parse_url and friends.
631
 
 * \param method String; "GET", "POST", "PUT", or "PATCH"
632
 
 * \param content_type String, optional.
 
625
 * \param method String; "GET" or "POST"
 
626
 * \param content_type String, optional. Only applies if method is "POST".
 
627
 *      May be "application/x-www-form-urlencoded" or "multipart/form-data".
633
628
 *      Defaults to "application/x-www-form-urlencoded".
634
629
 */
635
630
function ajax_call(callback, app, path, args, method, content_type)
636
631
{
637
 
    if (!content_type)
 
632
    if (content_type != "multipart/form-data")
638
633
        content_type = "application/x-www-form-urlencoded";
639
634
    path = app_path(app, path);
640
635
    var url;
664
659
    }
665
660
    else
666
661
    {
667
 
        /* POST & PUT & PATCH sends the args in the request body */
668
 
        url = urlencode_path(path);
 
662
        /* POST sends the args in application/x-www-form-urlencoded */
 
663
        url = encodeURI(path);
669
664
        xhr.open(method, url, asyncronous);
670
665
        var message;
671
666
        if (content_type == "multipart/form-data")
674
669
                "multipart/form-data; boundary=" + boundary);
675
670
            message = make_multipart_formdata(args, boundary);
676
671
        }
677
 
        else if (content_type == "application/x-www-form-urlencoded")
 
672
        else
678
673
        {
679
674
            xhr.setRequestHeader("Content-Type", content_type);
680
675
            message = make_query_string(args);
681
676
        }
682
 
        else if (content_type == "application/json")
683
 
        {
684
 
            xhr.setRequestHeader("Content-Type", content_type);
685
 
            message = JSON.stringify(args);
686
 
        }
687
 
        else
688
 
        {
689
 
            xhr.setRequestHeader("Content-Type", content_type);
690
 
            message = args;
691
 
        }
692
677
        xhr.send(message);
693
678
    }
694
679
    /* Only return the XHR for syncronous requests */