From a830722f4c84111d4d0d645fe480cd2821333b8e Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Mon, 2 Mar 2015 20:07:17 +0100 Subject: [PATCH] First git commit --- .gitignore | 1 + CONTRIBUTORS.md | 27 + LICENSE | 19 + Makefile | 34 + README.en.md | 114 + README.fr.md | 114 + TODO.md | 31 + app/bootstrap.php | 36 + app/bootstrap.php.d/00-main.php | 7 + app/bootstrap.php.d/10-config.php | 9 + app/bootstrap.php.d/20-console.php | 15 + app/bootstrap.php.d/20-error.php | 12 + app/bootstrap.php.d/20-misc.php | 10 + app/bootstrap.php.d/20-readme.php | 11 + app/bootstrap.php.d/20-routing.php | 14 + app/bootstrap.php.d/20-twig.php | 15 + app/bootstrap.php.d/30-trans.php | 58 + app/config/questionnaire.yml | 215 + app/config/routing.yml | 19 + app/console | 6 + app/deploy | 14 + app/distros/en/arch.md | 20 + app/distros/en/centos.md | 0 app/distros/en/debian-sid.md | 20 + app/distros/en/debian.md | 20 + app/distros/en/dragonfly.md | 0 app/distros/en/fedora.md | 20 + app/distros/en/freebsd.md | 0 app/distros/en/frugalware.md | 20 + app/distros/en/lfs.md | 0 app/distros/en/mageia.md | 20 + app/distros/en/openbsd.md | 0 app/distros/en/opensuze.md | 20 + app/distros/en/pcbsd.md | 0 app/distros/en/puppy-linux.md | 20 + app/distros/en/sabayon.md | 20 + app/distros/en/slackware.md | 20 + app/distros/en/slitaz.md | 20 + app/distros/en/toutou-linux.md | 20 + app/distros/en/windows.md | 0 app/distros/fr/arch.md | 20 + app/distros/fr/centos.md | 0 app/distros/fr/debian-sid.md | 20 + app/distros/fr/debian.md | 20 + app/distros/fr/dragonfly.md | 0 app/distros/fr/fedora.md | 20 + app/distros/fr/freebsd.md | 0 app/distros/fr/frugalware.md | 20 + app/distros/fr/lfs.md | 0 app/distros/fr/mageia.md | 20 + app/distros/fr/openbsd.md | 0 app/distros/fr/opensuze.md | 20 + app/distros/fr/pcbsd.md | 0 app/distros/fr/puppy-linux.md | 20 + app/distros/fr/sabayon.md | 20 + app/distros/fr/slackware.md | 20 + app/distros/fr/slitaz.md | 20 + app/distros/fr/toutou-linux.md | 20 + app/distros/fr/windows.md | 0 app/locales/en.yml | 25 + app/locales/fr.yml | 17 + composer.json | 28 + src/Os/Controller/OsController.php | 19 + src/Questionnaire/Application.php | 22 + .../Command/GenerateReadmeCommand.php | 229 + .../Controller/QuestionnaireController.php | 155 + src/Questionnaire/Model/Question.php | 116 + src/Questionnaire/Model/QuestionPeer.php | 136 + src/Questionnaire/Model/QuestionnairePeer.php | 26 + src/Questionnaire/Model/Result.php | 109 + src/Questionnaire/Model/ResultPeer.php | 108 + src/Questionnaire/Parser/Parser.php | 40 + src/Questionnaire/Parser/ParserInterface.php | 27 + src/Questionnaire/Parser/ReadmeParser.php | 112 + views/Os/index.html.twig | 35 + views/Questionnaire/base.html.twig | 13 + views/Questionnaire/index.html.twig | 19 + views/Questionnaire/readme.en.html.twig | 131 + views/Questionnaire/readme.fr.html.twig | 131 + views/Questionnaire/result.html.twig | 37 + views/Questionnaire/step.html.twig | 61 + views/base.html.twig | 76 + views/error.html.twig | 15 + views/layout.html.twig | 20 + web/.htaccess | 14 + web/assets/css/main.css | 13 + web/assets/img/10-lxde.png | Bin 0 -> 29531 bytes web/assets/img/10-osx.png | Bin 0 -> 59319 bytes web/assets/img/10-tty.png | Bin 0 -> 49173 bytes web/components/bootstrap | 1 + web/components/jquery/jquery-built.js | 10337 +++++++++++++ web/components/jquery/jquery-migrate.js | 511 + web/components/jquery/jquery-migrate.min.js | 3 + web/components/jquery/jquery.js | 10337 +++++++++++++ web/components/jquery/jquery.min.js | 4 + web/components/require-built.js | 12376 ++++++++++++++++ web/components/require.config.js | 17 + web/components/require.css | 0 web/components/require.js | 2036 +++ web/index.php | 5 + 100 files changed, 38622 insertions(+) create mode 100644 .gitignore create mode 100644 CONTRIBUTORS.md create mode 100644 LICENSE create mode 100644 Makefile create mode 100644 README.en.md create mode 100644 README.fr.md create mode 100644 TODO.md create mode 100644 app/bootstrap.php create mode 100644 app/bootstrap.php.d/00-main.php create mode 100644 app/bootstrap.php.d/10-config.php create mode 100644 app/bootstrap.php.d/20-console.php create mode 100644 app/bootstrap.php.d/20-error.php create mode 100644 app/bootstrap.php.d/20-misc.php create mode 100644 app/bootstrap.php.d/20-readme.php create mode 100644 app/bootstrap.php.d/20-routing.php create mode 100644 app/bootstrap.php.d/20-twig.php create mode 100644 app/bootstrap.php.d/30-trans.php create mode 100644 app/config/questionnaire.yml create mode 100644 app/config/routing.yml create mode 100755 app/console create mode 100755 app/deploy create mode 100644 app/distros/en/arch.md create mode 100644 app/distros/en/centos.md create mode 100644 app/distros/en/debian-sid.md create mode 100644 app/distros/en/debian.md create mode 100644 app/distros/en/dragonfly.md create mode 100644 app/distros/en/fedora.md create mode 100644 app/distros/en/freebsd.md create mode 100644 app/distros/en/frugalware.md create mode 100644 app/distros/en/lfs.md create mode 100644 app/distros/en/mageia.md create mode 100644 app/distros/en/openbsd.md create mode 100644 app/distros/en/opensuze.md create mode 100644 app/distros/en/pcbsd.md create mode 100644 app/distros/en/puppy-linux.md create mode 100644 app/distros/en/sabayon.md create mode 100644 app/distros/en/slackware.md create mode 100644 app/distros/en/slitaz.md create mode 100644 app/distros/en/toutou-linux.md create mode 100644 app/distros/en/windows.md create mode 100644 app/distros/fr/arch.md create mode 100644 app/distros/fr/centos.md create mode 100644 app/distros/fr/debian-sid.md create mode 100644 app/distros/fr/debian.md create mode 100644 app/distros/fr/dragonfly.md create mode 100644 app/distros/fr/fedora.md create mode 100644 app/distros/fr/freebsd.md create mode 100644 app/distros/fr/frugalware.md create mode 100644 app/distros/fr/lfs.md create mode 100644 app/distros/fr/mageia.md create mode 100644 app/distros/fr/openbsd.md create mode 100644 app/distros/fr/opensuze.md create mode 100644 app/distros/fr/pcbsd.md create mode 100644 app/distros/fr/puppy-linux.md create mode 100644 app/distros/fr/sabayon.md create mode 100644 app/distros/fr/slackware.md create mode 100644 app/distros/fr/slitaz.md create mode 100644 app/distros/fr/toutou-linux.md create mode 100644 app/distros/fr/windows.md create mode 100644 app/locales/en.yml create mode 100644 app/locales/fr.yml create mode 100644 composer.json create mode 100644 src/Os/Controller/OsController.php create mode 100644 src/Questionnaire/Application.php create mode 100644 src/Questionnaire/Command/GenerateReadmeCommand.php create mode 100644 src/Questionnaire/Controller/QuestionnaireController.php create mode 100644 src/Questionnaire/Model/Question.php create mode 100644 src/Questionnaire/Model/QuestionPeer.php create mode 100644 src/Questionnaire/Model/QuestionnairePeer.php create mode 100644 src/Questionnaire/Model/Result.php create mode 100644 src/Questionnaire/Model/ResultPeer.php create mode 100644 src/Questionnaire/Parser/Parser.php create mode 100644 src/Questionnaire/Parser/ParserInterface.php create mode 100644 src/Questionnaire/Parser/ReadmeParser.php create mode 100644 views/Os/index.html.twig create mode 100644 views/Questionnaire/base.html.twig create mode 100644 views/Questionnaire/index.html.twig create mode 100644 views/Questionnaire/readme.en.html.twig create mode 100644 views/Questionnaire/readme.fr.html.twig create mode 100644 views/Questionnaire/result.html.twig create mode 100644 views/Questionnaire/step.html.twig create mode 100644 views/base.html.twig create mode 100644 views/error.html.twig create mode 100644 views/layout.html.twig create mode 100644 web/.htaccess create mode 100644 web/assets/css/main.css create mode 100644 web/assets/img/10-lxde.png create mode 100644 web/assets/img/10-osx.png create mode 100644 web/assets/img/10-tty.png create mode 120000 web/components/bootstrap create mode 100644 web/components/jquery/jquery-built.js create mode 100644 web/components/jquery/jquery-migrate.js create mode 100644 web/components/jquery/jquery-migrate.min.js create mode 100644 web/components/jquery/jquery.js create mode 100644 web/components/jquery/jquery.min.js create mode 100644 web/components/require-built.js create mode 100644 web/components/require.config.js create mode 100644 web/components/require.css create mode 100644 web/components/require.js create mode 100644 web/index.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..48b8bf9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +vendor/ diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..5acecc9 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,27 @@ +Contributors +============ + +Development +----------- + +* Simon Vieille (deepblue) +* Valérian Galliat (vava740) + +Questions & Weightings +---------------------- + +Some questions are inspired by [Linux Distribution Chooser](http://www.zegeniestudios.net/ldc/), +a similar project that hasn't been updated since a while, and therefore +giving biased results (but the questions are still relevant). + +* Simon Vieille (deepblue) + +OS's Descriptions +----------------- + +* Simon Vieille (deepblue) + +Hosting +------- + +* [Simon Vieille (deepblue)](https://linux-test.deblan.org/) diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..01bc110 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + + This program is free software. It comes without any warranty, to + the extent permitted by applicable law. You can redistribute it + and/or modify it under the terms of the Do What The Fuck You Want + To Public License, Version 2, as published by Sam Hocevar. See + http://www.wtfpl.net/ for more details. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d242a16 --- /dev/null +++ b/Makefile @@ -0,0 +1,34 @@ +COMPOSER ?= composer +PHPCS ?= vendor/bin/phpcs + +PHPCS_FLAGS = --standard=PSR2 +PHPCS_DIRS = app src + +all: composer + +prod: COMPOSER_INSTALL_FLAGS += --no-dev +prod: all optimize + +composer: + @echo + # + # Installing application's dependencies. + # + $(COMPOSER) install $(COMPOSER_INSTALL_FLAGS) + +optimize: + @echo + # + # Optimizing Composer's autoloader, can take some time. + # + $(COMPOSER) dump-autoload --optimize + +update: + @echo + # + # Updating application's depencies. + # + $(COMPOSER) update + +cs: + $(PHPCS) $(PHPCS_FLAGS) $(PHPCS_DIRS) diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..46666c7 --- /dev/null +++ b/README.en.md @@ -0,0 +1,114 @@ +Linux Questionnaire +=================== + +This project provides a questionnaire that determines +the Linux distribution (or BSD system) which matches +your preferences. + +Contact & Support +----------------- + +### Project Management + +* [Redmine](https://lab.deblan.org/client/projects/linux-questionnaire) + +### Repository Browsers + +* [Redmine](https://lab.deblan.org/client/projects/linux-questionnaire/repository) +* [WebSVN](https://guest:guest@svn.deblan.org/websvn/listing.php?repname=linux-questionnaire) + +### IRC + +* Server: `ssl.neutralnetwork.org` +* Channel: `#wiki` +* [Web client](https://ssl.neutralnetwork.org/irc/?channels=%23wiki) + +### Forum + +* [Official topic](http://www.jeuxvideo.com/forums/1-38-7795760-1-0-1-0-questionnaire-choix-distribution.htm) + +Requirements +------------ + +* [PHP](https://www.php.net/) >= 5.4 +* [Apache Subversion](https://subversion.apache.org/) +* [Composer](https://getcomposer.org/) + +Installation +------------ + + svn co https://svn.deblan.org/svn/linux-questionnaire + cd linux-questionnaire + make + +Composer +-------- + +Composer can maybe be downloaded from your system's repositories. +Else, follow the next instructions: + +### Download + + # With cURL + curl -sS https://getcomposer.org/installer | php + + # With Wget + wget -O - -q https://getcomposer.org/installer | php + +You can now use it with `php composer.phar [arguments]`. + +### Executable + + mv composer.phar composer + chmod +x composer + +Use it with `./composer [arguments]`. + +### Install + +Assuming `~/bin` exists ans is in `$PATH`. + + mv composer ~/bin + +### Dependencies Installation (from `composer.lock`) + + composer install + +### Dependencies Update (will change `composer.lock`) + + composer update + +Makefile +-------- + +A Makefile is provided to automate some tasks. + +* `make` will install application's dependencies via Composer, +* `make prod` will install dependencies without developmenent requirements + and run `make optimize`, +* `make optimize` will run Composer's autoloader dump script with classmap + only, without dynamic autoload rules, +* `make cs` will run PHP code sniffer with PSR-2 conventions. + +Development Server +------------------ + +Use PHP's built-in development server, for example on `localhost`, port 8080: + + cd web + php -S localhost:8080 + +Homepage Update +--------------- + +When the `README.*.md` files are updated, we also need to update +the matching views in `web/views/Questionnaire/readme.*.html.twig`. To do that, +a simple console script was created. + +### Help + + app/console generate:readme -h + +### Basic Generation + + app/console generate:readme diff --git a/README.fr.md b/README.fr.md new file mode 100644 index 0000000..4bf552e --- /dev/null +++ b/README.fr.md @@ -0,0 +1,114 @@ +Questionnaire Linux +=================== + +Ce projet consiste en un questionnaire permettant de déterminer +la distribution Linux (ou BSD) qui vous convient le plus. + +Contact et support +------------------ + +### Gestion de projet + +* [Redmine](https://lab.deblan.org/client/projects/linux-questionnaire) + +### Arborescense du code + +* [Redmine](https://lab.deblan.org/client/projects/linux-questionnaire/repository) +* [WebSVN](https://guest:guest@svn.deblan.org/websvn/listing.php?repname=linux-questionnaire) + +### IRC + +* Server: `ssl.neutralnetwork.org` +* Channel: `#wiki` +* [Web client](https://ssl.neutralnetwork.org/irc/?channels=%23wiki) + +### Forum + +* [Official topic](http://www.jeuxvideo.com/forums/1-38-7795760-1-0-1-0-questionnaire-choix-distribution.htm) + +Prérequis +--------- + +* [PHP](https://www.php.net/) >= 5.4 +* [Apache Subversion](https://subversion.apache.org/) +* [Composer](https://getcomposer.org/) + +Installation +------------ + + svn co https://svn.deblan.org/svn/linux-questionnaire + cd linux-questionnaire + make + +Composer +-------- + +Composer est peut-être téléchargeable depuis votre gestionnaire de paquets. +Sinon, suivez les instructions suivantes : + +### Téléchargement + + # Avec cURL + curl -sS https://getcomposer.org/installer | php + + # Avec Wget + wget -O - -q https://getcomposer.org/installer | php + +Vous pouvez maintenant l'utiliser avec `php composer.phar [arguments]`. + +### Exécutable + + mv composer.phar composer + chmod +x composer + +S'utilise désormais avec `./composer [arguments]`. + +### Installation + +En partant du principe que le dossier `~/bin` existe et est dans le `$PATH`. + + mv composer ~/bin + +### Installation des dépendances (depuis `composer.lock`) + + composer install + +### Mise à jour des dépendances (modification de `composer.lock`) + + composer update + +Makefile +-------- + +Un Makefile est intégré pour automatiser certaines tâches. + +* `make` installera les dépendances de l'application avec Composer, +* `make prod` installera les dépendances à l'exception de celles nécessaires + seulement au développement, et lancera `make optimize`, +* `make optimize` exécutera le script d'optimisation de Composer pour convertir + les chargements dynamiques de classes en *classmap*, +* `make cs` lancera un *code sniffer* PHP avec les conventions PSR-2. + +Serveur de développement +------------------------ + +Vous pouvez utiliser le serveur de développement intégré à PHP, par exemple +sur `localhost`, port 8080 : + + cd web + php -S localhost:8080 + +Mise à jour de la page d'accueil +-------------------------------- + +Quand les `README.*.md` sont modifiés, il faut aussi mettre à jour les +vues correspondantes dans `web/views/Questionnaire/readme.*.html.twig`. +Pour ça, un script a été créé. + +### Aide + + app/console generate:readme -h + +### Génération de base + + app/console generate:readme diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..a5ab0c7 --- /dev/null +++ b/TODO.md @@ -0,0 +1,31 @@ +Todo +==== + +* Fix images in questionnaire config to not use an abslute path, using + a placeholder variable in the text (compatible with translation). + +* Maybe find another way to include image than the plain HTML in config + file and translation. + +* Show result value indicator. + +* Take out some logic from controllers. + +* Use service providers for most stuff in `app/bootstrap.php`. + +* Peers: + * externalize YAML parsing in `QuestionnairePeer`, + * factorize peers to be injected as shared services. + +* Maybe find a way to factorize site title and other variables, + for example using a Makefile to convert `.dist` files, like + `README.md.dist` with `%title%` replaced with real variable + during make process in target `README.md`. + +* Not tested, but I guess the local server shown in readme + may not work, as it don't rewrite URL's with Apache config + override (`.htaccess`), and the website currently don't work + with `/index.php/*` links. + +* Make the `.svnignore` work, or any way to ignore any directory + and its content. diff --git a/app/bootstrap.php b/app/bootstrap.php new file mode 100644 index 0000000..5838927 --- /dev/null +++ b/app/bootstrap.php @@ -0,0 +1,36 @@ +isDot() && $file->isFile()) { + $files[] = $file->getPathname(); + } + } + + // Sort init files, order is important + sort($files); + + foreach ($files as $file) { + $closure($file); + } + + return $app; +}); diff --git a/app/bootstrap.php.d/00-main.php b/app/bootstrap.php.d/00-main.php new file mode 100644 index 0000000..4ca72b1 --- /dev/null +++ b/app/bootstrap.php.d/00-main.php @@ -0,0 +1,7 @@ +share(function ($app) { + return new FileLocator($app['config.locator.path']); +}); diff --git a/app/bootstrap.php.d/20-console.php b/app/bootstrap.php.d/20-console.php new file mode 100644 index 0000000..6035776 --- /dev/null +++ b/app/bootstrap.php.d/20-console.php @@ -0,0 +1,15 @@ +register(new ConsoleServiceProvider(), array( + 'console.name' => 'Linux Questionnaire', + 'console.version' => 'dev-master', + 'console.project_directory' => $app['root_path'], +)); + +$app['console'] = $app->share($app->extend('console', function ($console) { + $console->add(new GenerateReadmeCommand()); + return $console; +})); diff --git a/app/bootstrap.php.d/20-error.php b/app/bootstrap.php.d/20-error.php new file mode 100644 index 0000000..02de3a9 --- /dev/null +++ b/app/bootstrap.php.d/20-error.php @@ -0,0 +1,12 @@ +error(function (Exception $e, $code) use ($app) { + return $app['twig']->render( + 'error.html.twig', + array( + 'code' => $code, + 'name' => get_class($e), + 'exception' => $e, + ) + ); +}); diff --git a/app/bootstrap.php.d/20-misc.php b/app/bootstrap.php.d/20-misc.php new file mode 100644 index 0000000..a386b90 --- /dev/null +++ b/app/bootstrap.php.d/20-misc.php @@ -0,0 +1,10 @@ +register(new UrlGeneratorServiceProvider()); +$app->register(new SessionServiceProvider()); +$app->register(new MarkdownServiceProvider()); diff --git a/app/bootstrap.php.d/20-readme.php b/app/bootstrap.php.d/20-readme.php new file mode 100644 index 0000000..e8300ab --- /dev/null +++ b/app/bootstrap.php.d/20-readme.php @@ -0,0 +1,11 @@ +share(function ($app) { + return new YamlFileLoader($app['config.locator']); +}); + +$app['routes'] = $app->share($app->extend('routes', function ($routes, $app) { + $routes->addCollection($app['routing.loader']->load($app['routing.file'])); + return $routes; +})); diff --git a/app/bootstrap.php.d/20-twig.php b/app/bootstrap.php.d/20-twig.php new file mode 100644 index 0000000..6075a91 --- /dev/null +++ b/app/bootstrap.php.d/20-twig.php @@ -0,0 +1,15 @@ +register(new TwigServiceProvider(), array( + 'twig.path' => $app['root_path'].'/views', + 'breadcrumb_separator' => ' - ', +)); + +$app->extend('twig', function ($twig, $app) { + $twig->addGlobal('web_path', $app['request']->getBaseUrl().'/'); + $twig->addGlobal('breadcrumb_separator', $app['breadcrumb_separator']); + $twig->addGlobal('bs', $app['breadcrumb_separator']); + return $twig; +}); diff --git a/app/bootstrap.php.d/30-trans.php b/app/bootstrap.php.d/30-trans.php new file mode 100644 index 0000000..4f5cad5 --- /dev/null +++ b/app/bootstrap.php.d/30-trans.php @@ -0,0 +1,58 @@ +register(new TranslationServiceProvider(), array( + 'locale' => 'en', + 'locale_fallback' => 'en', + 'locales' => array('en', 'fr'), // Custom parameter, not Silex +)); + +$app['translator'] = $app->share($app->extend('translator', function ($translator, $app) { + $translator->addLoader('yaml', new YamlFileLoader()); + + foreach ($app['locales'] as $locale) { + $file = $app['root_path'].'/app/locales/'.$locale.'.yml'; + + if (is_file($file)) { + $translator->addResource('yaml', $file, $locale); + } + } + + return $translator; +})); + +$app['routes'] = $app->share($app->extend('routes', function ($routes, $app) { + $routes->addPrefix('/{_locale}'); + $routes->addDefaults(array('_locale' => $app['locale_fallbacks'][0])); + $routes->addRequirements(array('_locale' => implode('|', $app['locales']))); + + return $routes; +})); + +/** + * Redirect home on right locale page, regarding of request accept locale or + * default fallback. + */ +$app->get('/', function (Request $request) use ($app) { + $accept = AcceptHeader::fromString($request->headers->get('Accept-Language')); + + // Default locale fallback + $foundLocale = $app['translator']->getLocale(); + + foreach ($app['locales'] as $locale) { + if ($accept->has($locale)) { + $foundLocale = $locale; + break; + } + } + + return new RedirectResponse($app['url_generator']->generate( + 'homepage', + array('_locale' => $foundLocale) + )); +}); diff --git a/app/config/questionnaire.yml b/app/config/questionnaire.yml new file mode 100644 index 0000000..07d9ec5 --- /dev/null +++ b/app/config/questionnaire.yml @@ -0,0 +1,215 @@ +questions: + 10: + title: Pour vous, c'est quoi Linux ? + choices: + 1: TTY + 2: LXDE + 3: Mac OS X + 20: + title: Savez-vous ce qu'est une « distribution Linux » ? + # required: [[question_id, choice_id]] + choices: + 1: yes + 2: no + 30: + title: Avez-vous déjà réussi à installer un système d'exploitation auparavant ? + choices: + 1: yes + 2: no + 40: + title: Savez-vous comment partitionner un disque dur ? + choices: + 1: yes + 2: Non, je n'ai aucune idée de ce que « partitionnement » signifie + 3: Non, mais je sais ce que « partitionnement » signifie + 50: + title: Quel genre d'installateur préférez vous ? + choices: + 1: Graphique (pointer et clicker) + 2: En mode texte (clavier seulement) + 3: Je n'y prête pas d'importance, du moment que c'est facile et que ça marche + 60: + title: Comment évalueriez-vous votre niveau de qualification technique en informatique ? + choices: + 1: Débutant + 2: Intermediaire + 3: Avancé + 4: Expert + 70: + title: Sur quel genre d'ordinateur allez-vous l'intaller ? + choices: + 1: Un ordinateur portable (laptop) + 2: Un ordinateur de bureau (desktop) + # 3: PS3 + 4: Cela peut-être les deux + 80: + title: Quel est la fonction première de cet ordinateur ? + choices: + 1: Desktop / système personnel + 2: Station de travail + 3: Serveur + 90: + title: Avez-vous un processeur 64 bits ? + choices: + 1: yes + 2: no + 100: + title: Quel âge à l'ordinateur sur lequel vous allez installer Linux ? + choices: + 1: Il a plus que juste quelque années + 2: Juste quelques années + 3: Il est (presque) encore brillant + 110: + title: Comment évalueriez-vous votre niveau de connaissance de Linux ? + choices: + 1: Je n'ai jamais utilisé Linux auparavant / j'ai seulement essayé un petit peu + 2: J'utilise Linux depuis un moment maintenant + 3: Expérimenté, Je sais parfaitement où je vais + 120: + title: Quel système de gestion de paquets préférez-vous ? + choices: + 1: Je préfère le système DEB + 2: Je préfère le système RPM + 3: Je préfère compiler mes propres binaires + 4: Je préfère un autre + 5: Je ne sais pas / je n'y prête pas attention + 130: + title: Avez-vous besoin que les paquets de développement soit installés ou aisément disponibles ? + choices: + 1: Oui, aisément disponible + 2: Oui, sur le CD + 3: no + 140: + title: Quel environement de bureau préférez-vous ? + choices: + 1: Je préfère KDE + 2: Je préfère GNOME + 3: Je préfère LXDE + 4: Je préfère avoir (aussi) d'autres environements de bureau disponibles + 5: Je n'y prête pas attention + 150: + title: Avez-vous besoin d'un accès facile à beaucoup de logiciels prêts à l'emploi ? + choices: + 1: Oui, s'il vous plaît + 2: Non merci / je n'y prête pas attention + 160: + title: Veuillez sélectionner ce qui s'adapte le mieux à vous : + choices: + 1: Je préfère utiliser des logiciels parfaitement stables, complètement testés + 2: Je veux avoir les tout derniers logiciels mais néanmoins grandement stables + 3: ça ne me gêne pas de tester des choses nouvelles, excitantes mais expérimentales + 170: + title: Pourquoi êtes-vous ici ? + choices: + 1: Études + 2: Curiosité + 3: Windows sucks + # 4: Cousin polonais + 180: + title: Est-ce que la distribution Linux doit être gratuite ? + choices: + 1: yes + 2: no + 190: + title: Voulez-vous inclure les Live CDs dans les résultats ? + choices: + 1: yes + 2: no + +results: + 10: + title: Debian + info: debian + weightings: + 10: {1: 1} + 15: + title: Debian (sid) + info: debian-sid + weightings: + 10: {1: 1} + + 20: + title: Fedora + info: fedora + weightings: + 10: {1: 1} + 30: + title: openSUSE + info: opensuze + weightings: + 10: {1: 1} + 40: + title: Arch Linux + info: arch + weightings: + 10: {1: 1} + 50: + title: Slackware + info: slackware + weightings: + 10: {1: 1} + 60: + title: Frugalware + info: frugalware + weightings: + 10: {1: 1} + 70: + title: Mageia + info: mageia + weightings: + 10: {1: 1} + 80: + title: Sabayon + info: sabayon + weightings: + 10: {1: 1} + 90: + title: Toutou Linux + info: toutou-linux + weightings: + 10: {1: 1} + 100: + title: Puppy Linux + info: puppy-linux + weightings: + 10: {1: 1} + 110: + title: SliTaz + info: slitaz + weightings: + 10: {1: 1} + 120: + title: FreeBSD + info: freebsd + weightings: + 10: {1: 1} + 130: + title: PC-BSD + info: pcbsd + weightings: + 10: {1: 1} + 140: + title: OpenBSD + info: openbsd + weightings: + 10: {1: 1} + 150: + title: LFS + info: lfs + weightings: + 10: {1: 1} + 160: + title: DragonFly BSD + info: dragonfly + weightings: + 10: {1: 1} + 170: + title: Centos + info: centos + weightings: + 10: {1: 1} + 180: + title: Windows + info: windows + weightings: + 10: {1: 1} diff --git a/app/config/routing.yml b/app/config/routing.yml new file mode 100644 index 0000000..1fc3ed0 --- /dev/null +++ b/app/config/routing.yml @@ -0,0 +1,19 @@ +homepage: + path: / + defaults: { _controller: Questionnaire\Controller\QuestionnaireController::indexAction, _locale: en } + +start: + path: /start + defaults: { _controller: Questionnaire\Controller\QuestionnaireController::startAction } + +step: + path: /step/{step} + defaults: { _controller: Questionnaire\Controller\QuestionnaireController::stepAction } + +result: + path: /result + defaults: { _controller: Questionnaire\Controller\QuestionnaireController::resultAction } + +distros: + path: /distros + defaults: { _controller: Os\Controller\OsController::indexAction } diff --git a/app/console b/app/console new file mode 100755 index 0000000..9f603e5 --- /dev/null +++ b/app/console @@ -0,0 +1,6 @@ +#!/usr/bin/env php +run(); diff --git a/app/deploy b/app/deploy new file mode 100755 index 0000000..1409a3d --- /dev/null +++ b/app/deploy @@ -0,0 +1,14 @@ +#!/bin/sh + +cd "$(dirname "$0")/.." + +deploy_preprod() { + rsync -avzoK --delete -e ssh * weblinuxtest@deblan.fr:/services/web/www/linux-test.deblan.org/project/ +} + + +deploy_preprod_lan() { + rsync -avzoK --delete -e ssh * weblinuxtest@hinata:/services/web/www/linux-test.deblan.org/project/ +} + +([ -n "$1" ] && deploy_$1) || deploy_preprod diff --git a/app/distros/en/arch.md b/app/distros/en/arch.md new file mode 100644 index 0000000..5c6b584 --- /dev/null +++ b/app/distros/en/arch.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/centos.md b/app/distros/en/centos.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/en/debian-sid.md b/app/distros/en/debian-sid.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/debian-sid.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/debian.md b/app/distros/en/debian.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/debian.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/dragonfly.md b/app/distros/en/dragonfly.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/en/fedora.md b/app/distros/en/fedora.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/fedora.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/freebsd.md b/app/distros/en/freebsd.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/en/frugalware.md b/app/distros/en/frugalware.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/frugalware.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/lfs.md b/app/distros/en/lfs.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/en/mageia.md b/app/distros/en/mageia.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/mageia.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/openbsd.md b/app/distros/en/openbsd.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/en/opensuze.md b/app/distros/en/opensuze.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/opensuze.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/pcbsd.md b/app/distros/en/pcbsd.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/en/puppy-linux.md b/app/distros/en/puppy-linux.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/puppy-linux.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/sabayon.md b/app/distros/en/sabayon.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/sabayon.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/slackware.md b/app/distros/en/slackware.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/slackware.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/slitaz.md b/app/distros/en/slitaz.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/slitaz.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/toutou-linux.md b/app/distros/en/toutou-linux.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/en/toutou-linux.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/en/windows.md b/app/distros/en/windows.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/arch.md b/app/distros/fr/arch.md new file mode 100644 index 0000000..5c6b584 --- /dev/null +++ b/app/distros/fr/arch.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/centos.md b/app/distros/fr/centos.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/debian-sid.md b/app/distros/fr/debian-sid.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/debian-sid.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/debian.md b/app/distros/fr/debian.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/debian.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/dragonfly.md b/app/distros/fr/dragonfly.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/fedora.md b/app/distros/fr/fedora.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/fedora.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/freebsd.md b/app/distros/fr/freebsd.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/frugalware.md b/app/distros/fr/frugalware.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/frugalware.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/lfs.md b/app/distros/fr/lfs.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/mageia.md b/app/distros/fr/mageia.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/mageia.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/openbsd.md b/app/distros/fr/openbsd.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/opensuze.md b/app/distros/fr/opensuze.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/opensuze.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/pcbsd.md b/app/distros/fr/pcbsd.md new file mode 100644 index 0000000..e69de29 diff --git a/app/distros/fr/puppy-linux.md b/app/distros/fr/puppy-linux.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/puppy-linux.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/sabayon.md b/app/distros/fr/sabayon.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/sabayon.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/slackware.md b/app/distros/fr/slackware.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/slackware.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/slitaz.md b/app/distros/fr/slitaz.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/slitaz.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/toutou-linux.md b/app/distros/fr/toutou-linux.md new file mode 100644 index 0000000..2e897d8 --- /dev/null +++ b/app/distros/fr/toutou-linux.md @@ -0,0 +1,20 @@ +A First Level Header +==================== + +A Second Level Header +--------------------- + +Now is the time for all good men to come to +the aid of their country. This is just a +regular paragraph. + +The quick brown fox jumped over the lazy +dog's back. + +### Header 3 + +> This is a blockquote. +> +> This is the second paragraph in the blockquote. +> +> ## This is an H2 in a blockquote diff --git a/app/distros/fr/windows.md b/app/distros/fr/windows.md new file mode 100644 index 0000000..e69de29 diff --git a/app/locales/en.yml b/app/locales/en.yml new file mode 100644 index 0000000..e05a545 --- /dev/null +++ b/app/locales/en.yml @@ -0,0 +1,25 @@ +base: + home: Home + distros: Distributions + wiki: Wiki + +index: + start: Start now! + source: Browse source + +result: + count: '{0} No result :(|{1} 1 result|]1,Inf] %count% results' + +next: Next +previous: Previous + +yes: Yes +no: No + +# +# Native language names ("Français" will be displayed as-is in English), +# not needed to translate in other languages. +# +locale.native: + en: English + fr: Français diff --git a/app/locales/fr.yml b/app/locales/fr.yml new file mode 100644 index 0000000..6803378 --- /dev/null +++ b/app/locales/fr.yml @@ -0,0 +1,17 @@ +base: + home: Accueil + distros: Distributions + wiki: Wiki + +index: + start: Commencer maintenant ! + source: Voir la source + +result: + count: '{0} Aucun résultat :(|{1} 1 résultat|]1,Inf] %count% résultats' + +next: Suivant +previous: Précédent + +yes: Oui +no: Non diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..43fa88e --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "require": { + "silex/silex": "1.*", + "symfony/yaml": "2.*", + "symfony/config": "2.*", + "symfony/twig-bridge": "2.*", + "nicl/silex-markdown": "1.*", + "symfony/translation": "2.*", + "knplabs/console-service-provider": "dev-master", + + "components/jquery": "1.*", + "twbs/bootstrap": "3.*" + }, + + "require-dev": { + "squizlabs/php_codesniffer": "1.*" + }, + + "config": { + "component-dir": "web/components" + }, + + "autoload": { + "psr-0": { + "": "src/" + } + } +} diff --git a/src/Os/Controller/OsController.php b/src/Os/Controller/OsController.php new file mode 100644 index 0000000..cf3e6f7 --- /dev/null +++ b/src/Os/Controller/OsController.php @@ -0,0 +1,19 @@ +render( + 'Os/index.html.twig', + array( + 'results' => ResultPeer::retrieveResults(), + ) + ); + } +} diff --git a/src/Questionnaire/Application.php b/src/Questionnaire/Application.php new file mode 100644 index 0000000..0439433 --- /dev/null +++ b/src/Questionnaire/Application.php @@ -0,0 +1,22 @@ +setName('generate:readme') + ->setDescription( + 'Generate the HTML readme from Markdown with tags replacement.' + ) + ; + + + $this->addArgument( + 'in', + InputArgument::OPTIONAL, + 'Markdown file to process, README.*.md by default, stdin if -.' + ); + + $outDefault = 'web/views/Questionnaire/readme.*.html.twig'; + + $this->addArgument( + 'out', + InputArgument::OPTIONAL, + 'Output HTML file, '.$outDefault.' by default, stdout if -.' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + if (empty($input->getArgument('in')) && empty($input->getArgument('out'))) { + $this->handleDefault($input, $output); + return; + } + + $this->before($input, $output); + + $app = $this->getSilexApplication(); + $markdownParser = $app['markdown']; + $readmeParser = $app['readme.parser']; + + $md = stream_get_contents($this->in); + $html = $markdownParser->transformMarkdown($md); + + $html = sprintf( + ' + + + + + + + %s + + + ', + $html + ); + + $readmeParser->load($html); + $readmeParser->stream($this->out); + + $this->after(); + } + + protected function before(InputInterface $input, OutputInterface $output) + { + $in = $input->getArgument('in'); + $out = $input->getArgument('out'); + + if (empty($in) || empty($out)) { + throw new \InvalidArgumentException('The `in` and `out` parameters must be provided together.'); + } + + if ($in === '-') { + $this->in = fopen('php://stdin', 'rb'); + } else { + $this->validateFile($in, 'rb'); + $this->in = fopen($in, 'rb'); + } + + if ($out === '-') { + $this->out = $output; + $this->closeOut = false; + } else { + try { + $this->validateFile($out, 'wb'); + } catch (Exception $e) { + $this->clean(); + throw $e; + } + + $this->out = new StreamOutput(fopen($out, 'wb')); + $this->closeOut = true; + } + } + + protected function after() + { + $this->clean(); + } + + protected function clean() + { + if (is_resource($this->in)) { + fclose($this->in); + } + + if ($this->closeOut && is_resource($this->out->getStream())) { + fclose($this->out->getStream()); + } + } + + protected function handleDefault(InputInterface $input, OutputInterface $output) + { + $app = $this->getSilexApplication(); + $dir = $this->getProjectDirectory(); + + $files = glob($dir.'/README.*.md'); + + if (empty($files)) { + throw new \InvalidArgumentException('No file was found matching `README.*.md`.'); + } + + foreach ($files as $file) { + /** + * Find the penultimate dot in string (assuming it ends with `\..{2}`). + * + * strrpos($input, '.', -4); + * + * Cut the filename from the penultimate dot plus 1 (don't include + * the dot in the final string) until the end of the string minus 3 + * (don't take the last 3 characters). + * + * So, for `README.en.md`, this will extract `en`. + * + * For `README.en.markdown`, this will extract `markd` (stripping + * final `own`), because this will find the last dot instead of + * the penultimate dot. + */ + $lang = substr($file, strrpos($file, '.', -4) + 1, -3); + + // Compote output file from input lang + $targets[] = $app['twig.path'].'/Questionnaire/readme.'.$lang.'.html.twig'; + } + + foreach ($files as $i => $file) { + $input->setArgument('in', $file); + $input->setArgument('out', $targets[$i]); + + // Recursive execution for each file + $this->execute($input, $output); + } + } + + /** + * @param string $file + * @param string $mode + * @see fopen() + * @throws \InvalidArgumentException + */ + protected function validateFile($file, $mode) + { + $read = 'r' === $mode[0]; + $write = in_array($mode[0], array('w', 'a', 'c'), true); + $create = $write; + + if ($mode[1] === '+') { + if ($read) { + $write = true; + } elseif ($write) { + $read = true; + } + } + + if (!is_file($file)) { + if ($create) { + // Let the file be created + return; + } + + throw new \InvalidArgumentException(sprintf( + 'Given file "%s" does not exists.', + $file + )); + } + + if ($read && !is_readable($file)) { + throw new \InvalidArgumentException(sprintf( + 'Given file "%s" is not readable.', + $file + )); + } + + if ($write && !is_writable($file)) { + throw new \InvalidArgumentException(sprintf( + 'Given file "%s" is not writable.', + $file + )); + } + } +} diff --git a/src/Questionnaire/Controller/QuestionnaireController.php b/src/Questionnaire/Controller/QuestionnaireController.php new file mode 100644 index 0000000..e895d10 --- /dev/null +++ b/src/Questionnaire/Controller/QuestionnaireController.php @@ -0,0 +1,155 @@ +render( + 'Questionnaire/index.html.twig' + ); + } + + public function startAction(Application $app) + { + $this->initUserResponses($app['session']); + + return $this->redirectToStep(1, $app); + } + + public function stepAction($step, Application $app, Request $request) + { + $step = (int) $step; + $realStep = $step - 1; + + $questions = QuestionPeer::retrieveQuestions(); + + if ($step > count($questions)) { + return $app->redirect($app['url_generator']->generate('result')); + } + + $question = $questions[$realStep]; + + if ($request->isMethod('post')) { + $response = $request->request->get('response'); + + if ($response !== null) { + $response = (int) $response; + + if (isset($question->getChoices()[$response])) { + $this->mergeUserResponse($question, $response, $app['session']); + + return $this->redirectToStep($step + 1, $app); + } + } + } + + if (!$question->isCompatibleWithResponses($app['session']->get('responses', array()))) { + return $this->redirectToStep($step + 1, $app); + } + + return $app['twig']->render( + 'Questionnaire/step.html.twig', + array( + 'step' => $step, + 'question' => $question, + 'percent' => round((100 * $realStep) / count($questions)), + ) + ); + } + + /** + * @todo Migrate calculation algorithm in its own class. + */ + public function resultAction(Application $app) + { + $responses = $app['session']->get('responses', array()); + + if (empty($responses)) { + return $this->redirectToStep(1, $app); + } + + $results = ResultPeer::retrieveResults(); + + foreach ($results as $result) { + foreach ($responses as $questionId => $response) { + if (isset($result->getWeightings()[$questionId][$response])) { + $value = $result->getWeightings()[$questionId][$response]; + + if (false === $value) { + $result->isOut(true); + continue 2; + } + + $result->addWeighting($value); + } + } + } + + $finalResults = []; + + foreach ($results as $result) { + if ($result->isOut()) { + continue; + } + + $finalResults[] = $result; + } + + $hasLoop = true; + $length = count($finalResults); + + while ($hasLoop) { + $hasLoop = false; + + for ($u = 0; $u < $length - 1; $u++) { + if ($finalResults[$u]->getValue() < $finalResults[$u + 1]->getValue()) { + $a = $finalResults[$u + 1]; + $finalResults[$u + 1] = $finalResults[$u]; + $finalResults[$u] = $a; + + $hasLoop = true; + } + } + } + + return $app['twig']->render( + 'Questionnaire/result.html.twig', + array( + 'results' => $finalResults, + ) + ); + } + + protected function initUserResponses(Session $session) + { + $session->set('responses', array()); + } + + protected function mergeUserResponse(Question $question, $response, Session $session) + { + $responses = $session->get('responses', array()); + + $responses[$question->getId()] = $response; + + $session->set('responses', $responses); + } + + protected function redirectToStep($step, Application $app) + { + return $app->redirect($app['url_generator']->generate( + 'step', + array( + 'step' => $step + ) + )); + } +} diff --git a/src/Questionnaire/Model/Question.php b/src/Questionnaire/Model/Question.php new file mode 100644 index 0000000..03e66e4 --- /dev/null +++ b/src/Questionnaire/Model/Question.php @@ -0,0 +1,116 @@ + $v) { + $setter = 'set'.ucfirst($k); + + if (method_exists($this, $setter)) { + $this->$setter($v); + } + } + + return $this; + } + + public function setId($id) + { + $this->id = $id; + + return $this; + } + + public function getId() + { + return $this->id; + } + + public function setTitle($title) + { + $this->title = $title; + + return $this; + } + + public function getTitle() + { + return $this->title; + } + + public function setChoices(array $choices) + { + $this->choices = $choices; + + return $this; + } + + public function getChoices() + { + return $this->choices; + } + + public function setRequired(array $required) + { + $this->required = $required; + + return $this; + } + + public function getRequired() + { + return $this->required; + } + + public function getRequirements() + { + return $this->getRequired(); + } + + public function hasRequirements() + { + return count($this->getRequirements()) > 0; + } + + public function isCompatibleWithResponses(array $response) + { + if (!$this->hasRequirements()) { + return true; + } + + foreach ($response as $questionId => $response) { + $question = QuestionPeer::retrieveQuestionById($questionId); + + if (null === $question) { + continue; + } + + foreach ($this->getRequirements() as $requirement) { + list($requirementQuestionId, $requirementResponses) = $requirement; + + if ($requirementQuestionId === $questionId) { + if (!is_array($requirementResponses)) { + $requirementResponses = array($requirementResponses); + } + + if (!in_array($response, $requirementResponses)) { + return false; + } + } + } + } + + return true; + } +} diff --git a/src/Questionnaire/Model/QuestionPeer.php b/src/Questionnaire/Model/QuestionPeer.php new file mode 100644 index 0000000..74cf593 --- /dev/null +++ b/src/Questionnaire/Model/QuestionPeer.php @@ -0,0 +1,136 @@ + $v) { + if ($errors = self::validateYamlEnty($k, $v)) { + throw new \RuntimeException( + 'Invalid entry for index "'.$k.'" is not valid:'.PHP_EOL.implode(PHP_EOL, $errors) + ); + } + + $question = new Question(); + $collection[] = $question->hydrate(array_merge(array('id' => $k), $v)); + } + + if (empty($collection)) { + throw new \RuntimeException('At least one question must be defined.'); + } + + return self::$questions = $collection; + } + + public static function retrieveQuestionById($id) + { + if (!is_int($id)) { + throw \InvalidArgumentException('You must provide a valid integer id.'); + } + + foreach (self::retrieveQuestions() as $d) { + if ($d->getId() === $id) { + return $d; + } + } + + return null; + } + + protected static function validateYamlEnty($key, $entry) + { + $errors = []; + + if (!is_int($key)) { + $errors[] = 'The key must be a integer.'; + } + + if (!isset($entry['title'])) { + $errors[] = '"title" index must be defined (string).'; + } else { + if (!is_string($entry['title'])) { + $errors[] = '"title" index must be defined as string.'; + } else { + if (!trim($entry['title'])) { + $errors[] = '"title" index value can not be empty.'; + } + } + } + + if (empty($entry['choices'])) { + $errors[] = '"choices" index must be defined (array).'; + } else { + if (!is_array($entry['choices'])) { + $errors[] = '"choices" index must be defined as array.'; + } else { + if (empty($entry['choices'])) { + $errors[] = '"choices" index value can not be empty.'; + } else { + foreach ($entry['choices'] as $k => $v) { + if (!is_int($k)) { + $errors[] = 'Choice with key "'.$k.'" must have an integer key.'; + } + + if (!is_string($v)) { + $errors[] = 'Choice value with key "'.$k.'" must be a string.'; + } else { + if (empty($v)) { + $errors[] = 'Choice value with key "'.$k.'" cannot be empty.'; + } + } + } + } + } + } + + if (isset($entry['required'])) { + if (!is_array($entry['required'])) { + $errors[] = '"required" index must be defined as array.'; + } + + if (empty($entry['required'])) { + $errors[] = '"required" index value can not be empty if defined.'; + } else { + foreach ($entry['required'] as $k => $v) { + if (!is_array($v)) { + $errors[] = 'At "required" index, value with key "'.$k.'" must be an array.'; + } else { + if (count($v) !== 2) { + $errors[] = 'At "required" index, value with key "'.$k.'" must have 2 values: question index and choice index.'; + } else { + if (!is_int($v[0])) { + $errors[] = 'At "required" index, value with key "'.$k.'" must have a integer for question\'s index.'; + } else { + if ($v[0] >= $key) { + $errors[] = 'At "required" index, value with key "'.$k.'" must have a value smaller than "'.$key.'".'; + } + } + + if (!is_int($v[1]) && !is_array($v[1])) { + $errors[] = 'At "required" index, value with key "'.$k.'" must have a integer or array for choice\'s index.'; + } + } + } + } + } + } + + return !empty($errors) ? $errors : null; + } +} diff --git a/src/Questionnaire/Model/QuestionnairePeer.php b/src/Questionnaire/Model/QuestionnairePeer.php new file mode 100644 index 0000000..88312a8 --- /dev/null +++ b/src/Questionnaire/Model/QuestionnairePeer.php @@ -0,0 +1,26 @@ +locate('questionnaire.yml'); + + return self::$yaml = Yaml::parse($file); + } +} diff --git a/src/Questionnaire/Model/Result.php b/src/Questionnaire/Model/Result.php new file mode 100644 index 0000000..57a28c1 --- /dev/null +++ b/src/Questionnaire/Model/Result.php @@ -0,0 +1,109 @@ + $v) { + $setter = 'set'.ucfirst($k); + + if (method_exists($this, $setter)) { + $this->$setter($v); + } + } + + return $this; + } + + public function setTitle($title) + { + $this->title = $title; + + return $this; + } + + public function getTitle() + { + return $this->title; + } + + public function setWeightings(array $weightings) + { + $this->weightings = $weightings; + + return $this; + } + + public function getWeightings() + { + return $this->weightings; + } + + public function setValue($value) + { + $this->value = (int) $value; + + return $this; + } + + public function getValue() + { + return $this->value; + } + + public function setIsOut($isOut) + { + $this->isOut = (bool) $isOut; + + return $this; + } + + public function getIsOut() + { + return $this->isOut; + } + + public function isOut() + { + if (func_num_args() === 0) { + return $this->getIsOut(); + } + + return $this->setIsOut(func_get_arg(0)); + } + + public function addWeighting($weighting) + { + return $this->setValue($this->getValue() + $weighting); + } + + public function setInfo($info) + { + $this->info = $info; + + return $this; + } + + public function getInfo($locale) + { + if (null === $this->info) { + return ''; + } + + $file = sprintf('../app/distros/%s/%s.md', $locale, $this->info); + + return file_exists($file) ? file_get_contents($file) : ''; + } +} diff --git a/src/Questionnaire/Model/ResultPeer.php b/src/Questionnaire/Model/ResultPeer.php new file mode 100644 index 0000000..53e9704 --- /dev/null +++ b/src/Questionnaire/Model/ResultPeer.php @@ -0,0 +1,108 @@ + $v) { + if ($errors = self::validateYamlEnty($k, $v)) { + throw new \RuntimeException( + 'Invalid entry for index "'.$k.'" is not valid:'.PHP_EOL.implode(PHP_EOL, $errors) + ); + } + + $result = new Result(); + $collection[] = $result->hydrate(array_merge(array('id' => $k), $v)); + } + + return self::$results = $collection; + } + + public static function retrieveResultById($id) + { + if (!is_int($id)) { + throw \InvalidArgumentException('You must provide a valid integer id.'); + } + + foreach (self::retrieveResults() as $d) { + if ($d->getId() === $id) { + return $d; + } + } + + return null; + } + + protected static function validateYamlEnty($key, $entry) + { + $errors = []; + + if (!is_int($key)) { + $errors[] = 'The key must be a integer.'; + } + + if (!isset($entry['title'])) { + $errors[] = '"title" index must be defined (string).'; + } else { + if (!is_string($entry['title'])) { + $errors[] = '"title" index must be defined as string.'; + } else { + if (!trim($entry['title'])) { + $errors[] = '"title" index value can not be empty.'; + } + } + } + + if (empty($entry['weightings'])) { + $errors[] = '"weightings" index must be defined (array).'; + } else { + if (!is_array($entry['weightings'])) { + $errors[] = '"weightings" index must be defined as array.'; + } else { + if (empty($entry['weightings'])) { + $errors[] = '"weightings" index value can not be empty.'; + } else { + foreach ($entry['weightings'] as $k => $v) { + if (!is_int($k)) { + $errors[] = 'Weighting with key "'.$k.'" must have an integer key.'; + } + + if (!is_array($v)) { + $errors[] = 'Weighting value with key "'.$k.'" must be an array.'; + } else { + foreach ($v as $q => $p) { + if (!is_bool($p) && !is_int($p)) { + $errors[] = 'Weighting value with key "'.$k.'" is invalid.'; + } + } + } + } + } + } + } + + // if (isset($entry['info'])) { + // if (!file_exists(sprintf('info/%s.md', $entry['info']))) { + // $errors[] = 'Info file does not exist.'; + // } + // } + + return !empty($errors) ? $errors : null; + } +} diff --git a/src/Questionnaire/Parser/Parser.php b/src/Questionnaire/Parser/Parser.php new file mode 100644 index 0000000..d8585ae --- /dev/null +++ b/src/Questionnaire/Parser/Parser.php @@ -0,0 +1,40 @@ +output = $output; + $this->doStream(); + $this->output = null; + } + + public function capture() + { + $output = fopen('php://temp', 'w+b'); + $this->stream(new StreamOutput($output)); + rewind($output); + $data = stream_get_contents($output); + fclose($output); + return $data; + } + + public function save($file) + { + $output = fopen($file, 'wb'); + $this->stream(new StreamOutput($output)); + fclose($file); + } + + abstract protected function doStream(); +} diff --git a/src/Questionnaire/Parser/ParserInterface.php b/src/Questionnaire/Parser/ParserInterface.php new file mode 100644 index 0000000..9fbd8c2 --- /dev/null +++ b/src/Questionnaire/Parser/ParserInterface.php @@ -0,0 +1,27 @@ +doc = $doc; + } + + /** + * @param string $html + * @throws \RuntimeException + */ + public function load($html) + { + $ok = $this->doc->loadHTML($html); + + if (!$ok) { + throw new \RuntimeException('Unable to load given HTML content.'); + } + + $this->nodes = $this->doc->getElementsByTagName('body')->item(0)->childNodes; + $this->cur = 0; + } + + public function doStream() + { + $output = $this->output; + + $output->write('
'); + + $this->until('h1', 'say'); + $output->write('
'); + $this->say(); + $output->write('
'); + + $this->until('p', 'say'); + $output->write('
'); + $this->say(); + $output->write('{% block start %}{% endblock %}'); + $output->write('
'); + + $output->write('
    '); + + $ok = $this->until('h2', 'say'); + + do { + $output->write('
  • '); + $this->say(); + $ok = $this->until('h2', 'say'); + $output->write('
  • '); + } while ($ok); + + $output->write('
'); + $output->writeln('
'); + } + + /** + * @param string $tag + * @param string $action + * @todo Find a way to avoid the copy/paste of `$this->node` line. + */ + protected function until($tag, $action = null) + { + $this->node = $this->nodes->item($this->cur++); + + while ($tag !== $this->node->nodeName) { + if (null !== $action) { + $this->$action(); + } + + $this->node = $this->nodes->item($this->cur++); + } + + return null !== $this->node; + } + + protected function say() + { + $this->output->write($this->doc->saveHTML($this->node)); + } + + protected function sayText() + { + $this->output->write($this->node->textContent); + } +} diff --git a/views/Os/index.html.twig b/views/Os/index.html.twig new file mode 100644 index 0000000..c5775b2 --- /dev/null +++ b/views/Os/index.html.twig @@ -0,0 +1,35 @@ +{% extends 'base.html.twig' %} + +{% block content %} +
+
+ +
+
+
+ {% if results|length == 0 %} +

No result :(

+ {% else %} + {% for result in results %} +
+
+
+

{{ result.title }}

+
+
+ {{ result.info(app.request.locale)|markdown }} +
+
+
+ {% endfor %} + {% endif %} +
+
+
+{% endblock %} diff --git a/views/Questionnaire/base.html.twig b/views/Questionnaire/base.html.twig new file mode 100644 index 0000000..1a7e70e --- /dev/null +++ b/views/Questionnaire/base.html.twig @@ -0,0 +1,13 @@ +{% extends 'base.html.twig' %} + +{% block content %} +

+ {% block heading %} + {{ block('main_title') }} + {% endblock %} +

+ + {% if block('main_title')|length %}
{% endif %} + + {% block questionnaire_content %}{% endblock %} +{% endblock %} diff --git a/views/Questionnaire/index.html.twig b/views/Questionnaire/index.html.twig new file mode 100644 index 0000000..684cb9b --- /dev/null +++ b/views/Questionnaire/index.html.twig @@ -0,0 +1,19 @@ +{% extends 'base.html.twig' %} + +{% block content %} + {% embed 'Questionnaire/readme.' ~ app.request.locale ~ '.html.twig' %} + {% block start %} +

+ + {{ 'index.start'|trans }} + + + {{ 'index.source'|trans }} + +

+ {% endblock %} + {% endembed %} +{% endblock %} diff --git a/views/Questionnaire/readme.en.html.twig b/views/Questionnaire/readme.en.html.twig new file mode 100644 index 0000000..5aebb6e --- /dev/null +++ b/views/Questionnaire/readme.en.html.twig @@ -0,0 +1,131 @@ +
+

Linux Questionnaire

+ +

This project provides a questionnaire that determines +the Linux distribution (or BSD system) which matches +your preferences.

{% block start %}{% endblock %}
    + +
  • Contact & Support

    + +

    Project Management

    + + +

    Repository Browsers

    + + +

    IRC

    + +
      +
    • Server: ssl.neutralnetwork.org +
    • +
    • Channel: #wiki +
    • +
    • Web client
    • +
    +

    Forum

    + + +
  • Requirements

    + + +
  • Installation

    + +
    svn co https://svn.deblan.org/svn/linux-questionnaire
    +cd linux-questionnaire
    +make
    +
    + +
  • Composer

    + +

    Composer can maybe be downloaded from your system's repositories. +Else, follow the next instructions:

    + +

    Download

    + +
    # With cURL
    +curl -sS https://getcomposer.org/installer | php
    +
    +# With Wget
    +wget -O - -q https://getcomposer.org/installer | php
    +
    + +

    You can now use it with php composer.phar [arguments].

    + +

    Executable

    + +
    mv composer.phar composer
    +chmod +x composer
    +
    + +

    Use it with ./composer [arguments].

    + +

    Install

    + +

    Assuming ~/bin exists ans is in $PATH.

    + +
    mv composer ~/bin
    +
    + +

    Dependencies Installation (from composer.lock)

    + +
    composer install
    +
    + +

    Dependencies Update (will change composer.lock)

    + +
    composer update
    +
    + +
  • Makefile

    + +

    A Makefile is provided to automate some tasks.

    + +
      +
    • +make will install application's dependencies via Composer,
    • +
    • +make prod will install dependencies without developmenent requirements +and run make optimize,
    • +
    • +make optimize will run Composer's autoloader dump script with classmap +only, without dynamic autoload rules,
    • +
    • +make cs will run PHP code sniffer with PSR-2 conventions.
    • +
    +
  • Development Server

    + +

    Use PHP's built-in development server, for example on localhost, port 8080:

    + +
    cd web
    +php -S localhost:8080
    +
    + +
  • Homepage Update

    + +

    When the README.*.md files are updated, we also need to update +the matching views in web/views/Questionnaire/readme.*.html.twig. To do that, +a simple console script was created.

    + +

    Help

    + +
    app/console generate:readme -h
    +
    + +

    Basic Generation

    + +
    app/console generate:readme
    +
    + +
diff --git a/views/Questionnaire/readme.fr.html.twig b/views/Questionnaire/readme.fr.html.twig new file mode 100644 index 0000000..2730dee --- /dev/null +++ b/views/Questionnaire/readme.fr.html.twig @@ -0,0 +1,131 @@ +
+

Questionnaire Linux

+ +

Ce projet consiste en un questionnaire permettant de déterminer +la distribution Linux (ou BSD) qui vous convient le plus.

{% block start %}{% endblock %}
    + +
  • Contact et support

    + +

    Gestion de projet

    + + +

    Arborescense du code

    + + +

    IRC

    + +
      +
    • Server: ssl.neutralnetwork.org +
    • +
    • Channel: #wiki +
    • +
    • Web client
    • +
    +

    Forum

    + + +
  • Prérequis

    + + +
  • Installation

    + +
    svn co https://svn.deblan.org/svn/linux-questionnaire
    +cd linux-questionnaire
    +make
    +
    + +
  • Composer

    + +

    Composer est peut-être téléchargeable depuis votre gestionnaire de paquets. +Sinon, suivez les instructions suivantes :

    + +

    Téléchargement

    + +
    # Avec cURL
    +curl -sS https://getcomposer.org/installer | php
    +
    +# Avec Wget
    +wget -O - -q https://getcomposer.org/installer | php
    +
    + +

    Vous pouvez maintenant l'utiliser avec php composer.phar [arguments].

    + +

    Exécutable

    + +
    mv composer.phar composer
    +chmod +x composer
    +
    + +

    S'utilise désormais avec ./composer [arguments].

    + +

    Installation

    + +

    En partant du principe que le dossier ~/bin existe et est dans le $PATH.

    + +
    mv composer ~/bin
    +
    + +

    Installation des dépendances (depuis composer.lock)

    + +
    composer install
    +
    + +

    Mise à jour des dépendances (modification de composer.lock)

    + +
    composer update
    +
    + +
  • Makefile

    + +

    Un Makefile est intégré pour automatiser certaines tâches.

    + +
      +
    • +make installera les dépendances de l'application avec Composer,
    • +
    • +make prod installera les dépendances à l'exception de celles nécessaires +seulement au développement, et lancera make optimize,
    • +
    • +make optimize exécutera le script d'optimisation de Composer pour convertir +les chargements dynamiques de classes en classmap,
    • +
    • +make cs lancera un code sniffer PHP avec les conventions PSR-2.
    • +
    +
  • Serveur de développement

    + +

    Vous pouvez utiliser le serveur de développement intégré à PHP, par exemple +sur localhost, port 8080 :

    + +
    cd web
    +php -S localhost:8080
    +
    + +
  • Mise à jour de la page d'accueil

    + +

    Quand les README.*.md sont modifiés, il faut aussi mettre à jour les +vues correspondantes dans web/views/Questionnaire/readme.*.html.twig. +Pour ça, un script a été créé.

    + +

    Aide

    + +
    app/console generate:readme -h
    +
    + +

    Génération de base

    + +
    app/console generate:readme
    +
    + +
diff --git a/views/Questionnaire/result.html.twig b/views/Questionnaire/result.html.twig new file mode 100644 index 0000000..f3cac10 --- /dev/null +++ b/views/Questionnaire/result.html.twig @@ -0,0 +1,37 @@ +{% extends 'base.html.twig' %} + +{% block content %} +
+
+ +
+
+
+

+ {% set count = results|length %} + {% transchoice count with {'%count%': count} %} + result.count + {% endtranschoice %} +

+ {% for result in results %} +
+
+
+

{{ result.title }}

+
+
+ {{ result.info(app.request.locale)|markdown }} +
+
+
+ {% endfor %} +
+
+
+{% endblock %} diff --git a/views/Questionnaire/step.html.twig b/views/Questionnaire/step.html.twig new file mode 100644 index 0000000..141546c --- /dev/null +++ b/views/Questionnaire/step.html.twig @@ -0,0 +1,61 @@ +{% extends 'Questionnaire/base.html.twig' %} + +{% block title %} + {{ question.title }} + {{ bs }} + {{ parent() }} +{% endblock %} + +{% block questionnaire_content %} +
+ {{ percent }}% +
+
+
+ {{ percent }}% Complete +
+
+ +
+
+
+
+

{{ question.title|trans }}

+
+
+ {% for key, choice in question.choices %} +

+ + +

+ {% endfor %} +
+
+
+ +

+ {% if step > 1 %} + {{ 'previous'|trans }} + {% endif %} + + +

+
+{% endblock %} diff --git a/views/base.html.twig b/views/base.html.twig new file mode 100644 index 0000000..61141a0 --- /dev/null +++ b/views/base.html.twig @@ -0,0 +1,76 @@ +{% extends 'layout.html.twig' %} + +{% block main_title %}Linux Questionnaire{% endblock %} + +{% block title %}{{ block('main_title') }}{% endblock %} + +{% block stylesheets %} + {% set assets = assets|default([])|merge([ + web_path ~ 'components/bootstrap/css/bootstrap.min.css', + web_path ~ 'components/bootstrap/css/bootstrap-theme.min.css', + web_path ~ 'assets/css/main.css', + ]) %} + + {{ parent() }} +{% endblock %} + +{% block body %} + {% import _self as macros %} + + {% macro link(url, label) %} +
  • + {{ label }} +
  • + {% endmacro %} + + + +
    + {% block content %}{% endblock %} +
    +{% endblock %} + +{% block javascripts %} + {% set assets = assets|default([])|merge([ + web_path ~ 'components/jquery/jquery.min.js', + web_path ~ 'components/bootstrap/js/bootstrap.min.js', + ]) %} + + {{ parent() }} +{% endblock %} diff --git a/views/error.html.twig b/views/error.html.twig new file mode 100644 index 0000000..b7a6413 --- /dev/null +++ b/views/error.html.twig @@ -0,0 +1,15 @@ +{% extends 'layout.html.twig' %} + +{% block title %} + Error {{ code }} - {{ name }} +{% endblock %} + +{% block body %} +

    {{ name }}

    + +

    In file "{{ exception.file }}" at line {{ exception.line }}

    +

    {{ exception.message }}

    + +

    Stacktrace

    +
    {{ exception.traceAsString }}
    +{% endblock %} diff --git a/views/layout.html.twig b/views/layout.html.twig new file mode 100644 index 0000000..610f25b --- /dev/null +++ b/views/layout.html.twig @@ -0,0 +1,20 @@ + + + + + {% block title %}{% endblock %} + {% block stylesheets %} + {% for asset in assets %} + + {% endfor %} + {% endblock %} + + + {% block body %}{% endblock %} + {% block javascripts %} + {% for asset in assets %} + + {% endfor %} + {% endblock %} + + diff --git a/web/.htaccess b/web/.htaccess new file mode 100644 index 0000000..ef398e8 --- /dev/null +++ b/web/.htaccess @@ -0,0 +1,14 @@ + + RewriteEngine On + + RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$ + RewriteRule ^(.*) - [E=BASE:%1] + + RewriteCond %{ENV:REDIRECT_STATUS} ^$ + RewriteRule ^index\.php(/(.*)|$) %{ENV:BASE}/$2 [R=301,L] + + RewriteCond %{REQUEST_FILENAME} -f + RewriteRule .? - [L] + + RewriteRule .? %{ENV:BASE}/index.php [L] + diff --git a/web/assets/css/main.css b/web/assets/css/main.css new file mode 100644 index 0000000..ca2159f --- /dev/null +++ b/web/assets/css/main.css @@ -0,0 +1,13 @@ +.navbar-top { + border-radius: 0; + border-width: 0 0 1px; +} + +.panel h2 { + font-size: 18px; +} + +.panel h3 { + font-size: 12px; + font-weight: 700; +} diff --git a/web/assets/img/10-lxde.png b/web/assets/img/10-lxde.png new file mode 100644 index 0000000000000000000000000000000000000000..06a86b5dd4c834933a4266c74b62efee6e43d25f GIT binary patch literal 29531 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 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 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; + }, + + // Use native String.trim function wherever possible + trim: trim && !trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + trim.call( text ); + } : + + // Otherwise use our own trimming functionality + 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.16 + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-01-13 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + compile, + 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#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:([*^$|!~]?=)" + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments quoted, + // then not containing pseudos/brackets, + // then attribute selectors/non-parenthetical expressions, + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", + + // 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 + // 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 10-12 + // Nothing should be selected when empty strings follow ^= or $= or *= + if ( div.querySelectorAll("[t^='']").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.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[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[5] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] && match[4] !== undefined ) { + match[2] = match[4]; + + // 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(); + +function tokenize( 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 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, group /* 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 ( !group ) { + group = tokenize( selector ); + } + i = group.length; + while ( i-- ) { + cached = matcherFromTokens( group[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + } + return cached; +}; + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function select( selector, context, results, seed ) { + var i, tokens, token, type, find, + match = tokenize( selector ); + + if ( !seed ) { + // Try to minimize operations if there is 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; + } + 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 + // Provide `match` to avoid retokenization if we modified the selector above + 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.trigger ) { + jQuery( document ).trigger("ready").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; + +jQuery(function() { + // We need to execute this one support test ASAP because we need to know + // if body.style.zoom needs to be set. + + var container, div, + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + // Setup + container = document.createElement( "div" ); + container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; + + div = document.createElement( "div" ); + 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 = "border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1"; + + if ( (support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 )) ) { + // 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 ); + + // Null elements to avoid leaks in IE + container = div = null; +}); + + + + +(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-- ) { + 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() { + var fragment = document.createDocumentFragment(), + div = document.createElement("div"), + input = document.createElement("input"); + + // Setup + div.setAttribute( "className", "t" ); + 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; + } + } + + // Null elements to avoid leaks in IE. + fragment = div = input = null; +})(); + + +(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|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 ) { + + // Even when returnValue equals to undefined Firefox will still show alert + if ( event.result !== undefined ) { + 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 + src.returnValue === false || + // Support: Android < 4.0 + src.getPreventDefault && src.getPreventDefault() ) ? + 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() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, 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 elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + + // getDefaultComputedStyle might be reliably used only on attached element + display = window.getDefaultComputedStyle ? + + // 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 + window.getDefaultComputedStyle( elem[ 0 ] ).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( "