@@ -2258,224 +2258,6 @@ util.clearItems = function(api, id, location) {
2258
2258
_callStorageFunction ( _clearItems , arguments , location ) ;
2259
2259
} ;
2260
2260
2261
- /* Storage for query variables */
2262
- var _queryVariables = null ;
2263
-
2264
- /**
2265
- * Returns the window location query variables. Query is parsed on the first
2266
- * call and the same object is returned on subsequent calls. The mapping
2267
- * is from keys to an array of values. Parameters without values will have
2268
- * an object key set but no value added to the value array. Values are
2269
- * unescaped.
2270
- *
2271
- * ...?k1=v1&k2=v2:
2272
- * {
2273
- * "k1": ["v1"],
2274
- * "k2": ["v2"]
2275
- * }
2276
- *
2277
- * ...?k1=v1&k1=v2:
2278
- * {
2279
- * "k1": ["v1", "v2"]
2280
- * }
2281
- *
2282
- * ...?k1=v1&k2:
2283
- * {
2284
- * "k1": ["v1"],
2285
- * "k2": []
2286
- * }
2287
- *
2288
- * ...?k1=v1&k1:
2289
- * {
2290
- * "k1": ["v1"]
2291
- * }
2292
- *
2293
- * ...?k1&k1:
2294
- * {
2295
- * "k1": []
2296
- * }
2297
- *
2298
- * @param query the query string to parse (optional, default to cached
2299
- * results from parsing window location search query).
2300
- *
2301
- * @return object mapping keys to variables.
2302
- */
2303
- util . getQueryVariables = function ( query ) {
2304
- var parse = function ( q ) {
2305
- var rval = { } ;
2306
- var kvpairs = q . split ( '&' ) ;
2307
- for ( var i = 0 ; i < kvpairs . length ; i ++ ) {
2308
- var pos = kvpairs [ i ] . indexOf ( '=' ) ;
2309
- var key ;
2310
- var val ;
2311
- if ( pos > 0 ) {
2312
- key = kvpairs [ i ] . substring ( 0 , pos ) ;
2313
- val = kvpairs [ i ] . substring ( pos + 1 ) ;
2314
- } else {
2315
- key = kvpairs [ i ] ;
2316
- val = null ;
2317
- }
2318
- if ( ! ( key in rval ) ) {
2319
- rval [ key ] = [ ] ;
2320
- }
2321
- // disallow overriding object prototype keys
2322
- if ( ! ( key in Object . prototype ) && val !== null ) {
2323
- rval [ key ] . push ( unescape ( val ) ) ;
2324
- }
2325
- }
2326
- return rval ;
2327
- } ;
2328
-
2329
- var rval ;
2330
- if ( typeof ( query ) === 'undefined' ) {
2331
- // set cached variables if needed
2332
- if ( _queryVariables === null ) {
2333
- if ( typeof ( window ) !== 'undefined' && window . location && window . location . search ) {
2334
- // parse window search query
2335
- _queryVariables = parse ( window . location . search . substring ( 1 ) ) ;
2336
- } else {
2337
- // no query variables available
2338
- _queryVariables = { } ;
2339
- }
2340
- }
2341
- rval = _queryVariables ;
2342
- } else {
2343
- // parse given query
2344
- rval = parse ( query ) ;
2345
- }
2346
- return rval ;
2347
- } ;
2348
-
2349
- /**
2350
- * Parses a fragment into a path and query. This method will take a URI
2351
- * fragment and break it up as if it were the main URI. For example:
2352
- * /bar/baz?a=1&b=2
2353
- * results in:
2354
- * {
2355
- * path: ["bar", "baz"],
2356
- * query: {"k1": ["v1"], "k2": ["v2"]}
2357
- * }
2358
- *
2359
- * @return object with a path array and query object.
2360
- */
2361
- util . parseFragment = function ( fragment ) {
2362
- // default to whole fragment
2363
- var fp = fragment ;
2364
- var fq = '' ;
2365
- // split into path and query if possible at the first '?'
2366
- var pos = fragment . indexOf ( '?' ) ;
2367
- if ( pos > 0 ) {
2368
- fp = fragment . substring ( 0 , pos ) ;
2369
- fq = fragment . substring ( pos + 1 ) ;
2370
- }
2371
- // split path based on '/' and ignore first element if empty
2372
- var path = fp . split ( '/' ) ;
2373
- if ( path . length > 0 && path [ 0 ] === '' ) {
2374
- path . shift ( ) ;
2375
- }
2376
- // convert query into object
2377
- var query = ( fq === '' ) ? { } : util . getQueryVariables ( fq ) ;
2378
-
2379
- return {
2380
- pathString : fp ,
2381
- queryString : fq ,
2382
- path : path ,
2383
- query : query
2384
- } ;
2385
- } ;
2386
-
2387
- /**
2388
- * Makes a request out of a URI-like request string. This is intended to
2389
- * be used where a fragment id (after a URI '#') is parsed as a URI with
2390
- * path and query parts. The string should have a path beginning and
2391
- * delimited by '/' and optional query parameters following a '?'. The
2392
- * query should be a standard URL set of key value pairs delimited by
2393
- * '&'. For backwards compatibility the initial '/' on the path is not
2394
- * required. The request object has the following API, (fully described
2395
- * in the method code):
2396
- * {
2397
- * path: <the path string part>.
2398
- * query: <the query string part>,
2399
- * getPath(i): get part or all of the split path array,
2400
- * getQuery(k, i): get part or all of a query key array,
2401
- * getQueryLast(k, _default): get last element of a query key array.
2402
- * }
2403
- *
2404
- * @return object with request parameters.
2405
- */
2406
- util . makeRequest = function ( reqString ) {
2407
- var frag = util . parseFragment ( reqString ) ;
2408
- var req = {
2409
- // full path string
2410
- path : frag . pathString ,
2411
- // full query string
2412
- query : frag . queryString ,
2413
- /**
2414
- * Get path or element in path.
2415
- *
2416
- * @param i optional path index.
2417
- *
2418
- * @return path or part of path if i provided.
2419
- */
2420
- getPath : function ( i ) {
2421
- return ( typeof ( i ) === 'undefined' ) ? frag . path : frag . path [ i ] ;
2422
- } ,
2423
- /**
2424
- * Get query, values for a key, or value for a key index.
2425
- *
2426
- * @param k optional query key.
2427
- * @param i optional query key index.
2428
- *
2429
- * @return query, values for a key, or value for a key index.
2430
- */
2431
- getQuery : function ( k , i ) {
2432
- var rval ;
2433
- if ( typeof ( k ) === 'undefined' ) {
2434
- rval = frag . query ;
2435
- } else {
2436
- rval = frag . query [ k ] ;
2437
- if ( rval && typeof ( i ) !== 'undefined' ) {
2438
- rval = rval [ i ] ;
2439
- }
2440
- }
2441
- return rval ;
2442
- } ,
2443
- getQueryLast : function ( k , _default ) {
2444
- var rval ;
2445
- var vals = req . getQuery ( k ) ;
2446
- if ( vals ) {
2447
- rval = vals [ vals . length - 1 ] ;
2448
- } else {
2449
- rval = _default ;
2450
- }
2451
- return rval ;
2452
- }
2453
- } ;
2454
- return req ;
2455
- } ;
2456
-
2457
- /**
2458
- * Makes a URI out of a path, an object with query parameters, and a
2459
- * fragment. Uses jQuery.param() internally for query string creation.
2460
- * If the path is an array, it will be joined with '/'.
2461
- *
2462
- * @param path string path or array of strings.
2463
- * @param query object with query parameters. (optional)
2464
- * @param fragment fragment string. (optional)
2465
- *
2466
- * @return string object with request parameters.
2467
- */
2468
- util . makeLink = function ( path , query , fragment ) {
2469
- // join path parts if needed
2470
- path = jQuery . isArray ( path ) ? path . join ( '/' ) : path ;
2471
-
2472
- var qstr = jQuery . param ( query || { } ) ;
2473
- fragment = fragment || '' ;
2474
- return path +
2475
- ( ( qstr . length > 0 ) ? ( '?' + qstr ) : '' ) +
2476
- ( ( fragment . length > 0 ) ? ( '#' + fragment ) : '' ) ;
2477
- } ;
2478
-
2479
2261
/**
2480
2262
* Check if an object is empty.
2481
2263
*
0 commit comments