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

« back to all changes in this revision

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

  • Committer: mattgiuca
  • Date: 2008-01-11 00:49:06 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:172
util: Added buildurl function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
    return obj;
203
203
}
204
204
 
 
205
/** Given an object exactly of the form described for the output of parseurl,
 
206
 * returns a URL string built from those parameters.
 
207
 * parseurl and buildurl are strict inverses of each other.
 
208
 * Note that either query_string or args may be supplied. If both are
 
209
 * supplied, query_string is preferred (because it keeps the argument order).
 
210
 * If you take a url from parseurl, modify args, and pass to buildurl,
 
211
 * you need to set query_string to null to use the new args.
 
212
 * \param obj Object as returned by parseurl.
 
213
 * \return String, a URL.
 
214
 */
 
215
function buildurl(obj)
 
216
{
 
217
    var url = "";
 
218
    var query_string = null;
 
219
 
 
220
    if (!("scheme" in obj) || obj.scheme != null)
 
221
        url = obj.scheme.toString() + "://";
 
222
    if (!("server_name" in obj) || obj.server_name != null)
 
223
        url += obj.server_name.toString();
 
224
    if (!("server_port" in obj) || obj.server_port != null)
 
225
        url += ":" + obj.server_port.toString();
 
226
    if (!("path" in obj) || obj.path != null)
 
227
    {
 
228
        var path = obj.path.toString();
 
229
        if (path.length > 0 && path[0] != "/")
 
230
            path = "/" + path;
 
231
        url += path;
 
232
    }
 
233
    if (!("query_string" in obj) || obj.query_string != null)
 
234
        query_string = obj.query_string.toString();
 
235
    else if (!("args" in obj) || obj.args != null)
 
236
    {
 
237
        query_string = "";
 
238
        var arg_val;
 
239
        for (var arg_key in obj.args)
 
240
        {
 
241
            arg_val = obj.args[arg_key];
 
242
            if (arg_val instanceof Array)
 
243
                for (var i=0; i<arg_val.length; i++)
 
244
                    query_string += "&" + encodeURI(arg_key) + "=" +
 
245
                        encodeURI(arg_val[i]);
 
246
            else
 
247
                query_string += "&" + encodeURI(arg_key) + "=" +
 
248
                    encodeURI(arg_val);
 
249
   
 
250
        }
 
251
        if (query_string == "")
 
252
            query_string = null;
 
253
        else
 
254
            /* Drop the first "&" */
 
255
            query_string = query_string.substr(1);
 
256
    }
 
257
 
 
258
    if (query_string != null)
 
259
        url += "?" + query_string;
 
260
 
 
261
    return url;
 
262
}
 
263
 
205
264
/** Given an argument map, as output in the args parameter of the return of
206
265
 * parseurl, gets the first occurence of an argument in the URL string.
207
266
 * If the argument was not found, returns null.