From 3f75ea25aeee817edec10fbf5a752c2d156fd288 Mon Sep 17 00:00:00 2001 From: Brandon Black Date: Wed, 9 Dec 2015 15:13:16 -0800 Subject: [PATCH 01/25] Create gh-pages branch via GitHub --- index.html | 156 +++++++++++++++++ javascripts/scale.fix.js | 17 ++ params.json | 1 + stylesheets/github-light.css | 116 +++++++++++++ stylesheets/styles.css | 324 +++++++++++++++++++++++++++++++++++ 5 files changed, 614 insertions(+) create mode 100644 index.html create mode 100644 javascripts/scale.fix.js create mode 100644 params.json create mode 100644 stylesheets/github-light.css create mode 100644 stylesheets/styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..bfeeaff --- /dev/null +++ b/index.html @@ -0,0 +1,156 @@ + + + + + + Twitter Ads API SDK for Python by twitterdev + + + + + + + +
+
+

Twitter Ads API SDK for Python

+

A Twitter supported and maintained Ads API SDK for Python.

+ +

View the Project on GitHub twitterdev/twitter-python-ads-sdk

+ + + +
+
+

Build Status Code Climate PyPy Version

+ +

+Installation

+ +
# installing the latest signed release
+pip install twitter-ads
+
+ +

+Quick Start

+ +
from twitter_ads.client import Client
+from twitter_ads.account import Account
+from twitter_ads.campaign import Campaign
+
+CONSUMER_KEY = 'your consumer key'
+CONSUMER_SECRET = 'your consumer secret'
+ACCESS_TOKEN = 'access token'
+ACCESS_TOKEN_SECRET = 'access token secret'
+ACCOUNT_ID = 'account id'
+
+# initialize the client
+client = Client(
+    CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
+
+# load the advertiser account instance
+account = client.accounts(id=ACCOUNT_ID)
+
+# load and update a specific campaign
+campaign = account.campaigns().next()
+campaign.name = 'updated campaign name'
+campaign.paused = True
+campaign.save()
+
+# iterate through campaigns
+for campaign in account.campaigns():
+    print(campaign.id)
+
+ +

+Command Line Helper

+ +
# The twitter-ads command launches an interactive session for testing purposes
+# with a client instance automatically loaded from your .twurlrc file.
+
+~ ❯ twitter-ads
+
+ +

For more help please see our Examples and Guides or check the online Reference Documentation.

+ +

+Compatibility & Versioning

+ +

This project is designed to work with Python 2.7 or greater. While it may work on other version of Python, below are the platform and runtime versions we officially support and regularly test against.

+ + + + + + + + + + + + + + + + + + + + + + +
PlatformVersions
CPython2.7, 3.2, 3.3, 3.4
PyPy2.x, 4.x
+ +

All releases adhere to strict semantic versioning. For Example, major.minor.patch-pre (aka. stick.carrot.oops-peek).

+ +

+Development

+ +

If you’d like to contribute to the project or try an unreleased development version of this project locally, you can do so quite easily by following the examples below.

+ +
# clone the repository
+git clone git@github.com:twitterdev/twitter-python-ads-sdk.git
+cd twitter-python-ads-sdk
+
+# install dependencies
+pip install -r requirements.txt
+
+# installing a local unsigned release
+pip install -e .
+
+ +

We love community contributions! If you’re planning to send us a pull request, please make sure read our Contributing Guidelines first.

+ +

+Feedback and Bug Reports

+ +

Found an issue? Please open up a GitHub issue or even better yet send us a pull request. Have a question? Want to discuss a new feature? Come chat with us in the Twitter Community Forums.

+ +

+License

+ +

The MIT License (MIT)

+ +

Copyright (C) 2015 Twitter, Inc.

+ +

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

+ +

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

+ +

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+
+ +
+ + + + diff --git a/javascripts/scale.fix.js b/javascripts/scale.fix.js new file mode 100644 index 0000000..87a40ca --- /dev/null +++ b/javascripts/scale.fix.js @@ -0,0 +1,17 @@ +var metas = document.getElementsByTagName('meta'); +var i; +if (navigator.userAgent.match(/iPhone/i)) { + for (i=0; i\r\n\r\n\r\n\r\n\r\n\r\n\r\nPlatform\r\nVersions\r\n\r\n\r\n\r\n\r\nCPython\r\n2.7, 3.2, 3.3, 3.4\r\n\r\n\r\nPyPy\r\n2.x, 4.x\r\n\r\n\r\n\r\n\r\nAll releases adhere to strict [semantic versioning](http://semver.org). For Example, major.minor.patch-pre (aka. stick.carrot.oops-peek).\r\n\r\nDevelopment\r\n===========\r\n\r\nIf you’d like to contribute to the project or try an unreleased development version of this project locally, you can do so quite easily by following the examples below.\r\n\r\n``` sourceCode\r\n# clone the repository\r\ngit clone git@github.com:twitterdev/twitter-python-ads-sdk.git\r\ncd twitter-python-ads-sdk\r\n\r\n# install dependencies\r\npip install -r requirements.txt\r\n\r\n# installing a local unsigned release\r\npip install -e .\r\n```\r\n\r\nWe love community contributions! If you’re planning to send us a pull request, please make sure read our [Contributing Guidelines](https://github.com/twitterdev/twitter-python-ads-sdk/blob/master/CONTRIBUTING.md) first.\r\n\r\nFeedback and Bug Reports\r\n========================\r\n\r\nFound an issue? Please open up a [GitHub issue](https://github.com/twitterdev/twitter-python-ads-sdk/issues) or even better yet [send us](https://github.com/twitterdev/twitter-python-ads-sdk/blob/master/CONTRIBUTING.md) a pull request. Have a question? Want to discuss a new feature? Come chat with us in the [Twitter Community Forums](https://twittercommunity.com/c/advertiser-api).\r\n\r\nLicense\r\n=======\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (C) 2015 Twitter, Inc.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."} \ No newline at end of file diff --git a/stylesheets/github-light.css b/stylesheets/github-light.css new file mode 100644 index 0000000..872a6f4 --- /dev/null +++ b/stylesheets/github-light.css @@ -0,0 +1,116 @@ +/* + Copyright 2014 GitHub Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +*/ + +.pl-c /* comment */ { + color: #969896; +} + +.pl-c1 /* constant, markup.raw, meta.diff.header, meta.module-reference, meta.property-name, support, support.constant, support.variable, variable.other.constant */, +.pl-s .pl-v /* string variable */ { + color: #0086b3; +} + +.pl-e /* entity */, +.pl-en /* entity.name */ { + color: #795da3; +} + +.pl-s .pl-s1 /* string source */, +.pl-smi /* storage.modifier.import, storage.modifier.package, storage.type.java, variable.other, variable.parameter.function */ { + color: #333; +} + +.pl-ent /* entity.name.tag */ { + color: #63a35c; +} + +.pl-k /* keyword, storage, storage.type */ { + color: #a71d5d; +} + +.pl-pds /* punctuation.definition.string, string.regexp.character-class */, +.pl-s /* string */, +.pl-s .pl-pse .pl-s1 /* string punctuation.section.embedded source */, +.pl-sr /* string.regexp */, +.pl-sr .pl-cce /* string.regexp constant.character.escape */, +.pl-sr .pl-sra /* string.regexp string.regexp.arbitrary-repitition */, +.pl-sr .pl-sre /* string.regexp source.ruby.embedded */ { + color: #183691; +} + +.pl-v /* variable */ { + color: #ed6a43; +} + +.pl-id /* invalid.deprecated */ { + color: #b52a1d; +} + +.pl-ii /* invalid.illegal */ { + background-color: #b52a1d; + color: #f8f8f8; +} + +.pl-sr .pl-cce /* string.regexp constant.character.escape */ { + color: #63a35c; + font-weight: bold; +} + +.pl-ml /* markup.list */ { + color: #693a17; +} + +.pl-mh /* markup.heading */, +.pl-mh .pl-en /* markup.heading entity.name */, +.pl-ms /* meta.separator */ { + color: #1d3e81; + font-weight: bold; +} + +.pl-mq /* markup.quote */ { + color: #008080; +} + +.pl-mi /* markup.italic */ { + color: #333; + font-style: italic; +} + +.pl-mb /* markup.bold */ { + color: #333; + font-weight: bold; +} + +.pl-md /* markup.deleted, meta.diff.header.from-file */ { + background-color: #ffecec; + color: #bd2c00; +} + +.pl-mi1 /* markup.inserted, meta.diff.header.to-file */ { + background-color: #eaffea; + color: #55a532; +} + +.pl-mdr /* meta.diff.range */ { + color: #795da3; + font-weight: bold; +} + +.pl-mo /* meta.output */ { + color: #1d3e81; +} + diff --git a/stylesheets/styles.css b/stylesheets/styles.css new file mode 100644 index 0000000..2e1768e --- /dev/null +++ b/stylesheets/styles.css @@ -0,0 +1,324 @@ +@font-face { + font-family: 'Noto Sans'; + font-weight: 400; + font-style: normal; + src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot'); + src: url('../fonts/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix') format('embedded-opentype'), + local('Noto Sans'), + local('Noto-Sans-regular'), + url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff2') format('woff2'), + url('../fonts/Noto-Sans-regular/Noto-Sans-regular.woff') format('woff'), + url('../fonts/Noto-Sans-regular/Noto-Sans-regular.ttf') format('truetype'), + url('../fonts/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans') format('svg'); +} + +@font-face { + font-family: 'Noto Sans'; + font-weight: 700; + font-style: normal; + src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot'); + src: url('../fonts/Noto-Sans-700/Noto-Sans-700.eot?#iefix') format('embedded-opentype'), + local('Noto Sans Bold'), + local('Noto-Sans-700'), + url('../fonts/Noto-Sans-700/Noto-Sans-700.woff2') format('woff2'), + url('../fonts/Noto-Sans-700/Noto-Sans-700.woff') format('woff'), + url('../fonts/Noto-Sans-700/Noto-Sans-700.ttf') format('truetype'), + url('../fonts/Noto-Sans-700/Noto-Sans-700.svg#NotoSans') format('svg'); +} + +@font-face { + font-family: 'Noto Sans'; + font-weight: 400; + font-style: italic; + src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot'); + src: url('../fonts/Noto-Sans-italic/Noto-Sans-italic.eot?#iefix') format('embedded-opentype'), + local('Noto Sans Italic'), + local('Noto-Sans-italic'), + url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff2') format('woff2'), + url('../fonts/Noto-Sans-italic/Noto-Sans-italic.woff') format('woff'), + url('../fonts/Noto-Sans-italic/Noto-Sans-italic.ttf') format('truetype'), + url('../fonts/Noto-Sans-italic/Noto-Sans-italic.svg#NotoSans') format('svg'); +} + +@font-face { + font-family: 'Noto Sans'; + font-weight: 700; + font-style: italic; + src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot'); + src: url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot?#iefix') format('embedded-opentype'), + local('Noto Sans Bold Italic'), + local('Noto-Sans-700italic'), + url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2') format('woff2'), + url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff') format('woff'), + url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf') format('truetype'), + url('../fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg#NotoSans') format('svg'); +} + +body { + background-color: #fff; + padding:50px; + font: 14px/1.5 "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; + color:#727272; + font-weight:400; +} + +h1, h2, h3, h4, h5, h6 { + color:#222; + margin:0 0 20px; +} + +p, ul, ol, table, pre, dl { + margin:0 0 20px; +} + +h1, h2, h3 { + line-height:1.1; +} + +h1 { + font-size:28px; +} + +h2 { + color:#393939; +} + +h3, h4, h5, h6 { + color:#494949; +} + +a { + color:#39c; + text-decoration:none; +} + +a:hover { + color:#069; +} + +a small { + font-size:11px; + color:#777; + margin-top:-0.3em; + display:block; +} + +a:hover small { + color:#777; +} + +.wrapper { + width:860px; + margin:0 auto; +} + +blockquote { + border-left:1px solid #e5e5e5; + margin:0; + padding:0 0 0 20px; + font-style:italic; +} + +code, pre { + font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal, Consolas, Liberation Mono, DejaVu Sans Mono, Courier New, monospace; + color:#333; + font-size:12px; +} + +pre { + padding:8px 15px; + background: #f8f8f8; + border-radius:5px; + border:1px solid #e5e5e5; + overflow-x: auto; +} + +table { + width:100%; + border-collapse:collapse; +} + +th, td { + text-align:left; + padding:5px 10px; + border-bottom:1px solid #e5e5e5; +} + +dt { + color:#444; + font-weight:700; +} + +th { + color:#444; +} + +img { + max-width:100%; +} + +header { + width:270px; + float:left; + position:fixed; + -webkit-font-smoothing:subpixel-antialiased; +} + +header ul { + list-style:none; + height:40px; + padding:0; + background: #f4f4f4; + border-radius:5px; + border:1px solid #e0e0e0; + width:270px; +} + +header li { + width:89px; + float:left; + border-right:1px solid #e0e0e0; + height:40px; +} + +header li:first-child a { + border-radius:5px 0 0 5px; +} + +header li:last-child a { + border-radius:0 5px 5px 0; +} + +header ul a { + line-height:1; + font-size:11px; + color:#999; + display:block; + text-align:center; + padding-top:6px; + height:34px; +} + +header ul a:hover { + color:#999; +} + +header ul a:active { + background-color:#f0f0f0; +} + +strong { + color:#222; + font-weight:700; +} + +header ul li + li + li { + border-right:none; + width:89px; +} + +header ul a strong { + font-size:14px; + display:block; + color:#222; +} + +section { + width:500px; + float:right; + padding-bottom:50px; +} + +small { + font-size:11px; +} + +hr { + border:0; + background:#e5e5e5; + height:1px; + margin:0 0 20px; +} + +footer { + width:270px; + float:left; + position:fixed; + bottom:50px; + -webkit-font-smoothing:subpixel-antialiased; +} + +@media print, screen and (max-width: 960px) { + + div.wrapper { + width:auto; + margin:0; + } + + header, section, footer { + float:none; + position:static; + width:auto; + } + + header { + padding-right:320px; + } + + section { + border:1px solid #e5e5e5; + border-width:1px 0; + padding:20px 0; + margin:0 0 20px; + } + + header a small { + display:inline; + } + + header ul { + position:absolute; + right:50px; + top:52px; + } +} + +@media print, screen and (max-width: 720px) { + body { + word-wrap:break-word; + } + + header { + padding:0; + } + + header ul, header p.view { + position:static; + } + + pre, code { + word-wrap:normal; + } +} + +@media print, screen and (max-width: 480px) { + body { + padding:15px; + } + + header ul { + width:99%; + } + + header li, header ul li + li + li { + width:33%; + } +} + +@media print { + body { + padding:0.4in; + font-size:12pt; + color:#444; + } +} From eb87b247dc334e33cff7c8012dbec88470f57510 Mon Sep 17 00:00:00 2001 From: Brandon Black Date: Wed, 9 Dec 2015 15:18:44 -0800 Subject: [PATCH 02/25] [docs] tweaks to gh template --- index.html | 26 ++++++++++++-------------- python-sdk.png | Bin 0 -> 81661 bytes reference/.gitkeep | 0 3 files changed, 12 insertions(+), 14 deletions(-) create mode 100644 python-sdk.png create mode 100644 reference/.gitkeep diff --git a/index.html b/index.html index bfeeaff..911c1fa 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - Twitter Ads API SDK for Python by twitterdev + Twitter Ads API SDK for Python @@ -15,12 +15,15 @@
-

Twitter Ads API SDK for Python

-

A Twitter supported and maintained Ads API SDK for Python.

- -

View the Project on GitHub twitterdev/twitter-python-ads-sdk

- - +

Twitter Ads SDK
for Python

+ A Twitter supported and maintained Ads API SDK for Python. +

+

+ Examples & Guides
+ Twitter Ads SDK Documentation
+ Twitter Ads API Documentation
+ Twitter Community (Ads API)
+

  • Download ZIP File
  • Download TAR Ball
  • @@ -125,12 +128,12 @@

    pip install -e . -

    We love community contributions! If you’re planning to send us a pull request, please make sure read our Contributing Guidelines first.

    +

    We love community contributions! If you’re planning to send us a pull request, please make sure read our Contributing Guidelines first.

    Feedback and Bug Reports

    -

    Found an issue? Please open up a GitHub issue or even better yet send us a pull request. Have a question? Want to discuss a new feature? Come chat with us in the Twitter Community Forums.

    +

    Found an issue? Please open up a GitHub issue or even better yet send us a pull request. Have a question? Want to discuss a new feature? Come chat with us in the Twitter Community Forums.

    License

    @@ -145,12 +148,7 @@

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    -

- diff --git a/python-sdk.png b/python-sdk.png new file mode 100644 index 0000000000000000000000000000000000000000..b4364b9ffb1ba7b06125aa94c1c934d81241ae4d GIT binary patch literal 81661 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

N*<_}EY&CGL7K&&{7En}uq;mM| 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 literal 0 HcmV?d00001 diff --git a/reference/.gitkeep b/reference/.gitkeep new file mode 100644 index 0000000..e69de29 From c4903fa2787c7e01596854be5174405c01f13231 Mon Sep 17 00:00:00 2001 From: Brandon Black Date: Wed, 9 Dec 2015 18:11:47 -0800 Subject: [PATCH 03/25] rc1 docs --- reference/_modules/index.html | 84 + reference/_modules/twitter_ads/error.html | 193 + reference/_sources/index.txt | 150 + reference/_sources/twitter_ads/error.txt | 6 + reference/_sources/twitter_ads/index.txt | 7 + reference/_static/ajax-loader.gif | Bin 0 -> 673 bytes reference/_static/alabaster.css | 585 ++ reference/_static/basic.css | 599 ++ reference/_static/comment-bright.png | Bin 0 -> 3500 bytes reference/_static/comment-close.png | Bin 0 -> 3578 bytes reference/_static/comment.png | Bin 0 -> 3445 bytes reference/_static/doctools.js | 263 + reference/_static/down-pressed.png | Bin 0 -> 347 bytes reference/_static/down.png | Bin 0 -> 347 bytes reference/_static/file.png | Bin 0 -> 358 bytes reference/_static/jquery-1.11.1.js | 10308 ++++++++++++++++++++ reference/_static/jquery.js | 4 + reference/_static/minus.png | Bin 0 -> 173 bytes reference/_static/plus.png | Bin 0 -> 173 bytes reference/_static/pygments.css | 63 + reference/_static/searchtools.js | 651 ++ reference/_static/underscore-1.3.1.js | 999 ++ reference/_static/underscore.js | 31 + reference/_static/up-pressed.png | Bin 0 -> 345 bytes reference/_static/up.png | Bin 0 -> 345 bytes reference/_static/websupport.js | 808 ++ reference/genindex.html | 204 + reference/index.html | 238 + reference/objects.inv | 7 + reference/py-modindex.html | 108 + reference/search.html | 99 + reference/searchindex.js | 1 + reference/twitter_ads/error.html | 158 + reference/twitter_ads/index.html | 99 + 34 files changed, 15665 insertions(+) create mode 100644 reference/_modules/index.html create mode 100644 reference/_modules/twitter_ads/error.html create mode 100644 reference/_sources/index.txt create mode 100644 reference/_sources/twitter_ads/error.txt create mode 100644 reference/_sources/twitter_ads/index.txt create mode 100644 reference/_static/ajax-loader.gif create mode 100644 reference/_static/alabaster.css create mode 100644 reference/_static/basic.css create mode 100644 reference/_static/comment-bright.png create mode 100644 reference/_static/comment-close.png create mode 100644 reference/_static/comment.png create mode 100644 reference/_static/doctools.js create mode 100644 reference/_static/down-pressed.png create mode 100644 reference/_static/down.png create mode 100644 reference/_static/file.png create mode 100644 reference/_static/jquery-1.11.1.js create mode 100644 reference/_static/jquery.js create mode 100644 reference/_static/minus.png create mode 100644 reference/_static/plus.png create mode 100644 reference/_static/pygments.css create mode 100644 reference/_static/searchtools.js create mode 100644 reference/_static/underscore-1.3.1.js create mode 100644 reference/_static/underscore.js create mode 100644 reference/_static/up-pressed.png create mode 100644 reference/_static/up.png create mode 100644 reference/_static/websupport.js create mode 100644 reference/genindex.html create mode 100644 reference/index.html create mode 100644 reference/objects.inv create mode 100644 reference/py-modindex.html create mode 100644 reference/search.html create mode 100644 reference/searchindex.js create mode 100644 reference/twitter_ads/error.html create mode 100644 reference/twitter_ads/index.html diff --git a/reference/_modules/index.html b/reference/_modules/index.html new file mode 100644 index 0000000..1605a84 --- /dev/null +++ b/reference/_modules/index.html @@ -0,0 +1,84 @@ + + + + + + + + Overview: module code — Twitter Ads API SDK for Python 0.1.0.rc1 documentation + + + + + + + + + + + + + + + + +

+
+
+
+ +

All modules for which code is available

+ + +
+
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/reference/_modules/twitter_ads/error.html b/reference/_modules/twitter_ads/error.html new file mode 100644 index 0000000..19d2a45 --- /dev/null +++ b/reference/_modules/twitter_ads/error.html @@ -0,0 +1,193 @@ + + + + + + + + twitter_ads.error — Twitter Ads API SDK for Python 0.1.0.rc1 documentation + + + + + + + + + + + + + + + + + +
+
+
+
+ +

Source code for twitter_ads.error

+# Copyright (C) 2015 Twitter, Inc.
+
+"""Container for all errors raised by the Twitter Ads SDK."""
+
+
+
[docs]class Error(Exception): + """The base class for all SDK error types.""" + + def __init__(self, response, **kwargs): + self._response = response + self._code = kwargs.get('code', response.code) + self._details = kwargs.get('details', response.body.get('errors', None)) + + @property + def response(self): + return self._response + + @property + def code(self): + return self._code + + @property + def details(self): + return self._details + + def __repr__(self): + return '<{name} object at {mem} code={code} details={details}>'.format( + name=self.__class__.__name__, + mem=hex(id(self)), + code=getattr(self, 'code'), + details=getattr(self, 'details') + ) + + @staticmethod +
[docs] def from_response(response): + """Returns the correct error type from a ::class::`Response` object.""" + if response.code: + return ERRORS[response.code](response) + else: + return Error(response)
+ + +
[docs]class ClientError(Error): + """Parent class for preventable client errors."""
+ + +
[docs]class BadRequest(ClientError): + """Bad Request (400)."""
+ + +
[docs]class NotAuthorized(ClientError): + """Not Authorized (401)."""
+ + +
[docs]class Forbidden(ClientError): + """Forbidden (403)."""
+ + +
[docs]class NotFound(ClientError): + """Forbidden (404)."""
+ + +
[docs]class RateLimit(ClientError): + """Rate Limit (429).""" + + def __init__(self, response, **kwargs): + super(self, response, **kwargs) + self._retry_after = response.headers.get('retry-after', None) + self._reset_at = response.headers.get('rate_limit_reset', None) + + @property + def reset_at(self): + return self._reset_at + + @property + def retry_after(self): + return self._retry_after
+ + +
[docs]class ServerError(Error): + """Server Error (500)."""
+ + +
[docs]class ServiceUnavailable(ServerError): + """Service Unavailable (503).""" + + def __init__(self, response, **kwargs): + super(self, response, **kwargs) + self._retry_after = response.headers.get('retry-after', None) + + @property + def reset_at(self): + return self._reset_at + + @property + def retry_after(self): + return self._retry_after
+ +ERRORS = { + 400: BadRequest, + 401: NotAuthorized, + 403: Forbidden, + 404: NotFound, + 429: RateLimit, + 500: ServerError, + 503: ServiceUnavailable +} +
+ +
+
+
+ +
+
+ + + + + + + \ No newline at end of file diff --git a/reference/_sources/index.txt b/reference/_sources/index.txt new file mode 100644 index 0000000..1ffca73 --- /dev/null +++ b/reference/_sources/index.txt @@ -0,0 +1,150 @@ +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` + +.. toctree:: + :hidden: + + twitter_ads/index + twitter_ads/error + +Getting Started +--------------- +|Build Status| |Code Climate| |PyPy Version| + +Installation +'''''''''''' + +.. code:: bash + + # installing the latest signed release + pip install twitter-ads + +Quick Start +''''''''''' + +.. code:: python + + from twitter_ads import * + + # initialize the client + client = Client(CONSUMER_KEY, + CONSUMER_SECRET, + ACCESS_TOKEN, + ACCESS_TOKEN_SECRET) + + # load the advertiser account instance + account = client.accounts(id=ACCOUNT_ID) + + # load and update a specific campaign + campaign = list(account.campaigns())[0] + campaign.name = 'updated campaign name' + campaign.paused = True + campaign.save() + + # iterate through campaigns + for campaign in account.campaigns(): + print campaign.id + +Command Line Helper +''''''''''''''''''' + +.. code:: bash + + # The twitter-ads command launches an interactive session for testing purposes + # with a client instance automatically loaded from your .twurlrc file. + + ~ ❯ twitter-ads + +For more help please see our `Examples and Guides`_ or check the online +`Reference Documentation`_. + +Compatibility & Versioning +-------------------------- + +This project is designed to work with Python 2.7 or greater. While it +may work on other version of Python, below are the platform and runtime +versions we officially support and regularly test against. + ++------------+----------------------+ +| Platform | Versions | ++============+======================+ +| CPython | 2.7, 3.2, 3.3, 3.4 | ++------------+----------------------+ +| PyPy | 2.x, 4.x | ++------------+----------------------+ + +All releases adhere to strict `semantic versioning`_. For Example, +major.minor.patch-pre (aka. stick.carrot.oops-peek). + +Development +----------- + +If you’d like to contribute to the project or try an unreleased +development version of this project locally, you can do so quite easily +by following the examples below. + +.. code:: bash + + # clone the repository + git clone git@github.com:twitterdev/twitter-python-ads-sdk.git + cd twitter-python-ads-sdk + + # install dependencies + pip install -r requirements.txt + + # installing a local unsigned release + pip install -e . + +We love community contributions! If you’re planning to send us a pull +request, please make sure read our `Contributing Guidelines`_ first. + +Feedback and Bug Reports +------------------------ + +Found an issue? Please open up a `GitHub issue`_ or even better yet +`send us`_ a pull request. Have a question? Want to discuss a new +feature? Come chat with us in the `Twitter Community Forums`_. + +License +------- + +The MIT License (MIT) + +Copyright (C) 2015 Twitter, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +.. _Examples and Guides: https://github.com/twitterdev/twitter-python-ads-sdk/tree/master/examples +.. _Reference Documentation: http://twitterdev.github.io/twitter-python-ads-sdk/reference/index.html +.. _semantic versioning: http://semver.org +.. _Contributing Guidelines: https://github.com/twitterdev/twitter-python-ads-sdk/blob/master/CONTRIBUTING.rst +.. _GitHub issue: https://github.com/twitterdev/twitter-python-ads-sdk/issues +.. _send us: https://github.com/twitterdev/twitter-python-ads-sdk/blob/master/CONTRIBUTING.rst +.. _Twitter Community Forums: https://twittercommunity.com/c/advertiser-api + +.. |Build Status| image:: https://travis-ci.org/twitterdev/twitter-python-ads-sdk.svg?branch=master + :target: https://travis-ci.org/twitterdev/twitter-python-ads-sdk +.. |Code Climate| image:: https://codeclimate.com/github/twitterdev/twitter-python-ads-sdk/badges/gpa.svg + :target: https://codeclimate.com/github/twitterdev/twitter-python-ads-sdk +.. |PyPy Version| image:: https://badge.fury.io/py/twitter-ads.svg + :target: http://badge.fury.io/rb/twitter-ads + +.. toctree:: + :maxdepth: 2 diff --git a/reference/_sources/twitter_ads/error.txt b/reference/_sources/twitter_ads/error.txt new file mode 100644 index 0000000..d172971 --- /dev/null +++ b/reference/_sources/twitter_ads/error.txt @@ -0,0 +1,6 @@ +:mod:`error` -- Module for all error types raised by the SDK +============================================================ + +.. automodule:: twitter_ads.error + :synopsis: Module for all error types raised by the SDK. + :members: diff --git a/reference/_sources/twitter_ads/index.txt b/reference/_sources/twitter_ads/index.txt new file mode 100644 index 0000000..7955e11 --- /dev/null +++ b/reference/_sources/twitter_ads/index.txt @@ -0,0 +1,7 @@ +:mod:`twitter_ads` -- Base module for the Twitter Ads SDK +========================================================= + +.. automodule:: twitter_ads + :synopsis: Base module for the Twitter Ads SDK + :members: + diff --git a/reference/_static/ajax-loader.gif b/reference/_static/ajax-loader.gif new file mode 100644 index 0000000000000000000000000000000000000000..61faf8cab23993bd3e1560bff0668bd628642330 GIT binary patch literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nno%(3)e{?)x>&1u}A`t?OF7Z|1gRivOgXi&7IyQd1Pl zGfOfQ60;I3a`F>X^fL3(@);C=vM_KlFfb_o=k{|A33hf2a5d61U}gjg=>Rd%XaNQW zW@Cw{|b%Y*pl8F?4B9 zlo4Fz*0kZGJabY|>}Okf0}CCg{u4`zEPY^pV?j2@h+|igy0+Kz6p;@SpM4s6)XEMg z#3Y4GX>Hjlml5ftdH$4x0JGdn8~MX(U~_^d!Hi)=HU{V%g+mi8#UGbE-*ao8f#h+S z2a0-5+vc7MU$e-NhmBjLIC1v|)9+Im8x1yacJ7{^tLX(ZhYi^rpmXm0`@ku9b53aN zEXH@Y3JaztblgpxbJt{AtE1ad1Ca>{v$rwwvK(>{m~Gf_=-Ro7Fk{#;i~+{{>QtvI yb2P8Zac~?~=sRA>$6{!(^3;ZP0TPFR(G_-UDU(8Jl0?(IXu$~#4A!880|o%~Al1tN literal 0 HcmV?d00001 diff --git a/reference/_static/alabaster.css b/reference/_static/alabaster.css new file mode 100644 index 0000000..07a9e2a --- /dev/null +++ b/reference/_static/alabaster.css @@ -0,0 +1,585 @@ + + + + + + + + + + + + + + + + + +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +body { + font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif; + font-size: 17px; + background-color: white; + color: #000; + margin: 0; + padding: 0; +} + +div.document { + width: 940px; + margin: 30px auto 0 auto; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 220px; +} + +div.sphinxsidebar { + width: 220px; +} + +hr { + border: 1px solid #B1B4B6; +} + +div.body { + background-color: #ffffff; + color: #3E4349; + padding: 0 30px 0 30px; +} + +div.footer { + width: 940px; + margin: 20px auto 30px auto; + font-size: 14px; + color: #888; + text-align: right; +} + +div.footer a { + color: #888; +} + + +div.relations { + display: none; +} + + +div.sphinxsidebar a { + color: #444; + text-decoration: none; + border-bottom: 1px dotted #999; +} + +div.sphinxsidebar a:hover { + border-bottom: 1px solid #999; +} + +div.sphinxsidebar { + font-size: 14px; + line-height: 1.5; +} + +div.sphinxsidebarwrapper { + padding: 18px 10px; +} + +div.sphinxsidebarwrapper p.logo { + padding: 0; + margin: -10px 0 0 0px; + text-align: center; +} + +div.sphinxsidebarwrapper h1.logo { + margin-top: -10px; + text-align: center; + margin-bottom: 5px; + text-align: left; +} + +div.sphinxsidebarwrapper h1.logo-name { + margin-top: 0px; +} + +div.sphinxsidebarwrapper p.blurb { + margin-top: 0; + font-style: normal; +} + +div.sphinxsidebar h3, +div.sphinxsidebar h4 { + font-family: 'Garamond', 'Georgia', serif; + color: #444; + font-size: 24px; + font-weight: normal; + margin: 0 0 5px 0; + padding: 0; +} + +div.sphinxsidebar h4 { + font-size: 20px; +} + +div.sphinxsidebar h3 a { + color: #444; +} + +div.sphinxsidebar p.logo a, +div.sphinxsidebar h3 a, +div.sphinxsidebar p.logo a:hover, +div.sphinxsidebar h3 a:hover { + border: none; +} + +div.sphinxsidebar p { + color: #555; + margin: 10px 0; +} + +div.sphinxsidebar ul { + margin: 10px 0; + padding: 0; + color: #000; +} + +div.sphinxsidebar ul li.toctree-l1 > a { + font-size: 120%; +} + +div.sphinxsidebar ul li.toctree-l2 > a { + font-size: 110%; +} + +div.sphinxsidebar input { + border: 1px solid #CCC; + font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro', serif; + font-size: 1em; +} + +div.sphinxsidebar hr { + border: none; + height: 1px; + color: #999; + background: #999; + + text-align: left; + margin-left: 0; + width: 50%; +} + +/* -- body styles ----------------------------------------------------------- */ + +a { + color: #004B6B; + text-decoration: underline; +} + +a:hover { + color: #6D4100; + text-decoration: underline; +} + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: 'Garamond', 'Georgia', serif; + font-weight: normal; + margin: 30px 0px 10px 0px; + padding: 0; +} + +div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } +div.body h2 { font-size: 180%; } +div.body h3 { font-size: 150%; } +div.body h4 { font-size: 130%; } +div.body h5 { font-size: 100%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #DDD; + padding: 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + color: #444; + background: #EAEAEA; +} + +div.body p, div.body dd, div.body li { + line-height: 1.4em; +} + +div.admonition { + margin: 20px 0px; + padding: 10px 30px; + background-color: #FCC; + border: 1px solid #FAA; +} + +div.admonition tt.xref, div.admonition a tt { + border-bottom: 1px solid #fafafa; +} + +dd div.admonition { + margin-left: -60px; + padding-left: 60px; +} + +div.admonition p.admonition-title { + font-family: 'Garamond', 'Georgia', serif; + font-weight: normal; + font-size: 24px; + margin: 0 0 10px 0; + padding: 0; + line-height: 1; +} + +div.admonition p.last { + margin-bottom: 0; +} + +div.highlight { + background-color: white; +} + +dt:target, .highlight { + background: #FAF3E8; +} + +div.note { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.seealso { + background-color: #EEE; + border: 1px solid #CCC; +} + +div.topic { + background-color: #eee; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre, tt, code { + font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; + font-size: 0.9em; +} + +.hll { + background-color: #FFC; + margin: 0 -12px; + padding: 0 12px; + display: block; +} + +img.screenshot { +} + +tt.descname, tt.descclassname, code.descname, code.descclassname { + font-size: 0.95em; +} + +tt.descname, code.descname { + padding-right: 0.08em; +} + +img.screenshot { + -moz-box-shadow: 2px 2px 4px #eee; + -webkit-box-shadow: 2px 2px 4px #eee; + box-shadow: 2px 2px 4px #eee; +} + +table.docutils { + border: 1px solid #888; + -moz-box-shadow: 2px 2px 4px #eee; + -webkit-box-shadow: 2px 2px 4px #eee; + box-shadow: 2px 2px 4px #eee; +} + +table.docutils td, table.docutils th { + border: 1px solid #888; + padding: 0.25em 0.7em; +} + +table.field-list, table.footnote { + border: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +table.footnote { + margin: 15px 0; + width: 100%; + border: 1px solid #EEE; + background: #FDFDFD; + font-size: 0.9em; +} + +table.footnote + table.footnote { + margin-top: -15px; + border-top: none; +} + +table.field-list th { + padding: 0 0.8em 0 0; +} + +table.field-list td { + padding: 0; +} + +table.footnote td.label { + width: 0px; + padding: 0.3em 0 0.3em 0.5em; +} + +table.footnote td { + padding: 0.3em 0.5em; +} + +dl { + margin: 0; + padding: 0; +} + +dl dd { + margin-left: 30px; +} + +blockquote { + margin: 0 0 0 30px; + padding: 0; +} + +ul, ol { + margin: 10px 0 10px 30px; + padding: 0; +} + +pre { + background: #EEE; + padding: 7px 30px; + margin: 15px 0px; + line-height: 1.3em; +} + +dl pre, blockquote pre, li pre { + margin-left: 0; + padding-left: 30px; +} + +dl dl pre { + margin-left: -90px; + padding-left: 90px; +} + +tt, code { + background-color: #ecf0f3; + color: #222; + /* padding: 1px 2px; */ +} + +tt.xref, code.xref, a tt { + background-color: #FBFBFB; + border-bottom: 1px solid white; +} + +a.reference { + text-decoration: none; + border-bottom: 1px dotted #004B6B; +} + +a.reference:hover { + border-bottom: 1px solid #6D4100; +} + +a.footnote-reference { + text-decoration: none; + font-size: 0.7em; + vertical-align: top; + border-bottom: 1px dotted #004B6B; +} + +a.footnote-reference:hover { + border-bottom: 1px solid #6D4100; +} + +a:hover tt, a:hover code { + background: #EEE; +} + + +@media screen and (max-width: 870px) { + + div.sphinxsidebar { + display: none; + } + + div.document { + width: 100%; + + } + + div.documentwrapper { + margin-left: 0; + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + } + + div.bodywrapper { + margin-top: 0; + margin-right: 0; + margin-bottom: 0; + margin-left: 0; + } + + ul { + margin-left: 0; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .bodywrapper { + margin: 0; + } + + .footer { + width: auto; + } + + .github { + display: none; + } + + + +} + + + +@media screen and (max-width: 875px) { + + body { + margin: 0; + padding: 20px 30px; + } + + div.documentwrapper { + float: none; + background: white; + } + + div.sphinxsidebar { + display: block; + float: none; + width: 102.5%; + margin: 50px -30px -20px -30px; + padding: 10px 20px; + background: #333; + color: #FFF; + } + + div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, + div.sphinxsidebar h3 a { + color: white; + } + + div.sphinxsidebar a { + color: #AAA; + } + + div.sphinxsidebar p.logo { + display: none; + } + + div.document { + width: 100%; + margin: 0; + } + + div.footer { + display: none; + } + + div.bodywrapper { + margin: 0; + } + + div.body { + min-height: 0; + padding: 0; + } + + .rtd_doc_footer { + display: none; + } + + .document { + width: auto; + } + + .footer { + width: auto; + } + + .footer { + width: auto; + } + + .github { + display: none; + } +} + + +/* misc. */ + +.revsys-inline { + display: none!important; +} + +/* Make nested-list/multi-paragraph items look better in Releases changelog + * pages. Without this, docutils' magical list fuckery causes inconsistent + * formatting between different release sub-lists. + */ +div#changelog > div.section > ul > li > p:only-child { + margin-bottom: 0; +} + +/* Hide fugly table cell borders in ..bibliography:: directive output */ +table.docutils.citation, table.docutils.citation td, table.docutils.citation th { + border: none; + /* Below needed in some edge cases; if not applied, bottom shadows appear */ + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} \ No newline at end of file diff --git a/reference/_static/basic.css b/reference/_static/basic.css new file mode 100644 index 0000000..9fa77d8 --- /dev/null +++ b/reference/_static/basic.css @@ -0,0 +1,599 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox input[type="text"] { + width: 170px; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + width: 30px; +} + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li div.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable dl, table.indextable dd { + margin-top: 0; + margin-bottom: 0; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- general body styles --------------------------------------------------- */ + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.field-list ul { + padding-left: 1em; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px 7px 0 7px; + background-color: #ffe; + width: 40%; + float: right; +} + +p.sidebar-title { + font-weight: bold; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px 7px 0 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +div.admonition dl { + margin-bottom: 0; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + border: 0; + border-collapse: collapse; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.field-list td, table.field-list th { + border: 0 !important; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text { +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +dl { + margin-bottom: 15px; +} + +dd p { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dt:target, .highlighted { + background-color: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +td.linenos pre { + padding: 5px 0px; + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + margin-left: 0.5em; +} + +table.highlighttable td { + padding: 0 0.5em 0 0.5em; +} + +div.code-block-caption { + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +div.code-block-caption + div > div.highlight > pre { + margin-top: 0; +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + padding: 1em 1em 0; +} + +div.literal-block-wrapper div.highlight { + margin: 0; +} + +code.descname { + background-color: transparent; + font-weight: bold; + font-size: 1.2em; +} + +code.descclassname { + background-color: transparent; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/reference/_static/comment-bright.png b/reference/_static/comment-bright.png new file mode 100644 index 0000000000000000000000000000000000000000..551517b8c83b76f734ff791f847829a760ad1903 GIT binary patch literal 3500 zcmV;d4O8-oP)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2niQ93PPz|JOBU!-bqA3 zR5;6pl1pe^WfX zkSdl!omi0~*ntl;2q{jA^;J@WT8O!=A(Gck8fa>hn{#u{`Tyg)!KXI6l>4dj==iVKK6+%4zaRizy(5eryC3d2 z+5Y_D$4}k5v2=Siw{=O)SWY2HJwR3xX1*M*9G^XQ*TCNXF$Vj(kbMJXK0DaS_Sa^1 z?CEa!cFWDhcwxy%a?i@DN|G6-M#uuWU>lss@I>;$xmQ|`u3f;MQ|pYuHxxvMeq4TW;>|7Z2*AsqT=`-1O~nTm6O&pNEK?^cf9CX= zkq5|qAoE7un3V z^yy=@%6zqN^x`#qW+;e7j>th{6GV}sf*}g7{(R#T)yg-AZh0C&U;WA`AL$qz8()5^ zGFi2`g&L7!c?x+A2oOaG0c*Bg&YZt8cJ{jq_W{uTdA-<;`@iP$$=$H?gYIYc_q^*$ z#k(Key`d40R3?+GmgK8hHJcwiQ~r4By@w9*PuzR>x3#(F?YW_W5pPc(t(@-Y{psOt zz2!UE_5S)bLF)Oz@Z0f2-7z;ux~O9+4z06=<WDR*FRcSTFz- zW=q650N5=6FiBTtNC2?60Km==3$g$R3;-}uh=nNt1bYBr$Ri_o0EC$U6h`t_Jn<{8 z5a%iY0C<_QJh>z}MS)ugEpZ1|S1ukX&Pf+56gFW3VVXcL!g-k)GJ!M?;PcD?0HBc- z5#WRK{dmp}uFlRjj{U%*%WZ25jX z{P*?XzTzZ-GF^d31o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcq zjPo+3B8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S z1Au6Q;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO002awfhw>;8}z{#EWidF!3EsG z3;bXU&9EIRU@z1_9W=mEXoiz;4lcq~xDGvV5BgyU zp1~-*fe8db$Osc*A=-!mVv1NJjtCc-h4>-CNCXm#Bp}I%6j35eku^v$Qi@a{RY)E3 zJ#qp$hg?Rwkvqr$GJ^buyhkyVfwECO)C{#lxu`c9ghrwZ&}4KmnvWKso6vH!8a<3Q zq36)6Xb;+tK10Vaz~~qUGsJ8#F2=(`u{bOVlVi)VBCHIn#u~6ztOL7=^<&SmcLWlF zMZgI*1b0FpVIDz9SWH+>*hr`#93(Um+6gxa1B6k+CnA%mOSC4s5&6UzVlpv@SV$}* z))J2sFA#f(L&P^E5{W}HC%KRUNwK6<(h|}}(r!{C=`5+6G)NjFlgZj-YqAG9lq?`C z$c5yc>d>VnA`E_*3F2Qp##d8RZb=H01_mm@+|Cqnc9PsG(F5HIG_C zt)aG3uTh7n6Et<2In9F>NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWwr)$3XQ?}=hpK0&Z&W{| zep&sA23f;Q!%st`QJ}G3cbou<7-yIK2z4nfCCCtN2-XOGSWo##{8Q{ATurxr~;I`ytDs%xbip}RzP zziy}Qn4Z2~fSycmr`~zJ=lUFdFa1>gZThG6M+{g7vkW8#+YHVaJjFF}Z#*3@$J_By zLtVo_L#1JrVVB{Ak-5=4qt!-@Mh}c>#$4kh<88)m#-k<%CLtzEP3leVno>={htGUuD;o7bD)w_sX$S}eAxwzy?UvgBH(S?;#HZiQMoS*2K2 zT3xe7t(~nU*1N5{rxB;QPLocnp4Ml>u<^FZwyC!nu;thW+pe~4wtZn|Vi#w(#jeBd zlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!hR|78Dq|Iq-afF%KE1Brn_fm;Im z_u$xr8UFki1L{Ox>G0o)(&RAZ;=|I=wN2l97;cLaHH6leTB-XXa*h%dBOEvi`+x zi?=Txl?TadvyiL>SuF~-LZ;|cS}4~l2eM~nS7yJ>iOM;atDY;(?aZ^v+mJV$@1Ote z62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~pu715HdQEGA zUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$+<4_1hi}Ti zncS4LsjI}fWY1>OX6feMEuLErma3QLmkw?X+1j)X-&VBk_4Y;EFPF_I+q;9dL%E~B zJh;4Nr^(LEJ3myURP{Rblsw%57T)g973R8o)DE9*xN#~;4_o$q%o z4K@u`jhx2fBXC4{U8Qn{*%*B$Ge=nny$HAYq{=vy|sI0 z_vss+H_qMky?OB#|JK!>IX&II^LlUh#rO5!7TtbwC;iULyV-Xq?ybB}ykGP{?LpZ? z-G|jbTmIbG@7#ZCz;~eY(cDM(28Dyq{*m>M4?_iynUBkc4TkHUI6gT!;y-fz>HMcd z&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M!p0uH$#^p{Ui4P` z?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&GcDTy000JJOGiWi{{a60 z|De66lK=n!32;bRa{vGf6951U69E94oEQKA00(qQO+^RV2oe()A>y0J-2easEJ;K` zR5;6Jl3z%jbr{D#&+mQTbB>-f&3W<<%ayjKi&ZjBc2N<@)`~{dMXWB0(ajbV85_gJ zf(EU`iek}4Bt%55ix|sVMm1u8KvB#hnmU~_r<Ogd(A5vg_omvd-#L!=(BMVklxVqhdT zofSj`QA^|)G*lu58>#vhvA)%0Or&dIsb%b)st*LV8`ANnOipDbh%_*c7`d6# z21*z~Xd?ovgf>zq(o0?Et~9ti+pljZC~#_KvJhA>u91WRaq|uqBBKP6V0?p-NL59w zrK0w($_m#SDPQ!Z$nhd^JO|f+7k5xca94d2OLJ&sSxlB7F%NtrF@@O7WWlkHSDtor zzD?u;b&KN$*MnHx;JDy9P~G<{4}9__s&MATBV4R+MuA8TjlZ3ye&qZMCUe8ihBnHI zhMSu zSERHwrmBb$SWVr+)Yk2k^FgTMR6mP;@FY2{}BeV|SUo=mNk<-XSOHNErw>s{^rR-bu$@aN7= zj~-qXcS2!BA*(Q**BOOl{FggkyHdCJi_Fy>?_K+G+DYwIn8`29DYPg&s4$}7D`fv? zuyJ2sMfJX(I^yrf6u!(~9anf(AqAk&ke}uL0SIb-H!SaDQvd(}07*qoM6N<$g1Ha7 A2LJ#7 literal 0 HcmV?d00001 diff --git a/reference/_static/comment.png b/reference/_static/comment.png new file mode 100644 index 0000000000000000000000000000000000000000..92feb52b8824c6b0f59b658b1196c61de9162a95 GIT binary patch literal 3445 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 Xn!ZpXD%P(H00000NkvXXu0mjf= 0 && !jQuery(node.parentNode).hasClass(className)) { + var span = document.createElement("span"); + span.className = className; + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this); + }); + } + } + return this.each(function() { + highlight(this); + }); +}; + +/* + * backward compatibility for jQuery.browser + * This will be supported until firefox bug is fixed. + */ +if (!jQuery.browser) { + jQuery.uaMatch = function(ua) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || + /(webkit)[ \/]([\w.]+)/.exec(ua) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || + /(msie) ([\w.]+)/.exec(ua) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; + }; + jQuery.browser = {}; + jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; +} + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated == 'undefined') + return string; + return (typeof translated == 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated == 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + if (!body.length) { + body = $('body'); + } + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('') + .appendTo($('#searchbox')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) == 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('#searchbox .highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this == '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/reference/_static/down-pressed.png b/reference/_static/down-pressed.png new file mode 100644 index 0000000000000000000000000000000000000000..7c30d004b71b32bb2fc06b3bd4dc8278baab0946 GIT binary patch literal 347 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~&H|6fVxZ#d zAk65bF}ngN$X?><>&kwMor^(NtW3yF87Slz;1l8sq&LUMQwy<>&kwMol#tg zK_ydLmzem(vK1>2TzUEGl*lj!N<7$PCrdoWV0 z$w0*Ap!bZ4if7h;-yfL#MC0e;t{xY+$l~DX2EWYIPet1cohf^BdG+jXhtuq&W-0|c zKPmlKv-7OTjb}T)7@fTGd9y~u4{g8An;)c2U=w=nwQ7}zVDc>n+a literal 0 HcmV?d00001 diff --git a/reference/_static/file.png b/reference/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..254c60bfbe2715ae2edca48ebccfd074deb8031d GIT binary patch literal 358 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJXMsm#F#`j)FbFd;%$g$s6l5>) z^mS#w%FV~i&ZxO9L3Zxqw8>dd4I&zcKG){Yx14xKr0

ZQJ$m%mv17-NAAj}g)$7-<-@JMA z_U+TRK=AR}yLa#2zkmPX!-tO_KYsf3>Hq)#%qnY_1Fd8&3GxeO2wSmci|LJf=|BO- zByV>Yl`U*PX977no-U3d5|XS39sLdkFt8q|+|QqL_#ErUf6I%zFA7b%b>3$hFGGFs zc72AL|61pRJ1(+5wNdg|xP#*`gQ~lOnTFKiIjl#S3)+QV=h{~`9{M=hx#5uZ&-tIF sG!8onYS_8EFr8v&@CavkqYey&g)1epR*Fkm0PSV)boFyt=akR{044O6bN~PV literal 0 HcmV?d00001 diff --git a/reference/_static/jquery-1.11.1.js b/reference/_static/jquery-1.11.1.js new file mode 100644 index 0000000..d4b67f7 --- /dev/null +++ b/reference/_static/jquery-1.11.1.js @@ -0,0 +1,10308 @@ +/*! + * jQuery JavaScript Library v1.11.1 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-05-01T17:42Z + */ + +(function( global, factory ) { + + if ( typeof module === "object" && typeof module.exports === "object" ) { + // For CommonJS and CommonJS-like environments where a proper window is present, + // execute the factory and get jQuery + // For environments that do not inherently posses a window with a document + // (such as Node.js), expose a jQuery-making factory as module.exports + // This accentuates the need for the creation of a real window + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Can't do this because several apps including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +// Support: Firefox 18+ +// + +var deletedIds = []; + +var slice = deletedIds.slice; + +var concat = deletedIds.concat; + +var push = deletedIds.push; + +var indexOf = deletedIds.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var support = {}; + + + +var + version = "1.11.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android<4.1, IE<9 + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num != null ? + + // Return just the one element from the set + ( num < 0 ? this[ num + this.length ] : this[ num ] ) : + + // Return all the elements in a clean array + slice.call( this ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: deletedIds.sort, + splice: deletedIds.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var src, copyIsArray, copy, name, options, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + /* jshint eqeqeq: false */ + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + // parseFloat NaNs numeric-cast false positives (null|true|false|"") + // ...but misinterprets leading-number strings, particularly hex literals ("0x...") + // subtraction forces infinities to NaN + return !jQuery.isArray( obj ) && obj - parseFloat( obj ) >= 0; + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + isPlainObject: function( obj ) { + var key; + + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call(obj, "constructor") && + !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Support: IE<9 + // Handle iteration over inherited properties before own properties. + if ( support.ownLast ) { + for ( key in obj ) { + return hasOwn.call( obj, key ); + } + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + type: function( obj ) { + if ( obj == null ) { + return obj + ""; + } + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call(obj) ] || "object" : + typeof obj; + }, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && jQuery.trim( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Support: Android<4.1, IE<9 + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( indexOf ) { + return indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + while ( j < len ) { + first[ i++ ] = second[ j++ ]; + } + + // Support: IE<9 + // Workaround casting of .length to NaN on otherwise arraylike objects (e.g., NodeLists) + if ( len !== len ) { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var args, proxy, tmp; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + now: function() { + return +( new Date() ); + }, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); + + if ( type === "function" || jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v1.10.19 + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-04-18 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + -(new Date()), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // General-purpose constants + strundefined = typeof undefined, + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf if we can't use a native one + indexOf = arr.indexOf || function( elem ) { + var i = 0, + len = this.length; + for ( ; i < len; i++ ) { + if ( this[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + characterEncoding + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { + return []; + } + + if ( documentIsHTML && !seed ) { + + // Shortcuts + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document (jQuery #6963) + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType === 9 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = attrs.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== strundefined && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, + doc = node ? node.ownerDocument || node : preferredDoc, + parent = doc.defaultView; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + + // Support tests + documentIsHTML = !isXML( doc ); + + // Support: IE>8 + // If iframe document is assigned to "document" variable and if iframe has been reloaded, + // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 + // IE6-8 do not support the defaultView property so parent will be undefined + if ( parent && parent !== parent.top ) { + // IE11 does not have attachEvent, so all must suffer + if ( parent.addEventListener ) { + parent.addEventListener( "unload", function() { + setDocument(); + }, false ); + } else if ( parent.attachEvent ) { + parent.attachEvent( "onunload", function() { + setDocument(); + }); + } + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) + support.attributes = assert(function( div ) { + div.className = "i"; + return !div.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Check if getElementsByClassName can be trusted + support.getElementsByClassName = rnative.test( doc.getElementsByClassName ) && assert(function( div ) { + div.innerHTML = "

"; + + // Support: Safari<4 + // Catch class over-caching + div.firstChild.className = "i"; + // Support: Opera<10 + // Catch gEBCN failure to find non-leading classes + return div.getElementsByClassName("i").length === 2; + }); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== strundefined && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [ m ] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var elem, + tmp = [], + i = 0, + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== strundefined && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( div.querySelectorAll("[msallowclip^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( div.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return doc; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== strundefined && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf.call( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (oldCache = outerCache[ dir ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + outerCache[ dir ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context !== document && context; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is no seed and only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome<14 +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( document.createElement("div") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( div ) { + div.innerHTML = ""; + return div.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( div ) { + return div.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + + +var rneedsContext = jQuery.expr.match.needsContext; + +var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); + + + +var risSimple = /^.[^:#\[\.,]*$/; + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + }); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + }); + + } + + if ( typeof qualifier === "string" ) { + if ( risSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) !== not; + }); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); +}; + +jQuery.fn.extend({ + find: function( selector ) { + var i, + ret = [], + self = this, + len = self.length; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +}); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + init = jQuery.fn.init = function( selector, context ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return typeof rootjQuery.ready !== "undefined" ? + rootjQuery.ready( selector ) : + // Execute immediately if ready is not present + selector( jQuery ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.extend({ + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +jQuery.fn.extend({ + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { + + matched.push( cur ); + break; + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.unique( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + if ( this.length > 1 ) { + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + ret = jQuery.unique( ret ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + } + + return this.pushStack( ret ); + }; +}); +var rnotwhite = (/\S+/g); + + + +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // First callback to fire (used internally by add and fireWith) + firingStart, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + firingLength = 0; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( list && ( !fired || stack ) ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( values === progressValues ) { + deferred.notifyWith( contexts, values ); + + } else if ( !(--remaining) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); + + +// The deferred used on DOM ready +var readyList; + +jQuery.fn.ready = function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; +}; + +jQuery.extend({ + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.triggerHandler ) { + jQuery( document ).triggerHandler( "ready" ); + jQuery( document ).off( "ready" ); + } + } +}); + +/** + * Clean-up method for dom ready events + */ +function detach() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + + } else { + document.detachEvent( "onreadystatechange", completed ); + window.detachEvent( "onload", completed ); + } +} + +/** + * The ready event handler and self cleanup method + */ +function completed() { + // readyState === "complete" is good enough for us to call the dom ready in oldIE + if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { + detach(); + jQuery.ready(); + } +} + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", completed ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", completed ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // detach all dom ready events + detach(); + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + + +var strundefined = typeof undefined; + + + +// Support: IE<9 +// Iteration over object's inherited properties before its own +var i; +for ( i in jQuery( support ) ) { + break; +} +support.ownLast = i !== "0"; + +// Note: most support tests are defined in their respective modules. +// false until the test is run +support.inlineBlockNeedsLayout = false; + +// Execute ASAP in case we need to set body.style.zoom +jQuery(function() { + // Minified: var a,b,c,d + var val, div, body, container; + + body = document.getElementsByTagName( "body" )[ 0 ]; + if ( !body || !body.style ) { + // Return for frameset docs that don't have a body + return; + } + + // Setup + div = document.createElement( "div" ); + container = document.createElement( "div" ); + container.style.cssText = "position:absolute;border:0;width:0;height:0;top:0;left:-9999px"; + body.appendChild( container ).appendChild( div ); + + if ( typeof div.style.zoom !== strundefined ) { + // Support: IE<8 + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + div.style.cssText = "display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1"; + + support.inlineBlockNeedsLayout = val = div.offsetWidth === 3; + if ( val ) { + // Prevent IE 6 from affecting layout for positioned elements #11048 + // Prevent IE from shrinking the body in IE 7 mode #12869 + // Support: IE<8 + body.style.zoom = 1; + } + } + + body.removeChild( container ); +}); + + + + +(function() { + var div = document.createElement( "div" ); + + // Execute the test only if not already executed in another module. + if (support.deleteExpando == null) { + // Support: IE<9 + support.deleteExpando = true; + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + } + + // Null elements to avoid leaks in IE. + div = null; +})(); + + +/** + * Determines whether an object can have data + */ +jQuery.acceptData = function( elem ) { + var noData = jQuery.noData[ (elem.nodeName + " ").toLowerCase() ], + nodeType = +elem.nodeType || 1; + + // Do not set data on non-element DOM nodes because it will not be cleared (#8335). + return nodeType !== 1 && nodeType !== 9 ? + false : + + // Nodes accept data unless otherwise specified; rejection can be conditional + !noData || noData !== true && elem.getAttribute("classid") === noData; +}; + + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /([A-Z])/g; + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} + +function internalData( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var ret, thisCache, + internalKey = jQuery.expando, + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && data === undefined && typeof name === "string" ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + id = elem[ internalKey ] = deletedIds.pop() || jQuery.guid++; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + // Avoid exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + cache[ id ] = isNode ? {} : { toJSON: jQuery.noop }; + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( typeof name === "string" ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; +} + +function internalRemoveData( elem, name, pvt ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } else { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = name.concat( jQuery.map( name, jQuery.camelCase ) ); + } + + i = name.length; + while ( i-- ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( pvt ? !isEmptyDataObject(thisCache) : !jQuery.isEmptyObject(thisCache) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + /* jshint eqeqeq: false */ + } else if ( support.deleteExpando || cache != cache.window ) { + /* jshint eqeqeq: true */ + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } +} + +jQuery.extend({ + cache: {}, + + // The following elements (space-suffixed to avoid Object.prototype collisions) + // throw uncatchable exceptions if you attempt to set expando properties + noData: { + "applet ": true, + "embed ": true, + // ...but Flash objects (which have this classid) *can* handle expandos + "object ": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data ) { + return internalData( elem, name, data ); + }, + + removeData: function( elem, name ) { + return internalRemoveData( elem, name ); + }, + + // For internal use only. + _data: function( elem, name, data ) { + return internalData( elem, name, data, true ); + }, + + _removeData: function( elem, name ) { + return internalRemoveData( elem, name, true ); + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var i, name, data, + elem = this[0], + attrs = elem && elem.attributes; + + // Special expections of .data basically thwart jQuery.access, + // so implement the relevant behavior ourselves + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE11+ + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.slice(5) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + return arguments.length > 1 ? + + // Sets one value + this.each(function() { + jQuery.data( this, key, value ); + }) : + + // Gets one value + // Try to fetch any internally stored data first + elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : undefined; + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + + +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery._removeData( elem, type + "queue" ); + jQuery._removeData( elem, key ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var isHidden = function( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); + }; + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + length = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < length; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; +}; +var rcheckableType = (/^(?:checkbox|radio)$/i); + + + +(function() { + // Minified: var a,b,c + var input = document.createElement( "input" ), + div = document.createElement( "div" ), + fragment = document.createDocumentFragment(); + + // Setup + div.innerHTML = "
a"; + + // IE strips leading whitespace when .innerHTML is used + support.leadingWhitespace = div.firstChild.nodeType === 3; + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + support.tbody = !div.getElementsByTagName( "tbody" ).length; + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + support.htmlSerialize = !!div.getElementsByTagName( "link" ).length; + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + support.html5Clone = + document.createElement( "nav" ).cloneNode( true ).outerHTML !== "<:nav>"; + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + input.type = "checkbox"; + input.checked = true; + fragment.appendChild( input ); + support.appendChecked = input.checked; + + // Make sure textarea (and checkbox) defaultValue is properly cloned + // Support: IE6-IE11+ + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // #11217 - WebKit loses check when the name is after the checked attribute + fragment.appendChild( div ); + div.innerHTML = ""; + + // Support: Safari 5.1, iOS 5.1, Android 4.x, Android 2.3 + // old WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<9 + // Opera does not clone events (and typeof div.attachEvent === undefined). + // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() + support.noCloneEvent = true; + if ( div.attachEvent ) { + div.attachEvent( "onclick", function() { + support.noCloneEvent = false; + }); + + div.cloneNode( true ).click(); + } + + // Execute the test only if not already executed in another module. + if (support.deleteExpando == null) { + // Support: IE<9 + support.deleteExpando = true; + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + } +})(); + + +(function() { + var i, eventName, + div = document.createElement( "div" ); + + // Support: IE<9 (lack submit/change bubble), Firefox 23+ (lack focusin event) + for ( i in { submit: true, change: true, focusin: true }) { + eventName = "on" + i; + + if ( !(support[ i + "Bubbles" ] = eventName in window) ) { + // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) + div.setAttribute( eventName, "t" ); + support[ i + "Bubbles" ] = div.attributes[ eventName ].expando === false; + } + } + + // Null elements to avoid leaks in IE. + div = null; +})(); + + +var rformElems = /^(?:input|select|textarea)$/i, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + var tmp, events, t, handleObjIn, + special, eventHandle, handleObj, + handlers, type, namespaces, origType, + elemData = jQuery._data( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== strundefined && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + var j, handleObj, tmp, + origCount, t, events, + special, handlers, type, + namespaces, origType, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery._removeData( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + var handle, ontype, cur, + bubbleType, special, tmp, i, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && jQuery.acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + try { + elem[ type ](); + } catch ( e ) { + // IE<9 dies on focus/blur to hidden element (#1486,#12518) + // only reproducible on winXP IE8 native, not IE9 in IE8 mode + } + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, ret, handleObj, matched, j, + handlerQueue = [], + args = slice.call( arguments ), + handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var sel, handleObj, matches, i, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + /* jshint eqeqeq: false */ + for ( ; cur != this; cur = cur.parentNode || this ) { + /* jshint eqeqeq: true */ + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: IE<9 + // Fix target property (#1925) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Support: Chrome 23+, Safari? + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Support: IE<9 + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) + event.metaKey = !!event.metaKey; + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var body, eventDoc, doc, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + try { + this.focus(); + return false; + } catch ( e ) { + // Support: IE<9 + // If we error on focus to hidden element (#1486, #12518), + // let .trigger() run the handlers + } + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === strundefined ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + // Support: IE < 9, Android < 4.0 + src.returnValue === false ? + returnTrue : + returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + if ( !e ) { + return; + } + + // If preventDefault exists, run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // Support: IE + // Otherwise set the returnValue property of the original event to false + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + if ( !e ) { + return; + } + // If stopPropagation exists, run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + + // Support: IE + // Set the cancelBubble property of the original event to true + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && e.stopImmediatePropagation ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "submitBubbles" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "submitBubbles", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "changeBubbles", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = jQuery._data( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + jQuery._data( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = jQuery._data( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + jQuery._removeData( doc, fix ); + } else { + jQuery._data( doc, fix, attaches ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var type, origFn; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); + + +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /\s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
", "
" ], + area: [ 1, "", "" ], + param: [ 1, "", "" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + col: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, + // unless wrapped in a div with non-breaking characters in front of it. + _default: support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +function getAll( context, tag ) { + var elems, elem, + i = 0, + found = typeof context.getElementsByTagName !== strundefined ? context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== strundefined ? context.querySelectorAll( tag || "*" ) : + undefined; + + if ( !found ) { + for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { + if ( !tag || jQuery.nodeName( elem, tag ) ) { + found.push( elem ); + } else { + jQuery.merge( found, getAll( elem, tag ) ); + } + } + } + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], found ) : + found; +} + +// Used in buildFragment, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +// Support: IE<8 +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = (jQuery.find.attr( elem, "type" ) !== null) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + if ( match ) { + elem.type = match[1]; + } else { + elem.removeAttribute("type"); + } + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var elem, + i = 0; + for ( ; (elem = elems[i]) != null; i++ ) { + jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); + } +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function fixCloneNodeIssues( src, dest ) { + var nodeName, e, data; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + nodeName = dest.nodeName.toLowerCase(); + + // IE6-8 copies events bound via attachEvent when using cloneNode. + if ( !support.noCloneEvent && dest[ jQuery.expando ] ) { + data = jQuery._data( dest ); + + for ( e in data.events ) { + jQuery.removeEvent( dest, e, data.handle ); + } + + // Event data gets referenced instead of copied if the expando gets copied too + dest.removeAttribute( jQuery.expando ); + } + + // IE blanks contents when cloning scripts, and tries to evaluate newly-set text + if ( nodeName === "script" && dest.text !== src.text ) { + disableScript( dest ).text = src.text; + restoreScript( dest ); + + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + } else if ( nodeName === "object" ) { + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.defaultSelected = dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var destElements, node, clone, i, srcElements, + inPage = jQuery.contains( elem.ownerDocument, elem ); + + if ( support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!support.noCloneEvent || !support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + // Fix all IE cloning issues + for ( i = 0; (node = srcElements[i]) != null; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + fixCloneNodeIssues( node, destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0; (node = srcElements[i]) != null; i++ ) { + cloneCopyEvent( node, destElements[i] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + destElements = srcElements = node = null; + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var j, elem, contains, + tmp, tag, tbody, wrap, + l = elems.length, + + // Ensure a safe fragment + safe = createSafeFragment( context ), + + nodes = [], + i = 0; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || safe.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = (rtagName.exec( elem ) || [ "", "" ])[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + + tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; + + // Descend through wrappers to the right content + j = wrap[0]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Manually add leading whitespace removed by IE + if ( !support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); + } + + // Remove IE's autoinserted from table fragments + if ( !support.tbody ) { + + // String was a , *may* have spurious + elem = tag === "table" && !rtbody.test( elem ) ? + tmp.firstChild : + + // String was a bare or + wrap[1] === "
" && !rtbody.test( elem ) ? + tmp : + 0; + + j = elem && elem.childNodes.length; + while ( j-- ) { + if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { + elem.removeChild( tbody ); + } + } + } + + jQuery.merge( nodes, tmp.childNodes ); + + // Fix #12392 for WebKit and IE > 9 + tmp.textContent = ""; + + // Fix #12392 for oldIE + while ( tmp.firstChild ) { + tmp.removeChild( tmp.firstChild ); + } + + // Remember the top-level container for proper cleanup + tmp = safe.lastChild; + } + } + } + + // Fix #11356: Clear elements from fragment + if ( tmp ) { + safe.removeChild( tmp ); + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !support.appendChecked ) { + jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); + } + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( safe.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + tmp = null; + + return safe; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var elem, type, id, data, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( typeof elem.removeAttribute !== strundefined ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + deletedIds.push( id ); + } + } + } + } + } +}); + +jQuery.fn.extend({ + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + append: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + remove: function( selector, keepData /* Internal Use Only */ ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + + // If this is a select, ensure that it displays empty (#12336) + // Support: IE<9 + if ( elem.options && jQuery.nodeName( elem, "select" ) ) { + elem.options.length = 0; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map(function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ (rtagName.exec( value ) || [ "", "" ])[ 1 ].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var arg = arguments[ 0 ]; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + arg = this.parentNode; + + jQuery.cleanData( getAll( this ) ); + + if ( arg ) { + arg.replaceChild( elem, this ); + } + }); + + // Force removal if there was no new content (e.g., from empty arguments) + return arg && (arg.length || arg.nodeType) ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var first, node, hasScripts, + scripts, doc, fragment, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[0], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[0] = value.call( this, index, self.html() ); + } + self.domManip( args, callback ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[i], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + } + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + } + } + + return this; + } +}); + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone(true); + jQuery( insert[i] )[ original ]( elems ); + + // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + + +var iframe, + elemdisplay = {}; + +/** + * Retrieve the actual display of a element + * @param {String} name nodeName of the element + * @param {Object} doc Document object + */ +// Called only from within defaultDisplay +function actualDisplay( name, doc ) { + var style, + elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + + // getDefaultComputedStyle might be reliably used only on attached element + display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? + + // Use of this method is a temporary fix (more like optmization) until something better comes along, + // since it was removed from specification and supported only in FF + style.display : jQuery.css( elem[ 0 ], "display" ); + + // We don't have any data stored on the element, + // so use "detach" method as fast way to get rid of the element + elem.detach(); + + return display; +} + +/** + * Try to determine the default display value of an element + * @param {String} nodeName + */ +function defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + + // Use the already-created iframe if possible + iframe = (iframe || jQuery( "