--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.0.0b1/api/Cookie.html Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,1047 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#">
+<head>
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+ <title>API: cookie Cookie (YUI Library)</title>
+
+ <link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css" />
+ <link rel="stylesheet" type="text/css" href="assets/api.css" />
+
+ <script type="text/javascript" src="assets/api-js"></script>
+ <script type="text/javascript" src="assets/ac-js"></script>
+</head>
+
+<body id="yahoo-com">
+
+<div id="doc3" class="yui-t2">
+ <div id="hd">
+ <h1><a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo! UI Library</a></h1>
+ <h3>cookie <span class="subtitle">3.0.0b1</span></h3>
+ <a href="./index.html" title="Yahoo! UI Library">Yahoo! UI Library</a>
+ > <a href="./module_cookie.html" title="cookie">cookie</a>
+ > Cookie
+
+ <form onsubmit="return false">
+ <div id="propertysearch">
+ Search: <input autocomplete="off" id="searchinput" />
+ <div id="searchresults">
+
+ </div>
+ </div>
+ </form>
+ </div>
+
+ <div id="bd">
+ <div id="yui-main">
+ <div class="yui-b">
+ <form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form">
+ <fieldset>
+ <legend>Filters</legend>
+ <span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span>
+ <span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span>
+ <span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span>
+ </fieldset>
+ </form>
+
+ <h2>
+
+
+ <code>static</code>
+
+ Class <b property="yui:name">Cookie</b>
+ <span class="extends">
+ </span>
+
+ </h2>
+ <!-- class tree goes here -->
+
+
+
+
+ <div class="summary description" property="yui:description">
+ Cookie utility.
+ </div>
+
+
+ <div rel="yui:properties" resource="#properties">
+
+ </div>
+
+ <div rel="yui:methods" resource="#methods">
+ <div class="section method details">
+ <h3 id="methods">Methods</h3>
+ <div class="content">
+ <div class="private" rel="yui:method" resource="#method__createCookieHashString">
+ <h4>
+ <a name="method__createCookieHashString">_createCookieHashString</a></h4>
+ <div class="detail" >
+ <code>
+ private
+ static
+
+ String
+ <strong property="yui:name">_createCookieHashString</strong>
+ (
+
+
+ hash
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Formats a cookie value for an object containing multiple values.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">hash</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> An object of key-value pairs to create a string for.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">A string suitable for use as a cookie value.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="private" rel="yui:method" resource="#method__createCookieString">
+ <h4>
+ <a name="method__createCookieString">_createCookieString</a></h4>
+ <div class="detail" >
+ <code>
+ private
+ static
+
+ String
+ <strong property="yui:name">_createCookieString</strong>
+ (
+
+
+ name
+
+
+ ,
+ value
+
+
+ ,
+ encodeValue
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Creates a cookie string that can be assigned into document.cookie.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">value</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The value of the cookie.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">encodeValue</span>
+ <<span property="yui:type">Boolean</span>>
+ </code>
+ <span property="yui:description"> True to encode the value, false to leave as-is.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) Options for the cookie.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">The formatted cookie string.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="private" rel="yui:method" resource="#method__parseCookieHash">
+ <h4>
+ <a name="method__parseCookieHash">_parseCookieHash</a></h4>
+ <div class="detail" >
+ <code>
+ private
+ static
+
+ Object
+ <strong property="yui:name">_parseCookieHash</strong>
+ (
+
+
+ text
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Parses a cookie hash string into an object.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">text</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The cookie hash string to parse (format: n1=v1&n2=v2).</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ Object
+ </code></dt>
+ <dd property="yui:returnInfo">An object containing entries for each cookie value.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="private" rel="yui:method" resource="#method__parseCookieString">
+ <h4>
+ <a name="method__parseCookieString">_parseCookieString</a></h4>
+ <div class="detail" >
+ <code>
+ private
+ static
+
+ Object
+ <strong property="yui:name">_parseCookieString</strong>
+ (
+
+
+ text
+
+
+ ,
+ shouldDecode
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Parses a cookie string into an object representing all accessible cookies.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">text</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The cookie string to parse.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">shouldDecode</span>
+ <<span property="yui:type">Boolean</span>>
+ </code>
+ <span property="yui:description"> (Optional) Indicates if the cookie values should be decoded or not. Default is true.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ Object
+ </code></dt>
+ <dd property="yui:returnInfo">An object containing entries for each accessible cookie.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_exists">
+ <h4>
+ <a name="method_exists">exists</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ Boolean
+ <strong property="yui:name">exists</strong>
+ (
+
+
+ name
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Determines if the cookie with the given name exists. This is useful for
+Boolean cookies (those that do not follow the name=value convention).
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to check.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ Boolean
+ </code></dt>
+ <dd property="yui:returnInfo">True if the cookie exists, false if not.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_get">
+ <h4>
+ <a name="method_get">get</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ Variant
+ <strong property="yui:name">get</strong>
+ (
+
+
+ name
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Returns the cookie value for the given name.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to retrieve.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Function|Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) An object containing one or more
+cookie options: raw (true/false) and converter (a function).
+The converter function is run on the value before returning it. The
+function is not used if the cookie doesn't exist. The function can be
+passed instead of the options object for backwards compatibility. When
+raw is set to true, the cookie value is not URI decoded.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ Variant
+ </code></dt>
+ <dd property="yui:returnInfo">If no converter is specified, returns a string or null if
+the cookie doesn't exist. If the converter is specified, returns the value
+returned from the converter or null if the cookie doesn't exist.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_getSub">
+ <h4>
+ <a name="method_getSub">getSub</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ Variant
+ <strong property="yui:name">getSub</strong>
+ (
+
+
+ name
+
+
+ ,
+ subName
+
+
+ ,
+ converter
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Returns the value of a subcookie.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to retrieve.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">subName</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the subcookie to retrieve.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">converter</span>
+ <<span property="yui:type">Function</span>>
+ </code>
+ <span property="yui:description"> (Optional) A function to run on the value before returning
+it. The function is not used if the cookie doesn't exist.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ Variant
+ </code></dt>
+ <dd property="yui:returnInfo">If the cookie doesn't exist, null is returned. If the subcookie
+doesn't exist, null if also returned. If no converter is specified and the
+subcookie exists, a string is returned. If a converter is specified and the
+subcookie exists, the value returned from the converter is returned.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_getSubs">
+ <h4>
+ <a name="method_getSubs">getSubs</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ Object
+ <strong property="yui:name">getSubs</strong>
+ (
+
+
+ name
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Returns an object containing name-value pairs stored in the cookie with the given name.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to retrieve.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ Object
+ </code></dt>
+ <dd property="yui:returnInfo">An object of name-value pairs if the cookie with the given name
+exists, null if it does not.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_remove">
+ <h4>
+ <a name="method_remove">remove</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ String
+ <strong property="yui:name">remove</strong>
+ (
+
+
+ name
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Removes a cookie from the machine by setting its expiration date to
+sometime in the past.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to remove.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) An object containing one or more
+cookie options: path (a string), domain (a string),
+and secure (true/false). The expires option will be overwritten
+by the method.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">The created cookie string.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_removeSub">
+ <h4>
+ <a name="method_removeSub">removeSub</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ String
+ <strong property="yui:name">removeSub</strong>
+ (
+
+
+ name
+
+
+ ,
+ subName
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Removes a sub cookie with a given name.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie in which the subcookie exists.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">subName</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the subcookie to remove.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) An object containing one or more
+cookie options: path (a string), domain (a string), expires (a Date object),
+removeIfEmpty (true/false), and secure (true/false). This must be the same
+settings as the original subcookie.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">The created cookie string.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_set">
+ <h4>
+ <a name="method_set">set</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ String
+ <strong property="yui:name">set</strong>
+ (
+
+
+ name
+
+
+ ,
+ value
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Sets a cookie with a given name and value.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to set.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">value</span>
+ <<span property="yui:type">Variant</span>>
+ </code>
+ <span property="yui:description"> The value to set for the cookie.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) An object containing one or more
+cookie options: path (a string), domain (a string), expires (a Date object),
+secure (true/false), and raw (true/false). Setting raw to true indicates
+that the cookie should not be URI encoded before being set.</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">The created cookie string.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_setSub">
+ <h4>
+ <a name="method_setSub">setSub</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ String
+ <strong property="yui:name">setSub</strong>
+ (
+
+
+ name
+
+
+ ,
+ subName
+
+
+ ,
+ value
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Sets a sub cookie with a given name to a particular value.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to set.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">subName</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the subcookie to set.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">value</span>
+ <<span property="yui:type">Variant</span>>
+ </code>
+ <span property="yui:description"> The value to set.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) An object containing one or more
+cookie options: path (a string), domain (a string), expires (a Date object),
+and secure (true/false).</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">The created cookie string.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ <div class="" rel="yui:method" resource="#method_setSubs">
+ <h4>
+ <a name="method_setSubs">setSubs</a></h4>
+ <div class="detail" >
+ <code>
+
+ static
+
+ String
+ <strong property="yui:name">setSubs</strong>
+ (
+
+
+ name
+
+
+ ,
+ value
+
+
+ ,
+ options
+
+
+ )
+ </code>
+
+ <div class="description" property="yui:description">
+ Sets a cookie with a given name to contain a hash of name-value pairs.
+ </div>
+
+ <div class="description">
+
+ <dl rel="yui:parameters">
+ <dt>Parameters:</dt>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">name</span>
+ <<span property="yui:type">String</span>>
+ </code>
+ <span property="yui:description"> The name of the cookie to set.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">value</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> An object containing name-value pairs.</span>
+ </dd>
+ <dd rel="yui:parameter">
+ <code><span property="yui:name">options</span>
+ <<span property="yui:type">Object</span>>
+ </code>
+ <span property="yui:description"> (Optional) An object containing one or more
+cookie options: path (a string), domain (a string), expires (a Date object),
+and secure (true/false).</span>
+ </dd>
+ </dl>
+
+ <dl>
+ <dt>Returns:
+ <code property="yui:return">
+ String
+ </code></dt>
+ <dd property="yui:returnInfo">The created cookie string.</dd>
+ </dl>
+
+
+
+
+ </div>
+
+ </div>
+ <hr />
+ </div>
+ </div>
+ </div>
+
+ </div>
+
+ <div rel="yui:events" resource="#events">
+
+
+ </div>
+
+ <div rel="yui:attributes" resource="#configattributes">
+
+ </div>
+
+ </div>
+ </div>
+ <div class="yui-b">
+ <div class="nav">
+
+ <div id="moduleList" class="module">
+ <h4>Modules</h4>
+ <ul class="content">
+ <li class=""><a href="module_anim.html" title="anim">anim</a></li>
+ <li class=""><a href="module_attribute.html" title="attribute">attribute</a></li>
+ <li class=""><a href="module_base.html" title="base">base</a></li>
+ <li class=""><a href="module_cache.html" title="cache">cache</a></li>
+ <li class=""><a href="module_classnamemanager.html" title="classnamemanager">classnamemanager</a></li>
+ <li class=""><a href="module_collection.html" title="collection">collection</a></li>
+ <li class=""><a href="module_console.html" title="console">console</a></li>
+ <li class=""><a href="module_console-filters.html" title="console-filters">console-filters</a></li>
+ <li class="selected"><a href="module_cookie.html" title="cookie">cookie</a></li>
+ <li class=""><a href="module_dataschema.html" title="dataschema">dataschema</a></li>
+ <li class=""><a href="module_datasource.html" title="datasource">datasource</a></li>
+ <li class=""><a href="module_datatype.html" title="datatype">datatype</a></li>
+ <li class=""><a href="module_dd.html" title="dd">dd</a></li>
+ <li class=""><a href="module_dom.html" title="dom">dom</a></li>
+ <li class=""><a href="module_dump.html" title="dump">dump</a></li>
+ <li class=""><a href="module_event.html" title="event">event</a></li>
+ <li class=""><a href="module_event-custom.html" title="event-custom">event-custom</a></li>
+ <li class=""><a href="module_event-simulate.html" title="event-simulate">event-simulate</a></li>
+ <li class=""><a href="module_history.html" title="history">history</a></li>
+ <li class=""><a href="module_imageloader.html" title="imageloader">imageloader</a></li>
+ <li class=""><a href="module_io.html" title="io">io</a></li>
+ <li class=""><a href="module_json.html" title="json">json</a></li>
+ <li class=""><a href="module_node.html" title="node">node</a></li>
+ <li class=""><a href="module_node-focusmanager.html" title="node-focusmanager">node-focusmanager</a></li>
+ <li class=""><a href="module_node-menunav.html" title="node-menunav">node-menunav</a></li>
+ <li class=""><a href="module_oop.html" title="oop">oop</a></li>
+ <li class=""><a href="module_overlay.html" title="overlay">overlay</a></li>
+ <li class=""><a href="module_plugin.html" title="plugin">plugin</a></li>
+ <li class=""><a href="module_profiler.html" title="profiler">profiler</a></li>
+ <li class=""><a href="module_queue.html" title="queue">queue</a></li>
+ <li class=""><a href="module_slider.html" title="slider">slider</a></li>
+ <li class=""><a href="module_stylesheet.html" title="stylesheet">stylesheet</a></li>
+ <li class=""><a href="module_substitute.html" title="substitute">substitute</a></li>
+ <li class=""><a href="module_test.html" title="test">test</a></li>
+ <li class=""><a href="module_widget.html" title="widget">widget</a></li>
+ <li class=""><a href="module_widget-position.html" title="widget-position">widget-position</a></li>
+ <li class=""><a href="module_widget-position-ext.html" title="widget-position-ext">widget-position-ext</a></li>
+ <li class=""><a href="module_widget-stack.html" title="widget-stack">widget-stack</a></li>
+ <li class=""><a href="module_widget-stdmod.html" title="widget-stdmod">widget-stdmod</a></li>
+ <li class=""><a href="module_yui.html" title="yui">yui</a></li>
+ </ul>
+ </div>
+
+ <div id="classList" class="module">
+ <h4>Classes</h4>
+ <ul class="content">
+ <li class="selected"><a href="Cookie.html" title="Cookie">Cookie</a></li>
+ </ul>
+ </div>
+
+ <div id="fileList" class="module">
+ <h4>Files</h4>
+ <ul class="content">
+ <li class=""><a href="Cookie.js.html" title="Cookie.js">Cookie.js</a></li>
+ </ul>
+ </div>
+
+
+ <div id="methodsList" class="module">
+ <h4>Methods</h4>
+ <ul class="content">
+ <li class="private"><a href="#method__createCookieHashString" title="_createCookieHashString">_createCookieHashString</a></li>
+ <li class="private"><a href="#method__createCookieString" title="_createCookieString">_createCookieString</a></li>
+ <li class="private"><a href="#method__parseCookieHash" title="_parseCookieHash">_parseCookieHash</a></li>
+ <li class="private"><a href="#method__parseCookieString" title="_parseCookieString">_parseCookieString</a></li>
+ <li class=""><a href="#method_exists" title="exists">exists</a></li>
+ <li class=""><a href="#method_get" title="get">get</a></li>
+ <li class=""><a href="#method_getSub" title="getSub">getSub</a></li>
+ <li class=""><a href="#method_getSubs" title="getSubs">getSubs</a></li>
+ <li class=""><a href="#method_remove" title="remove">remove</a></li>
+ <li class=""><a href="#method_removeSub" title="removeSub">removeSub</a></li>
+ <li class=""><a href="#method_set" title="set">set</a></li>
+ <li class=""><a href="#method_setSub" title="setSub">setSub</a></li>
+ <li class=""><a href="#method_setSubs" title="setSubs">setSubs</a></li>
+ </ul>
+ </div>
+
+
+
+ </div>
+ </div>
+ </div>
+ <div id="ft">
+ <hr />
+ Copyright © 2009 Yahoo! Inc. All rights reserved.
+ </div>
+</div>
+<script type="text/javascript">
+ ALL_YUI_PROPS = [{"access": "private", "host": "Cookie", "name": "_createCookieHashString", "url": "Cookie.html#method__createCookieHashString", "type": "method"}, {"access": "private", "host": "Cookie", "name": "_createCookieString", "url": "Cookie.html#method__createCookieString", "type": "method"}, {"access": "", "host": "Cookie", "name": "exists", "url": "Cookie.html#method_exists", "type": "method"}, {"access": "", "host": "Cookie", "name": "get", "url": "Cookie.html#method_get", "type": "method"}, {"access": "", "host": "Cookie", "name": "getSub", "url": "Cookie.html#method_getSub", "type": "method"}, {"access": "", "host": "Cookie", "name": "getSubs", "url": "Cookie.html#method_getSubs", "type": "method"}, {"access": "private", "host": "Cookie", "name": "_parseCookieHash", "url": "Cookie.html#method__parseCookieHash", "type": "method"}, {"access": "private", "host": "Cookie", "name": "_parseCookieString", "url": "Cookie.html#method__parseCookieString", "type": "method"}, {"access": "", "host": "Cookie", "name": "remove", "url": "Cookie.html#method_remove", "type": "method"}, {"access": "", "host": "Cookie", "name": "removeSub", "url": "Cookie.html#method_removeSub", "type": "method"}, {"access": "", "host": "Cookie", "name": "set", "url": "Cookie.html#method_set", "type": "method"}, {"access": "", "host": "Cookie", "name": "setSub", "url": "Cookie.html#method_setSub", "type": "method"}, {"access": "", "host": "Cookie", "name": "setSubs", "url": "Cookie.html#method_setSubs", "type": "method"}];
+</script>
+</body>
+</html>