From 61aec364b2c20b15cf494e19f156fec74910fdce Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Wed, 12 Jun 2013 22:44:00 +0200 Subject: [PATCH 001/256] Commit this stuff before I lose it all --- .gitignore | 1 + Gemfile | 6 + Gemfile.lock | 50 ++ _config.yml | 7 + _includes/footer.html | 28 + _includes/header.html | 5 + _includes/navigation.html | 31 + _layouts/default.html | 47 ++ _layouts/post.html | 8 + _layouts/table_of_contents.html | 1 + _plugins/gitactivity.rb | 32 ++ _plugins/table_of_contents.rb | 30 + _posts/2013-05-18-welcome-to-jekyll.markdown | 24 + .../2013-06-01-release-announcement.markdown | 529 ++++++++++++++++++ changes.html | 4 + css/capistrano.css | 66 +++ css/syntax.css | 60 ++ .../installation/index.markdown | 86 +++ documentation/index.html | 1 + .../introductory-demo-video/index.markdown | 38 ++ documentation/upgrading/index.html | 5 + images/CapistranoAvatar.png | Bin 0 -> 9186 bytes images/CapistranoGraphic.png | Bin 0 -> 26920 bytes images/CapistranoGraphicWireframe.png | Bin 0 -> 66430 bytes images/CapistranoLogo.png | Bin 0 -> 9803 bytes index.markdown | 35 ++ 26 files changed, 1094 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 _config.yml create mode 100644 _includes/footer.html create mode 100644 _includes/header.html create mode 100644 _includes/navigation.html create mode 100644 _layouts/default.html create mode 100644 _layouts/post.html create mode 100644 _layouts/table_of_contents.html create mode 100644 _plugins/gitactivity.rb create mode 100644 _plugins/table_of_contents.rb create mode 100644 _posts/2013-05-18-welcome-to-jekyll.markdown create mode 100644 _posts/2013-06-01-release-announcement.markdown create mode 100644 changes.html create mode 100644 css/capistrano.css create mode 100644 css/syntax.css create mode 100644 documentation/getting-started/installation/index.markdown create mode 100644 documentation/index.html create mode 100644 documentation/overview/introductory-demo-video/index.markdown create mode 100644 documentation/upgrading/index.html create mode 100644 images/CapistranoAvatar.png create mode 100644 images/CapistranoGraphic.png create mode 100644 images/CapistranoGraphicWireframe.png create mode 100644 images/CapistranoLogo.png create mode 100644 index.markdown diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..c08f9add --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..5ebb2f9b --- /dev/null +++ b/Gemfile @@ -0,0 +1,6 @@ +source "https://rubygems.org" + +gem "debugger" +gem "jekyll" +gem "redcarpet" +gem "git" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..45024e23 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,50 @@ +GEM + remote: https://rubygems.org/ + specs: + classifier (1.3.3) + fast-stemmer (>= 1.0.0) + colorator (0.1) + columnize (0.3.6) + commander (4.1.3) + highline (~> 1.6.11) + debugger (1.6.0) + columnize (>= 0.3.1) + debugger-linecache (~> 1.2.0) + debugger-ruby_core_source (~> 1.2.1) + debugger-linecache (1.2.0) + debugger-ruby_core_source (1.2.2) + directory_watcher (1.4.1) + fast-stemmer (1.0.2) + git (1.2.5) + highline (1.6.19) + jekyll (1.0.2) + classifier (~> 1.3) + colorator (~> 0.1) + commander (~> 4.1.3) + directory_watcher (~> 1.4.1) + kramdown (~> 1.0.2) + liquid (~> 2.3) + maruku (~> 0.5) + pygments.rb (~> 0.5.0) + safe_yaml (~> 0.7.0) + kramdown (1.0.2) + liquid (2.5.0) + maruku (0.6.1) + syntax (>= 1.0.0) + posix-spawn (0.3.6) + pygments.rb (0.5.0) + posix-spawn (~> 0.3.6) + yajl-ruby (~> 1.1.0) + redcarpet (2.2.2) + safe_yaml (0.7.1) + syntax (1.0.0) + yajl-ruby (1.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + debugger + git + jekyll + redcarpet diff --git a/_config.yml b/_config.yml new file mode 100644 index 00000000..55e2e260 --- /dev/null +++ b/_config.yml @@ -0,0 +1,7 @@ +name: Capistrano +pygments: true +markdown: redcarpet +redcarpet: + extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"] +table_of_contents: + dirs: [documentation] diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 00000000..7124869f --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,28 @@ +
+
+
+
+ +
+ + + +
+
    +
  • +
+
+
+
+
diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 00000000..fce1f88d --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,5 @@ +
+ + + +
diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 00000000..a3b0034b --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,31 @@ +
+ +
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 00000000..73d188ce --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,47 @@ + + + + + + + {{ page.title }} + + + + + + + + + + + + + + {% include header.html %} + +
+
+ {% include navigation.html %} +
+
+
+

{{ page.title }}

+ {{ content }} +
+
+
+ + + + + + + + + + + {% include footer.html %} + + + diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 00000000..83bae3f4 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,8 @@ +--- +layout: default +--- +

{{ page.date | date_to_string }}

+ +
+{{ content }} +
diff --git a/_layouts/table_of_contents.html b/_layouts/table_of_contents.html new file mode 100644 index 00000000..692bc9d8 --- /dev/null +++ b/_layouts/table_of_contents.html @@ -0,0 +1 @@ +Why is this here? \ No newline at end of file diff --git a/_plugins/gitactivity.rb b/_plugins/gitactivity.rb new file mode 100644 index 00000000..e22b004b --- /dev/null +++ b/_plugins/gitactivity.rb @@ -0,0 +1,32 @@ +require 'git' + +module Jekyll + class GitActivityTag < Liquid::Tag + + def initialize(tag_name, text, tokens) + super + end + + def render(context) + result = "" + g = Git.open(File.join(Dir.getwd, "..")) + + index = 0 + g.log.each do |log| + if(index < 10) + result << "
  • " + result << log.date.strftime("%d %b") + result << " - " + result << log.message + result << "
  • " + index += 1 + end + end + "" + end + end +end + +Liquid::Template.register_tag('gitactivity', Jekyll::GitActivityTag) \ No newline at end of file diff --git a/_plugins/table_of_contents.rb b/_plugins/table_of_contents.rb new file mode 100644 index 00000000..832935c7 --- /dev/null +++ b/_plugins/table_of_contents.rb @@ -0,0 +1,30 @@ +require 'git' + +module Jekyll + class TableOfContentsTag < Liquid::Tag + def initialize(tag_name, text, tokens) + super + end + def render(context) + result = "" + g = Git.open(File.join(Dir.getwd, "..")) + + index = 0 + g.log.each do |log| + if(index < 10) + result << "
  • " + result << log.date.strftime("%d %b") + result << " - " + result << log.message + result << "
  • " + index += 1 + end + end + "" + end + end +end + +Liquid::Template.register_tag('table_of_contents', Jekyll::TableOfContentsTag) \ No newline at end of file diff --git a/_posts/2013-05-18-welcome-to-jekyll.markdown b/_posts/2013-05-18-welcome-to-jekyll.markdown new file mode 100644 index 00000000..2d544278 --- /dev/null +++ b/_posts/2013-05-18-welcome-to-jekyll.markdown @@ -0,0 +1,24 @@ +--- +layout: post +title: "Welcome to Jekyll!" +date: 2013-05-18 15:09:49 +categories: jekyll update +--- + +You'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes! +To add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext. + +Jekyll also offers powerful support for code snippets: + +{% highlight ruby %} +def print_hi(name) + puts "Hi, #{name}" +end +print_hi('Tom') +#=> prints 'Hi, Tom' to STDOUT. +{% endhighlight %} + +Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh]. + +[jekyll-gh]: https://github.com/mojombo/jekyll +[jekyll]: http://jekyllrb.com diff --git a/_posts/2013-06-01-release-announcement.markdown b/_posts/2013-06-01-release-announcement.markdown new file mode 100644 index 00000000..407e2f58 --- /dev/null +++ b/_posts/2013-06-01-release-announcement.markdown @@ -0,0 +1,529 @@ +--- +layout: post +title: "Capistrano Version 3 Release Announcement" +date: 2013-06-01 00:00:00 +--- + +After what seems like years of work, the Capistrano team (that's Tom and I) +are pleased to announce the first *major* release of Capistrano in almost 5 +years. + +The reasons behind the length of time between the last architectural overhaul +and this one are numerous, but it can be summrised to say that Capistrano is a +widely used tool, and when working around software deployment it's really a +question of downtime. If we had changed something significant in Capistrano we +could have taken a lot of sites offline, and made a lot of people very +unhappy. Until this point we haven't felt that the time has been ripe where +the benefits of a slightly rocky upgrade path are worth the risks of downtime. + +It also hasn't helped historically that we've only just gotten to grips with +Ruby 1.9, and that Bundler's near ubuquity means that now it's trivial to lock +a Gem at a specific version. With other tools in the Ruby eco system it's +become easier for us to make significant changes to a tool upon which many +hundreds of thousands of people rely. + +### Design Goals + +We had a few goals for this release, in no particular order they were: + +* **Get away from our own DSL solution.** Great DSL alternatives (Rake, Sake, Thor, + etc) are already widely used. +* **Better modularisation.** to enable people outside the Rails community to + benefit from Capistrano's *best-practice* workflow, and to enable people in + the Rails community to pick and choose support for components they use + (Database Migrations, Asset Pipeline, etc) +* **Easier Debugging.** A lot of problems with Capistrano come from weirdness + surrounding environmental issues around PTY vs non-TTY environments, login + and non-login shells not to mention *environment managers* such as rvm, + rbenv and nvm. +* **Speed.** We know that in a lot of environments speed of deploment is a + huge factor, since Rails introduced the *Asset Pipeline* it's not uncommon + for a deploy that formerly took 5 seconds now takes 5 minutes. This really + is mostly out of our control, but with improved support for parallelism, + rolling restarts we feel confident that things are bettwe not. +* **Applicability.** We've always maintained that Capistrano is a terrible + tool for system provisioning, and that more often than not servers are + better being setup with Chef, Puppet or similar, whilst we still agree with + that, the new features in Capistrano really lend themselves to integrating + with these kinds of tools. + +### What's missing? + +Before we get too carried away it's worth shortlisting the things that don't +exist in version three, *yet*. + +* *Run Locally.* `run_locally` was always a bit of the poor relation in the + family, it didn't quite work the same way as other things, and I never liked + the idea that you were binding a tool that in principle should be cross + platform (Ruby, and Capistrano) to locally executing shell commands which + probably only work on POSIX-like operating systems. I hope that + `run_locally` will stay gone, and that as a community we can find better + ways of doing things that always relied on locally creating tarballs, or + writing configuration files, or similar. +* *SSH Gateway Support.* SSH Gateway support hasn't been implemented in + version three yet, I hope that this will be done soon. As I have no direct + need for it, I haven't the means to test it with a view to implementing it, + yet. +* *Mecurial, Subversion, and CVS Support.* These have been removed as we've + been able to implement the Git SCM in an incredibly neat way that isn't + compatible with the others. We wanted to break the cycle of always sticking + with the lowest common denominator, so we are **actively** looking for + people who are interested in contributing, or sharing expertise on the + *best-practice* way of speedily deploying from your respective choice of + source control. +* *`HOSTFILTER` ,`ROLEFILTER` and friends.* These have gone away because I + always felt they were indemic of a bad design desision about using + Environmental Variables. These will be coming back as flags passed to `cap` + on the CLI, and options that can be set on the Capistrano::Application Ruby + class. +* *Shell.* The shell has been removed temporarily pending a neater + implementation, we've got something that we are playing with internally, but + it needs better readline support, and some more controls around what to do + when things go badly on some servers, but not others. +* *Cold Deploy.* The `cap deploy:cold` is a really old legacy component, + orignally from the days of the `script/spinner` where deploying cold + (starting workers that weren't running), and deploying a *warm* system were + different (restarting existing worker pools, which wasn't fun!) By and large + these things have gone away, and it's time `deploy:cold` went away. It's + safe in every case we could find to call setup, and seed and other Rake + tasks without things blowing up, and that should be the approach we take. + Tasks on the server should be idempotent, and if something is called twice, + let it be. +* *Coloured Output.*✝ The capistrano-colours Gem was (fairly) recently merged + into Capistrano v2, this has gone away in favour of a IO streaming model + inspired by MiniTest/Pride. Read more below in new features. + +### What's new? + +Each section here really deserves it's own sub-heading as some of the new +features are awesome. + +#### Rake Integration + +We have moved away from our own DSL implemenation to implement Capistrano as a +Rake application. + +Rake has always supported being sub-classed, so to speak as a +*sub-application*; it is however poorly documented. By subclassing +Rake::Application one can specify what the *Rakefile* should look like, where +to search for it, and how to load other *Rakefiles*. + +The *Rake* DSL is widely used, well known and very powerful. As Rake is +essentially a dependency resolution system, it offers a lot of nice ways to, +for example build a tarball as a dependency of uploading it and deploying it. + +This has allowed us to do away with the *copy* strategy all together, as it +can now be implemented from scratch in fewer than ten lines of code. You can +check out the [replicating the copy strategy][] screencast and acompanying +documentation if you want to explore that any further. + +The guiding principle is dependency resolution, and interoperability with +other tools, for example: + +{% highlight ruby %} +# No description, this is an internal method +task :notify do + this_release_tag = sh("git describe --abbrev=0 --tags") + last_ten_commits = sh("git log #{this_release_tag}~10..#{this_release_tag}") + Mail.deliver do + to "team@example.com" + subject "Releasing #{this_release_tag} Now!" + body last_ten_commits + end +end + +namespace :deploy + task default: :notify +end +{% endhighlight %} + +The last three lines rely on Rake's additive task declaration, by redefining the +`deploy:default` task by adding another dependency. Rake will automatically +resolve this dependency at Runtime, mailing the recent changelog to your team, +assuming everything is setup correctly. + +#### Built In Stage Support + +#### Parallelism + +In former versions of Capistrano there was a *parallel* option to run +different tasks differently on groups of servers, it looked something like +this: + +{% highlight ruby %} +task :restart do + parallel do |session| + session.when "in?(:app)", "/u/apps/social/script/restart-mongrel" + session.when "in?(:web)", "/u/apps/social/script/restart-apache" + session.else "echo nothing to do" + end +end +{% endhighlight %} + +This always felt a little unclean, and indeed it's a hack that was originally +implemeted to facilitate rolling deployments at a large German firm by a +couple of freelancers who were consulting with them. (Hint, one of those guys +went on to found Travis-CI!) + +The equivilent code in under Capistrano v3 would look like this: + +{% highlight ruby %} +task :restart do + on :all, in: :parallel do |host| + if host.roles.include?(:app) + execute "/u/apps/social/script/restart-mongrel" + elsif host.roles.include?(:web) + execute "/u/apps/social/script/restart-web" + else + info "Nothing to do for #{host} with roles #{host.properties.roles}." + end + end +end +{% endhighlight %} + +The second block of code, that representing the new Rake derived DSL and +demonstrating how to use the parallel execution mode is a little longer, but I +think it's clearer, more idiomatic Ruby code which relies less on an intimate +knowledge of how the Capistrano DSL happens to work. It also hints at the +built-in logging subsystem, keep reading to learn more. + +Other modes for parallelism include: + +{% highlight ruby %} +on :all, in: :groups, max: 3, wait: 5 do + # Take all servers, in groups of three which execute in parallel + # wait five seconds between groups of servers. + # This is perfect for rolling restarts +end + +on :all, in: :sequence, wait: 15 do + # This takes all servers, in sequence and waits 15 seconds between + # each server, this might be perfect if you are afraid about + # overloading a shared resource, or want to defer the asset compilation + # over your cluster owing to worries about load +end + +on :all, in: :parallel do + # This will simply try and execute the commands contained within + # the block in parallel on all servers. This might be perfect for kicking + # off something like a Git checkout or similar. +end +{% endhighlight %} + +The internal tasks, for standard deploy recipes make use of all of these as is +appropriate for the normal case, no need to be afraid of scary slow deploys +again! + +#### Streaming IO + +This IO streaming model means that results from commands, the commands +themselves and any other arbitrary output are sent as objects to a class with +an `IO`ish interface, the class knows what to do with these things. There's a +*progress* formatter which prints dots for each command that is called, as +well as a *pretty* formatter which prints the full command, it's output on +standard out and standard error, as well as the final return status. It would +be trivial to implement HTML formatters, or formatters that reported to your +IRC room, or to email. I look forward to seeing more of these cropping up in +the community. + +#### Host Definition Access + +If you didn't skim over the *Parallism* section above, you might have noticed we +did something clever that wasn't possible in Capistrano v2; we accessed the +`host` inside the execution block. + +For a lot of reasons in Capistrano v2 is wasn't possible to do this, the block +was essentially evaluated once and called verbatim on each host. This lead to +disappointing missing features such as not being able to pull the host list +out of Capistrano and examine the roles to do something like controlling chef +solo, or similar. + +In Capistrano v3 the `host` object is the same object that is created when a +server is defined, and is internally used, for example to pass to an ERB +template for rendering a last-deploy message that is dumped onto each server +after a successful deployment. The last deploy log includes everything +Capistrano knew about that server during the deployment. + +> Users of Capistrano v2 may be familiar with the perenial `cap deploy:cleanup` +problem which came to light when servers differed in their old releases list, +imagine a scenario with two servers, one has been your bread-and-butter since +you launched, it has hundreds of old releases from all your wonderful deploys +over the months or years. The second server has been in the cluster for about +a month, it didn't quite slot-in cleanly, so the list of old releases looks a +bit weird, you deleted a few by hand, and anyway there might only be ten-or-so +releases there. + +> Now imagine that you call `cap deploy:cleanup`, old `capture()` +implementations silently only ran on the first server that matched the +properties defined, so server one returned a list of ~95 old timestamped +release directories. Next Capistrano v2 would call `rm -rf +release1..release95` on **both** servers, causing server two to err our, and +leaving an undefined state on server one, as Capistrano would simply hang up +both connections. + +This cleanup routine can now be better implemented as follows (which is +actually more or less the actual implenetation in the the new Gem): + +{% highlight ruby %} +desc "Cleanup all old releases (keeps #{fetch(:releases_to_keeo_on_cleanup)} +old releases" +task :cleanup do + keep_releases = fetch(:releases_to_keeo_on_cleanup) + releases = capture(:ls, fetch(:releases_directory)) + release_to_delete = releases.sort_by { |r| rn.to_i }.slice(1..-(keep_releases + 1)) + releases_to_delete.each do |r| + execute :rm, fetch(:releases_directory).join(r) + end +end +{% endhighlight %} + +Some handy things to note here are that both server one and server two in our +contrived example will both evaluate that independently, and when both servers +are finished removing old releases the `task :cleanup` block will have +finished. + +Also in Capistrano v3 most path varaibles are [`Pathname`] objects, so they natively +respond to things like `#basename`, `#expand_path`, `#join` and similar. + +**Warning:** `#expand_path` probably won't do what you expect, it will execute +on your *workstation* machine, and not on the remote host, so it's possible +that it will return an error in the case of paths which exist remotely but not +locally. + +#### Host Properties + +As the `host` object is now available to the task blocks, it made sense to make +it possible to store arbitrarty values against them. + +Enter `host.properties`. This is a simple [*OpenStruct*][] which can be used to +store any additional properties which are important for your application. + +An example of it's usage might be: + +{% highlight ruby %} +h = SSHKit::Host.new 'example.com' +h.properties.roles ||= %i{wep app} +{% endhighlight %} + +#### More Expressive Command Language + +In Capistrano v2, it wasn't uncommon to find commands such as: + +{% highlight ruby %} +task :precompile, :roles => lambda { assets_role }, :except => { :no_release => true } do + run <<-CMD.compact + cd -- #{latest_release} && + RAILS_ENV=#{rails_env.to_s.shellescape} #{asset_env} #{rake} assets:precompile + CMD +end +{% endhighlight %} + +In Capistrano v3 this looks more like this: + +{% highlight ruby %} +task :precompile do + on :sprockets_asset_host, reject: lambda { |h| h.properties.no_release } do + within fetch(:latest_release_directory) + with rails_env: fetch(:rails_env) do + execute :rake, 'assets:precompile' + end + end + end +end +{% endhighlight %} + +Again, with other examples this format is a little longer, but much more +expressive, and all the nightmare of shell escaping is handled interally for +you, environmental variables are capitalised and applied at the correct point +(i.e between the `cd` and `rake` calls in this case). + +Other options here include `as :a_user` and + +#### Better *magic* Variable Support + +In Capistrano v2 there were certain bits of magic where if calling a variable +and NoMethodError would have been raised (for example the +`latest_release_directory` varaible). This variable never existed on the +global namespace, as a fall-back the list of `set()` variables would be +consulted. + +This magic lead to times when people were not recognising that magic variables +were even being used. The magic variable system of Capistrano v2 did also +include a way to `fetch(:some_variable, 'with a default value')` incase the +variable might not be set already, but it wasn't widely used, and more often +than not people just used things like `latest_release_directory` never knowing +that behind the scenes an exception was raised, then rescued, and that +`:latest_release_directory` in the variable map was actually a continuation +that was evaluated the first time it was used, and the value then cached until +the end of the script. + +The system has now 100% less magic. If you set a variable using `set()`, it +can be fetched with `fetch()`, if the value you set into the variable responds +to `#call` then it will be executed in the current context whenever it is +used, the values will not be cached, unless your continuation does some +explicit caching. *Again, we are favoring clarity over micro optimisation*. + +#### SSHKit + +Many of the new features in Capistrano whch relate to logging, formatting, +SSH, connection management and pooling, parallism, batch execution and more +are from a library that fell out of the Capistrano v3 development process. + +[*SSHKit*][] is a lower level toolkit, a level higher than *Net::SSH*, still +but lacking the roles, environments, rollbacks and other higher level features +from Capistrano. + +SSHkit is ideal for use if you need to just connect to a machine and run some +arbitrary command, for example: + +{% highlight ruby %} +# Rakefile +require 'sshkit' +desc "Check the uptime of example.com" +task :uptime do |h| + execute :uptime +end +{% endhighlight %} + +There is much more than can be done with SSHKit, and we have quite an +extensive [list of examples][]. For the most part with Capistrano v3, anything +that happens inside of an `on()` block is happening in SSHkit, and the +documentation from that library is the place to go to find more information. + +#### Command Mapping + +This is another feature from SSHKit, designed to remove a little ambiguity +from preceedings, there is a so-called command map for commands. + +When executing something like: + +{% highlight ruby %} +execute "git clone ........ ......." +{% endhighlight %} + +The command is passed through to the remote server *completely unchanged*. +This includes the options which might be set, such as user, directory, and +environmental variables. **This is by design.** This feature is designed to +allow people to write non-trivial commands in [heredocs][] when the need +arises. + +The idiomatic way to write that command in Capistrano v3 is to use the +separated variadaric method to specify the command: + +{% highlight ruby %} +execute :git, :clone, "........", "......." +{% endhighlight %} + +In this way the *command map* is consulted, the command map maps all unknown +commands (which in this case is `git`, the rest of the line are *arguments* to +`git` ) are mapped to `/usr/bin/env ...`. Meaning that this command would be +expanded to `/usr/bin/env git clone ...... ......` which is what happens when +`git` is called without a full path, the `env` program is consulted (perhaps +indirectly) to determine which `git` to run. + +Commands such as `rake` and `rails` are often better prefixed by `bundle +exec`, and in this case could be mapped to: + +{% highlight ruby %} +SSHKit.config.command_map[:rake] = "bundle exec rake" +SSHKit.config.command_map[:rails] = "bundle exec rails" +{% endhighlight %} + +There can also be a lamda or Proc applied in place of the mapping like so: + +{% highlight ruby %} +SSHKit.config.command_map = Hash.new do |hash, key| + if %i{rails rake bundle clockwork heroku}.include?(key.to_sym) + hash[key] = "/usr/bin/env bundle exec #{key}" + else + hash[key] = "/usr/bin/env #{key}" + end +end +{% endhighlight %} + +Between these two options there should be quite powerful options to map +commands in your environment without having to override internal tasks from +Capistrano just because a path is different, or a binary has a different name. + +This can also be *slightly* abused in environments where *shim* executables +are used, for example `rbenv` *wrappers*: + +{% highlight ruby %} +SSHKit.config.command_map = Hash.new do |hash, key| + if %i{rails rake bundle clockwork heroku}.include?(key.to_sym) + hash[key] = "/usr/bin/env myproject_bundle exec myproject_#{key}" + else + hash[key] = "/usr/bin/env #{key}" + end +end +{% endhighlight %} + +The above assumes that you have done something like `rbenv wrapper default +myproject` which creates wrapper binaries which correctly set up the Ruby +environment without requiring an interactive login shell. + +#### Testing + +The old test suite for Capistrano was purely unit tests, and didn't cover a +wide varity of problem cases, specifically nothing in the `deploy.rb` (that is +the actual *deployment* code) was tested at all; because of having our own DSL +implementation, and other slightly odd design points, it was painful to test +the actual *recipes*. + +Testing has been a focus of Capistrano v3. The *integration* test suite uses +Vagrant to boot a machine, configures certain scenarios using portable shell +script, and then executes commands against them, deploying common +configurations to typical Linux systems. This is slow to execute, but offers +stronger guarantees that nothing is broken that we've ever been able to give +before. + +Capistrano v3 also offers a possibility to swap out backend implementations. +This is interesting because for the purpose of testing your *own* recipes you +can use a *printer* backend, and verify that the output matched what you +expected, or use a stubbed backend upon which you can verify that calls were +made, or not made as expected. + +#### Arbitrary Logging + +Capistrano exposes the methods `debug()`, `info()`, `warn()`, `error()` and +`fatal()` inside of `on()` blocks which can be used to log using the existing +logging infrastructure and streaming IO formatters: + +{% highlight ruby %} +on hosts do |host| + f = '/some/file' + if test("[ -d #{f} ]") + execute :touch, f + else + info "#{f} already exists on #{host}!" + end +end +{% endhighlight %} + +### Upgrading + +The best place to go here is the [upgrading documentation][] to get deeper +into the specifics. + +The simple version is to say that there is *no **direct** upgrade path*, +versions two and three are incompatible. + +This is partly by design, the old DSL was imprecise in places that would have +made doing the right thing in most cases tricky, we opted to invest in more +features and better reliability than investing in keeping a backwards +compatible API. + +There are a number of *gotchas* listed below, but the main points are the new +names of the built-in roles, as well as that by default Capistrano v3 is +platform agnostic, if you need Rails support, for migrations, asset pipeline +and such like, then it's required to `require` the support files. + +### Gotchas + +#### Rake DSL Is Additive + +In Capistrano v2 if you re-define a task then it replaces the original +implemetation, this has been used by people to replace internal tasks +piecemeal with their own implementations + +#### `sudo` Behaviour diff --git a/changes.html b/changes.html new file mode 100644 index 00000000..6d0d3005 --- /dev/null +++ b/changes.html @@ -0,0 +1,4 @@ +--- +layout: default +title: "Recent Site Changes" +--- \ No newline at end of file diff --git a/css/capistrano.css b/css/capistrano.css new file mode 100644 index 00000000..65f01441 --- /dev/null +++ b/css/capistrano.css @@ -0,0 +1,66 @@ +a { + text-decoration: none; + color: #52C1DB; +} + +body, p, a { + font-family: 'Open-Sans', sans-serif; + -webkit-font-smoothing: antialiased; +} + +p, h1, h2, h3, h4, h5, h6 { + color: #1C1B39; +} + +.header { + height: 195px; + background-color: #1C1B39; + background-image: url('/images/CapistranoGraphicWireframe.png'); + background-repeat: no-repeat; + background-size: 275px; + position: relative; +} + +.header a { + color: #52C1DB; +} + +pre { + margin: 1.3em 0 1em; + padding: 1.3em; +} + +code, kbd, pre, samp { + font-family: 'droid-sans-mono', monospace, serif; + background-color: rgb(250, 250, 250); +} + +.header a.brand img { + margin: 6.5em auto auto 7em; + width: 300px; +} + +h1, h2, h3, h4, h5 h6 { + font-family: 'Enriqueta', serif; +} + +.post-date { + font-weight: bold; +} + +h1 { + font-size: 36pt; +} + +h2 { + font-size: 18pt; +} + +.nav.nav-list { + border-top: none; +} + +.content { + margin: 1.3em 0 1em; + padding: 1.3em; +} diff --git a/css/syntax.css b/css/syntax.css new file mode 100644 index 00000000..2774b764 --- /dev/null +++ b/css/syntax.css @@ -0,0 +1,60 @@ +.highlight { background: #ffffff; } +.highlight .c { color: #999988; font-style: italic } /* Comment */ +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.highlight .k { font-weight: bold } /* Keyword */ +.highlight .o { font-weight: bold } /* Operator */ +.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ +.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #aa0000 } /* Generic.Error */ +.highlight .gh { color: #999999 } /* Generic.Heading */ +.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #555555 } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ +.highlight .gt { color: #aa0000 } /* Generic.Traceback */ +.highlight .kc { font-weight: bold } /* Keyword.Constant */ +.highlight .kd { font-weight: bold } /* Keyword.Declaration */ +.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ +.highlight .kr { font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +.highlight .m { color: #009999 } /* Literal.Number */ +.highlight .s { color: #d14 } /* Literal.String */ +.highlight .na { color: #008080 } /* Name.Attribute */ +.highlight .nb { color: #0086B3 } /* Name.Builtin */ +.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ +.highlight .no { color: #008080 } /* Name.Constant */ +.highlight .ni { color: #800080 } /* Name.Entity */ +.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ +.highlight .nn { color: #555555 } /* Name.Namespace */ +.highlight .nt { color: #000080 } /* Name.Tag */ +.highlight .nv { color: #008080 } /* Name.Variable */ +.highlight .ow { font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mf { color: #009999 } /* Literal.Number.Float */ +.highlight .mh { color: #009999 } /* Literal.Number.Hex */ +.highlight .mi { color: #009999 } /* Literal.Number.Integer */ +.highlight .mo { color: #009999 } /* Literal.Number.Oct */ +.highlight .sb { color: #d14 } /* Literal.String.Backtick */ +.highlight .sc { color: #d14 } /* Literal.String.Char */ +.highlight .sd { color: #d14 } /* Literal.String.Doc */ +.highlight .s2 { color: #d14 } /* Literal.String.Double */ +.highlight .se { color: #d14 } /* Literal.String.Escape */ +.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ +.highlight .si { color: #d14 } /* Literal.String.Interpol */ +.highlight .sx { color: #d14 } /* Literal.String.Other */ +.highlight .sr { color: #009926 } /* Literal.String.Regex */ +.highlight .s1 { color: #d14 } /* Literal.String.Single */ +.highlight .ss { color: #990073 } /* Literal.String.Symbol */ +.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #008080 } /* Name.Variable.Class */ +.highlight .vg { color: #008080 } /* Name.Variable.Global */ +.highlight .vi { color: #008080 } /* Name.Variable.Instance */ +.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown new file mode 100644 index 00000000..944d33c2 --- /dev/null +++ b/documentation/getting-started/installation/index.markdown @@ -0,0 +1,86 @@ +--- +title: Installation +layout: default +--- + +Capistrano is bundled as a Ruby Gem. **It requires Ruby 1.9 or newer.** + +Capistrano can be installed as a standalone Gem, or bundled into your +application. + +
    +It is recommended to fix the version number when using Capistrano, and is +therefore recommended to use an appropriate bundler. +
    + +### General Usage + +The following commands will clone Capistrano at the latest `v3` revision, and +will build the gem and install it locally. **The Gem is not yet availalble via +Rubygems.org.** + +{% highlight bash %} +$ git clone -b v3 https://github.com/capistrano/capistrano.git +$ cd capistrano +$ gem build *.gemspec +$ gem install *.gem +{% endhighlight %} + +### Usage in a Rails project + +Add the following lines to the Gemfile, to the group `:development` ideally. + +{% highlight ruby %} +group :development do + gem 'capistrano-rails', github: 'capistrano/capistrano-rails', branch: 'v3' +end +{% endhighlight %} + +There will be a Gem released via [rubygems.org][rubygems], but as most people +are still using Capistrano v2.x, the v3 release will not be pushed to +[rubygems.org][rubygems] just yet give people a chance to lock their version +in their `Gemfile`. + +The *Capistrano-Rails* Gem includes extras specifically designed for Ruby on +Rails, specifically: + + * Asset Pipeline Support + * Gem Bundler Support + * Database Migration Support + +The documentation for these components can be found in +[their][capistrano-rails-asset-pipeline-readme], +[respective][capistrano-rails-gem-bundler-readme], +[READMEs][capistrano-rails-database-migrations-readme]. However for the most +part, to get the best, and most sensible results, simply `require` these +files: + +{% highlight ruby %} +require 'capistrano/rails/assets' +require 'capistrano/rails/gem-bundler' +require 'capistrano/rails/database-migrations' +{% endhighlight %} + +
    +
    Help! I was using Capistrano `v2.x` and I didn't want to upgrade!
    + +If you are using Capistrano `v2.x.x` and have also installed Capistrano `v3` +by mistake, then you can lock your Gem version for Capistrano at something +like: + +{% highlight ruby %} +gem 'capistrano', '~> 2.15' # Or whatever patch release you are using +{% endhighlight %} + +This is the [pessimistic operator][rubygems-pessimistic-operator] which +installs the closest matching version, at the time of writing this would +install `2.15.4`, and any other point-release in the `2.15.x` family without +the risk of accidentally upgrading to `v3`. +
    + +-- +[rubygems]: http://rubygems.org/ +[rubygems-pessimistic-operator]: http://docs.rubygems.org/read/chapter/16#page74 +[capistrano-rails-asset-pipeline-readme]: https://www.github.com/capistrano/asset-pipeline/bundler/README.md +[capistrano-rails-database-migrations-readme]: https://www.github.com/capistrano/migrations/bundler/README.md +[capistrano-rails-gem-bundler-readme]: https://www.github.com/capistrano/capistrano-rails/bundler/README.md diff --git a/documentation/index.html b/documentation/index.html new file mode 100644 index 00000000..879ae949 --- /dev/null +++ b/documentation/index.html @@ -0,0 +1 @@ +FUCK YOU JEKYLL \ No newline at end of file diff --git a/documentation/overview/introductory-demo-video/index.markdown b/documentation/overview/introductory-demo-video/index.markdown new file mode 100644 index 00000000..f7c5e04f --- /dev/null +++ b/documentation/overview/introductory-demo-video/index.markdown @@ -0,0 +1,38 @@ +--- +title: Introductory Demo Video +layout: default +--- + +The video below was filmed on Mac OSX 10.8 using a more-or-less standard shell +without much previous setup. + +It covers using Capistrano to install an example Rails project on a previously +unprepared server, covering all aspects of Github access, as well as +privisioning the server using *Chef Solo* and Capistrano with *Rake*. + + + +#### Show Notes + +The *Chef Solo* recipes can be reached at [this repository at +Github][capistrano-chef-solo-example-recipes], they rely on a fairly new +version of *Chef Solo*, spefically any including the results of [this +ticket][chef-issue-3365]. The aforementioned *Chef* issue adds environment +support to *Chef Solo*. + +The provisioning can also be done using any other mechanism, it's generally +accepted however that there's not much point in automising your deploys, +unless you are also automating provisioning of your servers for a known, +consistent state. + +Using `sudo` with any deployment can be tricky, so it's better to avoid it. +Rebooting services without `sudo` is typically the first place people run into +trouble using Capistrano. The [trouble shooting page for `sudo` +problems][troubleshooting-sudo-password] may help. + +**Note:** Some long sequences have been shortened (nobody needs to sit and watch me +sitting and watching Ruby compile, for example!) + +-- +[chef-issue-3365]: https://github.com/opscode/chef/pull/359 +[troubleshooting-sudo-password]: /troubleshooting/sudo-password/ diff --git a/documentation/upgrading/index.html b/documentation/upgrading/index.html new file mode 100644 index 00000000..4937e7e3 --- /dev/null +++ b/documentation/upgrading/index.html @@ -0,0 +1,5 @@ +--- +title: "Upgrading from v2.x.x" +--- + +Lorem Ipsum diff --git a/images/CapistranoAvatar.png b/images/CapistranoAvatar.png new file mode 100644 index 0000000000000000000000000000000000000000..d4acd4438a40db11a5cf2e9fbc46e3fd0f35d4bd GIT binary patch literal 9186 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 literal 0 HcmV?d00001 diff --git a/images/CapistranoGraphic.png b/images/CapistranoGraphic.png new file mode 100644 index 0000000000000000000000000000000000000000..c42ee367297f76c5d6f11fb8f861d14d7cce04c0 GIT binary patch literal 26920 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 !-T519ML>VIu9Y#GAiAE)AR^fTmGR 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 literal 0 HcmV?d00001 diff --git a/images/CapistranoGraphicWireframe.png b/images/CapistranoGraphicWireframe.png new file mode 100644 index 0000000000000000000000000000000000000000..16c4c26979903261a84c3115e2b5d1b70506bb48 GIT binary patch literal 66430 zcmXV01yCGav)yHJcMI+g!QI{6+29gLa9Dit;K73g3naKha27~_;O-jS-R+U@e^WIz zRa;wgyH4NkKIhzt(o|Q#KqW;5000q?G&L`Nkv_CEQY`R9SyC1G!anXRbzA?$5orQ6mb}o= z3iinKaB%VAYG(XN=w|7n?z-7g@2F)zZK{1#+^_1XqM@TkYx{l{%sww6+?z zkU)K6a#lsn7w;9)`9@tR{Hxh>$M|2rIxn)*&W}!yJ4lxwN{fp(*<VYH)f3bU2jl4+~}}BbBI?p)jvG=9y-4G zVEVdW?F4K#ADWW3=;-R|{`b0KGK~Jex#Iojz_gRS3n@JdicWO^&yUp|Kl6ac z=>C7*(GQ$oKF)y-)PjnUbmioL-=kkIT`D61Gzxx7*tR8-oP~hFxJ>{$iy5`m8=cp49Abfd^ITXa;2#<_~+!L54;DmqL3x^! z)5V*@teC~rP8M^;wD`me2HwIsU(+r>ClcA_MjeUS^{aAaEgy+pxs?_(!F08>P|!7J z+ASdYqo4uwo`rrH4-VB;6c386J-Q#0M}taGgNOFzm1kYpD?$JrIXOAx zyz&gDyKb{3B#2Q@GH(X0#yR_B^HzcKtsfdi--c9F|KA-P(Gi#1-`6$HW`+Sjk@)Q{ z*^B?TDD(CNWi)Vrx^4}a$;NetnEtYSFVDhWb_9{AqEv_NT~{uyestDYkZ=}2qrM_h zW6{ylg1)Yt#9r({Z^@PBlYVR%m41A{P?}tQ~l%R;wwIjxJ^pNQ{qF0guPq z8JZ{Gqm@y$u)aqRn450%)vXo%+Ij_bCuMCAPx5BatF7F*Iw?fVCn4nzL`g;m+>Jdl zh<@P0kIbLi`afuF@}%fRxi{LF9N|+Y83Ok53X1-qfqDLvF#}wyRI&|Y!l)H!f!^*5 zY>-F3l*<3$w8@j)BIa~SKO!%fMF3pH-0QP8YZ%NW^yH6Gik@s25@AT%-s4>#kfZYJ z{a1Us)M6|onQXzBj-E2{t+R|ie5e1-EUhGiMeIqOL z+|S`L$`C3yQkkyTf`U^eNY#|GiOa*aDlW*I=xp0L%Pfy}E&G({egtW-d}tt; zyX@JW%%m#(U(!*Ff5|nh#G4!$s%i?ol_Z*`#`Cn&f*P?)#Z7+I3uq#qE6)gr&kwSa z2y*CaFuqs(uXL43V7NpRP2>g(XI3I3)m9npDbKdBG`I%j&H|AFH@AtrsfSos{+Ben z`Bd>tr2Iz#7M9ec4G$Du-CxjwO!B6%rSPe0t6yO8^vq(0%}!F7&Ae5?u{6u{{Ep*c zUmxiH_9dMBW`W0yN9&d>_u(*;_mFsYIbWOpUmlg4(lTFu>Y?1u58fz>eb%l<2ny}MfA7Y`zpNm+_P z_4)5N3$C>LNSMk8vf%E;Lmr6=k?-2IQ?gT$QpwJ9XBUKiOFNFj?PI4jB$?rr|DjgI zT1_UP;KzEPBuX$;{2czY!ESqM%-Dg&IhyBkjVLMU1F;6=K9Gs%dkO8-O<}1U0G!lo z{Kit;`1Jnkv$uJ*y)ke^h#a5l!BKXqDQe>OAt6g;v5m3i(b-M~m4cy#Ac_V`%1hjU z>KDSiiJSK$3ldh#-|xKt*O(CT4QG7bQsMc>DD74px~wl*1Z{r+84{hd>mKOPow!-YzhC^Ewn%-={>3{ucxK2)%H;3iRDyT;kDFT!8nH7muMQ zwG@4miMKwzbp!bc7FDr$a7NB%AgEinh{=@X9TBqL|8~8U61*i z!ys6#JlwM%1L{V>FHJGdczl_d+_}|e2hEu;Z4Gk$d9&n1ZELZQZm^s?ZV_<*o)hnp z%M~w>ZRcS3y_y;UN&&^|ZufxIek|Y;M7{+i(<0bH#GMPm@2M- zlisPP88N_9TZvFY=sK(rf7D?CwuwMX0_}8O+17nQ!xYm>n^&Ksk0-OdA)iSR424$X z^D!Y{ds>qpBzM20G9(=<_y!!YyFDPJJ9nW<>+W+PhyJ|b#ZtjfWq-wOm zs^;eE&xcE9?(Y(+x2ziQu=g)wuO4R}7@L;CznvL;H579PCT0{RVpGm#2|Cp}NiYEouOOzDsiELq6H2eQ-6yrHZt?yxw37Ax#l1 z&FGhb;J!p%u>BS5DcknDZnQJf{;mj}?>q52*z$Y-HJ$JPNn_8VavF(&CGZ4bUvO31 zx$)uQtn}$;8IpBp;Cl&uWj=sa(KNn&sWr!bm#&r&p<%oVVp_?sG$D+zEQN zc$k?1j-+LiX2V6l5Fl!0_T;_9#Y_@*{lh^(X;jOksZC$cW*o&SY)8YS{00~6mw{RC zPm=LTN_)CVjI? zP1gh`ePc1dQZ9pH2z?bN$vAD{l{{Ss*%W-_x5wu)xzbOh_H~^8R`Rc*(3_Z}WFR*@ zga^b69QHALJ*%*ugV*Ro?a(cZ!|XK}6@kT%DS!(?JVQj!X`pTT4xD-L54=Arrwpy1 zAAqD@#3E(qOYn=3@5Us$F|kkvkBy&)W7bsvF%XngyJgwmk&&@On_t1XNK4HX*Fy1V zF2^GW2sxXzgs_dOquZJbuQQ|E`gggS zMM&dxl&PhlLDE#quenwPy78Q(!4qie_ez3TT4`b zfx^Zc1U&ruwHP{V`_#OaK6dW-3H_kgqK|%$VN?j&ipx$E@8S`xSTuf}U;|WeD!B?_ zr|K2m`U1uZ9q?G187p6j^M2jaHiIsF_+_X7n5!(5Va4#&inkeRz>n2-;OjU>=iK1g zDC6pnxk`ZS@ShQE*!GqI2k@Dbl{vQdQHlRm?mbZWLZ6>AJFygRYF_x9T*u`=k#jR3 zKZ-kSSq@7>51g->0xQ|$z}gobnWV1$t25yzHf>3H55>C@dZ}O*F9aJq_J;)9#ziIZ zT;oN6L^JDJ{sUR}ipHIc8Zb};tScWkVwjytghvI`oSJ9%IG=2ta16MIIlZ)c{zRf* z)9c8kT?4u-Zy)LGtjk_@hflq$+u%G`B~6+jt(D9Z8g9wB=xuwbJLmbAJY5vSO6pT7 z;*V~U%~JN{J~A^Ew9Sn{@B0uKSa8AyL9nOFByRtA0yw!k^kl#yi=bfG&Zo#^d7P#! zgT=GLCtub$n!|NJp6ieQfF3h$wLBVYPUbp3%GG+gaBMl!ICqV51%^w|vL~ zf)iAY6&7;qqKMA9I>S|n%|d0ZPic~u0!_<3xk7z7rrwJ&WN#E|2&`IbRcO zH+9C-*Pz+@k4a&t5OaVGn4XYFCju!cex}!A;zZIFhdSiG=tCTEr;;zFwlWxGG}M71 zg9B$D^fu8(_7C7j(b~=q+IiMRZ;*>5=4t1C3HiFhRxj$w{k|ftT=D(1%6;NNN3X~& z`Nz2Fs>x{bh`$wN#+niK7p^$G+-8&iz&zDn*M6)#OQH~lDqH8!O6{z`j2D3Bfm#}J z*gJ&aiXLj>04H4+q@6g;`y(Y7!zjVX?G1Y45?GlGB5kg5I6T-Zln z#)eQ;KZHaADHuhPiKPb?%K#-Fkp76 zEjO1<3{jqy>0g9Sct0r={Ktgx^XnNL2yTX!*X7zxq-WlDIc|%x?-qhi!!@U5^fn6@ z?4J4qO&NJnlz`jaJnbJOG#hO_5pLEP;OP4-z*vpY zD#<4Mp^`_VYC)Yc!K-Dv<7U{z{AnFf#9H#mQnhw8r(Q)bz47DAr_eooZ#}#m%=x#a zjPh-HwtFKi;>17#CdN*>CRs*mO^@rQf&&m$@sew?fif0yG#eBw5_4}v0T3uokD|J9PywD}Kx2A7+k z(vw+M<`FBXap(=5k(iiSQ3NTW>0f(Sqoen!M2VtzSErB^a|`o7y;T|gt}G|}F9%F4 z))5+6$4a8@{Y_Et7b{AXiBnOZMh}}lt@{3!U7FGd4=kA|q_F{J4fghM+TTgd-!^rR zdaF7r=KOBqfh&pB6vseZ_4u8HrRDA2`0hzL;N6XHmO$}reWBLc>wHV)Cb-0QEK<|S zkF`lPQk3f)j8`aiNlYBPP9o3!X+?{Cb$Q;17W~a~^KYrIM)~8MY=xBG=752ktW9yL zhZ6=0mqVWsgR-{&biB#lv{RV+Ds_{*PDD+4AcM){%&kpwJko#TNsN_=2@8qAQD|CT zX1*XfV~cpNO~9uT2d&W~eZQ4V*{; zhBZYIPX&`qnnz{x85?ZPwq-QLw>c* z1~yS1?DXufecnO|MbaEh5M8YacyJTDkQY#>)YJMmJkjW~?|>|7_m2~U%Xv2k45cxC zIrBRZo?aI;5L?SX_d;4IKSpJ2y-A>#7$Gaa$5NYT*e1r8OYdA)F?oBpCC!EV+ceIQz12#Z z0!c$MN9SwmhPE*-ZSOsK8sG^V{DR7tLn1D+c{)Y zsQ>E{!OSLPYZ;nYwO?P}TyLm)P46NVi_1t-;~F+Lu>~q|yw|&?hVm%B#BlRVc94Oh z#koYs% zN?1G*D4TzOkVJTOt*j^1F;h#-bOAI<4iZNt-d?X@Y^S-%jHED+2kE5@7?Xj9Fxg%f zWFIYv>6vC;e6>GY1g$P!Z%m7tprlpzeI|ymqZLGQy+h(1S7X-uYIfYWoKIS)*Yx9+ zr=gQJmB-rj=d`3VBACJ#Nz`nhc|CT=t4IUVo}e|7IVeQyw1FmSzVGBwzGp{bfyp7l zI3dqtpoHD@r;nUeEPXpn4aJQ_#|q?wI%3$Q?^>5BcEtxCqB7&IH%2s>c=Qm5M~XMo zu^2vx9XxdwP zCxchM<)nA#*nK$=SN_rU#UzLnbuG230ynPL?>f`S9-wIeejOR9=a?JyQMlCmdfSz^ zHZiyCmrHWRS7)VRpDagNM`&dv6WSYx*e;2J1elR)US3?%GB#1UbR=XzxnFT*Ec5Uz zydc8sXR;@5k1r0);E~T_&nQD$pP8DO5hm=wFJiZ@pp6|dSr(o#poNNB8 zi&*v37kZHoCzd^@GplDxIaJkdwxLl18h1O3F7>p0f3~!HAKD&`sdy#TeDcpglQSsa z!kmWGRKT{O<~lwZujap-CKn(DS&O|& znDKX+U6k~mf@f=WkT(IuT5sQLQvSGM12Jrn=Y4t<-xDTqOQ@~f<*iuEsve9UA!mEp zH%TRR`g=gupeSG`H}lhb*VZS}&Ko|FXBrtvNCSBl`X>vhGRYf=`a$71G^V5P`L3&! zPOxF#1d#Hr4U~0h%fk6eTa*z8esjv2l(k&-y4q6<7%fDQ zf6U-Y=|x&=@3Qh4+j*YY6`dw9{h4dHsvJ3tLt}@JwW3;)o)K)HG-@8Ia?0-d$-F|Z zC6!Q&0{P`z%5X17cmxuCa_!DcqG{ivnk?fjda$tMR=W+z%{nQoI>rL&>t;{bmrxtO z7qJrt$n@Gni1VW~rypV>rjy4(8F^^{i5Yy^l4zg1%|1p{#o6gK% zp@dT4k{p((Wr1vEoZd_vxYlu!iIb<{mGN_ZUUORtq>8=7@-mgd*8jZ|7KypipGnS| zY`jvx3FJZwp1g4v=~&$74pxW;Tq*^=k-UV5c!j&wx{$=~p>V1J*1+k!)Y&#J_1(}a|LkX>^1aGFj-ftH*VCX@bjct zGG28-Du=Sog6x*0d8$-YpnbsvrJirEh4J>!d0@zWNxNGlvb=_EarwZx7@q6!Hs=gx zo|_L~z8>&zWP=AXKujWR8Q+i+=tYy9xW-VNx;O4d08=5dKWfR_#Tk=n6b@f?>1SPn96YECWhdF*6Mv6G{0Rk{54N2>DyFN3%_bt=pgjJCPXx(%I&SVn|rRWA6<{Ki=HjL<)Xi7H7h zcVQAp-G5j4we0cXQ2z*&rHBo?!%=-j=@adBUri*eM>R?pIGS5!=}MmBE>E}p!iaxm zu1{&&Era5`#U`oETFaffV=VH~8bT%ONCs$j=$nY;v`^VFG{QMpI%65H0j-ciKD_rb zwe0&lCf0y{6+rfvq7s@tctO-cb$3QoUS2&eOA&zY6;ws=jz<$n>@UD7rsT|kj>cQo zl(H0#Id!Kq?DO+`1(Z)4f@Q9jBxovOWG?SP=NR2lxt{Y7-MYU`cydzl@)(W}) zfy@sRknMq%ss0jL!Yjp*S&qMO^~6M^ket;fC2h68jjZKxcENf#w?$%y!hJAgr@2Q( zN>jzr1fO>}|8+DJ(fOB8lF~6<8f}!_NaccJG>RT*UjFdgJXaSbSNJg=zuIL8z`vzURw2sM>*P{`xOW;JXE53gPArD(J8@?&3gcgXDU(lk`>Co?v3I> zseDzTsvN#6FQOAAEB0j?F@2-mO^$dUK$Sso?-UpT;Q$X3I)>yXWai%>oE}qd(bvYT z8vkLt|F~rAGD>IwMXioROj36B!(3@gU_E6rGm)u1#PJw$g-;(TyNkH2lL26GF1NG= zrSA+sD$oi}E)5dDTSOa8gVw4;OKf8C%`szZb9vEhKG|wN6NjOwdys#C7kg7~DIwFw zrGXW7z^KS(B0IKh?n7-#G3pkO#-Nu8KVIo+-5*jIJE@0<&+>Xw#7Ax2zGo~G*oySE zI>(c`>mAb7CcUkW%F(l1Sro1i+8IMqAn0?H>cwK=^e|nM2g$~ww&*HQq<1&g!JdQ` z;fo$p`sB4$$eLRt%NOde_zjL=t-Z zEkgTBuxCL&=-TdfS&9@&V^(I`FXou(d+rF8zrRs* zx}o)~U1i(DDHtmtvLWjPD)Gr$xcQrt=l)GHaa63D8vp$`qav3k^!KF8hY$o&WWHq^ z-K(U*gDT#2`(~$4K6p`Gpdh^RfieJxmSh0$C^rf`T>Jpy|Omgu!%VA)G8v)Di59glEh zMN8UI+k(JTsarDAMEo#=8++p;!qqe*Fy`?bAA3hBKd2M(J4&{8-h94PgasQ z+}ATc_h0x&MTsimBX1+@!$3kH6_-W+&lH;0kOMg-iUj=gkf?#0;!Vynd;f@1mGyO# z!`nW&T};wLMPJ~sjXPK}c|~}PXhz8_h!cnmdl+sLZGCL!Q1UPVj&7mWV)6FB+7D~B zM4FyCQQU(+?H*NoRE?XVGex)H#!I@ulxbsRV46Bb?Z%Mi;@@$Tx?-9SPlagEE>2L+ z%Mk<1s9sZICga%V3R1PdrY{bp65+PADx<$H%V7(*@^>=B`DP{OX|w-lq0dT@s9Zg8 z>57{UgcuxFRCw@5taYgQ6SZLmm$M9ie~10rYDso{yVQ4~0+%K(iPr8($3$DE=ZFu- zWe1n@k~s63KBP<(%1}FpMX;4IY|mbesTkcty`e}_Z02s`awqm#Na#}qJ%M=y0tZmm zb^wsR66~6>_4De@NZ!qf177&A^oWU%!zO4@nD?YNCucYqxLh&<_#NYh;8pb!lhvJ085$NUc8_oE3TE5TUiY zhiES7G^%~a@`jLXPgr}t?KKbez$kaFVzb0Lte@S=RO&n25KHi&63W_y2p1q+u-^Il zRjyrpD=rMS4J=5zr#_e{V6}ggX?exx%l3j$T?-{MT-)MBh%H8SZ#1{Q@7?QrIi+KQ8uBZD| zH^kK4aG4U$_3p6QA;fZu9z2UGs72XH4ACu4)%lBZe1z5tl&|W$eZmzgwxQo=f$5^4 zn)bq`S-&bywZ+0Jd_?h~seikTcS7HSQAfwVRjX)s-BRSBQOq7lU-B+C2PtFqHc~t% zp!MZHj+9WC%kCs3-+D)iQQZVbiK?o*5C&2_)KoE|(AFh&iz&g(v#Qq((Who^cf8!a zq4=IMt7^g;&X|yy+;C*ux&HO=F%O)sNm~C-g}n)V;bKeq$1?xpgT=27C*r=~^A0ln z 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ℜLYr_SR)GsB!- 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 literal 0 HcmV?d00001 diff --git a/index.markdown b/index.markdown new file mode 100644 index 00000000..e2031f03 --- /dev/null +++ b/index.markdown @@ -0,0 +1,35 @@ +--- +layout: default +title: A remote server automation and deployment tool written in Ruby. +--- + +### A Simple Task + +{% highlight ruby %} +role :demo, %{example.com example.org, example.net} +task :uptime do |host| + on :demo, in: :parallel do + uptime = capture(:uptime) + puts "#{host.hostname} reports: #{uptime}" + end +end +{% endhighlight %} + +Capistrano extends the *Rake* DSL with methods specific to running commands +`on()` servers. + +### For Any Language + +Capistrano is written in Ruby, but it can easily be used to deploy any +language. Popular extensions add support for *Wordpress* blogs as well as +*Symfony* and *Node.js* applications. + +If your language has special deployment requirements, Capistrano can easily be +extended to support them. + +### Demo Video + + + From d08481702915ca7203c271a02af2c0f300e154cf Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Sat, 22 Jun 2013 18:34:07 +0200 Subject: [PATCH 002/256] Pushing all the WIP documentation --- _includes/footer.html | 46 +- _includes/header.html | 2 +- _includes/navigation.html | 66 +- _layouts/default.html | 30 +- _plugins/prism.rb | 47 + .../2013-06-01-release-announcement.markdown | 5 +- css/capistrano.css | 69 +- css/dreamweaver.css | 109 + css/foundation.css | 4257 +++++++ css/foundation.min.css | 1 + css/github.css | 88 + css/normalize.css | 402 + css/okaidia.css | 109 + css/prism.css | 117 + css/social_foundicons.css | 148 + css/social_foundicons_ie7.css | 126 + css/syntax.css | 60 - fonts/.DS_Store | Bin 0 -> 6148 bytes fonts/social_foundicons.eot | Bin 0 -> 17112 bytes fonts/social_foundicons.svg | 15 + fonts/social_foundicons.ttf | Bin 0 -> 16880 bytes fonts/social_foundicons.woff | Bin 0 -> 10644 bytes index.markdown | 6 +- js/foundation.min.js | 15 + js/foundation/foundation.alerts.js | 52 + js/foundation/foundation.clearing.js | 516 + js/foundation/foundation.cookie.js | 74 + js/foundation/foundation.dropdown.js | 178 + js/foundation/foundation.forms.js | 525 + js/foundation/foundation.interchange.js | 271 + js/foundation/foundation.joyride.js | 844 ++ js/foundation/foundation.js | 447 + js/foundation/foundation.magellan.js | 134 + js/foundation/foundation.orbit.js | 390 + js/foundation/foundation.placeholder.js | 179 + js/foundation/foundation.reveal.js | 330 + js/foundation/foundation.section.js | 417 + js/foundation/foundation.tooltips.js | 208 + js/foundation/foundation.topbar.js | 297 + js/prism-ruby-language.js | 26 + js/prism.js | 9 + js/rainbow-custom.min.js | 43 + js/vendor/custom.modernizr.js | 4 + js/vendor/jquery.js | 9807 +++++++++++++++++ js/vendor/zepto.js | 2000 ++++ 45 files changed, 22275 insertions(+), 194 deletions(-) create mode 100644 _plugins/prism.rb create mode 100644 css/dreamweaver.css create mode 100644 css/foundation.css create mode 100644 css/foundation.min.css create mode 100644 css/github.css create mode 100644 css/normalize.css create mode 100644 css/okaidia.css create mode 100644 css/prism.css create mode 100755 css/social_foundicons.css create mode 100644 css/social_foundicons_ie7.css delete mode 100644 css/syntax.css create mode 100644 fonts/.DS_Store create mode 100644 fonts/social_foundicons.eot create mode 100644 fonts/social_foundicons.svg create mode 100644 fonts/social_foundicons.ttf create mode 100644 fonts/social_foundicons.woff create mode 100644 js/foundation.min.js create mode 100644 js/foundation/foundation.alerts.js create mode 100644 js/foundation/foundation.clearing.js create mode 100644 js/foundation/foundation.cookie.js create mode 100644 js/foundation/foundation.dropdown.js create mode 100644 js/foundation/foundation.forms.js create mode 100644 js/foundation/foundation.interchange.js create mode 100644 js/foundation/foundation.joyride.js create mode 100644 js/foundation/foundation.js create mode 100644 js/foundation/foundation.magellan.js create mode 100644 js/foundation/foundation.orbit.js create mode 100644 js/foundation/foundation.placeholder.js create mode 100644 js/foundation/foundation.reveal.js create mode 100644 js/foundation/foundation.section.js create mode 100644 js/foundation/foundation.tooltips.js create mode 100644 js/foundation/foundation.topbar.js create mode 100644 js/prism-ruby-language.js create mode 100644 js/prism.js create mode 100644 js/rainbow-custom.min.js create mode 100644 js/vendor/custom.modernizr.js create mode 100644 js/vendor/jquery.js create mode 100644 js/vendor/zepto.js diff --git a/_includes/footer.html b/_includes/footer.html index 7124869f..d9015d8b 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,28 +1,26 @@ -
    -
    - diff --git a/_includes/header.html b/_includes/header.html index fce1f88d..16efc97a 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,4 +1,4 @@ -
    +
    diff --git a/_includes/navigation.html b/_includes/navigation.html index a3b0034b..4627edcb 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,31 +1,35 @@ - + diff --git a/_layouts/default.html b/_layouts/default.html index 73d188ce..1fdd0931 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -5,26 +5,24 @@ {{ page.title }} + - - - - - - - + + + + {% include header.html %} -
    -
    +
    +
    {% include navigation.html %}
    -
    +

    {{ page.title }}

    {{ content }} @@ -33,15 +31,17 @@
    - - - + + + - {% include footer.html %} + {% include footer.html %} - + + + diff --git a/_plugins/prism.rb b/_plugins/prism.rb new file mode 100644 index 00000000..5b8327cd --- /dev/null +++ b/_plugins/prism.rb @@ -0,0 +1,47 @@ +module Jekyll + + class PrismBlock < Liquid::Block + include Liquid::StandardFilters + + OPTIONS_SYNTAX = %r{^([a-zA-Z0-9.+#-]+)((\s+\w+(=[0-9,-]+)?)*)$} + + def initialize(tag_name, markup, tokens) + super + if markup.strip =~ OPTIONS_SYNTAX + @lang = $1 + if defined?($2) && $2 != '' + tmp_options = {} + $2.split.each do |opt| + key, value = opt.split('=') + if value.nil? + value = true + end + tmp_options[key] = value + end + @options = tmp_options + else + @options = { "linenos" => "" } + end + else + raise SyntaxError.new("Syntax Error in 'prism' - Valid syntax: prism [linenos(='1-5')]") + end + end + + def render(context) + code = h(super).strip + + if @options["linenos"] == true + @options["linenos"] = "1-#{code.lines.count}" + end + + <<-HTML +
    +
    #{code}
    +
    + HTML + end + end + +end + +Liquid::Template.register_tag('prism', Jekyll::PrismBlock) diff --git a/_posts/2013-06-01-release-announcement.markdown b/_posts/2013-06-01-release-announcement.markdown index 407e2f58..146caec4 100644 --- a/_posts/2013-06-01-release-announcement.markdown +++ b/_posts/2013-06-01-release-announcement.markdown @@ -120,8 +120,7 @@ documentation if you want to explore that any further. The guiding principle is dependency resolution, and interoperability with other tools, for example: -{% highlight ruby %} -# No description, this is an internal method +{% prism ruby %} task :notify do this_release_tag = sh("git describe --abbrev=0 --tags") last_ten_commits = sh("git log #{this_release_tag}~10..#{this_release_tag}") @@ -135,7 +134,7 @@ end namespace :deploy task default: :notify end -{% endhighlight %} +{% endprism %} The last three lines rely on Rake's additive task declaration, by redefining the `deploy:default` task by adding another dependency. Rake will automatically diff --git a/css/capistrano.css b/css/capistrano.css index 65f01441..7be2c8fc 100644 --- a/css/capistrano.css +++ b/css/capistrano.css @@ -1,66 +1,21 @@ -a { - text-decoration: none; - color: #52C1DB; +body { + font-family: "proxima-nova",sans-serif; } -body, p, a { - font-family: 'Open-Sans', sans-serif; - -webkit-font-smoothing: antialiased; -} - -p, h1, h2, h3, h4, h5, h6 { - color: #1C1B39; -} - -.header { - height: 195px; +.top-bar { background-color: #1C1B39; - background-image: url('/images/CapistranoGraphicWireframe.png'); - background-repeat: no-repeat; - background-size: 275px; - position: relative; + height: 170px; } -.header a { - color: #52C1DB; -} - -pre { - margin: 1.3em 0 1em; - padding: 1.3em; -} - -code, kbd, pre, samp { - font-family: 'droid-sans-mono', monospace, serif; - background-color: rgb(250, 250, 250); -} - -.header a.brand img { - margin: 6.5em auto auto 7em; - width: 300px; -} - -h1, h2, h3, h4, h5 h6 { +h1, h2, h3, h4, h5, h6 { font-family: 'Enriqueta', serif; } -.post-date { - font-weight: bold; -} - -h1 { - font-size: 36pt; -} - -h2 { - font-size: 18pt; -} - -.nav.nav-list { - border-top: none; -} - -.content { - margin: 1.3em 0 1em; - padding: 1.3em; +p code, li code { + padding: 3px; + background-color: #E6E6E6; + font-family: "droid-sans-mono", Consolas, Monaco, 'Andale Mono', monospace; + font-size: 0.9em; + color: #222; + border-radius: 3px; } diff --git a/css/dreamweaver.css b/css/dreamweaver.css new file mode 100644 index 00000000..16081639 --- /dev/null +++ b/css/dreamweaver.css @@ -0,0 +1,109 @@ +/** + * Dreamweaver theme + * + * @author Sean Coker + * @url http://seancoker.com + * @version 1.0 + */ + +pre { + /* original is white background with no border */ + background-color: #fff; + word-wrap: break-word; + margin: 0; + padding: 10px; + color: #000; + font-size: 13px; + line-height: 16px; + margin-bottom: 20px +} + +pre, code { + font-family: monospace; +} + +pre .comment { + color: #888; +} + +pre .support { + color: #cd57d5; +} + +pre .constant.numeric, pre .php.embedded { + color: #fa0002; + font-weight: bold; +} + +pre .keyword, pre .constant.language { + color: #000789; + font-weight: bold; +} + +pre .selector, pre .support.property, pre .entity.name.function { + color: #000; +} + +pre .storage.function, pre .variable.self, pre .support.function, pre .constant.language { + color: #000; + font-weight: bold; +} + +pre .string { + color: #0d43fa; + font-weight: normal; +} + +pre .css-property + span, pre .keyword.unit, pre .support.css-value { + color: #0d43fa !important; + font-weight: normal !important; +} + +pre .entity.tag.style + .string, pre .php.embedded .constant.language, pre .php.embedded .keyword { + color: #37a348 !important; +} + +pre .support.method { + color: #2bd5bb; +} + +pre .entity.name { + color: #fd74e0; +} + +pre .support.css-property, pre .support.tag-name, pre .support.tag, pre .support.attribute, pre .support.attribute + .operator { + color: #000789; +} + +pre .storage.module, pre .storage.class { + color: #122573; + font-weight: bold; +} + +pre .css.embedded .support.tag, pre .css.embedded .style.tag { + color: #cd57d5; +} + +pre .keyword.operator { + color: #2852eb; + font-weight: normal; +} + +pre .php.embedded .variable, pre .php.embedded .storage.function { + color: #0d43fa; + font-weight: normal; +} + +pre .php.embedded .string, pre .js.embedded .tag.script { + color: #c4001e; +} + +pre .php.embedded .comment { + color: #f4b441; + font-weight: normal; +} + +pre .php.embedded .function.name { + color: #000; + font-weight: normal; +} diff --git a/css/foundation.css b/css/foundation.css new file mode 100644 index 00000000..1de23461 --- /dev/null +++ b/css/foundation.css @@ -0,0 +1,4257 @@ +*, +*:before, +*:after { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } + +html, +body { + font-size: 100%; } + +body { + background: white; + color: #1c1b39; + padding: 0; + margin: 0; + font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; + font-weight: normal; + font-style: normal; + line-height: 1; + position: relative; + cursor: default; } + +a:hover { + cursor: pointer; } + +a:focus { + outline: none; } + +img, +object, +embed { + max-width: 100%; + height: auto; } + +object, +embed { + height: 100%; } + +img { + -ms-interpolation-mode: bicubic; } + +#map_canvas img, +#map_canvas embed, +#map_canvas object, +.map_canvas img, +.map_canvas embed, +.map_canvas object { + max-width: none !important; } + +.left { + float: left !important; } + +.right { + float: right !important; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +.text-justify { + text-align: justify !important; } + +.hide { + display: none; } + +.antialiased { + -webkit-font-smoothing: antialiased; } + +img { + display: inline-block; + vertical-align: middle; } + +textarea { + height: auto; + min-height: 50px; } + +select { + width: 100%; } + +/* Grid HTML Classes */ +.row { + width: 100%; + margin-left: auto; + margin-right: auto; + margin-top: 0; + margin-bottom: 0; + max-width: 62.5em; + *zoom: 1; } + .row:before, .row:after { + content: " "; + display: table; } + .row:after { + clear: both; } + .row.collapse .column, + .row.collapse .columns { + position: relative; + padding-left: 0; + padding-right: 0; + float: left; } + .row .row { + width: auto; + margin-left: -0.9375em; + margin-right: -0.9375em; + margin-top: 0; + margin-bottom: 0; + max-width: none; + *zoom: 1; } + .row .row:before, .row .row:after { + content: " "; + display: table; } + .row .row:after { + clear: both; } + .row .row.collapse { + width: auto; + margin: 0; + max-width: none; + *zoom: 1; } + .row .row.collapse:before, .row .row.collapse:after { + content: " "; + display: table; } + .row .row.collapse:after { + clear: both; } + +.column, +.columns { + position: relative; + padding-left: 0.9375em; + padding-right: 0.9375em; + width: 100%; + float: left; } + +@media only screen { + .column, + .columns { + position: relative; + padding-left: 0.9375em; + padding-right: 0.9375em; + float: left; } + + .small-1 { + position: relative; + width: 8.33333%; } + + .small-2 { + position: relative; + width: 16.66667%; } + + .small-3 { + position: relative; + width: 25%; } + + .small-4 { + position: relative; + width: 33.33333%; } + + .small-5 { + position: relative; + width: 41.66667%; } + + .small-6 { + position: relative; + width: 50%; } + + .small-7 { + position: relative; + width: 58.33333%; } + + .small-8 { + position: relative; + width: 66.66667%; } + + .small-9 { + position: relative; + width: 75%; } + + .small-10 { + position: relative; + width: 83.33333%; } + + .small-11 { + position: relative; + width: 91.66667%; } + + .small-12 { + position: relative; + width: 100%; } + + .small-offset-0 { + position: relative; + margin-left: 0%; } + + .small-offset-1 { + position: relative; + margin-left: 8.33333%; } + + .small-offset-2 { + position: relative; + margin-left: 16.66667%; } + + .small-offset-3 { + position: relative; + margin-left: 25%; } + + .small-offset-4 { + position: relative; + margin-left: 33.33333%; } + + .small-offset-5 { + position: relative; + margin-left: 41.66667%; } + + .small-offset-6 { + position: relative; + margin-left: 50%; } + + .small-offset-7 { + position: relative; + margin-left: 58.33333%; } + + .small-offset-8 { + position: relative; + margin-left: 66.66667%; } + + .small-offset-9 { + position: relative; + margin-left: 75%; } + + .small-offset-10 { + position: relative; + margin-left: 83.33333%; } + + [class*="column"] + [class*="column"]:last-child { + float: right; } + + [class*="column"] + [class*="column"].end { + float: left; } + + .column.small-centered, + .columns.small-centered { + position: relative; + margin-left: auto; + margin-right: auto; + float: none !important; } } +/* Styles for screens that are atleast 768px; */ +@media only screen and (min-width: 768px) { + .large-1 { + position: relative; + width: 8.33333%; } + + .large-2 { + position: relative; + width: 16.66667%; } + + .large-3 { + position: relative; + width: 25%; } + + .large-4 { + position: relative; + width: 33.33333%; } + + .large-5 { + position: relative; + width: 41.66667%; } + + .large-6 { + position: relative; + width: 50%; } + + .large-7 { + position: relative; + width: 58.33333%; } + + .large-8 { + position: relative; + width: 66.66667%; } + + .large-9 { + position: relative; + width: 75%; } + + .large-10 { + position: relative; + width: 83.33333%; } + + .large-11 { + position: relative; + width: 91.66667%; } + + .large-12 { + position: relative; + width: 100%; } + + .row .large-offset-0 { + position: relative; + margin-left: 0%; } + + .row .large-offset-1 { + position: relative; + margin-left: 8.33333%; } + + .row .large-offset-2 { + position: relative; + margin-left: 16.66667%; } + + .row .large-offset-3 { + position: relative; + margin-left: 25%; } + + .row .large-offset-4 { + position: relative; + margin-left: 33.33333%; } + + .row .large-offset-5 { + position: relative; + margin-left: 41.66667%; } + + .row .large-offset-6 { + position: relative; + margin-left: 50%; } + + .row .large-offset-7 { + position: relative; + margin-left: 58.33333%; } + + .row .large-offset-8 { + position: relative; + margin-left: 66.66667%; } + + .row .large-offset-9 { + position: relative; + margin-left: 75%; } + + .row .large-offset-10 { + position: relative; + margin-left: 83.33333%; } + + .row .large-offset-11 { + position: relative; + margin-left: 91.66667%; } + + .push-1 { + position: relative; + left: 8.33333%; + right: auto; } + + .pull-1 { + position: relative; + right: 8.33333%; + left: auto; } + + .push-2 { + position: relative; + left: 16.66667%; + right: auto; } + + .pull-2 { + position: relative; + right: 16.66667%; + left: auto; } + + .push-3 { + position: relative; + left: 25%; + right: auto; } + + .pull-3 { + position: relative; + right: 25%; + left: auto; } + + .push-4 { + position: relative; + left: 33.33333%; + right: auto; } + + .pull-4 { + position: relative; + right: 33.33333%; + left: auto; } + + .push-5 { + position: relative; + left: 41.66667%; + right: auto; } + + .pull-5 { + position: relative; + right: 41.66667%; + left: auto; } + + .push-6 { + position: relative; + left: 50%; + right: auto; } + + .pull-6 { + position: relative; + right: 50%; + left: auto; } + + .push-7 { + position: relative; + left: 58.33333%; + right: auto; } + + .pull-7 { + position: relative; + right: 58.33333%; + left: auto; } + + .push-8 { + position: relative; + left: 66.66667%; + right: auto; } + + .pull-8 { + position: relative; + right: 66.66667%; + left: auto; } + + .push-9 { + position: relative; + left: 75%; + right: auto; } + + .pull-9 { + position: relative; + right: 75%; + left: auto; } + + .push-10 { + position: relative; + left: 83.33333%; + right: auto; } + + .pull-10 { + position: relative; + right: 83.33333%; + left: auto; } + + .push-11 { + position: relative; + left: 91.66667%; + right: auto; } + + .pull-11 { + position: relative; + right: 91.66667%; + left: auto; } + + .column.large-centered, + .columns.large-centered { + position: relative; + margin-left: auto; + margin-right: auto; + float: none !important; } + + .column.large-uncentered, + .columns.large-uncentered { + margin-left: 0; + margin-right: 0; + float: left !important; } + + .column.large-uncentered.opposite, + .columns.large-uncentered.opposite { + float: right !important; } } +/* Foundation Visibility HTML Classes */ +.show-for-small, +.show-for-medium-down, +.show-for-large-down { + display: inherit !important; } + +.show-for-medium, +.show-for-medium-up, +.show-for-large, +.show-for-large-up, +.show-for-xlarge { + display: none !important; } + +.hide-for-medium, +.hide-for-medium-up, +.hide-for-large, +.hide-for-large-up, +.hide-for-xlarge { + display: inherit !important; } + +.hide-for-small, +.hide-for-medium-down, +.hide-for-large-down { + display: none !important; } + +/* Specific visilbity for tables */ +table.show-for-small, table.show-for-medium-down, table.show-for-large-down, table.hide-for-medium, table.hide-for-medium-up, table.hide-for-large, table.hide-for-large-up, table.hide-for-xlarge { + display: table; } + +thead.show-for-small, thead.show-for-medium-down, thead.show-for-large-down, thead.hide-for-medium, thead.hide-for-medium-up, thead.hide-for-large, thead.hide-for-large-up, thead.hide-for-xlarge { + display: table-header-group !important; } + +tbody.show-for-small, tbody.show-for-medium-down, tbody.show-for-large-down, tbody.hide-for-medium, tbody.hide-for-medium-up, tbody.hide-for-large, tbody.hide-for-large-up, tbody.hide-for-xlarge { + display: table-row-group !important; } + +tr.show-for-small, tr.show-for-medium-down, tr.show-for-large-down, tr.hide-for-medium, tr.hide-for-medium-up, tr.hide-for-large, tr.hide-for-large-up, tr.hide-for-xlarge { + display: table-row !important; } + +td.show-for-small, td.show-for-medium-down, td.show-for-large-down, td.hide-for-medium, td.hide-for-medium-up, td.hide-for-large, td.hide-for-large-up, td.hide-for-xlarge, +th.show-for-small, +th.show-for-medium-down, +th.show-for-large-down, +th.hide-for-medium, +th.hide-for-medium-up, +th.hide-for-large, +th.hide-for-large-up, +th.hide-for-xlarge { + display: table-cell !important; } + +/* Medium Displays: 768px - 1279px */ +@media only screen and (min-width: 768px) { + .show-for-medium, + .show-for-medium-up { + display: inherit !important; } + + .show-for-small { + display: none !important; } + + .hide-for-small { + display: inherit !important; } + + .hide-for-medium, + .hide-for-medium-up { + display: none !important; } + + /* Specific visilbity for tables */ + table.show-for-medium, table.show-for-medium-up, table.hide-for-small { + display: table; } + + thead.show-for-medium, thead.show-for-medium-up, thead.hide-for-small { + display: table-header-group !important; } + + tbody.show-for-medium, tbody.show-for-medium-up, tbody.hide-for-small { + display: table-row-group !important; } + + tr.show-for-medium, tr.show-for-medium-up, tr.hide-for-small { + display: table-row !important; } + + td.show-for-medium, td.show-for-medium-up, td.hide-for-small, + th.show-for-medium, + th.show-for-medium-up, + th.hide-for-small { + display: table-cell !important; } } +/* Large Displays: 1280px - 1440px */ +@media only screen and (min-width: 1280px) { + .show-for-large, + .show-for-large-up { + display: inherit !important; } + + .show-for-medium, + .show-for-medium-down { + display: none !important; } + + .hide-for-medium, + .hide-for-medium-down { + display: inherit !important; } + + .hide-for-large, + .hide-for-large-up { + display: none !important; } + + /* Specific visilbity for tables */ + table.show-for-large, table.show-for-large-up, table.hide-for-medium, table.hide-for-medium-down { + display: table; } + + thead.show-for-large, thead.show-for-large-up, thead.hide-for-medium, thead.hide-for-medium-down { + display: table-header-group !important; } + + tbody.show-for-large, tbody.show-for-large-up, tbody.hide-for-medium, tbody.hide-for-medium-down { + display: table-row-group !important; } + + tr.show-for-large, tr.show-for-large-up, tr.hide-for-medium, tr.hide-for-medium-down { + display: table-row !important; } + + td.show-for-large, td.show-for-large-up, td.hide-for-medium, td.hide-for-medium-down, + th.show-for-large, + th.show-for-large-up, + th.hide-for-medium, + th.hide-for-medium-down { + display: table-cell !important; } } +/* X-Large Displays: 1400px and up */ +@media only screen and (min-width: 1440px) { + .show-for-xlarge { + display: inherit !important; } + + .show-for-large, + .show-for-large-down { + display: none !important; } + + .hide-for-large, + .hide-for-large-down { + display: inherit !important; } + + .hide-for-xlarge { + display: none !important; } + + /* Specific visilbity for tables */ + table.show-for-xlarge, table.hide-for-large, table.hide-for-large-down { + display: table; } + + thead.show-for-xlarge, thead.hide-for-large, thead.hide-for-large-down { + display: table-header-group !important; } + + tbody.show-for-xlarge, tbody.hide-for-large, tbody.hide-for-large-down { + display: table-row-group !important; } + + tr.show-for-xlarge, tr.hide-for-large, tr.hide-for-large-down { + display: table-row !important; } + + td.show-for-xlarge, td.hide-for-large, td.hide-for-large-down, + th.show-for-xlarge, + th.hide-for-large, + th.hide-for-large-down { + display: table-cell !important; } } +/* Orientation targeting */ +.show-for-landscape, +.hide-for-portrait { + display: inherit !important; } + +.hide-for-landscape, +.show-for-portrait { + display: none !important; } + +/* Specific visilbity for tables */ +table.hide-for-landscape, table.show-for-portrait { + display: table; } + +thead.hide-for-landscape, thead.show-for-portrait { + display: table-header-group !important; } + +tbody.hide-for-landscape, tbody.show-for-portrait { + display: table-row-group !important; } + +tr.hide-for-landscape, tr.show-for-portrait { + display: table-row !important; } + +td.hide-for-landscape, td.show-for-portrait, +th.hide-for-landscape, +th.show-for-portrait { + display: table-cell !important; } + +@media only screen and (orientation: landscape) { + .show-for-landscape, + .hide-for-portrait { + display: inherit !important; } + + .hide-for-landscape, + .show-for-portrait { + display: none !important; } + + /* Specific visilbity for tables */ + table.show-for-landscape, table.hide-for-portrait { + display: table; } + + thead.show-for-landscape, thead.hide-for-portrait { + display: table-header-group !important; } + + tbody.show-for-landscape, tbody.hide-for-portrait { + display: table-row-group !important; } + + tr.show-for-landscape, tr.hide-for-portrait { + display: table-row !important; } + + td.show-for-landscape, td.hide-for-portrait, + th.show-for-landscape, + th.hide-for-portrait { + display: table-cell !important; } } +@media only screen and (orientation: portrait) { + .show-for-portrait, + .hide-for-landscape { + display: inherit !important; } + + .hide-for-portrait, + .show-for-landscape { + display: none !important; } + + /* Specific visilbity for tables */ + table.show-for-portrait, table.hide-for-landscape { + display: table; } + + thead.show-for-portrait, thead.hide-for-landscape { + display: table-header-group !important; } + + tbody.show-for-portrait, tbody.hide-for-landscape { + display: table-row-group !important; } + + tr.show-for-portrait, tr.hide-for-landscape { + display: table-row !important; } + + td.show-for-portrait, td.hide-for-landscape, + th.show-for-portrait, + th.hide-for-landscape { + display: table-cell !important; } } +/* Touch-enabled device targeting */ +.show-for-touch { + display: none !important; } + +.hide-for-touch { + display: inherit !important; } + +.touch .show-for-touch { + display: inherit !important; } + +.touch .hide-for-touch { + display: none !important; } + +/* Specific visilbity for tables */ +table.hide-for-touch { + display: table; } + +.touch table.show-for-touch { + display: table; } + +thead.hide-for-touch { + display: table-header-group !important; } + +.touch thead.show-for-touch { + display: table-header-group !important; } + +tbody.hide-for-touch { + display: table-row-group !important; } + +.touch tbody.show-for-touch { + display: table-row-group !important; } + +tr.hide-for-touch { + display: table-row !important; } + +.touch tr.show-for-touch { + display: table-row !important; } + +td.hide-for-touch { + display: table-cell !important; } + +.touch td.show-for-touch { + display: table-cell !important; } + +th.hide-for-touch { + display: table-cell !important; } + +.touch th.show-for-touch { + display: table-cell !important; } + +/* Foundation Block Grids for below small breakpoint */ +@media only screen { + [class*="block-grid-"] { + display: block; + padding: 0; + margin: 0 -0.625em; + *zoom: 1; } + [class*="block-grid-"]:before, [class*="block-grid-"]:after { + content: " "; + display: table; } + [class*="block-grid-"]:after { + clear: both; } + [class*="block-grid-"] > li { + display: inline; + height: auto; + float: left; + padding: 0 0.625em 1.25em; } + + .small-block-grid-1 > li { + width: 100%; + padding: 0 0.625em 1.25em; } + .small-block-grid-1 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-1 > li:nth-of-type(1n+1) { + clear: both; } + + .small-block-grid-2 > li { + width: 50%; + padding: 0 0.625em 1.25em; } + .small-block-grid-2 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-2 > li:nth-of-type(2n+1) { + clear: both; } + + .small-block-grid-3 > li { + width: 33.33333%; + padding: 0 0.625em 1.25em; } + .small-block-grid-3 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-3 > li:nth-of-type(3n+1) { + clear: both; } + + .small-block-grid-4 > li { + width: 25%; + padding: 0 0.625em 1.25em; } + .small-block-grid-4 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-4 > li:nth-of-type(4n+1) { + clear: both; } + + .small-block-grid-5 > li { + width: 20%; + padding: 0 0.625em 1.25em; } + .small-block-grid-5 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-5 > li:nth-of-type(5n+1) { + clear: both; } + + .small-block-grid-6 > li { + width: 16.66667%; + padding: 0 0.625em 1.25em; } + .small-block-grid-6 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-6 > li:nth-of-type(6n+1) { + clear: both; } + + .small-block-grid-7 > li { + width: 14.28571%; + padding: 0 0.625em 1.25em; } + .small-block-grid-7 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-7 > li:nth-of-type(7n+1) { + clear: both; } + + .small-block-grid-8 > li { + width: 12.5%; + padding: 0 0.625em 1.25em; } + .small-block-grid-8 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-8 > li:nth-of-type(8n+1) { + clear: both; } + + .small-block-grid-9 > li { + width: 11.11111%; + padding: 0 0.625em 1.25em; } + .small-block-grid-9 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-9 > li:nth-of-type(9n+1) { + clear: both; } + + .small-block-grid-10 > li { + width: 10%; + padding: 0 0.625em 1.25em; } + .small-block-grid-10 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-10 > li:nth-of-type(10n+1) { + clear: both; } + + .small-block-grid-11 > li { + width: 9.09091%; + padding: 0 0.625em 1.25em; } + .small-block-grid-11 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-11 > li:nth-of-type(11n+1) { + clear: both; } + + .small-block-grid-12 > li { + width: 8.33333%; + padding: 0 0.625em 1.25em; } + .small-block-grid-12 > li:nth-of-type(n) { + clear: none; } + .small-block-grid-12 > li:nth-of-type(12n+1) { + clear: both; } } +/* Foundation Block Grids for above small breakpoint */ +@media only screen and (min-width: 768px) { + /* Remove small grid clearing */ + .small-block-grid-1 > li:nth-of-type(1n+1) { + clear: none; } + + .small-block-grid-2 > li:nth-of-type(2n+1) { + clear: none; } + + .small-block-grid-3 > li:nth-of-type(3n+1) { + clear: none; } + + .small-block-grid-4 > li:nth-of-type(4n+1) { + clear: none; } + + .small-block-grid-5 > li:nth-of-type(5n+1) { + clear: none; } + + .small-block-grid-6 > li:nth-of-type(6n+1) { + clear: none; } + + .small-block-grid-7 > li:nth-of-type(7n+1) { + clear: none; } + + .small-block-grid-8 > li:nth-of-type(8n+1) { + clear: none; } + + .small-block-grid-9 > li:nth-of-type(9n+1) { + clear: none; } + + .small-block-grid-10 > li:nth-of-type(10n+1) { + clear: none; } + + .small-block-grid-11 > li:nth-of-type(11n+1) { + clear: none; } + + .small-block-grid-12 > li:nth-of-type(12n+1) { + clear: none; } + + .large-block-grid-1 > li { + width: 100%; + padding: 0 0.625em 1.25em; } + .large-block-grid-1 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-1 > li:nth-of-type(1n+1) { + clear: both; } + + .large-block-grid-2 > li { + width: 50%; + padding: 0 0.625em 1.25em; } + .large-block-grid-2 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-2 > li:nth-of-type(2n+1) { + clear: both; } + + .large-block-grid-3 > li { + width: 33.33333%; + padding: 0 0.625em 1.25em; } + .large-block-grid-3 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-3 > li:nth-of-type(3n+1) { + clear: both; } + + .large-block-grid-4 > li { + width: 25%; + padding: 0 0.625em 1.25em; } + .large-block-grid-4 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-4 > li:nth-of-type(4n+1) { + clear: both; } + + .large-block-grid-5 > li { + width: 20%; + padding: 0 0.625em 1.25em; } + .large-block-grid-5 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-5 > li:nth-of-type(5n+1) { + clear: both; } + + .large-block-grid-6 > li { + width: 16.66667%; + padding: 0 0.625em 1.25em; } + .large-block-grid-6 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-6 > li:nth-of-type(6n+1) { + clear: both; } + + .large-block-grid-7 > li { + width: 14.28571%; + padding: 0 0.625em 1.25em; } + .large-block-grid-7 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-7 > li:nth-of-type(7n+1) { + clear: both; } + + .large-block-grid-8 > li { + width: 12.5%; + padding: 0 0.625em 1.25em; } + .large-block-grid-8 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-8 > li:nth-of-type(8n+1) { + clear: both; } + + .large-block-grid-9 > li { + width: 11.11111%; + padding: 0 0.625em 1.25em; } + .large-block-grid-9 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-9 > li:nth-of-type(9n+1) { + clear: both; } + + .large-block-grid-10 > li { + width: 10%; + padding: 0 0.625em 1.25em; } + .large-block-grid-10 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-10 > li:nth-of-type(10n+1) { + clear: both; } + + .large-block-grid-11 > li { + width: 9.09091%; + padding: 0 0.625em 1.25em; } + .large-block-grid-11 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-11 > li:nth-of-type(11n+1) { + clear: both; } + + .large-block-grid-12 > li { + width: 8.33333%; + padding: 0 0.625em 1.25em; } + .large-block-grid-12 > li:nth-of-type(n) { + clear: none; } + .large-block-grid-12 > li:nth-of-type(12n+1) { + clear: both; } } +p.lead { + font-size: 1.21875em; + line-height: 1.6; } + +.subheader { + line-height: 1.4; + color: #8fa2cf; + font-weight: 300; + margin-top: 0.2em; + margin-bottom: 0.5em; } + +/* Typography resets */ +div, +dl, +dt, +dd, +ul, +ol, +li, +h1, +h2, +h3, +h4, +h5, +h6, +pre, +form, +p, +blockquote, +th, +td { + margin: 0; + padding: 0; + direction: ltr; } + +/* Default Link Styles */ +a { + color: #2ba6cb; + text-decoration: none; + line-height: inherit; } + a:hover, a:focus { + color: #2795b6; } + a img { + border: none; } + +/* Default paragraph styles */ +p { + font-family: inherit; + font-weight: normal; + font-size: 1em; + line-height: 1.6; + margin-bottom: 1.25em; + text-rendering: optimizeLegibility; } + p aside { + font-size: 0.875em; + line-height: 1.35; + font-style: italic; } + +/* Default header styles */ +h1, h2, h3, h4, h5, h6 { + font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; + font-weight: bold; + font-style: normal; + color: #3b528a; + text-rendering: optimizeLegibility; + margin-top: 0.2em; + margin-bottom: 0.5em; + line-height: 1.2125em; } + h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { + font-size: 60%; + color: #8fa2cf; + line-height: 0; } + +h1 { + font-size: 2.125em; } + +h2 { + font-size: 1.6875em; } + +h3 { + font-size: 1.375em; } + +h4 { + font-size: 1.125em; } + +h5 { + font-size: 1.125em; } + +h6 { + font-size: 1em; } + +hr { + border: solid #dddddd; + border-width: 1px 0 0; + clear: both; + margin: 1.25em 0 1.1875em; + height: 0; } + +/* Helpful Typography Defaults */ +em, +i { + font-style: italic; + line-height: inherit; } + +strong, +b { + font-weight: bold; + line-height: inherit; } + +small { + font-size: 60%; + line-height: inherit; } + +code { + font-family: Consolas, "Liberation Mono", Courier, monospace; + font-weight: bold; + color: #7f0a0c; } + +/* Lists */ +ul, +ol, +dl { + font-size: 1em; + line-height: 1.6; + margin-bottom: 1.25em; + list-style-position: outside; + font-family: inherit; } + +ul, ol { + margin-left: 0; } + +/* Unordered Lists */ +ul li ul, +ul li ol { + margin-left: 1.25em; + margin-bottom: 0; + font-size: 1em; + /* Override nested font-size change */ } +ul.square li ul, ul.circle li ul, ul.disc li ul { + list-style: inherit; } +ul.square { + list-style-type: square; } +ul.circle { + list-style-type: circle; } +ul.disc { + list-style-type: disc; } +ul.no-bullet { + list-style: none; } + +/* Ordered Lists */ +ol li ul, +ol li ol { + margin-left: 1.25em; + margin-bottom: 0; } + +/* Definition Lists */ +dl dt { + margin-bottom: 0.3em; + font-weight: bold; } +dl dd { + margin-bottom: 0.75em; } + +/* Abbreviations */ +abbr, +acronym { + text-transform: uppercase; + font-size: 90%; + color: #1c1b39; + border-bottom: 1px dotted #dddddd; + cursor: help; } + +abbr { + text-transform: none; } + +/* Blockquotes */ +blockquote { + margin: 0 0 1.25em; + padding: 0.5625em 1.25em 0 1.1875em; + border-left: 1px solid #dddddd; } + blockquote cite { + display: block; + font-size: 0.8125em; + color: #6b84c0; } + blockquote cite:before { + content: "\2014 \0020"; } + blockquote cite a, + blockquote cite a:visited { + color: #6b84c0; } + +blockquote, +blockquote p { + line-height: 1.6; + color: #8fa2cf; } + +/* Microformats */ +.vcard { + display: inline-block; + margin: 0 0 1.25em 0; + border: 1px solid #dddddd; + padding: 0.625em 0.75em; } + .vcard li { + margin: 0; + display: block; } + .vcard .fn { + font-weight: bold; + font-size: 0.9375em; } + +.vevent .summary { + font-weight: bold; } +.vevent abbr { + cursor: default; + text-decoration: none; + font-weight: bold; + border: none; + padding: 0 0.0625em; } + +@media only screen and (min-width: 768px) { + h1, h2, h3, h4, h5, h6 { + line-height: 1.4; } + + h1 { + font-size: 2.75em; } + + h2 { + font-size: 2.3125em; } + + h3 { + font-size: 1.6875em; } + + h4 { + font-size: 1.4375em; } } +/* + * Print styles. + * + * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ + * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) +*/ +.print-only { + display: none !important; } + +@media print { + * { + background: transparent !important; + color: black !important; + /* Black prints faster: h5bp.com/s */ + box-shadow: none !important; + text-shadow: none !important; } + + a, + a:visited { + text-decoration: underline; } + + a[href]:after { + content: " (" attr(href) ")"; } + + abbr[title]:after { + content: " (" attr(title) ")"; } + + .ir a:after, + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; } + + pre, + blockquote { + border: 1px solid #999999; + page-break-inside: avoid; } + + thead { + display: table-header-group; + /* h5bp.com/t */ } + + tr, + img { + page-break-inside: avoid; } + + img { + max-width: 100% !important; } + + @page { + margin: 0.5cm; } + + p, + h2, + h3 { + orphans: 3; + widows: 3; } + + h2, + h3 { + page-break-after: avoid; } + + .hide-on-print { + display: none !important; } + + .print-only { + display: block !important; } + + .hide-for-print { + display: none !important; } + + .show-for-print { + display: inherit !important; } } +button, .button { + border-style: solid; + border-width: 1px; + cursor: pointer; + font-family: inherit; + font-weight: bold; + line-height: 1; + margin: 0 0 1.25em; + position: relative; + text-decoration: none; + text-align: center; + display: inline-block; + padding-top: 0.75em; + padding-right: 1.5em; + padding-bottom: 0.8125em; + padding-left: 1.5em; + font-size: 1em; + background-color: #2ba6cb; + border-color: #2284a1; + color: white; } + button:hover, button:focus, .button:hover, .button:focus { + background-color: #2284a1; } + button:hover, button:focus, .button:hover, .button:focus { + color: white; } + button.secondary, .button.secondary { + background-color: #e9e9e9; + border-color: #d0d0d0; + color: #333333; } + button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { + background-color: #d0d0d0; } + button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { + color: #333333; } + button.success, .button.success { + background-color: #5da423; + border-color: #457a1a; + color: white; } + button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { + background-color: #457a1a; } + button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { + color: white; } + button.alert, .button.alert { + background-color: #c60f13; + border-color: #970b0e; + color: white; } + button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { + background-color: #970b0e; } + button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { + color: white; } + button.large, .button.large { + padding-top: 1em; + padding-right: 2em; + padding-bottom: 1.0625em; + padding-left: 2em; + font-size: 1.25em; } + button.small, .button.small { + padding-top: 0.5625em; + padding-right: 1.125em; + padding-bottom: 0.625em; + padding-left: 1.125em; + font-size: 0.8125em; } + button.tiny, .button.tiny { + padding-top: 0.4375em; + padding-right: 0.875em; + padding-bottom: 0.5em; + padding-left: 0.875em; + font-size: 0.6875em; } + button.expand, .button.expand { + padding-right: 0px; + padding-left: 0px; + width: 100%; } + button.left-align, .button.left-align { + text-align: left; + text-indent: 0.75em; } + button.right-align, .button.right-align { + text-align: right; + padding-right: 0.75em; } + button.disabled, button[disabled], .button.disabled, .button[disabled] { + background-color: #2ba6cb; + border-color: #2284a1; + color: white; + cursor: default; + opacity: 0.6; + -webkit-box-shadow: none; + box-shadow: none; } + button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { + background-color: #2284a1; } + button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { + color: white; } + button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { + background-color: #2ba6cb; } + button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { + background-color: #e9e9e9; + border-color: #d0d0d0; + color: #333333; + cursor: default; + opacity: 0.6; + -webkit-box-shadow: none; + box-shadow: none; } + button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { + background-color: #d0d0d0; } + button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { + color: #333333; } + button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { + background-color: #e9e9e9; } + button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success { + background-color: #5da423; + border-color: #457a1a; + color: white; + cursor: default; + opacity: 0.6; + -webkit-box-shadow: none; + box-shadow: none; } + button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { + background-color: #457a1a; } + button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { + color: white; } + button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { + background-color: #5da423; } + button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert { + background-color: #c60f13; + border-color: #970b0e; + color: white; + cursor: default; + opacity: 0.6; + -webkit-box-shadow: none; + box-shadow: none; } + button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { + background-color: #970b0e; } + button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { + color: white; } + button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { + background-color: #c60f13; } + +button, .button { + padding-top: 0.8125em; + padding-bottom: 0.75em; + -webkit-appearance: none; } + button.tiny, .button.tiny { + padding-top: 0.5em; + padding-bottom: 0.4375em; + -webkit-appearance: none; } + button.small, .button.small { + padding-top: 0.625em; + padding-bottom: 0.5625em; + -webkit-appearance: none; } + button.large, .button.large { + padding-top: 1.03125em; + padding-bottom: 1.03125em; + -webkit-appearance: none; } + +@media only screen { + button, .button { + -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; + -webkit-transition: background-color 300ms ease-out; + -moz-transition: background-color 300ms ease-out; + transition: background-color 300ms ease-out; } + button:active, .button:active { + -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) inset; } + button.radius, .button.radius { + -webkit-border-radius: 3px; + border-radius: 3px; } + button.round, .button.round { + -webkit-border-radius: 1000px; + border-radius: 1000px; } } +@media only screen and (min-width: 768px) { + button, .button { + display: inline-block; } } +/* Standard Forms */ +form { + margin: 0 0 1em; } + +/* Using forms within rows, we need to set some defaults */ +form .row .row { + margin: 0 -0.5em; } + form .row .row .column, + form .row .row .columns { + padding: 0 0.5em; } + form .row .row.collapse { + margin: 0; } + form .row .row.collapse .column, + form .row .row.collapse .columns { + padding: 0; } +form .row input.column, +form .row input.columns, +form .row textarea.column, +form .row textarea.columns { + padding-left: 0.5em; } + +/* Label Styles */ +label { + font-size: 0.875em; + color: #4d4d4d; + cursor: pointer; + display: block; + font-weight: 500; + margin-bottom: 0.1875em; } + label.right { + float: none; + text-align: right; } + label.inline { + margin: 0 0 1em 0; + padding: 0.625em 0; } + +/* Attach elements to the beginning or end of an input */ +.prefix, +.postfix { + display: block; + position: relative; + z-index: 2; + text-align: center; + width: 100%; + padding-top: 0; + padding-bottom: 0; + border-style: solid; + border-width: 1px; + overflow: hidden; + font-size: 0.875em; + height: 2.3125em; + line-height: 2.3125em; } + +/* Adjust padding, alignment and radius if pre/post element is a button */ +.postfix.button { + padding-left: 0; + padding-right: 0; + padding-top: 0; + padding-bottom: 0; + text-align: center; + line-height: 2.125em; } + +.prefix.button { + padding-left: 0; + padding-right: 0; + padding-top: 0; + padding-bottom: 0; + text-align: center; + line-height: 2.125em; } + +.prefix.button.radius { + -webkit-border-radius: 0; + border-radius: 0; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; + -webkit-border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; } + +.postfix.button.radius { + -webkit-border-radius: 0; + border-radius: 0; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + +.prefix.button.round { + -webkit-border-radius: 0; + border-radius: 0; + -moz-border-radius-bottomleft: 1000px; + -moz-border-radius-topleft: 1000px; + -webkit-border-bottom-left-radius: 1000px; + -webkit-border-top-left-radius: 1000px; + border-bottom-left-radius: 1000px; + border-top-left-radius: 1000px; } + +.postfix.button.round { + -webkit-border-radius: 0; + border-radius: 0; + -moz-border-radius-topright: 1000px; + -moz-border-radius-bottomright: 1000px; + -webkit-border-top-right-radius: 1000px; + -webkit-border-bottom-right-radius: 1000px; + border-top-right-radius: 1000px; + border-bottom-right-radius: 1000px; } + +/* Separate prefix and postfix styles when on span so buttons keep their own */ +span.prefix { + background: #f2f2f2; + border-color: #d9d9d9; + border-right: none; + color: #333333; } + span.prefix.radius { + -webkit-border-radius: 0; + border-radius: 0; + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; + -webkit-border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; } + +span.postfix { + background: #f2f2f2; + border-color: #cccccc; + border-left: none; + color: #333333; } + span.postfix.radius { + -webkit-border-radius: 0; + border-radius: 0; + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + +/* Input groups will automatically style first and last elements of the group */ +.input-group.radius > *:first-child, .input-group.radius > *:first-child * { + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; + -webkit-border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; } +.input-group.radius > *:last-child, .input-group.radius > *:last-child * { + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } +.input-group.round > *:first-child, .input-group.round > *:first-child * { + -moz-border-radius-bottomleft: 1000px; + -moz-border-radius-topleft: 1000px; + -webkit-border-bottom-left-radius: 1000px; + -webkit-border-top-left-radius: 1000px; + border-bottom-left-radius: 1000px; + border-top-left-radius: 1000px; } +.input-group.round > *:last-child, .input-group.round > *:last-child * { + -moz-border-radius-topright: 1000px; + -moz-border-radius-bottomright: 1000px; + -webkit-border-top-right-radius: 1000px; + -webkit-border-bottom-right-radius: 1000px; + border-top-right-radius: 1000px; + border-bottom-right-radius: 1000px; } + +/* We use this to get basic styling on all basic form elements */ +input[type="text"], +input[type="password"], +input[type="date"], +input[type="datetime"], +input[type="datetime-local"], +input[type="month"], +input[type="week"], +input[type="email"], +input[type="number"], +input[type="search"], +input[type="tel"], +input[type="time"], +input[type="url"], +textarea { + background-color: white; + font-family: inherit; + border: 1px solid #cccccc; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + color: rgba(0, 0, 0, 0.75); + display: block; + font-size: 0.875em; + margin: 0 0 1em 0; + padding: 0.5em; + height: 2.3125em; + width: 100%; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out; + -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out; + transition: box-shadow 0.45s, border-color 0.45s ease-in-out; } + input[type="text"]:focus, + input[type="password"]:focus, + input[type="date"]:focus, + input[type="datetime"]:focus, + input[type="datetime-local"]:focus, + input[type="month"]:focus, + input[type="week"]:focus, + input[type="email"]:focus, + input[type="number"]:focus, + input[type="search"]:focus, + input[type="tel"]:focus, + input[type="time"]:focus, + input[type="url"]:focus, + textarea:focus { + -webkit-box-shadow: 0 0 5px #999999; + -moz-box-shadow: 0 0 5px #999999; + box-shadow: 0 0 5px #999999; + border-color: #999999; } + input[type="text"]:focus, + input[type="password"]:focus, + input[type="date"]:focus, + input[type="datetime"]:focus, + input[type="datetime-local"]:focus, + input[type="month"]:focus, + input[type="week"]:focus, + input[type="email"]:focus, + input[type="number"]:focus, + input[type="search"]:focus, + input[type="tel"]:focus, + input[type="time"]:focus, + input[type="url"]:focus, + textarea:focus { + background: #fafafa; + border-color: #999999; + outline: none; } + input[type="text"][disabled], + input[type="password"][disabled], + input[type="date"][disabled], + input[type="datetime"][disabled], + input[type="datetime-local"][disabled], + input[type="month"][disabled], + input[type="week"][disabled], + input[type="email"][disabled], + input[type="number"][disabled], + input[type="search"][disabled], + input[type="tel"][disabled], + input[type="time"][disabled], + input[type="url"][disabled], + textarea[disabled] { + background-color: #dddddd; } + +/* Adjust margin for form elements below */ +input[type="file"], +input[type="checkbox"], +input[type="radio"], +select { + margin: 0 0 1em 0; } + +/* Normalize file input width */ +input[type="file"] { + width: 100%; } + +/* We add basic fieldset styling */ +fieldset { + border: solid 1px #dddddd; + padding: 1.25em; + margin: 1.125em 0; } + fieldset legend { + font-weight: bold; + background: white; + padding: 0 0.1875em; + margin: 0; + margin-left: -0.1875em; } + +/* Error Handling */ +.error input, +input.error, +.error textarea, +textarea.error { + border-color: #c60f13; + background-color: rgba(198, 15, 19, 0.1); } + .error input:focus, + input.error:focus, + .error textarea:focus, + textarea.error:focus { + background: #fafafa; + border-color: #999999; } + +.error label, +label.error { + color: #c60f13; } + +.error small, +small.error { + display: block; + padding: 0.375em 0.25em; + margin-top: -1.3125em; + margin-bottom: 1em; + font-size: 0.75em; + font-weight: bold; + background: #c60f13; + color: white; } + +/* Custom Checkbox and Radio Inputs */ +form.custom .hidden-field { + margin-left: -99999px; + position: absolute; + visibility: hidden; } +form.custom .custom { + display: inline-block; + width: 16px; + height: 16px; + position: relative; + vertical-align: middle; + border: solid 1px #cccccc; + background: white; } + form.custom .custom.checkbox { + -webkit-border-radius: 0px; + border-radius: 0px; + padding: -1px; } + form.custom .custom.radio { + -webkit-border-radius: 1000px; + border-radius: 1000px; + padding: 3px; } + form.custom .custom.checkbox:before { + content: ""; + display: block; + font-size: 16px; + color: white; } + form.custom .custom.radio.checked:before { + content: ""; + display: block; + width: 8px; + height: 8px; + -webkit-border-radius: 1000px; + border-radius: 1000px; + background: #222222; + position: relative; } + form.custom .custom.checkbox.checked:before { + content: "\00d7"; + color: #222222; + position: absolute; + top: -50%; + left: 50%; + margin-top: 4px; + margin-left: -5px; } + +/* Custom Select Options and Dropdowns */ +form.custom { + /* Custom input, disabled */ } + form.custom .custom.dropdown { + display: block; + position: relative; + top: 0; + height: 2.3125em; + margin-bottom: 1.25em; + margin-top: 0px; + padding: 0px; + width: 100%; + background: white; + background: -moz-linear-gradient(top, white 0%, #f3f3f3 100%); + background: -webkit-linear-gradient(top, white 0%, #f3f3f3 100%); + -webkit-box-shadow: none; + background: linear-gradient(to bottom, white 0%, #f3f3f3 100%); + box-shadow: none; + font-size: 0.875em; + vertical-align: top; } + form.custom .custom.dropdown ul { + overflow-y: auto; + max-height: 200px; } + form.custom .custom.dropdown .current { + cursor: default; + white-space: nowrap; + line-height: 2.25em; + color: rgba(0, 0, 0, 0.75); + text-decoration: none; + overflow: hidden; + display: block; + margin-left: 0.5em; + margin-right: 2.3125em; } + form.custom .custom.dropdown .selector { + cursor: default; + position: absolute; + width: 2.5em; + height: 2.3125em; + display: block; + right: 0; + top: 0; } + form.custom .custom.dropdown .selector:after { + content: ""; + display: block; + content: ""; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #aaaaaa transparent transparent transparent; + border-top-style: solid; + position: absolute; + left: 0.9375em; + top: 50%; + margin-top: -3px; } + form.custom .custom.dropdown:hover a.selector:after, form.custom .custom.dropdown.open a.selector:after { + content: ""; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: #222222 transparent transparent transparent; + border-top-style: solid; } + form.custom .custom.dropdown .disabled { + color: #888888; } + form.custom .custom.dropdown .disabled:hover { + background: transparent; + color: #888888; } + form.custom .custom.dropdown .disabled:hover:after { + display: none; } + form.custom .custom.dropdown.open ul { + display: block; + z-index: 10; + min-width: 100%; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; } + form.custom .custom.dropdown.small { + max-width: 134px; } + form.custom .custom.dropdown.medium { + max-width: 254px; } + form.custom .custom.dropdown.large { + max-width: 434px; } + form.custom .custom.dropdown.expand { + width: 100% !important; } + form.custom .custom.dropdown.open.small ul { + min-width: 134px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } + form.custom .custom.dropdown.open.medium ul { + min-width: 254px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } + form.custom .custom.dropdown.open.large ul { + min-width: 434px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } + form.custom .custom.dropdown ul { + position: absolute; + width: auto; + display: none; + margin: 0; + left: -1px; + top: auto; + -webkit-box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1); + margin: 0; + padding: 0; + background: white; + border: solid 1px #cccccc; + font-size: 16px; } + form.custom .custom.dropdown ul li { + color: #555555; + font-size: 0.875em; + cursor: default; + padding-top: 0.25em; + padding-bottom: 0.25em; + padding-left: 0.375em; + padding-right: 2.375em; + min-height: 1.5em; + line-height: 1.5em; + margin: 0; + white-space: nowrap; + list-style: none; } + form.custom .custom.dropdown ul li.selected { + background: #eeeeee; + color: black; } + form.custom .custom.dropdown ul li:hover { + background-color: #e4e4e4; + color: black; } + form.custom .custom.dropdown ul li.selected:hover { + background: #eeeeee; + cursor: default; + color: black; } + form.custom .custom.dropdown ul.show { + display: block; } + form.custom .custom.disabled { + background: #dddddd; } + +/* Button Groups */ +.button-group { + list-style: none; + margin: 0; + *zoom: 1; } + .button-group:before, .button-group:after { + content: " "; + display: table; } + .button-group:after { + clear: both; } + .button-group > * { + margin: 0 0 0 -1px; + float: left; } + .button-group > *:first-child { + margin-left: 0; } + .button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button { + -moz-border-radius-bottomleft: 3px; + -moz-border-radius-topleft: 3px; + -webkit-border-bottom-left-radius: 3px; + -webkit-border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; } + .button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button { + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + .button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button { + -moz-border-radius-bottomleft: 1000px; + -moz-border-radius-topleft: 1000px; + -webkit-border-bottom-left-radius: 1000px; + -webkit-border-top-left-radius: 1000px; + border-bottom-left-radius: 1000px; + border-top-left-radius: 1000px; } + .button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button { + -moz-border-radius-topright: 1000px; + -moz-border-radius-bottomright: 1000px; + -webkit-border-top-right-radius: 1000px; + -webkit-border-bottom-right-radius: 1000px; + border-top-right-radius: 1000px; + border-bottom-right-radius: 1000px; } + .button-group.even-2 li { + width: 50%; } + .button-group.even-2 li button, .button-group.even-2 li .button { + width: 100%; } + .button-group.even-3 li { + width: 33.33333%; } + .button-group.even-3 li button, .button-group.even-3 li .button { + width: 100%; } + .button-group.even-4 li { + width: 25%; } + .button-group.even-4 li button, .button-group.even-4 li .button { + width: 100%; } + .button-group.even-5 li { + width: 20%; } + .button-group.even-5 li button, .button-group.even-5 li .button { + width: 100%; } + .button-group.even-6 li { + width: 16.66667%; } + .button-group.even-6 li button, .button-group.even-6 li .button { + width: 100%; } + .button-group.even-7 li { + width: 14.28571%; } + .button-group.even-7 li button, .button-group.even-7 li .button { + width: 100%; } + .button-group.even-8 li { + width: 12.5%; } + .button-group.even-8 li button, .button-group.even-8 li .button { + width: 100%; } + +.button-bar { + *zoom: 1; } + .button-bar:before, .button-bar:after { + content: " "; + display: table; } + .button-bar:after { + clear: both; } + .button-bar .button-group { + float: left; + margin-right: 0.625em; } + .button-bar .button-group div { + overflow: hidden; } + +/* Dropdown Button */ +.dropdown.button { + position: relative; + padding-right: 3.1875em; } + .dropdown.button:before { + position: absolute; + content: ""; + width: 0; + height: 0; + display: block; + border-style: solid; + border-color: white transparent transparent transparent; + top: 50%; } + .dropdown.button:before { + border-width: 0.5625em; + right: 1.5em; + margin-top: -0.25em; } + .dropdown.button:before { + border-color: white transparent transparent transparent; } + .dropdown.button.tiny { + padding-right: 2.1875em; } + .dropdown.button.tiny:before { + border-width: 0.4375em; + right: 0.875em; + margin-top: -0.15625em; } + .dropdown.button.tiny:before { + border-color: white transparent transparent transparent; } + .dropdown.button.small { + padding-right: 2.8125em; } + .dropdown.button.small:before { + border-width: 0.5625em; + right: 1.125em; + margin-top: -0.21875em; } + .dropdown.button.small:before { + border-color: white transparent transparent transparent; } + .dropdown.button.large { + padding-right: 4em; } + .dropdown.button.large:before { + border-width: 0.625em; + right: 1.75em; + margin-top: -0.3125em; } + .dropdown.button.large:before { + border-color: white transparent transparent transparent; } + .dropdown.button.secondary:before { + border-color: #333333 transparent transparent transparent; } + +/* Split Buttons */ +.split.button { + position: relative; + padding-right: 4.8em; } + .split.button span { + display: block; + height: 100%; + position: absolute; + right: 0; + top: 0; + border-left: solid 1px; } + .split.button span:before { + position: absolute; + content: ""; + width: 0; + height: 0; + display: block; + border-style: inset; + left: 50%; } + .split.button span:active { + background-color: rgba(0, 0, 0, 0.1); } + .split.button span { + border-left-color: #1e728c; } + .split.button span { + width: 3em; } + .split.button span:before { + border-top-style: solid; + border-width: 0.5625em; + top: 1.125em; + margin-left: -0.5625em; } + .split.button span:before { + border-color: white transparent transparent transparent; } + .split.button.secondary span { + border-left-color: #c3c3c3; } + .split.button.secondary span:before { + border-color: white transparent transparent transparent; } + .split.button.alert span { + border-left-color: #7f0a0c; } + .split.button.success span { + border-left-color: #396516; } + .split.button.tiny { + padding-right: 3.9375em; } + .split.button.tiny span { + width: 2.84375em; } + .split.button.tiny span:before { + border-top-style: solid; + border-width: 0.4375em; + top: 0.875em; + margin-left: -0.3125em; } + .split.button.small { + padding-right: 3.9375em; } + .split.button.small span { + width: 2.8125em; } + .split.button.small span:before { + border-top-style: solid; + border-width: 0.5625em; + top: 0.84375em; + margin-left: -0.5625em; } + .split.button.large { + padding-right: 6em; } + .split.button.large span { + width: 3.75em; } + .split.button.large span:before { + border-top-style: solid; + border-width: 0.625em; + top: 1.3125em; + margin-left: -0.5625em; } + .split.button.expand { + padding-left: 2em; } + .split.button.secondary span:before { + border-color: #333333 transparent transparent transparent; } + .split.button.radius span { + -moz-border-radius-topright: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-top-right-radius: 3px; + -webkit-border-bottom-right-radius: 3px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; } + .split.button.round span { + -moz-border-radius-topright: 1000px; + -moz-border-radius-bottomright: 1000px; + -webkit-border-top-right-radius: 1000px; + -webkit-border-bottom-right-radius: 1000px; + border-top-right-radius: 1000px; + border-bottom-right-radius: 1000px; } + +/* Flex Video */ +.flex-video { + position: relative; + padding-top: 1.5625em; + padding-bottom: 67.5%; + height: 0; + margin-bottom: 1em; + overflow: hidden; } + .flex-video.widescreen { + padding-bottom: 57.25%; } + .flex-video.vimeo { + padding-top: 0; } + .flex-video iframe, + .flex-video object, + .flex-video embed, + .flex-video video { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } + +/* Sections */ +.section-container, .section-container.auto { + width: 100%; + display: block; + margin-bottom: 1.25em; + border: 1px solid #cccccc; + border-top: none; } + .section-container > section, .section-container > .section, .section-container.auto > section, .section-container.auto > .section { + position: relative; } + .section-container > section > .title, .section-container > .section > .title, .section-container.auto > section > .title, .section-container.auto > .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .section-container > section > .title a, .section-container > .section > .title a, .section-container.auto > section > .title a, .section-container.auto > .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .section-container > section > .title:hover, .section-container > .section > .title:hover, .section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover { + background-color: #e2e2e2; } + .section-container > section .content, .section-container > .section .content, .section-container.auto > section .content, .section-container.auto > .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .section-container > section .content > *:last-child, .section-container > .section .content > *:last-child, .section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child { + margin-bottom: 0; } + .section-container > section .content > *:first-child, .section-container > .section .content > *:first-child, .section-container.auto > section .content > *:first-child, .section-container.auto > .section .content > *:first-child { + padding-top: 0; } + .section-container > section .content > *:last-child:not(.flex-video), .section-container > .section .content > *:last-child:not(.flex-video), .section-container.auto > section .content > *:last-child:not(.flex-video), .section-container.auto > .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .section-container > section.active > .content, .section-container > .section.active > .content, .section-container.auto > section.active > .content, .section-container.auto > .section.active > .content { + display: block; } + .section-container > section.active > .title, .section-container > .section.active > .title, .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title { + background: #d5d5d5; } + .section-container > section.active > .title a, .section-container > .section.active > .title a, .section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a { + color: #333333; } + .section-container > section > .title, .section-container > .section > .title, .section-container.auto > section > .title, .section-container.auto > .section > .title { + top: 0; + width: 100%; + margin: 0; + border-top: solid 1px #cccccc; } + .section-container > section > .title a, .section-container > .section > .title a, .section-container.auto > section > .title a, .section-container.auto > .section > .title a { + width: 100%; } + +.section-container.tabs { + border: 0; + position: relative; } + .section-container.tabs > section, .section-container.tabs > .section { + border: 0; + position: static; } + .section-container.tabs > section > .title, .section-container.tabs > .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .section-container.tabs > section > .title a, .section-container.tabs > .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .section-container.tabs > section > .title:hover, .section-container.tabs > .section > .title:hover { + background-color: #e2e2e2; } + .section-container.tabs > section .content, .section-container.tabs > .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .section-container.tabs > section .content > *:last-child, .section-container.tabs > .section .content > *:last-child { + margin-bottom: 0; } + .section-container.tabs > section .content > *:first-child, .section-container.tabs > .section .content > *:first-child { + padding-top: 0; } + .section-container.tabs > section .content > *:last-child:not(.flex-video), .section-container.tabs > .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .section-container.tabs > section.active > .content, .section-container.tabs > .section.active > .content { + display: block; } + .section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title { + background: white; } + .section-container.tabs > section.active > .title a, .section-container.tabs > .section.active > .title a { + color: #333333; } + .section-container.tabs > section > .title, .section-container.tabs > .section > .title { + width: auto; + border: solid 1px #cccccc; + border-right: 0; + border-bottom: 0; + position: absolute; + top: 0; + z-index: 1; } + .section-container.tabs > section > .title a, .section-container.tabs > .section > .title a { + width: 100%; } + .section-container.tabs > section:last-child .title, .section-container.tabs > .section:last-child .title { + border-right: solid 1px #cccccc; } + .section-container.tabs > section .content, .section-container.tabs > .section .content { + border: solid 1px #cccccc; + position: absolute; + z-index: 10; + display: none; + top: -1px; } + .section-container.tabs > section.active > .title, .section-container.tabs > .section.active > .title { + z-index: 11; + border-bottom: 0; + background-color: white; } + .section-container.tabs > section.active > .content, .section-container.tabs > .section.active > .content { + position: relative; } + +@media only screen and (min-width: 768px) { + .section-container.auto { + border: 0; + position: relative; } + .section-container.auto > section, .section-container.auto > .section { + border: 0; + position: static; } + .section-container.auto > section > .title, .section-container.auto > .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .section-container.auto > section > .title a, .section-container.auto > .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .section-container.auto > section > .title:hover, .section-container.auto > .section > .title:hover { + background-color: #e2e2e2; } + .section-container.auto > section .content, .section-container.auto > .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .section-container.auto > section .content > *:last-child, .section-container.auto > .section .content > *:last-child { + margin-bottom: 0; } + .section-container.auto > section .content > *:first-child, .section-container.auto > .section .content > *:first-child { + padding-top: 0; } + .section-container.auto > section .content > *:last-child:not(.flex-video), .section-container.auto > .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .section-container.auto > section.active > .content, .section-container.auto > .section.active > .content { + display: block; } + .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title { + background: white; } + .section-container.auto > section.active > .title a, .section-container.auto > .section.active > .title a { + color: #333333; } + .section-container.auto > section > .title, .section-container.auto > .section > .title { + width: auto; + border: solid 1px #cccccc; + border-right: 0; + border-bottom: 0; + position: absolute; + top: 0; + z-index: 1; } + .section-container.auto > section > .title a, .section-container.auto > .section > .title a { + width: 100%; } + .section-container.auto > section:last-child .title, .section-container.auto > .section:last-child .title { + border-right: solid 1px #cccccc; } + .section-container.auto > section .content, .section-container.auto > .section .content { + border: solid 1px #cccccc; + position: absolute; + z-index: 10; + display: none; + top: -1px; } + .section-container.auto > section.active > .title, .section-container.auto > .section.active > .title { + z-index: 11; + border-bottom: 0; + background-color: white; } + .section-container.auto > section.active > .content, .section-container.auto > .section.active > .content { + position: relative; } + + .section-container.accordion .section { + padding-top: 0 !important; } + + .section-container.vertical-tabs { + border: 1px solid #cccccc; + position: relative; } + .section-container.vertical-tabs section, + .section-container.vertical-tabs .section { + padding-top: 0 !important; + border: 0; + position: static; } + .section-container.vertical-tabs section > .title, + .section-container.vertical-tabs .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .section-container.vertical-tabs section > .title a, + .section-container.vertical-tabs .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .section-container.vertical-tabs section > .title:hover, + .section-container.vertical-tabs .section > .title:hover { + background-color: #e2e2e2; } + .section-container.vertical-tabs section .content, + .section-container.vertical-tabs .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .section-container.vertical-tabs section .content > *:last-child, + .section-container.vertical-tabs .section .content > *:last-child { + margin-bottom: 0; } + .section-container.vertical-tabs section .content > *:first-child, + .section-container.vertical-tabs .section .content > *:first-child { + padding-top: 0; } + .section-container.vertical-tabs section .content > *:last-child:not(.flex-video), + .section-container.vertical-tabs .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .section-container.vertical-tabs section.active > .content, + .section-container.vertical-tabs .section.active > .content { + display: block; } + .section-container.vertical-tabs section.active > .title, + .section-container.vertical-tabs .section.active > .title { + background: #d5d5d5; } + .section-container.vertical-tabs section.active > .title a, + .section-container.vertical-tabs .section.active > .title a { + color: #333333; } + .section-container.vertical-tabs section > .title, + .section-container.vertical-tabs .section > .title { + position: absolute; + border-top: solid 1px #cccccc; + width: 12.5em; } + .section-container.vertical-tabs section:first-child .title, + .section-container.vertical-tabs .section:first-child .title { + border-top: 0; } + .section-container.vertical-tabs section .content, + .section-container.vertical-tabs .section .content { + display: block; + position: relative; + left: 12.5em; + border-left: solid 1px #cccccc; + z-index: 10; } + .section-container.vertical-tabs section.active > .title, + .section-container.vertical-tabs .section.active > .title { + background-color: #d5d5d5; + width: 12.5625em; + border-right: solid 0 transparent; + z-index: 11; } + .section-container.vertical-tabs section.active:last-child .title, + .section-container.vertical-tabs .section.active:last-child .title { + border-bottom: 0; } + + .section-container.vertical-nav { + border: 0; + position: relative; } + .section-container.vertical-nav > section, .section-container.vertical-nav > .section { + padding-top: 0 !important; + position: relative; } + .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .section-container.vertical-nav > section > .title:hover, .section-container.vertical-nav > .section > .title:hover { + background-color: #e2e2e2; } + .section-container.vertical-nav > section .content, .section-container.vertical-nav > .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .section-container.vertical-nav > section .content > *:last-child, .section-container.vertical-nav > .section .content > *:last-child { + margin-bottom: 0; } + .section-container.vertical-nav > section .content > *:first-child, .section-container.vertical-nav > .section .content > *:first-child { + padding-top: 0; } + .section-container.vertical-nav > section .content > *:last-child:not(.flex-video), .section-container.vertical-nav > .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > .content { + display: block; } + .section-container.vertical-nav > section.active > .title, .section-container.vertical-nav > .section.active > .title { + background: #d5d5d5; } + .section-container.vertical-nav > section.active > .title a, .section-container.vertical-nav > .section.active > .title a { + color: #333333; } + .section-container.vertical-nav > section > .title, .section-container.vertical-nav > .section > .title { + border-top: none; + border: solid 1px #cccccc; } + .section-container.vertical-nav > section > .title a, .section-container.vertical-nav > .section > .title a { + display: block; + width: 100%; } + .section-container.vertical-nav > section .content, .section-container.vertical-nav > .section .content { + display: none; } + .section-container.vertical-nav > section:first-child .title, .section-container.vertical-nav > .section:first-child .title { + border-bottom: none; } + .section-container.vertical-nav > section.active > .content, .section-container.vertical-nav > .section.active > .content { + display: block; + position: absolute; + left: 100%; + top: 0px; + z-index: 999; + min-width: 12.5em; + border: solid 1px #cccccc; } + + .section-container.horizontal-nav { + position: relative; + background: #efefef; + border: 1px solid #cccccc; } + .section-container.horizontal-nav > section, .section-container.horizontal-nav > .section { + padding-top: 0; + border: 0; + position: static; } + .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .section-container.horizontal-nav > section > .title:hover, .section-container.horizontal-nav > .section > .title:hover { + background-color: #e2e2e2; } + .section-container.horizontal-nav > section .content, .section-container.horizontal-nav > .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .section-container.horizontal-nav > section .content > *:last-child, .section-container.horizontal-nav > .section .content > *:last-child { + margin-bottom: 0; } + .section-container.horizontal-nav > section .content > *:first-child, .section-container.horizontal-nav > .section .content > *:first-child { + padding-top: 0; } + .section-container.horizontal-nav > section .content > *:last-child:not(.flex-video), .section-container.horizontal-nav > .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > .content { + display: block; } + .section-container.horizontal-nav > section.active > .title, .section-container.horizontal-nav > .section.active > .title { + background: #d5d5d5; } + .section-container.horizontal-nav > section.active > .title a, .section-container.horizontal-nav > .section.active > .title a { + color: #333333; } + .section-container.horizontal-nav > section > .title, .section-container.horizontal-nav > .section > .title { + width: auto; + border: solid 1px #cccccc; + border-left: 0; + top: -1px; + position: absolute; + z-index: 1; } + .section-container.horizontal-nav > section > .title a, .section-container.horizontal-nav > .section > .title a { + width: 100%; } + .section-container.horizontal-nav > section .content, .section-container.horizontal-nav > .section .content { + display: none; } + .section-container.horizontal-nav > section.active > .content, .section-container.horizontal-nav > .section.active > .content { + display: block; + position: absolute; + z-index: 999; + left: 0; + top: -2px; + min-width: 12.5em; + border: solid 1px #cccccc; } } +.no-js .section-container.auto, .no-js .section-container.accordion, .no-js .section-container.tabs, .no-js .section-container.vertical-tabs, .no-js .section-container.vertical-nav, .no-js .section-container.horizontal-nav { + width: 100%; + display: block; + margin-bottom: 1.25em; + border: 1px solid #cccccc; + border-top: none; } + .no-js .section-container.auto > section, .no-js .section-container.auto > .section, .no-js .section-container.accordion > section, .no-js .section-container.accordion > .section, .no-js .section-container.tabs > section, .no-js .section-container.tabs > .section, .no-js .section-container.vertical-tabs > section, .no-js .section-container.vertical-tabs > .section, .no-js .section-container.vertical-nav > section, .no-js .section-container.vertical-nav > .section, .no-js .section-container.horizontal-nav > section, .no-js .section-container.horizontal-nav > .section { + position: relative; } + .no-js .section-container.auto > section > .title, .no-js .section-container.auto > .section > .title, .no-js .section-container.accordion > section > .title, .no-js .section-container.accordion > .section > .title, .no-js .section-container.tabs > section > .title, .no-js .section-container.tabs > .section > .title, .no-js .section-container.vertical-tabs > section > .title, .no-js .section-container.vertical-tabs > .section > .title, .no-js .section-container.vertical-nav > section > .title, .no-js .section-container.vertical-nav > .section > .title, .no-js .section-container.horizontal-nav > section > .title, .no-js .section-container.horizontal-nav > .section > .title { + background-color: #efefef; + cursor: pointer; + margin-bottom: 0; } + .no-js .section-container.auto > section > .title a, .no-js .section-container.auto > .section > .title a, .no-js .section-container.accordion > section > .title a, .no-js .section-container.accordion > .section > .title a, .no-js .section-container.tabs > section > .title a, .no-js .section-container.tabs > .section > .title a, .no-js .section-container.vertical-tabs > section > .title a, .no-js .section-container.vertical-tabs > .section > .title a, .no-js .section-container.vertical-nav > section > .title a, .no-js .section-container.vertical-nav > .section > .title a, .no-js .section-container.horizontal-nav > section > .title a, .no-js .section-container.horizontal-nav > .section > .title a { + padding: 0.9375em; + display: inline-block; + color: #333333; + font-size: 0.875em; + white-space: nowrap; } + .no-js .section-container.auto > section > .title:hover, .no-js .section-container.auto > .section > .title:hover, .no-js .section-container.accordion > section > .title:hover, .no-js .section-container.accordion > .section > .title:hover, .no-js .section-container.tabs > section > .title:hover, .no-js .section-container.tabs > .section > .title:hover, .no-js .section-container.vertical-tabs > section > .title:hover, .no-js .section-container.vertical-tabs > .section > .title:hover, .no-js .section-container.vertical-nav > section > .title:hover, .no-js .section-container.vertical-nav > .section > .title:hover, .no-js .section-container.horizontal-nav > section > .title:hover, .no-js .section-container.horizontal-nav > .section > .title:hover { + background-color: #e2e2e2; } + .no-js .section-container.auto > section .content, .no-js .section-container.auto > .section .content, .no-js .section-container.accordion > section .content, .no-js .section-container.accordion > .section .content, .no-js .section-container.tabs > section .content, .no-js .section-container.tabs > .section .content, .no-js .section-container.vertical-tabs > section .content, .no-js .section-container.vertical-tabs > .section .content, .no-js .section-container.vertical-nav > section .content, .no-js .section-container.vertical-nav > .section .content, .no-js .section-container.horizontal-nav > section .content, .no-js .section-container.horizontal-nav > .section .content { + display: none; + padding: 0.9375em; + background-color: white; } + .no-js .section-container.auto > section .content > *:last-child, .no-js .section-container.auto > .section .content > *:last-child, .no-js .section-container.accordion > section .content > *:last-child, .no-js .section-container.accordion > .section .content > *:last-child, .no-js .section-container.tabs > section .content > *:last-child, .no-js .section-container.tabs > .section .content > *:last-child, .no-js .section-container.vertical-tabs > section .content > *:last-child, .no-js .section-container.vertical-tabs > .section .content > *:last-child, .no-js .section-container.vertical-nav > section .content > *:last-child, .no-js .section-container.vertical-nav > .section .content > *:last-child, .no-js .section-container.horizontal-nav > section .content > *:last-child, .no-js .section-container.horizontal-nav > .section .content > *:last-child { + margin-bottom: 0; } + .no-js .section-container.auto > section .content > *:first-child, .no-js .section-container.auto > .section .content > *:first-child, .no-js .section-container.accordion > section .content > *:first-child, .no-js .section-container.accordion > .section .content > *:first-child, .no-js .section-container.tabs > section .content > *:first-child, .no-js .section-container.tabs > .section .content > *:first-child, .no-js .section-container.vertical-tabs > section .content > *:first-child, .no-js .section-container.vertical-tabs > .section .content > *:first-child, .no-js .section-container.vertical-nav > section .content > *:first-child, .no-js .section-container.vertical-nav > .section .content > *:first-child, .no-js .section-container.horizontal-nav > section .content > *:first-child, .no-js .section-container.horizontal-nav > .section .content > *:first-child { + padding-top: 0; } + .no-js .section-container.auto > section .content > *:last-child:not(.flex-video), .no-js .section-container.auto > .section .content > *:last-child:not(.flex-video), .no-js .section-container.accordion > section .content > *:last-child:not(.flex-video), .no-js .section-container.accordion > .section .content > *:last-child:not(.flex-video), .no-js .section-container.tabs > section .content > *:last-child:not(.flex-video), .no-js .section-container.tabs > .section .content > *:last-child:not(.flex-video), .no-js .section-container.vertical-tabs > section .content > *:last-child:not(.flex-video), .no-js .section-container.vertical-tabs > .section .content > *:last-child:not(.flex-video), .no-js .section-container.vertical-nav > section .content > *:last-child:not(.flex-video), .no-js .section-container.vertical-nav > .section .content > *:last-child:not(.flex-video), .no-js .section-container.horizontal-nav > section .content > *:last-child:not(.flex-video), .no-js .section-container.horizontal-nav > .section .content > *:last-child:not(.flex-video) { + padding-bottom: 0; } + .no-js .section-container.auto > section.active > .content, .no-js .section-container.auto > .section.active > .content, .no-js .section-container.accordion > section.active > .content, .no-js .section-container.accordion > .section.active > .content, .no-js .section-container.tabs > section.active > .content, .no-js .section-container.tabs > .section.active > .content, .no-js .section-container.vertical-tabs > section.active > .content, .no-js .section-container.vertical-tabs > .section.active > .content, .no-js .section-container.vertical-nav > section.active > .content, .no-js .section-container.vertical-nav > .section.active > .content, .no-js .section-container.horizontal-nav > section.active > .content, .no-js .section-container.horizontal-nav > .section.active > .content { + display: block; } + .no-js .section-container.auto > section.active > .title, .no-js .section-container.auto > .section.active > .title, .no-js .section-container.accordion > section.active > .title, .no-js .section-container.accordion > .section.active > .title, .no-js .section-container.tabs > section.active > .title, .no-js .section-container.tabs > .section.active > .title, .no-js .section-container.vertical-tabs > section.active > .title, .no-js .section-container.vertical-tabs > .section.active > .title, .no-js .section-container.vertical-nav > section.active > .title, .no-js .section-container.vertical-nav > .section.active > .title, .no-js .section-container.horizontal-nav > section.active > .title, .no-js .section-container.horizontal-nav > .section.active > .title { + background: #d5d5d5; } + .no-js .section-container.auto > section.active > .title a, .no-js .section-container.auto > .section.active > .title a, .no-js .section-container.accordion > section.active > .title a, .no-js .section-container.accordion > .section.active > .title a, .no-js .section-container.tabs > section.active > .title a, .no-js .section-container.tabs > .section.active > .title a, .no-js .section-container.vertical-tabs > section.active > .title a, .no-js .section-container.vertical-tabs > .section.active > .title a, .no-js .section-container.vertical-nav > section.active > .title a, .no-js .section-container.vertical-nav > .section.active > .title a, .no-js .section-container.horizontal-nav > section.active > .title a, .no-js .section-container.horizontal-nav > .section.active > .title a { + color: #333333; } + .no-js .section-container.auto > section > .title, .no-js .section-container.auto > .section > .title, .no-js .section-container.accordion > section > .title, .no-js .section-container.accordion > .section > .title, .no-js .section-container.tabs > section > .title, .no-js .section-container.tabs > .section > .title, .no-js .section-container.vertical-tabs > section > .title, .no-js .section-container.vertical-tabs > .section > .title, .no-js .section-container.vertical-nav > section > .title, .no-js .section-container.vertical-nav > .section > .title, .no-js .section-container.horizontal-nav > section > .title, .no-js .section-container.horizontal-nav > .section > .title { + top: 0; + width: 100%; + margin: 0; + border-top: solid 1px #cccccc; } + .no-js .section-container.auto > section > .title a, .no-js .section-container.auto > .section > .title a, .no-js .section-container.accordion > section > .title a, .no-js .section-container.accordion > .section > .title a, .no-js .section-container.tabs > section > .title a, .no-js .section-container.tabs > .section > .title a, .no-js .section-container.vertical-tabs > section > .title a, .no-js .section-container.vertical-tabs > .section > .title a, .no-js .section-container.vertical-nav > section > .title a, .no-js .section-container.vertical-nav > .section > .title a, .no-js .section-container.horizontal-nav > section > .title a, .no-js .section-container.horizontal-nav > .section > .title a { + width: 100%; } + .no-js .section-container.auto > section .title, .no-js .section-container.auto > .section .title, .no-js .section-container.accordion > section .title, .no-js .section-container.accordion > .section .title, .no-js .section-container.tabs > section .title, .no-js .section-container.tabs > .section .title, .no-js .section-container.vertical-tabs > section .title, .no-js .section-container.vertical-tabs > .section .title, .no-js .section-container.vertical-nav > section .title, .no-js .section-container.vertical-nav > .section .title, .no-js .section-container.horizontal-nav > section .title, .no-js .section-container.horizontal-nav > .section .title { + position: static; + width: 100%; + border-left: 0; + border-right: 0; } + .no-js .section-container.auto > section .content, .no-js .section-container.auto > .section .content, .no-js .section-container.accordion > section .content, .no-js .section-container.accordion > .section .content, .no-js .section-container.tabs > section .content, .no-js .section-container.tabs > .section .content, .no-js .section-container.vertical-tabs > section .content, .no-js .section-container.vertical-tabs > .section .content, .no-js .section-container.vertical-nav > section .content, .no-js .section-container.vertical-nav > .section .content, .no-js .section-container.horizontal-nav > section .content, .no-js .section-container.horizontal-nav > .section .content { + position: static; + display: block; + width: 100%; + border-left: 0; + border-right: 0; + border-bottom: 0; } + +/* Wrapped around .top-bar to contain to grid width */ +.contain-to-grid { + width: 100%; + background: #111111; } + .contain-to-grid .top-bar { + margin-bottom: 0; } + +.fixed { + width: 100%; + left: 0; + position: fixed; + top: 0; + z-index: 99; } + +.top-bar { + overflow: hidden; + height: 45px; + line-height: 45px; + position: relative; + background: #111111; + margin-bottom: 1.875em; } + .top-bar ul { + margin-bottom: 0; + list-style: none; } + .top-bar .row { + max-width: none; } + .top-bar form, + .top-bar input { + margin-bottom: 0; } + .top-bar input { + height: 2.45em; } + .top-bar .button { + padding-top: .5em; + padding-bottom: .5em; + margin-bottom: 0; } + .top-bar .title-area { + position: relative; + margin: 0; } + .top-bar .name { + height: 45px; + margin: 0; + font-size: 16px; } + .top-bar .name h1 { + line-height: 45px; + font-size: 1.0625em; + margin: 0; } + .top-bar .name h1 a { + font-weight: bold; + color: white; + width: 50%; + display: block; + padding: 0 15px; } + .top-bar .toggle-topbar { + position: absolute; + right: 0; + top: 0; } + .top-bar .toggle-topbar a { + color: white; + text-transform: uppercase; + font-size: 0.8125em; + font-weight: bold; + position: relative; + display: block; + padding: 0 15px; + height: 45px; + line-height: 45px; } + .top-bar .toggle-topbar.menu-icon { + right: 15px; + top: 50%; + margin-top: -16px; + padding-left: 40px; } + .top-bar .toggle-topbar.menu-icon a { + text-indent: -48px; + width: 34px; + height: 34px; + line-height: 33px; + padding: 0; + color: white; } + .top-bar .toggle-topbar.menu-icon a span { + position: absolute; + right: 0; + display: block; + width: 16px; + height: 0; + -webkit-box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; + box-shadow: 0 10px 0 1px white, 0 16px 0 1px white, 0 22px 0 1px white; } + .top-bar.expanded { + height: auto; + background: transparent; } + .top-bar.expanded .title-area { + background: #111111; } + .top-bar.expanded .toggle-topbar a { + color: #888888; } + .top-bar.expanded .toggle-topbar a span { + -webkit-box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; + box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; } + +.top-bar-section { + left: 0; + position: relative; + width: auto; + -webkit-transition: left 300ms ease-out; + -moz-transition: left 300ms ease-out; + transition: left 300ms ease-out; } + .top-bar-section ul { + width: 100%; + height: auto; + display: block; + background: #222222; + font-size: 16px; + margin: 0; } + .top-bar-section .divider, + .top-bar-section [role="separator"] { + border-bottom: solid 1px #2b2b2b; + border-top: solid 1px black; + clear: both; + height: 1px; + width: 100%; } + .top-bar-section ul li > a { + display: block; + width: 100%; + color: white; + padding: 12px 0 12px 0; + padding-left: 15px; + font-size: 0.8125em; + font-weight: bold; + background: #222222; } + .top-bar-section ul li > a.hover { + background: #090909; + color: white; } + .top-bar-section ul li > a.button { + background: #2ba6cb; + font-size: 0.8125em; } + .top-bar-section ul li > a.button.hover { + background: #2284a1; } + .top-bar-section ul li > a.button.secondary { + background: #e9e9e9; } + .top-bar-section ul li > a.button.secondary.hover { + background: #d0d0d0; } + .top-bar-section ul li > a.button.success { + background: #5da423; } + .top-bar-section ul li > a.button.success.hover { + background: #457a1a; } + .top-bar-section ul li > a.button.alert { + background: #c60f13; } + .top-bar-section ul li > a.button.alert.hover { + background: #970b0e; } + .top-bar-section ul li.active > a { + background: #090909; + color: white; } + .top-bar-section .has-form { + padding: 15px; } + .top-bar-section .has-dropdown { + position: relative; } + .top-bar-section .has-dropdown > a:after { + content: ""; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: transparent transparent transparent rgba(255, 255, 255, 0.5); + border-left-style: solid; + margin-right: 15px; + margin-top: -4.5px; + position: absolute; + top: 50%; + right: 0; } + .top-bar-section .has-dropdown.moved { + position: static; } + .top-bar-section .has-dropdown.moved > .dropdown { + visibility: visible; } + .top-bar-section .dropdown { + position: absolute; + left: 100%; + top: 0; + visibility: hidden; + z-index: 99; } + .top-bar-section .dropdown li { + width: 100%; + height: auto; } + .top-bar-section .dropdown li a { + font-weight: normal; + padding: 8px 15px; } + .top-bar-section .dropdown li.title h5 { + margin-bottom: 0; } + .top-bar-section .dropdown li.title h5 a { + color: white; + line-height: 22.5px; + display: block; } + .top-bar-section .dropdown label { + padding: 8px 15px 2px; + margin-bottom: 0; + text-transform: uppercase; + color: #555555; + font-weight: bold; + font-size: 0.625em; } + +.top-bar-js-breakpoint { + width: 58.75em !important; + visibility: hidden; } + +.js-generated { + display: block; } + +@media only screen and (min-width: 58.75em) { + .top-bar { + background: #111111; + *zoom: 1; + overflow: visible; } + .top-bar:before, .top-bar:after { + content: " "; + display: table; } + .top-bar:after { + clear: both; } + .top-bar .toggle-topbar { + display: none; } + .top-bar .title-area { + float: left; } + .top-bar .name h1 a { + width: auto; } + .top-bar input, + .top-bar .button { + line-height: 2em; + font-size: 0.875em; + height: 2em; + padding: 0 10px; + position: relative; + top: 8px; } + .top-bar.expanded { + background: #111111; } + + .contain-to-grid .top-bar { + max-width: 62.5em; + margin: 0 auto; } + + .top-bar-section { + -webkit-transition: none 0 0; + -moz-transition: none 0 0; + transition: none 0 0; + left: 0 !important; } + .top-bar-section ul { + width: auto; + height: auto !important; + display: inline; } + .top-bar-section ul li { + float: left; } + .top-bar-section ul li .js-generated { + display: none; } + .top-bar-section li a:not(.button) { + padding: 0 15px; + line-height: 45px; + background: #111111; } + .top-bar-section li a:not(.button).hover { + background: black; } + .top-bar-section .has-dropdown > a { + padding-right: 35px !important; } + .top-bar-section .has-dropdown > a:after { + content: ""; + display: block; + width: 0; + height: 0; + border: inset 5px; + border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent; + border-top-style: solid; + margin-top: -2.5px; + top: 22.5px; } + .top-bar-section .has-dropdown.moved { + position: relative; } + .top-bar-section .has-dropdown.moved > .dropdown { + visibility: hidden; } + .top-bar-section .has-dropdown.hover > .dropdown { + visibility: visible; } + .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after { + border: none; + content: "\00bb"; + margin-top: -16px; + right: 5px; } + .top-bar-section .dropdown { + left: 0; + top: auto; + background: transparent; + min-width: 100%; } + .top-bar-section .dropdown li a { + color: white; + line-height: 1; + white-space: nowrap; + padding: 7px 15px; + background: #1e1e1e; } + .top-bar-section .dropdown li label { + white-space: nowrap; + background: #1e1e1e; } + .top-bar-section .dropdown li .dropdown { + left: 100%; + top: 0; } + .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] { + border-bottom: none; + border-top: none; + border-right: solid 1px #2b2b2b; + border-left: solid 1px black; + clear: none; + height: 45px; + width: 0px; } + .top-bar-section .has-form { + background: #111111; + padding: 0 15px; + height: 45px; } + .top-bar-section ul.right li .dropdown { + left: auto; + right: 0; } + .top-bar-section ul.right li .dropdown li .dropdown { + right: 100%; } } +@-webkit-keyframes rotate { + from { + -webkit-transform: rotate(0deg); } + + to { + -webkit-transform: rotate(360deg); } } + +@-moz-keyframes rotate { + from { + -webkit-transform: rotate(0deg); } + + to { + -webkit-transform: rotate(360deg); } } + +@-o-keyframes rotate { + from { + -webkit-transform: rotate(0deg); } + + to { + -webkit-transform: rotate(360deg); } } + +@keyframes rotate { + from { + -webkit-transform: rotate(0deg); } + + to { + -webkit-transform: rotate(360deg); } } + +/* Orbit Graceful Loading */ +.slideshow-wrapper { + position: relative; } + .slideshow-wrapper ul { + list-style-type: none; + margin: 0; } + .slideshow-wrapper ul li, + .slideshow-wrapper ul li .orbit-caption { + display: none; } + .slideshow-wrapper ul li:first-child { + display: block; } + .slideshow-wrapper .orbit-container { + background-color: transparent; } + .slideshow-wrapper .orbit-container li { + display: block; } + .slideshow-wrapper .orbit-container li .orbit-caption { + display: block; } + +.preloader { + display: block; + width: 40px; + height: 40px; + position: absolute; + top: 50%; + left: 50%; + margin-top: -20px; + margin-left: -20px; + border: solid 3px; + border-color: #555555 white; + -webkit-border-radius: 1000px; + border-radius: 1000px; + -webkit-animation-name: rotate; + -webkit-animation-duration: 1.5s; + -webkit-animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; + -moz-animation-name: rotate; + -moz-animation-duration: 1.5s; + -moz-animation-iteration-count: infinite; + -moz-animation-timing-function: linear; + -o-animation-name: rotate; + -o-animation-duration: 1.5s; + -o-animation-iteration-count: infinite; + -o-animation-timing-function: linear; + animation-name: rotate; + animation-duration: 1.5s; + animation-iteration-count: infinite; + animation-timing-function: linear; } + +.orbit-container { + overflow: hidden; + width: 100%; + position: relative; + background: whitesmoke; } + .orbit-container .orbit-slides-container { + list-style: none; + margin: 0; + padding: 0; + position: relative; } + .orbit-container .orbit-slides-container img { + display: block; } + .orbit-container .orbit-slides-container > * { + position: relative; + float: left; + height: auto; } + .orbit-container .orbit-slides-container > * .orbit-caption { + position: absolute; + bottom: 0; + background-color: black; + background-color: rgba(0, 0, 0, 0.6); + color: white; + width: 100%; + padding: 10px 14px; + font-size: 0.875em; } + .orbit-container .orbit-slide-number { + position: absolute; + top: 10px; + left: 10px; + font-size: 12px; + color: white; + background: rgba(0, 0, 0, 0); } + .orbit-container .orbit-slide-number span { + font-weight: 700; + padding: 0.3125em; } + .orbit-container .orbit-timer { + position: absolute; + top: 10px; + right: 10px; + height: 6px; + width: 100px; } + .orbit-container .orbit-timer .orbit-progress { + height: 100%; + background-color: black; + background-color: rgba(0, 0, 0, 0.6); + display: block; + width: 0%; } + .orbit-container .orbit-timer > span { + display: none; + position: absolute; + top: 10px; + right: 0px; + width: 11px; + height: 14px; + border: solid 4px black; + border-top: none; + border-bottom: none; } + .orbit-container .orbit-timer.paused > span { + right: -6px; + top: 9px; + width: 11px; + height: 14px; + border: inset 8px; + border-right-style: solid; + border-color: transparent transparent transparent black; } + .orbit-container:hover .orbit-timer > span { + display: block; } + .orbit-container .orbit-prev, + .orbit-container .orbit-next { + position: absolute; + top: 50%; + margin-top: -25px; + background-color: black; + background-color: rgba(0, 0, 0, 0.6); + width: 50px; + height: 60px; + line-height: 50px; + color: white; + text-indent: -9999px !important; } + .orbit-container .orbit-prev > span, + .orbit-container .orbit-next > span { + position: absolute; + top: 50%; + margin-top: -16px; + display: block; + width: 0; + height: 0; + border: inset 16px; } + .orbit-container .orbit-prev { + left: 0; } + .orbit-container .orbit-prev > span { + border-right-style: solid; + border-color: transparent; + border-right-color: #fff; } + .orbit-container .orbit-prev:hover > span { + border-right-color: #ccc; } + .orbit-container .orbit-next { + right: 0; } + .orbit-container .orbit-next > span { + border-color: transparent; + border-left-style: solid; + border-left-color: #fff; + left: 50%; + margin-left: -8px; } + .orbit-container .orbit-next:hover > span { + border-left-color: #ccc; } + +.orbit-bullets { + margin: 0 auto 30px auto; + overflow: hidden; + position: relative; + top: 10px; } + .orbit-bullets li { + display: block; + width: 18px; + height: 18px; + background: #999999; + float: left; + margin-right: 6px; + border: solid 2px #222222; + -webkit-border-radius: 1000px; + border-radius: 1000px; } + .orbit-bullets li.active { + background: #222222; } + .orbit-bullets li:last-child { + margin-right: 0; } + +.touch .orbit-container .orbit-prev, +.touch .orbit-container .orbit-next { + display: none; } +.touch .orbit-bullets { + display: none; } + +@media only screen and (min-width: 768px) { + .touch .orbit-container .orbit-prev, + .touch .orbit-container .orbit-next { + display: inherit; } + .touch .orbit-bullets { + display: block; } } +.reveal-modal-bg { + position: fixed; + height: 100%; + width: 100%; + background: black; + background: rgba(0, 0, 0, 0.45); + z-index: 98; + display: none; + top: 0; + left: 0; } + +.reveal-modal { + visibility: hidden; + display: none; + position: absolute; + left: 50%; + z-index: 99; + height: auto; + margin-left: -40%; + width: 80%; + background-color: white; + padding: 1.25em; + border: solid 1px #666666; + -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); + box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); + top: 50px; } + .reveal-modal .column, + .reveal-modal .columns { + min-width: 0; } + .reveal-modal > :first-child { + margin-top: 0; } + .reveal-modal > :last-child { + margin-bottom: 0; } + .reveal-modal .close-reveal-modal { + font-size: 1.375em; + line-height: 1; + position: absolute; + top: 0.5em; + right: 0.6875em; + color: #aaaaaa; + font-weight: bold; + cursor: pointer; } + +@media only screen and (min-width: 768px) { + .reveal-modal { + padding: 1.875em; + top: 6.25em; } + .reveal-modal.tiny { + margin-left: -15%; + width: 30%; } + .reveal-modal.small { + margin-left: -20%; + width: 40%; } + .reveal-modal.medium { + margin-left: -30%; + width: 60%; } + .reveal-modal.large { + margin-left: -35%; + width: 70%; } + .reveal-modal.xlarge { + margin-left: -47.5%; + width: 95%; } } +@media print { + .reveal-modal { + background: white !important; } } +/* Foundation Joyride */ +.joyride-list { + display: none; } + +/* Default styles for the container */ +.joyride-tip-guide { + display: none; + position: absolute; + background: black; + color: white; + z-index: 101; + top: 0; + left: 2.5%; + font-family: inherit; + font-weight: normal; + width: 95%; } + +.lt-ie9 .joyride-tip-guide { + max-width: 800px; + left: 50%; + margin-left: -400px; } + +.joyride-content-wrapper { + width: 100%; + padding: 1.125em 1.25em 1.5em; } + .joyride-content-wrapper .button { + margin-bottom: 0 !important; } + +/* Add a little css triangle pip, older browser just miss out on the fanciness of it */ +.joyride-tip-guide .joyride-nub { + display: block; + position: absolute; + left: 22px; + width: 0; + height: 0; + border: inset 14px; } + .joyride-tip-guide .joyride-nub.top { + border-top-style: solid; + border-color: black; + border-top-color: transparent !important; + border-left-color: transparent !important; + border-right-color: transparent !important; + top: -28px; } + .joyride-tip-guide .joyride-nub.bottom { + border-bottom-style: solid; + border-color: black !important; + border-bottom-color: transparent !important; + border-left-color: transparent !important; + border-right-color: transparent !important; + bottom: -28px; } + .joyride-tip-guide .joyride-nub.right { + right: -28px; } + .joyride-tip-guide .joyride-nub.left { + left: -28px; } + +/* Typography */ +.joyride-tip-guide h1, +.joyride-tip-guide h2, +.joyride-tip-guide h3, +.joyride-tip-guide h4, +.joyride-tip-guide h5, +.joyride-tip-guide h6 { + line-height: 1.25; + margin: 0; + font-weight: bold; + color: white; } + +.joyride-tip-guide p { + margin: 0 0 1.125em 0; + font-size: 0.875em; + line-height: 1.3; } + +.joyride-timer-indicator-wrap { + width: 50px; + height: 3px; + border: solid 1px #555555; + position: absolute; + right: 1.0625em; + bottom: 1em; } + +.joyride-timer-indicator { + display: block; + width: 0; + height: inherit; + background: #666666; } + +.joyride-close-tip { + position: absolute; + right: 12px; + top: 10px; + color: #777777 !important; + text-decoration: none; + font-size: 30px; + font-weight: normal; + line-height: 0.5 !important; } + .joyride-close-tip:hover, .joyride-close-tip:focus { + color: #eeeeee !important; } + +.joyride-modal-bg { + position: fixed; + height: 100%; + width: 100%; + background: transparent; + background: rgba(0, 0, 0, 0.5); + z-index: 100; + display: none; + top: 0; + left: 0; + cursor: pointer; } + +.joyride-expose-wrapper { + background-color: #ffffff; + position: absolute; + border-radius: 3px; + z-index: 102; + -moz-box-shadow: 0px 0px 30px white; + -webkit-box-shadow: 0px 0px 15px white; + box-shadow: 0px 0px 15px white; } + +.joyride-expose-cover { + background: transparent; + border-radius: 3px; + position: absolute; + z-index: 9999; + top: 0px; + left: 0px; } + +/* Styles for screens that are atleast 768px; */ +@media only screen and (min-width: 768px) { + .joyride-tip-guide { + width: 300px; + left: inherit; } + .joyride-tip-guide .joyride-nub.bottom { + border-color: black !important; + border-bottom-color: transparent !important; + border-left-color: transparent !important; + border-right-color: transparent !important; + bottom: -28px; } + .joyride-tip-guide .joyride-nub.right { + border-color: black !important; + border-top-color: transparent !important; + border-right-color: transparent !important; + border-bottom-color: transparent !important; + top: 22px; + left: auto; + right: -28px; } + .joyride-tip-guide .joyride-nub.left { + border-color: black !important; + border-top-color: transparent !important; + border-left-color: transparent !important; + border-bottom-color: transparent !important; + top: 22px; + left: -28px; + right: auto; } } +/* Clearing Styles */ +[data-clearing] { + *zoom: 1; + margin-bottom: 0; + margin-left: 0; + list-style: none; } + [data-clearing]:before, [data-clearing]:after { + content: " "; + display: table; } + [data-clearing]:after { + clear: both; } + [data-clearing] li { + float: left; + margin-right: 10px; } + +.clearing-blackout { + background: #111111; + position: fixed; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 998; } + .clearing-blackout .clearing-close { + display: block; } + +.clearing-container { + position: relative; + z-index: 998; + height: 100%; + overflow: hidden; + margin: 0; } + +.visible-img { + height: 95%; + position: relative; } + .visible-img img { + position: absolute; + left: 50%; + top: 50%; + margin-left: -50%; + max-height: 100%; + max-width: 100%; } + +.clearing-caption { + color: white; + line-height: 1.3; + margin-bottom: 0; + text-align: center; + bottom: 0; + background: #111111; + width: 100%; + padding: 10px 30px; + position: absolute; + left: 0; } + +.clearing-close { + z-index: 999; + padding-left: 20px; + padding-top: 10px; + font-size: 40px; + line-height: 1; + color: white; + display: none; } + .clearing-close:hover, .clearing-close:focus { + color: #ccc; } + +.clearing-assembled .clearing-container { + height: 100%; } + .clearing-assembled .clearing-container .carousel > ul { + display: none; } + +.clearing-feature li { + display: none; } + .clearing-feature li.clearing-featured-img { + display: block; } + +@media only screen and (min-width: 768px) { + .clearing-main-prev, + .clearing-main-next { + position: absolute; + height: 100%; + width: 40px; + top: 0; } + .clearing-main-prev > span, + .clearing-main-next > span { + position: absolute; + top: 50%; + display: block; + width: 0; + height: 0; + border: solid 16px; } + + .clearing-main-prev { + left: 0; } + .clearing-main-prev > span { + left: 5px; + border-color: transparent; + border-right-color: white; } + + .clearing-main-next { + right: 0; } + .clearing-main-next > span { + border-color: transparent; + border-left-color: white; } + + .clearing-main-prev.disabled, + .clearing-main-next.disabled { + opacity: 0.5; } + + .clearing-assembled .clearing-container .carousel { + background: #111111; + height: 150px; + margin-top: 5px; } + .clearing-assembled .clearing-container .carousel > ul { + display: block; + z-index: 999; + width: 200%; + height: 100%; + margin-left: 0; + position: relative; + left: 0; } + .clearing-assembled .clearing-container .carousel > ul li { + display: block; + width: 175px; + height: inherit; + padding: 0; + float: left; + overflow: hidden; + margin-right: 1px; + position: relative; + cursor: pointer; + opacity: 0.4; } + .clearing-assembled .clearing-container .carousel > ul li.fix-height img { + min-height: 100%; + height: 100%; + max-width: none; } + .clearing-assembled .clearing-container .carousel > ul li a.th { + border: none; + -webkit-box-shadow: none; + box-shadow: none; + display: block; } + .clearing-assembled .clearing-container .carousel > ul li img { + cursor: pointer !important; + min-width: 100% !important; } + .clearing-assembled .clearing-container .carousel > ul li.visible { + opacity: 1; } + .clearing-assembled .clearing-container .visible-img { + background: #111111; + overflow: hidden; + height: 75%; } + + .clearing-close { + position: absolute; + top: 10px; + right: 20px; + padding-left: 0; + padding-top: 0; } } +/* Foundation Alerts */ +.alert-box { + border-style: solid; + border-width: 1px; + display: block; + font-weight: bold; + margin-bottom: 1.25em; + position: relative; + padding: 0.6875em 1.3125em 0.75em 0.6875em; + font-size: 0.875em; + background-color: #2ba6cb; + border-color: #2284a1; + color: white; } + .alert-box .close { + font-size: 1.375em; + padding: 5px 4px 4px; + line-height: 0; + position: absolute; + top: 0.4375em; + right: 0.3125em; + color: #333333; + opacity: 0.3; } + .alert-box .close:hover, .alert-box .close:focus { + opacity: 0.5; } + .alert-box.radius { + -webkit-border-radius: 3px; + border-radius: 3px; } + .alert-box.round { + -webkit-border-radius: 1000px; + border-radius: 1000px; } + .alert-box.success { + background-color: #5da423; + border-color: #457a1a; + color: white; } + .alert-box.alert { + background-color: #c60f13; + border-color: #970b0e; + color: white; } + .alert-box.secondary { + background-color: #e9e9e9; + border-color: #d0d0d0; + color: #505050; } + +/* Breadcrumbs */ +.breadcrumbs { + display: block; + padding: 0.5625em 0.875em 0.5625em; + overflow: hidden; + margin-left: 0; + list-style: none; + border-style: solid; + border-width: 1px; + background-color: #f6f6f6; + border-color: gainsboro; + -webkit-border-radius: 3px; + border-radius: 3px; } + .breadcrumbs > * { + margin: 0; + float: left; + font-size: 0.6875em; + text-transform: uppercase; + color: #2ba6cb; } + .breadcrumbs > *:hover a, .breadcrumbs > *:focus a { + text-decoration: underline; } + .breadcrumbs > * a, + .breadcrumbs > * span { + text-transform: uppercase; + color: #2ba6cb; } + .breadcrumbs > *.current { + cursor: default; + color: #333333; } + .breadcrumbs > *.current a { + cursor: default; + color: #333333; } + .breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a { + text-decoration: none; } + .breadcrumbs > *.unavailable { + color: #999999; } + .breadcrumbs > *.unavailable a { + color: #999999; } + .breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus, + .breadcrumbs > *.unavailable a:focus { + text-decoration: none; + color: #999999; + cursor: default; } + .breadcrumbs > *:before { + content: "/"; + color: #aaaaaa; + margin: 0 0.75em; + position: relative; + top: 1px; } + .breadcrumbs > *:first-child:before { + content: " "; + margin: 0; } + +/* Keystroke Characters */ +.keystroke, +kbd { + background-color: #ededed; + border-color: #dbdbdb; + color: #222222; + border-style: solid; + border-width: 1px; + margin: 0; + font-family: "Consolas", "Menlo", "Courier", monospace; + font-size: 0.875em; + padding: 0.125em 0.25em 0em; + -webkit-border-radius: 3px; + border-radius: 3px; } + +/* Labels */ +.label { + font-weight: bold; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + padding: 0.1875em 0.625em 0.25em; + font-size: 0.875em; + background-color: #2ba6cb; + color: white; } + .label.radius { + -webkit-border-radius: 3px; + border-radius: 3px; } + .label.round { + -webkit-border-radius: 1000px; + border-radius: 1000px; } + .label.alert { + background-color: #c60f13; + color: white; } + .label.success { + background-color: #5da423; + color: white; } + .label.secondary { + background-color: #e9e9e9; + color: #333333; } + +/* Inline Lists */ +.inline-list { + margin: 0 auto 1.0625em auto; + margin-left: -1.375em; + margin-right: 0; + padding: 0; + list-style: none; + overflow: hidden; } + .inline-list > li { + list-style: none; + float: left; + margin-left: 1.375em; + display: block; } + .inline-list > li > * { + display: block; } + +/* Pagination */ +.pagination { + display: block; + height: 1.5em; + margin-left: -0.3125em; } + .pagination li { + display: block; + float: left; + height: 1.5em; + color: #222222; + font-size: 0.875em; + margin-left: 0.3125em; } + .pagination li a { + display: block; + padding: 0.0625em 0.4375em 0.0625em; + color: #999999; } + .pagination li:hover a, + .pagination li a:focus { + background: #e6e6e6; } + .pagination li.unavailable a { + cursor: default; + color: #999999; } + .pagination li.unavailable:hover a, .pagination li.unavailable a:focus { + background: transparent; } + .pagination li.current a { + background: #2ba6cb; + color: white; + font-weight: bold; + cursor: default; } + .pagination li.current a:hover, .pagination li.current a:focus { + background: #2ba6cb; } + +.pagination-centered { + text-align: center; } + .pagination-centered ul > li { + float: none; + display: inline-block; } + +/* Panels */ +.panel { + border-style: solid; + border-width: 1px; + border-color: #d9d9d9; + margin-bottom: 1.25em; + padding: 1.25em; + background: #f2f2f2; } + .panel > :first-child { + margin-top: 0; } + .panel > :last-child { + margin-bottom: 0; } + .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p { + color: #333333; } + .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 { + line-height: 1; + margin-bottom: 0.625em; } + .panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader { + line-height: 1.4; } + .panel.callout { + border-style: solid; + border-width: 1px; + border-color: #2284a1; + margin-bottom: 1.25em; + padding: 1.25em; + background: #2ba6cb; + -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; + box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset; } + .panel.callout > :first-child { + margin-top: 0; } + .panel.callout > :last-child { + margin-bottom: 0; } + .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p { + color: white; } + .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 { + line-height: 1; + margin-bottom: 0.625em; } + .panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader { + line-height: 1.4; } + .panel.radius { + -webkit-border-radius: 3px; + border-radius: 3px; } + +/* Pricing Tables */ +.pricing-table { + border: solid 1px #dddddd; + margin-left: 0; + margin-bottom: 1.25em; } + .pricing-table * { + list-style: none; + line-height: 1; } + .pricing-table .title { + background-color: #dddddd; + padding: 0.9375em 1.25em; + text-align: center; + color: #333333; + font-weight: bold; + font-size: 1em; } + .pricing-table .price { + background-color: #eeeeee; + padding: 0.9375em 1.25em; + text-align: center; + color: #333333; + font-weight: normal; + font-size: 1.25em; } + .pricing-table .description { + background-color: white; + padding: 0.9375em; + text-align: center; + color: #777777; + font-size: 0.75em; + font-weight: normal; + line-height: 1.4; + border-bottom: dotted 1px #dddddd; } + .pricing-table .bullet-item { + background-color: white; + padding: 0.9375em; + text-align: center; + color: #333333; + font-size: 0.875em; + font-weight: normal; + border-bottom: dotted 1px #dddddd; } + .pricing-table .cta-button { + background-color: whitesmoke; + text-align: center; + padding: 1.25em 1.25em 0; } + +/* Progress Bar */ +.progress { + background-color: transparent; + height: 1.5625em; + border: 1px solid #cccccc; + padding: 0.125em; + margin-bottom: 0.625em; } + .progress .meter { + background: #2ba6cb; + height: 100%; + display: block; } + .progress.secondary .meter { + background: #e9e9e9; + height: 100%; + display: block; } + .progress.success .meter { + background: #5da423; + height: 100%; + display: block; } + .progress.alert .meter { + background: #c60f13; + height: 100%; + display: block; } + .progress.radius { + -webkit-border-radius: 3px; + border-radius: 3px; } + .progress.radius .meter { + -webkit-border-radius: 2px; + border-radius: 2px; } + .progress.round { + -webkit-border-radius: 1000px; + border-radius: 1000px; } + .progress.round .meter { + -webkit-border-radius: 999px; + border-radius: 999px; } + +/* Side Nav */ +.side-nav { + display: block; + margin: 0; + padding: 0.875em 0; + list-style-type: none; + list-style-position: inside; } + .side-nav li { + margin: 0 0 0.4375em 0; + font-size: 0.875em; } + .side-nav li a { + display: block; + color: #2ba6cb; } + .side-nav li.active > a:first-child { + color: #4d4d4d; + font-weight: bold; } + .side-nav li.divider { + border-top: 1px solid; + height: 0; + padding: 0; + list-style: none; + border-top-color: #e6e6e6; } + +/* Side Nav */ +.sub-nav { + display: block; + width: auto; + overflow: hidden; + margin: -0.25em 0 1.125em; + padding-top: 0.25em; + margin-right: 0; + margin-left: -0.5625em; } + .sub-nav dt, + .sub-nav dd { + float: left; + display: inline; + margin-left: 0.5625em; + margin-bottom: 0.625em; + font-weight: normal; + font-size: 0.875em; } + .sub-nav dt a, + .sub-nav dd a { + color: #999999; + text-decoration: none; } + .sub-nav dt.active a, + .sub-nav dd.active a { + -webkit-border-radius: 1000px; + border-radius: 1000px; + font-weight: bold; + background: #2ba6cb; + padding: 0.1875em 0.5625em; + cursor: default; + color: white; } + +/* Foundation Switches */ +@media only screen { + div.switch { + position: relative; + width: 100%; + padding: 0; + display: block; + overflow: hidden; + border-style: solid; + border-width: 1px; + margin-bottom: 1.25em; + -webkit-animation: webkitSiblingBugfix infinite 1s; + height: 36px; + background: white; + border-color: #cccccc; } + div.switch label { + position: relative; + left: 0; + z-index: 2; + float: left; + width: 50%; + height: 100%; + margin: 0; + font-weight: bold; + text-align: left; + -webkit-transition: all 0.1s ease-out; + -moz-transition: all 0.1s ease-out; + transition: all 0.1s ease-out; } + div.switch input { + position: absolute; + z-index: 3; + opacity: 0; + width: 100%; + height: 100%; + -moz-appearance: none; } + div.switch input:hover, div.switch input:focus { + cursor: pointer; } + div.switch > span { + position: absolute; + top: -1px; + left: -1px; + z-index: 1; + display: block; + padding: 0; + border-width: 1px; + border-style: solid; + -webkit-transition: all 0.1s ease-out; + -moz-transition: all 0.1s ease-out; + transition: all 0.1s ease-out; } + div.switch input:not(:checked) + label { + opacity: 0; } + div.switch input:checked { + display: none !important; } + div.switch input { + left: 0; + display: block !important; } + div.switch input:first-of-type + label, + div.switch input:first-of-type + span + label { + left: -50%; } + div.switch input:first-of-type:checked + label, + div.switch input:first-of-type:checked + span + label { + left: 0%; } + div.switch input:last-of-type + label, + div.switch input:last-of-type + span + label { + right: -50%; + left: auto; + text-align: right; } + div.switch input:last-of-type:checked + label, + div.switch input:last-of-type:checked + span + label { + right: 0%; + left: auto; } + div.switch span.custom { + display: none !important; } + div.switch label { + padding: 0 0.375em; + line-height: 2.3em; + font-size: 0.875em; } + div.switch input:first-of-type:checked ~ span { + left: 100%; + margin-left: -2.1875em; } + div.switch > span { + width: 2.25em; + height: 2.25em; } + div.switch > span { + border-color: #b3b3b3; + background: white; + background: -moz-linear-gradient(top, white 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, white 0%, #f2f2f2 100%); + background: linear-gradient(to bottom, white 0%, #f2f2f2 100%); + -webkit-box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 1000px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; + box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #e1f5d1, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; } + div.switch:hover > span, div.switch:focus > span { + background: white; + background: -moz-linear-gradient(top, white 0%, #e6e6e6 100%); + background: -webkit-linear-gradient(top, white 0%, #e6e6e6 100%); + background: linear-gradient(to bottom, white 0%, #e6e6e6 100%); } + div.switch:active { + background: transparent; } + div.switch.large { + height: 44px; } + div.switch.large label { + padding: 0 0.375em; + line-height: 2.3em; + font-size: 1.0625em; } + div.switch.large input:first-of-type:checked ~ span { + left: 100%; + margin-left: -2.6875em; } + div.switch.large > span { + width: 2.75em; + height: 2.75em; } + div.switch.small { + height: 28px; } + div.switch.small label { + padding: 0 0.375em; + line-height: 2.1em; + font-size: 0.75em; } + div.switch.small input:first-of-type:checked ~ span { + left: 100%; + margin-left: -1.6875em; } + div.switch.small > span { + width: 1.75em; + height: 1.75em; } + div.switch.tiny { + height: 22px; } + div.switch.tiny label { + padding: 0 0.375em; + line-height: 1.9em; + font-size: 0.6875em; } + div.switch.tiny input:first-of-type:checked ~ span { + left: 100%; + margin-left: -1.3125em; } + div.switch.tiny > span { + width: 1.375em; + height: 1.375em; } + div.switch.radius { + -webkit-border-radius: 4px; + border-radius: 4px; } + div.switch.radius > span { + -webkit-border-radius: 3px; + border-radius: 3px; } + div.switch.round { + -webkit-border-radius: 1000px; + border-radius: 1000px; } + div.switch.round > span { + -webkit-border-radius: 999px; + border-radius: 999px; } + div.switch.round label { + padding: 0 0.5625em; } + + @-webkit-keyframes webkitSiblingBugfix { + from { + position: relative; } + + to { + position: relative; } } } +[data-magellan-expedition] { + background: white; + z-index: 50; + min-width: 100%; + padding: 10px; } + [data-magellan-expedition] .sub-nav { + margin-bottom: 0; } + [data-magellan-expedition] .sub-nav dd { + margin-bottom: 0; } + +/* Tables */ +table { + background: white; + margin-bottom: 1.25em; + border: solid 1px #dddddd; } + table thead, + table tfoot { + background: whitesmoke; + font-weight: bold; } + table thead tr th, + table thead tr td, + table tfoot tr th, + table tfoot tr td { + padding: 0.5em 0.625em 0.625em; + font-size: 0.875em; + color: #222222; + text-align: left; } + table tr th, + table tr td { + padding: 0.5625em 0.625em; + font-size: 0.875em; + color: #222222; } + table tr.even, table tr.alt, table tr:nth-of-type(even) { + background: #f9f9f9; } + table thead tr th, + table tfoot tr th, + table tbody tr td, + table tr td, + table tfoot tr td { + display: table-cell; + line-height: 1.125em; } + +/* Image Thumbnails */ +.th { + line-height: 0; + display: inline-block; + border: solid 4px white; + -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); + -webkit-transition: all 200ms ease-out; + -moz-transition: all 200ms ease-out; + transition: all 200ms ease-out; } + .th:hover, .th:focus { + -webkit-box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); + box-shadow: 0 0 6px 1px rgba(43, 166, 203, 0.5); } + .th.radius { + -webkit-border-radius: 3px; + border-radius: 3px; } + +a.th { + display: inline-block; } + +/* Tooltips */ +.has-tip { + border-bottom: dotted 1px #cccccc; + cursor: help; + font-weight: bold; + color: #333333; } + .has-tip:hover, .has-tip:focus { + border-bottom: dotted 1px #196177; + color: #2ba6cb; } + .has-tip.tip-left, .has-tip.tip-right { + float: none !important; } + +.tooltip { + display: none; + position: absolute; + z-index: 999; + font-weight: bold; + font-size: 0.9375em; + line-height: 1.3; + padding: 0.5em; + max-width: 85%; + left: 50%; + width: 100%; + color: white; + background: black; + -webkit-border-radius: 3px; + border-radius: 3px; } + .tooltip > .nub { + display: block; + left: 5px; + position: absolute; + width: 0; + height: 0; + border: solid 5px; + border-color: transparent transparent black transparent; + top: -10px; } + .tooltip.opened { + color: #2ba6cb !important; + border-bottom: dotted 1px #196177 !important; } + +.tap-to-close { + display: block; + font-size: 0.625em; + color: #888888; + font-weight: normal; } + +@media only screen and (min-width: 768px) { + .tooltip > .nub { + border-color: transparent transparent black transparent; + top: -10px; } + .tooltip.tip-top > .nub { + border-color: black transparent transparent transparent; + top: auto; + bottom: -10px; } + .tooltip.tip-left, .tooltip.tip-right { + float: none !important; } + .tooltip.tip-left > .nub { + border-color: transparent transparent transparent black; + right: -10px; + left: auto; + top: 50%; + margin-top: -5px; } + .tooltip.tip-right > .nub { + border-color: transparent black transparent transparent; + right: auto; + left: -10px; + top: 50%; + margin-top: -5px; } } +@media only screen and (max-width: 767px) { + .f-dropdown { + max-width: 100%; + left: 0; } } +/* Foundation Dropdowns */ +.f-dropdown { + position: absolute; + top: -9999px; + list-style: none; + margin-left: 0; + width: 100%; + max-height: none; + height: auto; + background: white; + border: solid 1px #cccccc; + font-size: 16px; + z-index: 99; + margin-top: 2px; + max-width: 200px; } + .f-dropdown > *:first-child { + margin-top: 0; } + .f-dropdown > *:last-child { + margin-bottom: 0; } + .f-dropdown:before { + content: ""; + display: block; + width: 0; + height: 0; + border: inset 6px; + border-color: transparent transparent white transparent; + border-bottom-style: solid; + position: absolute; + top: -12px; + left: 10px; + z-index: 99; } + .f-dropdown:after { + content: ""; + display: block; + width: 0; + height: 0; + border: inset 7px; + border-color: transparent transparent #cccccc transparent; + border-bottom-style: solid; + position: absolute; + top: -14px; + left: 9px; + z-index: 98; } + .f-dropdown.right:before { + left: auto; + right: 10px; } + .f-dropdown.right:after { + left: auto; + right: 9px; } + .f-dropdown li { + font-size: 0.875em; + cursor: pointer; + line-height: 1.125em; + margin: 0; } + .f-dropdown li:hover, .f-dropdown li:focus { + background: #eeeeee; } + .f-dropdown li a { + display: block; + padding: 0.3125em 0.625em; + color: #555555; } + .f-dropdown.content { + position: absolute; + top: -9999px; + list-style: none; + margin-left: 0; + padding: 1.25em; + width: 100%; + height: auto; + max-height: none; + background: white; + border: solid 1px #cccccc; + font-size: 16px; + z-index: 99; + max-width: 200px; } + .f-dropdown.content > *:first-child { + margin-top: 0; } + .f-dropdown.content > *:last-child { + margin-bottom: 0; } + .f-dropdown.tiny { + max-width: 200px; } + .f-dropdown.small { + max-width: 300px; } + .f-dropdown.medium { + max-width: 500px; } + .f-dropdown.large { + max-width: 800px; } diff --git a/css/foundation.min.css b/css/foundation.min.css new file mode 100644 index 00000000..233d45ee --- /dev/null +++ b/css/foundation.min.css @@ -0,0 +1 @@ +*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}html,body{font-size:100%}body{background:#fff;color:#1c1b39;padding:0;margin:0;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;line-height:1;position:relative;cursor:default}a:hover{cursor:pointer}a:focus{outline:none}img,object,embed{max-width:100%;height:auto}object,embed{height:100%}img{-ms-interpolation-mode:bicubic}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none !important}.left{float:left !important}.right{float:right !important}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-justify{text-align:justify !important}.hide{display:none}.antialiased{-webkit-font-smoothing:antialiased}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}.row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row.collapse .column,.row.collapse .columns{position:relative;padding-left:0;padding-right:0;float:left}.row .row{width:auto;margin-left:-0.9375em;margin-right:-0.9375em;margin-top:0;margin-bottom:0;max-width:none;*zoom:1}.row .row:before,.row .row:after{content:" ";display:table}.row .row:after{clear:both}.row .row.collapse{width:auto;margin:0;max-width:none;*zoom:1}.row .row.collapse:before,.row .row.collapse:after{content:" ";display:table}.row .row.collapse:after{clear:both}.column,.columns{position:relative;padding-left:0.9375em;padding-right:0.9375em;width:100%;float:left}@media only screen{.column,.columns{position:relative;padding-left:0.9375em;padding-right:0.9375em;float:left}.small-1{position:relative;width:8.33333%}.small-2{position:relative;width:16.66667%}.small-3{position:relative;width:25%}.small-4{position:relative;width:33.33333%}.small-5{position:relative;width:41.66667%}.small-6{position:relative;width:50%}.small-7{position:relative;width:58.33333%}.small-8{position:relative;width:66.66667%}.small-9{position:relative;width:75%}.small-10{position:relative;width:83.33333%}.small-11{position:relative;width:91.66667%}.small-12{position:relative;width:100%}.small-offset-0{position:relative;margin-left:0%}.small-offset-1{position:relative;margin-left:8.33333%}.small-offset-2{position:relative;margin-left:16.66667%}.small-offset-3{position:relative;margin-left:25%}.small-offset-4{position:relative;margin-left:33.33333%}.small-offset-5{position:relative;margin-left:41.66667%}.small-offset-6{position:relative;margin-left:50%}.small-offset-7{position:relative;margin-left:58.33333%}.small-offset-8{position:relative;margin-left:66.66667%}.small-offset-9{position:relative;margin-left:75%}.small-offset-10{position:relative;margin-left:83.33333%}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}.column.small-centered,.columns.small-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}}@media only screen and (min-width: 768px){.large-1{position:relative;width:8.33333%}.large-2{position:relative;width:16.66667%}.large-3{position:relative;width:25%}.large-4{position:relative;width:33.33333%}.large-5{position:relative;width:41.66667%}.large-6{position:relative;width:50%}.large-7{position:relative;width:58.33333%}.large-8{position:relative;width:66.66667%}.large-9{position:relative;width:75%}.large-10{position:relative;width:83.33333%}.large-11{position:relative;width:91.66667%}.large-12{position:relative;width:100%}.row .large-offset-0{position:relative;margin-left:0%}.row .large-offset-1{position:relative;margin-left:8.33333%}.row .large-offset-2{position:relative;margin-left:16.66667%}.row .large-offset-3{position:relative;margin-left:25%}.row .large-offset-4{position:relative;margin-left:33.33333%}.row .large-offset-5{position:relative;margin-left:41.66667%}.row .large-offset-6{position:relative;margin-left:50%}.row .large-offset-7{position:relative;margin-left:58.33333%}.row .large-offset-8{position:relative;margin-left:66.66667%}.row .large-offset-9{position:relative;margin-left:75%}.row .large-offset-10{position:relative;margin-left:83.33333%}.row .large-offset-11{position:relative;margin-left:91.66667%}.push-1{position:relative;left:8.33333%;right:auto}.pull-1{position:relative;right:8.33333%;left:auto}.push-2{position:relative;left:16.66667%;right:auto}.pull-2{position:relative;right:16.66667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.33333%;right:auto}.pull-4{position:relative;right:33.33333%;left:auto}.push-5{position:relative;left:41.66667%;right:auto}.pull-5{position:relative;right:41.66667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.33333%;right:auto}.pull-7{position:relative;right:58.33333%;left:auto}.push-8{position:relative;left:66.66667%;right:auto}.pull-8{position:relative;right:66.66667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.33333%;right:auto}.pull-10{position:relative;right:83.33333%;left:auto}.push-11{position:relative;left:91.66667%;right:auto}.pull-11{position:relative;right:91.66667%;left:auto}.column.large-centered,.columns.large-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.column.large-uncentered,.columns.large-uncentered{margin-left:0;margin-right:0;float:left !important}.column.large-uncentered.opposite,.columns.large-uncentered.opposite{float:right !important}}.show-for-small,.show-for-medium-down,.show-for-large-down{display:inherit !important}.show-for-medium,.show-for-medium-up,.show-for-large,.show-for-large-up,.show-for-xlarge{display:none !important}.hide-for-medium,.hide-for-medium-up,.hide-for-large,.hide-for-large-up,.hide-for-xlarge{display:inherit !important}.hide-for-small,.hide-for-medium-down,.hide-for-large-down{display:none !important}table.show-for-small,table.show-for-medium-down,table.show-for-large-down,table.hide-for-medium,table.hide-for-medium-up,table.hide-for-large,table.hide-for-large-up,table.hide-for-xlarge{display:table}thead.show-for-small,thead.show-for-medium-down,thead.show-for-large-down,thead.hide-for-medium,thead.hide-for-medium-up,thead.hide-for-large,thead.hide-for-large-up,thead.hide-for-xlarge{display:table-header-group !important}tbody.show-for-small,tbody.show-for-medium-down,tbody.show-for-large-down,tbody.hide-for-medium,tbody.hide-for-medium-up,tbody.hide-for-large,tbody.hide-for-large-up,tbody.hide-for-xlarge{display:table-row-group !important}tr.show-for-small,tr.show-for-medium-down,tr.show-for-large-down,tr.hide-for-medium,tr.hide-for-medium-up,tr.hide-for-large,tr.hide-for-large-up,tr.hide-for-xlarge{display:table-row !important}td.show-for-small,td.show-for-medium-down,td.show-for-large-down,td.hide-for-medium,td.hide-for-medium-up,td.hide-for-large,td.hide-for-large-up,td.hide-for-xlarge,th.show-for-small,th.show-for-medium-down,th.show-for-large-down,th.hide-for-medium,th.hide-for-medium-up,th.hide-for-large,th.hide-for-large-up,th.hide-for-xlarge{display:table-cell !important}@media only screen and (min-width: 768px){.show-for-medium,.show-for-medium-up{display:inherit !important}.show-for-small{display:none !important}.hide-for-small{display:inherit !important}.hide-for-medium,.hide-for-medium-up{display:none !important}table.show-for-medium,table.show-for-medium-up,table.hide-for-small{display:table}thead.show-for-medium,thead.show-for-medium-up,thead.hide-for-small{display:table-header-group !important}tbody.show-for-medium,tbody.show-for-medium-up,tbody.hide-for-small{display:table-row-group !important}tr.show-for-medium,tr.show-for-medium-up,tr.hide-for-small{display:table-row !important}td.show-for-medium,td.show-for-medium-up,td.hide-for-small,th.show-for-medium,th.show-for-medium-up,th.hide-for-small{display:table-cell !important}}@media only screen and (min-width: 1280px){.show-for-large,.show-for-large-up{display:inherit !important}.show-for-medium,.show-for-medium-down{display:none !important}.hide-for-medium,.hide-for-medium-down{display:inherit !important}.hide-for-large,.hide-for-large-up{display:none !important}table.show-for-large,table.show-for-large-up,table.hide-for-medium,table.hide-for-medium-down{display:table}thead.show-for-large,thead.show-for-large-up,thead.hide-for-medium,thead.hide-for-medium-down{display:table-header-group !important}tbody.show-for-large,tbody.show-for-large-up,tbody.hide-for-medium,tbody.hide-for-medium-down{display:table-row-group !important}tr.show-for-large,tr.show-for-large-up,tr.hide-for-medium,tr.hide-for-medium-down{display:table-row !important}td.show-for-large,td.show-for-large-up,td.hide-for-medium,td.hide-for-medium-down,th.show-for-large,th.show-for-large-up,th.hide-for-medium,th.hide-for-medium-down{display:table-cell !important}}@media only screen and (min-width: 1440px){.show-for-xlarge{display:inherit !important}.show-for-large,.show-for-large-down{display:none !important}.hide-for-large,.hide-for-large-down{display:inherit !important}.hide-for-xlarge{display:none !important}table.show-for-xlarge,table.hide-for-large,table.hide-for-large-down{display:table}thead.show-for-xlarge,thead.hide-for-large,thead.hide-for-large-down{display:table-header-group !important}tbody.show-for-xlarge,tbody.hide-for-large,tbody.hide-for-large-down{display:table-row-group !important}tr.show-for-xlarge,tr.hide-for-large,tr.hide-for-large-down{display:table-row !important}td.show-for-xlarge,td.hide-for-large,td.hide-for-large-down,th.show-for-xlarge,th.hide-for-large,th.hide-for-large-down{display:table-cell !important}}.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.hide-for-landscape,table.show-for-portrait{display:table}thead.hide-for-landscape,thead.show-for-portrait{display:table-header-group !important}tbody.hide-for-landscape,tbody.show-for-portrait{display:table-row-group !important}tr.hide-for-landscape,tr.show-for-portrait{display:table-row !important}td.hide-for-landscape,td.show-for-portrait,th.hide-for-landscape,th.show-for-portrait{display:table-cell !important}@media only screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.show-for-landscape,table.hide-for-portrait{display:table}thead.show-for-landscape,thead.hide-for-portrait{display:table-header-group !important}tbody.show-for-landscape,tbody.hide-for-portrait{display:table-row-group !important}tr.show-for-landscape,tr.hide-for-portrait{display:table-row !important}td.show-for-landscape,td.hide-for-portrait,th.show-for-landscape,th.hide-for-portrait{display:table-cell !important}}@media only screen and (orientation: portrait){.show-for-portrait,.hide-for-landscape{display:inherit !important}.hide-for-portrait,.show-for-landscape{display:none !important}table.show-for-portrait,table.hide-for-landscape{display:table}thead.show-for-portrait,thead.hide-for-landscape{display:table-header-group !important}tbody.show-for-portrait,tbody.hide-for-landscape{display:table-row-group !important}tr.show-for-portrait,tr.hide-for-landscape{display:table-row !important}td.show-for-portrait,td.hide-for-landscape,th.show-for-portrait,th.hide-for-landscape{display:table-cell !important}}.show-for-touch{display:none !important}.hide-for-touch{display:inherit !important}.touch .show-for-touch{display:inherit !important}.touch .hide-for-touch{display:none !important}table.hide-for-touch{display:table}.touch table.show-for-touch{display:table}thead.hide-for-touch{display:table-header-group !important}.touch thead.show-for-touch{display:table-header-group !important}tbody.hide-for-touch{display:table-row-group !important}.touch tbody.show-for-touch{display:table-row-group !important}tr.hide-for-touch{display:table-row !important}.touch tr.show-for-touch{display:table-row !important}td.hide-for-touch{display:table-cell !important}.touch td.show-for-touch{display:table-cell !important}th.hide-for-touch{display:table-cell !important}.touch th.show-for-touch{display:table-cell !important}@media only screen{[class*="block-grid-"]{display:block;padding:0;margin:0 -0.625em;*zoom:1}[class*="block-grid-"]:before,[class*="block-grid-"]:after{content:" ";display:table}[class*="block-grid-"]:after{clear:both}[class*="block-grid-"]>li{display:inline;height:auto;float:left;padding:0 0.625em 1.25em}.small-block-grid-1>li{width:100%;padding:0 0.625em 1.25em}.small-block-grid-1>li:nth-of-type(n){clear:none}.small-block-grid-1>li:nth-of-type(1n+1){clear:both}.small-block-grid-2>li{width:50%;padding:0 0.625em 1.25em}.small-block-grid-2>li:nth-of-type(n){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:both}.small-block-grid-3>li{width:33.33333%;padding:0 0.625em 1.25em}.small-block-grid-3>li:nth-of-type(n){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:both}.small-block-grid-4>li{width:25%;padding:0 0.625em 1.25em}.small-block-grid-4>li:nth-of-type(n){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:both}.small-block-grid-5>li{width:20%;padding:0 0.625em 1.25em}.small-block-grid-5>li:nth-of-type(n){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:both}.small-block-grid-6>li{width:16.66667%;padding:0 0.625em 1.25em}.small-block-grid-6>li:nth-of-type(n){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:both}.small-block-grid-7>li{width:14.28571%;padding:0 0.625em 1.25em}.small-block-grid-7>li:nth-of-type(n){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:both}.small-block-grid-8>li{width:12.5%;padding:0 0.625em 1.25em}.small-block-grid-8>li:nth-of-type(n){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:both}.small-block-grid-9>li{width:11.11111%;padding:0 0.625em 1.25em}.small-block-grid-9>li:nth-of-type(n){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:both}.small-block-grid-10>li{width:10%;padding:0 0.625em 1.25em}.small-block-grid-10>li:nth-of-type(n){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:both}.small-block-grid-11>li{width:9.09091%;padding:0 0.625em 1.25em}.small-block-grid-11>li:nth-of-type(n){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:both}.small-block-grid-12>li{width:8.33333%;padding:0 0.625em 1.25em}.small-block-grid-12>li:nth-of-type(n){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 768px){.small-block-grid-1>li:nth-of-type(1n+1){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:none}.large-block-grid-1>li{width:100%;padding:0 0.625em 1.25em}.large-block-grid-1>li:nth-of-type(n){clear:none}.large-block-grid-1>li:nth-of-type(1n+1){clear:both}.large-block-grid-2>li{width:50%;padding:0 0.625em 1.25em}.large-block-grid-2>li:nth-of-type(n){clear:none}.large-block-grid-2>li:nth-of-type(2n+1){clear:both}.large-block-grid-3>li{width:33.33333%;padding:0 0.625em 1.25em}.large-block-grid-3>li:nth-of-type(n){clear:none}.large-block-grid-3>li:nth-of-type(3n+1){clear:both}.large-block-grid-4>li{width:25%;padding:0 0.625em 1.25em}.large-block-grid-4>li:nth-of-type(n){clear:none}.large-block-grid-4>li:nth-of-type(4n+1){clear:both}.large-block-grid-5>li{width:20%;padding:0 0.625em 1.25em}.large-block-grid-5>li:nth-of-type(n){clear:none}.large-block-grid-5>li:nth-of-type(5n+1){clear:both}.large-block-grid-6>li{width:16.66667%;padding:0 0.625em 1.25em}.large-block-grid-6>li:nth-of-type(n){clear:none}.large-block-grid-6>li:nth-of-type(6n+1){clear:both}.large-block-grid-7>li{width:14.28571%;padding:0 0.625em 1.25em}.large-block-grid-7>li:nth-of-type(n){clear:none}.large-block-grid-7>li:nth-of-type(7n+1){clear:both}.large-block-grid-8>li{width:12.5%;padding:0 0.625em 1.25em}.large-block-grid-8>li:nth-of-type(n){clear:none}.large-block-grid-8>li:nth-of-type(8n+1){clear:both}.large-block-grid-9>li{width:11.11111%;padding:0 0.625em 1.25em}.large-block-grid-9>li:nth-of-type(n){clear:none}.large-block-grid-9>li:nth-of-type(9n+1){clear:both}.large-block-grid-10>li{width:10%;padding:0 0.625em 1.25em}.large-block-grid-10>li:nth-of-type(n){clear:none}.large-block-grid-10>li:nth-of-type(10n+1){clear:both}.large-block-grid-11>li{width:9.09091%;padding:0 0.625em 1.25em}.large-block-grid-11>li:nth-of-type(n){clear:none}.large-block-grid-11>li:nth-of-type(11n+1){clear:both}.large-block-grid-12>li{width:8.33333%;padding:0 0.625em 1.25em}.large-block-grid-12>li:nth-of-type(n){clear:none}.large-block-grid-12>li:nth-of-type(12n+1){clear:both}}p.lead{font-size:1.21875em;line-height:1.6}.subheader{line-height:1.4;color:#8fa2cf;font-weight:300;margin-top:0.2em;margin-bottom:0.5em}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr}a{color:#2ba6cb;text-decoration:none;line-height:inherit}a:hover,a:focus{color:#2795b6}a img{border:none}p{font-family:inherit;font-weight:normal;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility}p aside{font-size:0.875em;line-height:1.35;font-style:italic}h1,h2,h3,h4,h5,h6{font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:bold;font-style:normal;color:#3b528a;text-rendering:optimizeLegibility;margin-top:0.2em;margin-bottom:0.5em;line-height:1.2125em}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:60%;color:#8fa2cf;line-height:0}h1{font-size:2.125em}h2{font-size:1.6875em}h3{font-size:1.375em}h4{font-size:1.125em}h5{font-size:1.125em}h6{font-size:1em}hr{border:solid #ddd;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:bold;line-height:inherit}small{font-size:60%;line-height:inherit}code{font-family:Consolas,"Liberation Mono",Courier,monospace;font-weight:bold;color:#7f0a0c}ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit}ul,ol{margin-left:0}ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em}ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}ul.square{list-style-type:square}ul.circle{list-style-type:circle}ul.disc{list-style-type:disc}ul.no-bullet{list-style:none}ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0}dl dt{margin-bottom:0.3em;font-weight:bold}dl dd{margin-bottom:0.75em}abbr,acronym{text-transform:uppercase;font-size:90%;color:#1c1b39;border-bottom:1px dotted #ddd;cursor:help}abbr{text-transform:none}blockquote{margin:0 0 1.25em;padding:0.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd}blockquote cite{display:block;font-size:0.8125em;color:#6b84c0}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#6b84c0}blockquote,blockquote p{line-height:1.6;color:#8fa2cf}.vcard{display:inline-block;margin:0 0 1.25em 0;border:1px solid #ddd;padding:0.625em 0.75em}.vcard li{margin:0;display:block}.vcard .fn{font-weight:bold;font-size:0.9375em}.vevent .summary{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;font-weight:bold;border:none;padding:0 0.0625em}@media only screen and (min-width: 768px){h1,h2,h3,h4,h5,h6{line-height:1.4}h1{font-size:2.75em}h2{font-size:2.3125em}h3{font-size:1.6875em}h4{font-size:1.4375em}}.print-only{display:none !important}@media print{*{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.hide-on-print{display:none !important}.print-only{display:block !important}.hide-for-print{display:none !important}.show-for-print{display:inherit !important}}button,.button{border-style:solid;border-width:1px;cursor:pointer;font-family:inherit;font-weight:bold;line-height:1;margin:0 0 1.25em;position:relative;text-decoration:none;text-align:center;display:inline-block;padding-top:0.75em;padding-right:1.5em;padding-bottom:0.8125em;padding-left:1.5em;font-size:1em;background-color:#2ba6cb;border-color:#2284a1;color:#fff}button:hover,button:focus,.button:hover,.button:focus{background-color:#2284a1}button:hover,button:focus,.button:hover,.button:focus{color:#fff}button.secondary,.button.secondary{background-color:#e9e9e9;border-color:#d0d0d0;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#d0d0d0}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#5da423;border-color:#457a1a;color:#fff}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#457a1a}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#fff}button.alert,.button.alert{background-color:#c60f13;border-color:#970b0e;color:#fff}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#970b0e}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#fff}button.large,.button.large{padding-top:1em;padding-right:2em;padding-bottom:1.0625em;padding-left:2em;font-size:1.25em}button.small,.button.small{padding-top:0.5625em;padding-right:1.125em;padding-bottom:0.625em;padding-left:1.125em;font-size:0.8125em}button.tiny,.button.tiny{padding-top:0.4375em;padding-right:0.875em;padding-bottom:0.5em;padding-left:0.875em;font-size:0.6875em}button.expand,.button.expand{padding-right:0px;padding-left:0px;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:0.75em}button.right-align,.button.right-align{text-align:right;padding-right:0.75em}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#2ba6cb;border-color:#2284a1;color:#fff;cursor:default;opacity:0.6;-webkit-box-shadow:none;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#2284a1}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#fff}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#2ba6cb}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#e9e9e9;border-color:#d0d0d0;color:#333;cursor:default;opacity:0.6;-webkit-box-shadow:none;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#d0d0d0}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#e9e9e9}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#5da423;border-color:#457a1a;color:#fff;cursor:default;opacity:0.6;-webkit-box-shadow:none;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#457a1a}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#fff}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#5da423}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#c60f13;border-color:#970b0e;color:#fff;cursor:default;opacity:0.6;-webkit-box-shadow:none;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#970b0e}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#fff}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#c60f13}button,.button{padding-top:0.8125em;padding-bottom:0.75em;-webkit-appearance:none}button.tiny,.button.tiny{padding-top:0.5em;padding-bottom:0.4375em;-webkit-appearance:none}button.small,.button.small{padding-top:0.625em;padding-bottom:0.5625em;-webkit-appearance:none}button.large,.button.large{padding-top:1.03125em;padding-bottom:1.03125em;-webkit-appearance:none}@media only screen{button,.button{-webkit-box-shadow:0 1px 0 rgba(255,255,255,0.5) inset;box-shadow:0 1px 0 rgba(255,255,255,0.5) inset;-webkit-transition:background-color 300ms ease-out;-moz-transition:background-color 300ms ease-out;transition:background-color 300ms ease-out}button:active,.button:active{-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.2) inset;box-shadow:0 1px 0 rgba(0,0,0,0.2) inset}button.radius,.button.radius{-webkit-border-radius:3px;border-radius:3px}button.round,.button.round{-webkit-border-radius:1000px;border-radius:1000px}}@media only screen and (min-width: 768px){button,.button{display:inline-block}}form{margin:0 0 1em}form .row .row{margin:0 -0.5em}form .row .row .column,form .row .row .columns{padding:0 0.5em}form .row .row.collapse{margin:0}form .row .row.collapse .column,form .row .row.collapse .columns{padding:0}form .row input.column,form .row input.columns,form .row textarea.column,form .row textarea.columns{padding-left:0.5em}label{font-size:0.875em;color:#4d4d4d;cursor:pointer;display:block;font-weight:500;margin-bottom:0.1875em}label.right{float:none;text-align:right}label.inline{margin:0 0 1em 0;padding:0.625em 0}.prefix,.postfix{display:block;position:relative;z-index:2;text-align:center;width:100%;padding-top:0;padding-bottom:0;border-style:solid;border-width:1px;overflow:hidden;font-size:0.875em;height:2.3125em;line-height:2.3125em}.postfix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;line-height:2.125em}.prefix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;line-height:2.125em}.prefix.button.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.postfix.button.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.prefix.button.round{-webkit-border-radius:0;border-radius:0;-moz-border-radius-bottomleft:1000px;-moz-border-radius-topleft:1000px;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.postfix.button.round{-webkit-border-radius:0;border-radius:0;-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}span.prefix{background:#f2f2f2;border-color:#d9d9d9;border-right:none;color:#333}span.prefix.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}span.postfix{background:#f2f2f2;border-color:#ccc;border-left:none;color:#333}span.postfix.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.input-group.radius>*:first-child,.input-group.radius>*:first-child *{-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.input-group.radius>*:last-child,.input-group.radius>*:last-child *{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.input-group.round>*:first-child,.input-group.round>*:first-child *{-moz-border-radius-bottomleft:1000px;-moz-border-radius-topleft:1000px;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.input-group.round>*:last-child,.input-group.round>*:last-child *{-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="week"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],textarea{background-color:#fff;font-family:inherit;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:rgba(0,0,0,0.75);display:block;font-size:0.875em;margin:0 0 1em 0;padding:0.5em;height:2.3125em;width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:-webkit-box-shadow 0.45s,border-color 0.45s ease-in-out;-moz-transition:-moz-box-shadow 0.45s,border-color 0.45s ease-in-out;transition:box-shadow 0.45s,border-color 0.45s ease-in-out}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,textarea:focus{-webkit-box-shadow:0 0 5px #999;-moz-box-shadow:0 0 5px #999;box-shadow:0 0 5px #999;border-color:#999}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,textarea:focus{background:#fafafa;border-color:#999;outline:none}input[type="text"][disabled],input[type="password"][disabled],input[type="date"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="month"][disabled],input[type="week"][disabled],input[type="email"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="time"][disabled],input[type="url"][disabled],textarea[disabled]{background-color:#ddd}input[type="file"],input[type="checkbox"],input[type="radio"],select{margin:0 0 1em 0}input[type="file"]{width:100%}fieldset{border:solid 1px #ddd;padding:1.25em;margin:1.125em 0}fieldset legend{font-weight:bold;background:#fff;padding:0 0.1875em;margin:0;margin-left:-0.1875em}.error input,input.error,.error textarea,textarea.error{border-color:#c60f13;background-color:rgba(198,15,19,0.1)}.error input:focus,input.error:focus,.error textarea:focus,textarea.error:focus{background:#fafafa;border-color:#999}.error label,label.error{color:#c60f13}.error small,small.error{display:block;padding:0.375em 0.25em;margin-top:-1.3125em;margin-bottom:1em;font-size:0.75em;font-weight:bold;background:#c60f13;color:#fff}form.custom .hidden-field{margin-left:-99999px;position:absolute;visibility:hidden}form.custom .custom{display:inline-block;width:16px;height:16px;position:relative;vertical-align:middle;border:solid 1px #ccc;background:#fff}form.custom .custom.checkbox{-webkit-border-radius:0px;border-radius:0px;padding:-1px}form.custom .custom.radio{-webkit-border-radius:1000px;border-radius:1000px;padding:3px}form.custom .custom.checkbox:before{content:"";display:block;font-size:16px;color:#fff}form.custom .custom.radio.checked:before{content:"";display:block;width:8px;height:8px;-webkit-border-radius:1000px;border-radius:1000px;background:#222;position:relative}form.custom .custom.checkbox.checked:before{content:"\00d7";color:#222;position:absolute;top:-50%;left:50%;margin-top:4px;margin-left:-5px}form.custom .custom.dropdown{display:block;position:relative;top:0;height:2.3125em;margin-bottom:1.25em;margin-top:0px;padding:0px;width:100%;background:#fff;background:-moz-linear-gradient(top, #fff 0%, #f3f3f3 100%);background:-webkit-linear-gradient(top, #fff 0%, #f3f3f3 100%);-webkit-box-shadow:none;background:linear-gradient(to bottom, #fff 0%, #f3f3f3 100%);box-shadow:none;font-size:0.875em;vertical-align:top}form.custom .custom.dropdown ul{overflow-y:auto;max-height:200px}form.custom .custom.dropdown .current{cursor:default;white-space:nowrap;line-height:2.25em;color:rgba(0,0,0,0.75);text-decoration:none;overflow:hidden;display:block;margin-left:0.5em;margin-right:2.3125em}form.custom .custom.dropdown .selector{cursor:default;position:absolute;width:2.5em;height:2.3125em;display:block;right:0;top:0}form.custom .custom.dropdown .selector:after{content:"";display:block;content:"";display:block;width:0;height:0;border:inset 5px;border-color:#aaa transparent transparent transparent;border-top-style:solid;position:absolute;left:0.9375em;top:50%;margin-top:-3px}form.custom .custom.dropdown:hover a.selector:after,form.custom .custom.dropdown.open a.selector:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:#222 transparent transparent transparent;border-top-style:solid}form.custom .custom.dropdown .disabled{color:#888}form.custom .custom.dropdown .disabled:hover{background:transparent;color:#888}form.custom .custom.dropdown .disabled:hover:after{display:none}form.custom .custom.dropdown.open ul{display:block;z-index:10;min-width:100%;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}form.custom .custom.dropdown.small{max-width:134px}form.custom .custom.dropdown.medium{max-width:254px}form.custom .custom.dropdown.large{max-width:434px}form.custom .custom.dropdown.expand{width:100% !important}form.custom .custom.dropdown.open.small ul{min-width:134px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}form.custom .custom.dropdown.open.medium ul{min-width:254px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}form.custom .custom.dropdown.open.large ul{min-width:434px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}form.custom .custom.dropdown ul{position:absolute;width:auto;display:none;margin:0;left:-1px;top:auto;-webkit-box-shadow:0 2px 2px 0px rgba(0,0,0,0.1);box-shadow:0 2px 2px 0px rgba(0,0,0,0.1);margin:0;padding:0;background:#fff;border:solid 1px #ccc;font-size:16px}form.custom .custom.dropdown ul li{color:#555;font-size:0.875em;cursor:default;padding-top:0.25em;padding-bottom:0.25em;padding-left:0.375em;padding-right:2.375em;min-height:1.5em;line-height:1.5em;margin:0;white-space:nowrap;list-style:none}form.custom .custom.dropdown ul li.selected{background:#eee;color:#000}form.custom .custom.dropdown ul li:hover{background-color:#e4e4e4;color:#000}form.custom .custom.dropdown ul li.selected:hover{background:#eee;cursor:default;color:#000}form.custom .custom.dropdown ul.show{display:block}form.custom .custom.disabled{background:#ddd}.button-group{list-style:none;margin:0;*zoom:1}.button-group:before,.button-group:after{content:" ";display:table}.button-group:after{clear:both}.button-group>*{margin:0 0 0 -1px;float:left}.button-group>*:first-child{margin-left:0}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.round>*:first-child,.button-group.round>*:first-child>a,.button-group.round>*:first-child>button,.button-group.round>*:first-child>.button{-moz-border-radius-bottomleft:1000px;-moz-border-radius-topleft:1000px;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round>*:last-child,.button-group.round>*:last-child>a,.button-group.round>*:last-child>button,.button-group.round>*:last-child>.button{-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}.button-group.even-2 li{width:50%}.button-group.even-2 li button,.button-group.even-2 li .button{width:100%}.button-group.even-3 li{width:33.33333%}.button-group.even-3 li button,.button-group.even-3 li .button{width:100%}.button-group.even-4 li{width:25%}.button-group.even-4 li button,.button-group.even-4 li .button{width:100%}.button-group.even-5 li{width:20%}.button-group.even-5 li button,.button-group.even-5 li .button{width:100%}.button-group.even-6 li{width:16.66667%}.button-group.even-6 li button,.button-group.even-6 li .button{width:100%}.button-group.even-7 li{width:14.28571%}.button-group.even-7 li button,.button-group.even-7 li .button{width:100%}.button-group.even-8 li{width:12.5%}.button-group.even-8 li button,.button-group.even-8 li .button{width:100%}.button-bar{*zoom:1}.button-bar:before,.button-bar:after{content:" ";display:table}.button-bar:after{clear:both}.button-bar .button-group{float:left;margin-right:0.625em}.button-bar .button-group div{overflow:hidden}.dropdown.button{position:relative;padding-right:3.1875em}.dropdown.button:before{position:absolute;content:"";width:0;height:0;display:block;border-style:solid;border-color:#fff transparent transparent transparent;top:50%}.dropdown.button:before{border-width:0.5625em;right:1.5em;margin-top:-0.25em}.dropdown.button:before{border-color:#fff transparent transparent transparent}.dropdown.button.tiny{padding-right:2.1875em}.dropdown.button.tiny:before{border-width:0.4375em;right:0.875em;margin-top:-0.15625em}.dropdown.button.tiny:before{border-color:#fff transparent transparent transparent}.dropdown.button.small{padding-right:2.8125em}.dropdown.button.small:before{border-width:0.5625em;right:1.125em;margin-top:-0.21875em}.dropdown.button.small:before{border-color:#fff transparent transparent transparent}.dropdown.button.large{padding-right:4em}.dropdown.button.large:before{border-width:0.625em;right:1.75em;margin-top:-0.3125em}.dropdown.button.large:before{border-color:#fff transparent transparent transparent}.dropdown.button.secondary:before{border-color:#333 transparent transparent transparent}.split.button{position:relative;padding-right:4.8em}.split.button span{display:block;height:100%;position:absolute;right:0;top:0;border-left:solid 1px}.split.button span:before{position:absolute;content:"";width:0;height:0;display:block;border-style:inset;left:50%}.split.button span:active{background-color:rgba(0,0,0,0.1)}.split.button span{border-left-color:#1e728c}.split.button span{width:3em}.split.button span:before{border-top-style:solid;border-width:0.5625em;top:1.125em;margin-left:-0.5625em}.split.button span:before{border-color:#fff transparent transparent transparent}.split.button.secondary span{border-left-color:#c3c3c3}.split.button.secondary span:before{border-color:#fff transparent transparent transparent}.split.button.alert span{border-left-color:#7f0a0c}.split.button.success span{border-left-color:#396516}.split.button.tiny{padding-right:3.9375em}.split.button.tiny span{width:2.84375em}.split.button.tiny span:before{border-top-style:solid;border-width:0.4375em;top:0.875em;margin-left:-0.3125em}.split.button.small{padding-right:3.9375em}.split.button.small span{width:2.8125em}.split.button.small span:before{border-top-style:solid;border-width:0.5625em;top:0.84375em;margin-left:-0.5625em}.split.button.large{padding-right:6em}.split.button.large span{width:3.75em}.split.button.large span:before{border-top-style:solid;border-width:0.625em;top:1.3125em;margin-left:-0.5625em}.split.button.expand{padding-left:2em}.split.button.secondary span:before{border-color:#333 transparent transparent transparent}.split.button.radius span{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button.round span{-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}.flex-video{position:relative;padding-top:1.5625em;padding-bottom:67.5%;height:0;margin-bottom:1em;overflow:hidden}.flex-video.widescreen{padding-bottom:57.25%}.flex-video.vimeo{padding-top:0}.flex-video iframe,.flex-video object,.flex-video embed,.flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}.section-container,.section-container.auto{width:100%;display:block;margin-bottom:1.25em;border:1px solid #ccc;border-top:none}.section-container>section,.section-container>.section,.section-container.auto>section,.section-container.auto>.section{position:relative}.section-container>section>.title,.section-container>.section>.title,.section-container.auto>section>.title,.section-container.auto>.section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.section-container>section>.title a,.section-container>.section>.title a,.section-container.auto>section>.title a,.section-container.auto>.section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.section-container>section>.title:hover,.section-container>.section>.title:hover,.section-container.auto>section>.title:hover,.section-container.auto>.section>.title:hover{background-color:#e2e2e2}.section-container>section .content,.section-container>.section .content,.section-container.auto>section .content,.section-container.auto>.section .content{display:none;padding:0.9375em;background-color:#fff}.section-container>section .content>*:last-child,.section-container>.section .content>*:last-child,.section-container.auto>section .content>*:last-child,.section-container.auto>.section .content>*:last-child{margin-bottom:0}.section-container>section .content>*:first-child,.section-container>.section .content>*:first-child,.section-container.auto>section .content>*:first-child,.section-container.auto>.section .content>*:first-child{padding-top:0}.section-container>section .content>*:last-child:not(.flex-video),.section-container>.section .content>*:last-child:not(.flex-video),.section-container.auto>section .content>*:last-child:not(.flex-video),.section-container.auto>.section .content>*:last-child:not(.flex-video){padding-bottom:0}.section-container>section.active>.content,.section-container>.section.active>.content,.section-container.auto>section.active>.content,.section-container.auto>.section.active>.content{display:block}.section-container>section.active>.title,.section-container>.section.active>.title,.section-container.auto>section.active>.title,.section-container.auto>.section.active>.title{background:#d5d5d5}.section-container>section.active>.title a,.section-container>.section.active>.title a,.section-container.auto>section.active>.title a,.section-container.auto>.section.active>.title a{color:#333}.section-container>section>.title,.section-container>.section>.title,.section-container.auto>section>.title,.section-container.auto>.section>.title{top:0;width:100%;margin:0;border-top:solid 1px #ccc}.section-container>section>.title a,.section-container>.section>.title a,.section-container.auto>section>.title a,.section-container.auto>.section>.title a{width:100%}.section-container.tabs{border:0;position:relative}.section-container.tabs>section,.section-container.tabs>.section{border:0;position:static}.section-container.tabs>section>.title,.section-container.tabs>.section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.section-container.tabs>section>.title a,.section-container.tabs>.section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.section-container.tabs>section>.title:hover,.section-container.tabs>.section>.title:hover{background-color:#e2e2e2}.section-container.tabs>section .content,.section-container.tabs>.section .content{display:none;padding:0.9375em;background-color:#fff}.section-container.tabs>section .content>*:last-child,.section-container.tabs>.section .content>*:last-child{margin-bottom:0}.section-container.tabs>section .content>*:first-child,.section-container.tabs>.section .content>*:first-child{padding-top:0}.section-container.tabs>section .content>*:last-child:not(.flex-video),.section-container.tabs>.section .content>*:last-child:not(.flex-video){padding-bottom:0}.section-container.tabs>section.active>.content,.section-container.tabs>.section.active>.content{display:block}.section-container.tabs>section.active>.title,.section-container.tabs>.section.active>.title{background:#fff}.section-container.tabs>section.active>.title a,.section-container.tabs>.section.active>.title a{color:#333}.section-container.tabs>section>.title,.section-container.tabs>.section>.title{width:auto;border:solid 1px #ccc;border-right:0;border-bottom:0;position:absolute;top:0;z-index:1}.section-container.tabs>section>.title a,.section-container.tabs>.section>.title a{width:100%}.section-container.tabs>section:last-child .title,.section-container.tabs>.section:last-child .title{border-right:solid 1px #ccc}.section-container.tabs>section .content,.section-container.tabs>.section .content{border:solid 1px #ccc;position:absolute;z-index:10;display:none;top:-1px}.section-container.tabs>section.active>.title,.section-container.tabs>.section.active>.title{z-index:11;border-bottom:0;background-color:#fff}.section-container.tabs>section.active>.content,.section-container.tabs>.section.active>.content{position:relative}@media only screen and (min-width: 768px){.section-container.auto{border:0;position:relative}.section-container.auto>section,.section-container.auto>.section{border:0;position:static}.section-container.auto>section>.title,.section-container.auto>.section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.section-container.auto>section>.title a,.section-container.auto>.section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.section-container.auto>section>.title:hover,.section-container.auto>.section>.title:hover{background-color:#e2e2e2}.section-container.auto>section .content,.section-container.auto>.section .content{display:none;padding:0.9375em;background-color:#fff}.section-container.auto>section .content>*:last-child,.section-container.auto>.section .content>*:last-child{margin-bottom:0}.section-container.auto>section .content>*:first-child,.section-container.auto>.section .content>*:first-child{padding-top:0}.section-container.auto>section .content>*:last-child:not(.flex-video),.section-container.auto>.section .content>*:last-child:not(.flex-video){padding-bottom:0}.section-container.auto>section.active>.content,.section-container.auto>.section.active>.content{display:block}.section-container.auto>section.active>.title,.section-container.auto>.section.active>.title{background:#fff}.section-container.auto>section.active>.title a,.section-container.auto>.section.active>.title a{color:#333}.section-container.auto>section>.title,.section-container.auto>.section>.title{width:auto;border:solid 1px #ccc;border-right:0;border-bottom:0;position:absolute;top:0;z-index:1}.section-container.auto>section>.title a,.section-container.auto>.section>.title a{width:100%}.section-container.auto>section:last-child .title,.section-container.auto>.section:last-child .title{border-right:solid 1px #ccc}.section-container.auto>section .content,.section-container.auto>.section .content{border:solid 1px #ccc;position:absolute;z-index:10;display:none;top:-1px}.section-container.auto>section.active>.title,.section-container.auto>.section.active>.title{z-index:11;border-bottom:0;background-color:#fff}.section-container.auto>section.active>.content,.section-container.auto>.section.active>.content{position:relative}.section-container.accordion .section{padding-top:0 !important}.section-container.vertical-tabs{border:1px solid #ccc;position:relative}.section-container.vertical-tabs section,.section-container.vertical-tabs .section{padding-top:0 !important;border:0;position:static}.section-container.vertical-tabs section>.title,.section-container.vertical-tabs .section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.section-container.vertical-tabs section>.title a,.section-container.vertical-tabs .section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.section-container.vertical-tabs section>.title:hover,.section-container.vertical-tabs .section>.title:hover{background-color:#e2e2e2}.section-container.vertical-tabs section .content,.section-container.vertical-tabs .section .content{display:none;padding:0.9375em;background-color:#fff}.section-container.vertical-tabs section .content>*:last-child,.section-container.vertical-tabs .section .content>*:last-child{margin-bottom:0}.section-container.vertical-tabs section .content>*:first-child,.section-container.vertical-tabs .section .content>*:first-child{padding-top:0}.section-container.vertical-tabs section .content>*:last-child:not(.flex-video),.section-container.vertical-tabs .section .content>*:last-child:not(.flex-video){padding-bottom:0}.section-container.vertical-tabs section.active>.content,.section-container.vertical-tabs .section.active>.content{display:block}.section-container.vertical-tabs section.active>.title,.section-container.vertical-tabs .section.active>.title{background:#d5d5d5}.section-container.vertical-tabs section.active>.title a,.section-container.vertical-tabs .section.active>.title a{color:#333}.section-container.vertical-tabs section>.title,.section-container.vertical-tabs .section>.title{position:absolute;border-top:solid 1px #ccc;width:12.5em}.section-container.vertical-tabs section:first-child .title,.section-container.vertical-tabs .section:first-child .title{border-top:0}.section-container.vertical-tabs section .content,.section-container.vertical-tabs .section .content{display:block;position:relative;left:12.5em;border-left:solid 1px #ccc;z-index:10}.section-container.vertical-tabs section.active>.title,.section-container.vertical-tabs .section.active>.title{background-color:#d5d5d5;width:12.5625em;border-right:solid 0 transparent;z-index:11}.section-container.vertical-tabs section.active:last-child .title,.section-container.vertical-tabs .section.active:last-child .title{border-bottom:0}.section-container.vertical-nav{border:0;position:relative}.section-container.vertical-nav>section,.section-container.vertical-nav>.section{padding-top:0 !important;position:relative}.section-container.vertical-nav>section>.title,.section-container.vertical-nav>.section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.section-container.vertical-nav>section>.title a,.section-container.vertical-nav>.section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.section-container.vertical-nav>section>.title:hover,.section-container.vertical-nav>.section>.title:hover{background-color:#e2e2e2}.section-container.vertical-nav>section .content,.section-container.vertical-nav>.section .content{display:none;padding:0.9375em;background-color:#fff}.section-container.vertical-nav>section .content>*:last-child,.section-container.vertical-nav>.section .content>*:last-child{margin-bottom:0}.section-container.vertical-nav>section .content>*:first-child,.section-container.vertical-nav>.section .content>*:first-child{padding-top:0}.section-container.vertical-nav>section .content>*:last-child:not(.flex-video),.section-container.vertical-nav>.section .content>*:last-child:not(.flex-video){padding-bottom:0}.section-container.vertical-nav>section.active>.content,.section-container.vertical-nav>.section.active>.content{display:block}.section-container.vertical-nav>section.active>.title,.section-container.vertical-nav>.section.active>.title{background:#d5d5d5}.section-container.vertical-nav>section.active>.title a,.section-container.vertical-nav>.section.active>.title a{color:#333}.section-container.vertical-nav>section>.title,.section-container.vertical-nav>.section>.title{border-top:none;border:solid 1px #ccc}.section-container.vertical-nav>section>.title a,.section-container.vertical-nav>.section>.title a{display:block;width:100%}.section-container.vertical-nav>section .content,.section-container.vertical-nav>.section .content{display:none}.section-container.vertical-nav>section:first-child .title,.section-container.vertical-nav>.section:first-child .title{border-bottom:none}.section-container.vertical-nav>section.active>.content,.section-container.vertical-nav>.section.active>.content{display:block;position:absolute;left:100%;top:0px;z-index:999;min-width:12.5em;border:solid 1px #ccc}.section-container.horizontal-nav{position:relative;background:#efefef;border:1px solid #ccc}.section-container.horizontal-nav>section,.section-container.horizontal-nav>.section{padding-top:0;border:0;position:static}.section-container.horizontal-nav>section>.title,.section-container.horizontal-nav>.section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.section-container.horizontal-nav>section>.title a,.section-container.horizontal-nav>.section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.section-container.horizontal-nav>section>.title:hover,.section-container.horizontal-nav>.section>.title:hover{background-color:#e2e2e2}.section-container.horizontal-nav>section .content,.section-container.horizontal-nav>.section .content{display:none;padding:0.9375em;background-color:#fff}.section-container.horizontal-nav>section .content>*:last-child,.section-container.horizontal-nav>.section .content>*:last-child{margin-bottom:0}.section-container.horizontal-nav>section .content>*:first-child,.section-container.horizontal-nav>.section .content>*:first-child{padding-top:0}.section-container.horizontal-nav>section .content>*:last-child:not(.flex-video),.section-container.horizontal-nav>.section .content>*:last-child:not(.flex-video){padding-bottom:0}.section-container.horizontal-nav>section.active>.content,.section-container.horizontal-nav>.section.active>.content{display:block}.section-container.horizontal-nav>section.active>.title,.section-container.horizontal-nav>.section.active>.title{background:#d5d5d5}.section-container.horizontal-nav>section.active>.title a,.section-container.horizontal-nav>.section.active>.title a{color:#333}.section-container.horizontal-nav>section>.title,.section-container.horizontal-nav>.section>.title{width:auto;border:solid 1px #ccc;border-left:0;top:-1px;position:absolute;z-index:1}.section-container.horizontal-nav>section>.title a,.section-container.horizontal-nav>.section>.title a{width:100%}.section-container.horizontal-nav>section .content,.section-container.horizontal-nav>.section .content{display:none}.section-container.horizontal-nav>section.active>.content,.section-container.horizontal-nav>.section.active>.content{display:block;position:absolute;z-index:999;left:0;top:-2px;min-width:12.5em;border:solid 1px #ccc}}.no-js .section-container.auto,.no-js .section-container.accordion,.no-js .section-container.tabs,.no-js .section-container.vertical-tabs,.no-js .section-container.vertical-nav,.no-js .section-container.horizontal-nav{width:100%;display:block;margin-bottom:1.25em;border:1px solid #ccc;border-top:none}.no-js .section-container.auto>section,.no-js .section-container.auto>.section,.no-js .section-container.accordion>section,.no-js .section-container.accordion>.section,.no-js .section-container.tabs>section,.no-js .section-container.tabs>.section,.no-js .section-container.vertical-tabs>section,.no-js .section-container.vertical-tabs>.section,.no-js .section-container.vertical-nav>section,.no-js .section-container.vertical-nav>.section,.no-js .section-container.horizontal-nav>section,.no-js .section-container.horizontal-nav>.section{position:relative}.no-js .section-container.auto>section>.title,.no-js .section-container.auto>.section>.title,.no-js .section-container.accordion>section>.title,.no-js .section-container.accordion>.section>.title,.no-js .section-container.tabs>section>.title,.no-js .section-container.tabs>.section>.title,.no-js .section-container.vertical-tabs>section>.title,.no-js .section-container.vertical-tabs>.section>.title,.no-js .section-container.vertical-nav>section>.title,.no-js .section-container.vertical-nav>.section>.title,.no-js .section-container.horizontal-nav>section>.title,.no-js .section-container.horizontal-nav>.section>.title{background-color:#efefef;cursor:pointer;margin-bottom:0}.no-js .section-container.auto>section>.title a,.no-js .section-container.auto>.section>.title a,.no-js .section-container.accordion>section>.title a,.no-js .section-container.accordion>.section>.title a,.no-js .section-container.tabs>section>.title a,.no-js .section-container.tabs>.section>.title a,.no-js .section-container.vertical-tabs>section>.title a,.no-js .section-container.vertical-tabs>.section>.title a,.no-js .section-container.vertical-nav>section>.title a,.no-js .section-container.vertical-nav>.section>.title a,.no-js .section-container.horizontal-nav>section>.title a,.no-js .section-container.horizontal-nav>.section>.title a{padding:0.9375em;display:inline-block;color:#333;font-size:0.875em;white-space:nowrap}.no-js .section-container.auto>section>.title:hover,.no-js .section-container.auto>.section>.title:hover,.no-js .section-container.accordion>section>.title:hover,.no-js .section-container.accordion>.section>.title:hover,.no-js .section-container.tabs>section>.title:hover,.no-js .section-container.tabs>.section>.title:hover,.no-js .section-container.vertical-tabs>section>.title:hover,.no-js .section-container.vertical-tabs>.section>.title:hover,.no-js .section-container.vertical-nav>section>.title:hover,.no-js .section-container.vertical-nav>.section>.title:hover,.no-js .section-container.horizontal-nav>section>.title:hover,.no-js .section-container.horizontal-nav>.section>.title:hover{background-color:#e2e2e2}.no-js .section-container.auto>section .content,.no-js .section-container.auto>.section .content,.no-js .section-container.accordion>section .content,.no-js .section-container.accordion>.section .content,.no-js .section-container.tabs>section .content,.no-js .section-container.tabs>.section .content,.no-js .section-container.vertical-tabs>section .content,.no-js .section-container.vertical-tabs>.section .content,.no-js .section-container.vertical-nav>section .content,.no-js .section-container.vertical-nav>.section .content,.no-js .section-container.horizontal-nav>section .content,.no-js .section-container.horizontal-nav>.section .content{display:none;padding:0.9375em;background-color:#fff}.no-js .section-container.auto>section .content>*:last-child,.no-js .section-container.auto>.section .content>*:last-child,.no-js .section-container.accordion>section .content>*:last-child,.no-js .section-container.accordion>.section .content>*:last-child,.no-js .section-container.tabs>section .content>*:last-child,.no-js .section-container.tabs>.section .content>*:last-child,.no-js .section-container.vertical-tabs>section .content>*:last-child,.no-js .section-container.vertical-tabs>.section .content>*:last-child,.no-js .section-container.vertical-nav>section .content>*:last-child,.no-js .section-container.vertical-nav>.section .content>*:last-child,.no-js .section-container.horizontal-nav>section .content>*:last-child,.no-js .section-container.horizontal-nav>.section .content>*:last-child{margin-bottom:0}.no-js .section-container.auto>section .content>*:first-child,.no-js .section-container.auto>.section .content>*:first-child,.no-js .section-container.accordion>section .content>*:first-child,.no-js .section-container.accordion>.section .content>*:first-child,.no-js .section-container.tabs>section .content>*:first-child,.no-js .section-container.tabs>.section .content>*:first-child,.no-js .section-container.vertical-tabs>section .content>*:first-child,.no-js .section-container.vertical-tabs>.section .content>*:first-child,.no-js .section-container.vertical-nav>section .content>*:first-child,.no-js .section-container.vertical-nav>.section .content>*:first-child,.no-js .section-container.horizontal-nav>section .content>*:first-child,.no-js .section-container.horizontal-nav>.section .content>*:first-child{padding-top:0}.no-js .section-container.auto>section .content>*:last-child:not(.flex-video),.no-js .section-container.auto>.section .content>*:last-child:not(.flex-video),.no-js .section-container.accordion>section .content>*:last-child:not(.flex-video),.no-js .section-container.accordion>.section .content>*:last-child:not(.flex-video),.no-js .section-container.tabs>section .content>*:last-child:not(.flex-video),.no-js .section-container.tabs>.section .content>*:last-child:not(.flex-video),.no-js .section-container.vertical-tabs>section .content>*:last-child:not(.flex-video),.no-js .section-container.vertical-tabs>.section .content>*:last-child:not(.flex-video),.no-js .section-container.vertical-nav>section .content>*:last-child:not(.flex-video),.no-js .section-container.vertical-nav>.section .content>*:last-child:not(.flex-video),.no-js .section-container.horizontal-nav>section .content>*:last-child:not(.flex-video),.no-js .section-container.horizontal-nav>.section .content>*:last-child:not(.flex-video){padding-bottom:0}.no-js .section-container.auto>section.active>.content,.no-js .section-container.auto>.section.active>.content,.no-js .section-container.accordion>section.active>.content,.no-js .section-container.accordion>.section.active>.content,.no-js .section-container.tabs>section.active>.content,.no-js .section-container.tabs>.section.active>.content,.no-js .section-container.vertical-tabs>section.active>.content,.no-js .section-container.vertical-tabs>.section.active>.content,.no-js .section-container.vertical-nav>section.active>.content,.no-js .section-container.vertical-nav>.section.active>.content,.no-js .section-container.horizontal-nav>section.active>.content,.no-js .section-container.horizontal-nav>.section.active>.content{display:block}.no-js .section-container.auto>section.active>.title,.no-js .section-container.auto>.section.active>.title,.no-js .section-container.accordion>section.active>.title,.no-js .section-container.accordion>.section.active>.title,.no-js .section-container.tabs>section.active>.title,.no-js .section-container.tabs>.section.active>.title,.no-js .section-container.vertical-tabs>section.active>.title,.no-js .section-container.vertical-tabs>.section.active>.title,.no-js .section-container.vertical-nav>section.active>.title,.no-js .section-container.vertical-nav>.section.active>.title,.no-js .section-container.horizontal-nav>section.active>.title,.no-js .section-container.horizontal-nav>.section.active>.title{background:#d5d5d5}.no-js .section-container.auto>section.active>.title a,.no-js .section-container.auto>.section.active>.title a,.no-js .section-container.accordion>section.active>.title a,.no-js .section-container.accordion>.section.active>.title a,.no-js .section-container.tabs>section.active>.title a,.no-js .section-container.tabs>.section.active>.title a,.no-js .section-container.vertical-tabs>section.active>.title a,.no-js .section-container.vertical-tabs>.section.active>.title a,.no-js .section-container.vertical-nav>section.active>.title a,.no-js .section-container.vertical-nav>.section.active>.title a,.no-js .section-container.horizontal-nav>section.active>.title a,.no-js .section-container.horizontal-nav>.section.active>.title a{color:#333}.no-js .section-container.auto>section>.title,.no-js .section-container.auto>.section>.title,.no-js .section-container.accordion>section>.title,.no-js .section-container.accordion>.section>.title,.no-js .section-container.tabs>section>.title,.no-js .section-container.tabs>.section>.title,.no-js .section-container.vertical-tabs>section>.title,.no-js .section-container.vertical-tabs>.section>.title,.no-js .section-container.vertical-nav>section>.title,.no-js .section-container.vertical-nav>.section>.title,.no-js .section-container.horizontal-nav>section>.title,.no-js .section-container.horizontal-nav>.section>.title{top:0;width:100%;margin:0;border-top:solid 1px #ccc}.no-js .section-container.auto>section>.title a,.no-js .section-container.auto>.section>.title a,.no-js .section-container.accordion>section>.title a,.no-js .section-container.accordion>.section>.title a,.no-js .section-container.tabs>section>.title a,.no-js .section-container.tabs>.section>.title a,.no-js .section-container.vertical-tabs>section>.title a,.no-js .section-container.vertical-tabs>.section>.title a,.no-js .section-container.vertical-nav>section>.title a,.no-js .section-container.vertical-nav>.section>.title a,.no-js .section-container.horizontal-nav>section>.title a,.no-js .section-container.horizontal-nav>.section>.title a{width:100%}.no-js .section-container.auto>section .title,.no-js .section-container.auto>.section .title,.no-js .section-container.accordion>section .title,.no-js .section-container.accordion>.section .title,.no-js .section-container.tabs>section .title,.no-js .section-container.tabs>.section .title,.no-js .section-container.vertical-tabs>section .title,.no-js .section-container.vertical-tabs>.section .title,.no-js .section-container.vertical-nav>section .title,.no-js .section-container.vertical-nav>.section .title,.no-js .section-container.horizontal-nav>section .title,.no-js .section-container.horizontal-nav>.section .title{position:static;width:100%;border-left:0;border-right:0}.no-js .section-container.auto>section .content,.no-js .section-container.auto>.section .content,.no-js .section-container.accordion>section .content,.no-js .section-container.accordion>.section .content,.no-js .section-container.tabs>section .content,.no-js .section-container.tabs>.section .content,.no-js .section-container.vertical-tabs>section .content,.no-js .section-container.vertical-tabs>.section .content,.no-js .section-container.vertical-nav>section .content,.no-js .section-container.vertical-nav>.section .content,.no-js .section-container.horizontal-nav>section .content,.no-js .section-container.horizontal-nav>.section .content{position:static;display:block;width:100%;border-left:0;border-right:0;border-bottom:0}.contain-to-grid{width:100%;background:#111}.contain-to-grid .top-bar{margin-bottom:0}.fixed{width:100%;left:0;position:fixed;top:0;z-index:99}.top-bar{overflow:hidden;height:45px;line-height:45px;position:relative;background:#111;margin-bottom:1.875em}.top-bar ul{margin-bottom:0;list-style:none}.top-bar .row{max-width:none}.top-bar form,.top-bar input{margin-bottom:0}.top-bar input{height:2.45em}.top-bar .button{padding-top:.5em;padding-bottom:.5em;margin-bottom:0}.top-bar .title-area{position:relative;margin:0}.top-bar .name{height:45px;margin:0;font-size:16px}.top-bar .name h1{line-height:45px;font-size:1.0625em;margin:0}.top-bar .name h1 a{font-weight:bold;color:#fff;width:50%;display:block;padding:0 15px}.top-bar .toggle-topbar{position:absolute;right:0;top:0}.top-bar .toggle-topbar a{color:#fff;text-transform:uppercase;font-size:0.8125em;font-weight:bold;position:relative;display:block;padding:0 15px;height:45px;line-height:45px}.top-bar .toggle-topbar.menu-icon{right:15px;top:50%;margin-top:-16px;padding-left:40px}.top-bar .toggle-topbar.menu-icon a{text-indent:-48px;width:34px;height:34px;line-height:33px;padding:0;color:#fff}.top-bar .toggle-topbar.menu-icon a span{position:absolute;right:0;display:block;width:16px;height:0;-webkit-box-shadow:0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff;box-shadow:0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff}.top-bar.expanded{height:auto;background:transparent}.top-bar.expanded .title-area{background:#111}.top-bar.expanded .toggle-topbar a{color:#888}.top-bar.expanded .toggle-topbar a span{-webkit-box-shadow:0 10px 0 1px #888,0 16px 0 1px #888,0 22px 0 1px #888;box-shadow:0 10px 0 1px #888,0 16px 0 1px #888,0 22px 0 1px #888}.top-bar-section{left:0;position:relative;width:auto;-webkit-transition:left 300ms ease-out;-moz-transition:left 300ms ease-out;transition:left 300ms ease-out}.top-bar-section ul{width:100%;height:auto;display:block;background:#222;font-size:16px;margin:0}.top-bar-section .divider,.top-bar-section [role="separator"]{border-bottom:solid 1px #2b2b2b;border-top:solid 1px #000;clear:both;height:1px;width:100%}.top-bar-section ul li>a{display:block;width:100%;color:#fff;padding:12px 0 12px 0;padding-left:15px;font-size:0.8125em;font-weight:bold;background:#222}.top-bar-section ul li>a.hover{background:#090909;color:#fff}.top-bar-section ul li>a.button{background:#2ba6cb;font-size:0.8125em}.top-bar-section ul li>a.button.hover{background:#2284a1}.top-bar-section ul li>a.button.secondary{background:#e9e9e9}.top-bar-section ul li>a.button.secondary.hover{background:#d0d0d0}.top-bar-section ul li>a.button.success{background:#5da423}.top-bar-section ul li>a.button.success.hover{background:#457a1a}.top-bar-section ul li>a.button.alert{background:#c60f13}.top-bar-section ul li>a.button.alert.hover{background:#970b0e}.top-bar-section ul li.active>a{background:#090909;color:#fff}.top-bar-section .has-form{padding:15px}.top-bar-section .has-dropdown{position:relative}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:transparent transparent transparent rgba(255,255,255,0.5);border-left-style:solid;margin-right:15px;margin-top:-4.5px;position:absolute;top:50%;right:0}.top-bar-section .has-dropdown.moved{position:static}.top-bar-section .has-dropdown.moved>.dropdown{visibility:visible}.top-bar-section .dropdown{position:absolute;left:100%;top:0;visibility:hidden;z-index:99}.top-bar-section .dropdown li{width:100%;height:auto}.top-bar-section .dropdown li a{font-weight:normal;padding:8px 15px}.top-bar-section .dropdown li.title h5{margin-bottom:0}.top-bar-section .dropdown li.title h5 a{color:#fff;line-height:22.5px;display:block}.top-bar-section .dropdown label{padding:8px 15px 2px;margin-bottom:0;text-transform:uppercase;color:#555;font-weight:bold;font-size:0.625em}.top-bar-js-breakpoint{width:58.75em !important;visibility:hidden}.js-generated{display:block}@media only screen and (min-width: 58.75em){.top-bar{background:#111;*zoom:1;overflow:visible}.top-bar:before,.top-bar:after{content:" ";display:table}.top-bar:after{clear:both}.top-bar .toggle-topbar{display:none}.top-bar .title-area{float:left}.top-bar .name h1 a{width:auto}.top-bar input,.top-bar .button{line-height:2em;font-size:0.875em;height:2em;padding:0 10px;position:relative;top:8px}.top-bar.expanded{background:#111}.contain-to-grid .top-bar{max-width:62.5em;margin:0 auto}.top-bar-section{-webkit-transition:none 0 0;-moz-transition:none 0 0;transition:none 0 0;left:0 !important}.top-bar-section ul{width:auto;height:auto !important;display:inline}.top-bar-section ul li{float:left}.top-bar-section ul li .js-generated{display:none}.top-bar-section li a:not(.button){padding:0 15px;line-height:45px;background:#111}.top-bar-section li a:not(.button).hover{background:#000}.top-bar-section .has-dropdown>a{padding-right:35px !important}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:rgba(255,255,255,0.5) transparent transparent transparent;border-top-style:solid;margin-top:-2.5px;top:22.5px}.top-bar-section .has-dropdown.moved{position:relative}.top-bar-section .has-dropdown.moved>.dropdown{visibility:hidden}.top-bar-section .has-dropdown.hover>.dropdown{visibility:visible}.top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{border:none;content:"\00bb";margin-top:-16px;right:5px}.top-bar-section .dropdown{left:0;top:auto;background:transparent;min-width:100%}.top-bar-section .dropdown li a{color:#fff;line-height:1;white-space:nowrap;padding:7px 15px;background:#1e1e1e}.top-bar-section .dropdown li label{white-space:nowrap;background:#1e1e1e}.top-bar-section .dropdown li .dropdown{left:100%;top:0}.top-bar-section>ul>.divider,.top-bar-section>ul>[role="separator"]{border-bottom:none;border-top:none;border-right:solid 1px #2b2b2b;border-left:solid 1px #000;clear:none;height:45px;width:0px}.top-bar-section .has-form{background:#111;padding:0 15px;height:45px}.top-bar-section ul.right li .dropdown{left:auto;right:0}.top-bar-section ul.right li .dropdown li .dropdown{right:100%}}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@-moz-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@-o-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.slideshow-wrapper{position:relative}.slideshow-wrapper ul{list-style-type:none;margin:0}.slideshow-wrapper ul li,.slideshow-wrapper ul li .orbit-caption{display:none}.slideshow-wrapper ul li:first-child{display:block}.slideshow-wrapper .orbit-container{background-color:transparent}.slideshow-wrapper .orbit-container li{display:block}.slideshow-wrapper .orbit-container li .orbit-caption{display:block}.preloader{display:block;width:40px;height:40px;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px;border:solid 3px;border-color:#555 #fff;-webkit-border-radius:1000px;border-radius:1000px;-webkit-animation-name:rotate;-webkit-animation-duration:1.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:rotate;-moz-animation-duration:1.5s;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-o-animation-name:rotate;-o-animation-duration:1.5s;-o-animation-iteration-count:infinite;-o-animation-timing-function:linear;animation-name:rotate;animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:linear}.orbit-container{overflow:hidden;width:100%;position:relative;background:#f5f5f5}.orbit-container .orbit-slides-container{list-style:none;margin:0;padding:0;position:relative}.orbit-container .orbit-slides-container img{display:block}.orbit-container .orbit-slides-container>*{position:relative;float:left;height:auto}.orbit-container .orbit-slides-container>* .orbit-caption{position:absolute;bottom:0;background-color:#000;background-color:rgba(0,0,0,0.6);color:#fff;width:100%;padding:10px 14px;font-size:0.875em}.orbit-container .orbit-slide-number{position:absolute;top:10px;left:10px;font-size:12px;color:#fff;background:rgba(0,0,0,0)}.orbit-container .orbit-slide-number span{font-weight:700;padding:0.3125em}.orbit-container .orbit-timer{position:absolute;top:10px;right:10px;height:6px;width:100px}.orbit-container .orbit-timer .orbit-progress{height:100%;background-color:#000;background-color:rgba(0,0,0,0.6);display:block;width:0%}.orbit-container .orbit-timer>span{display:none;position:absolute;top:10px;right:0px;width:11px;height:14px;border:solid 4px #000;border-top:none;border-bottom:none}.orbit-container .orbit-timer.paused>span{right:-6px;top:9px;width:11px;height:14px;border:inset 8px;border-right-style:solid;border-color:transparent transparent transparent #000}.orbit-container:hover .orbit-timer>span{display:block}.orbit-container .orbit-prev,.orbit-container .orbit-next{position:absolute;top:50%;margin-top:-25px;background-color:#000;background-color:rgba(0,0,0,0.6);width:50px;height:60px;line-height:50px;color:white;text-indent:-9999px !important}.orbit-container .orbit-prev>span,.orbit-container .orbit-next>span{position:absolute;top:50%;margin-top:-16px;display:block;width:0;height:0;border:inset 16px}.orbit-container .orbit-prev{left:0}.orbit-container .orbit-prev>span{border-right-style:solid;border-color:transparent;border-right-color:#fff}.orbit-container .orbit-prev:hover>span{border-right-color:#ccc}.orbit-container .orbit-next{right:0}.orbit-container .orbit-next>span{border-color:transparent;border-left-style:solid;border-left-color:#fff;left:50%;margin-left:-8px}.orbit-container .orbit-next:hover>span{border-left-color:#ccc}.orbit-bullets{margin:0 auto 30px auto;overflow:hidden;position:relative;top:10px}.orbit-bullets li{display:block;width:18px;height:18px;background:#999;float:left;margin-right:6px;border:solid 2px #222;-webkit-border-radius:1000px;border-radius:1000px}.orbit-bullets li.active{background:#222}.orbit-bullets li:last-child{margin-right:0}.touch .orbit-container .orbit-prev,.touch .orbit-container .orbit-next{display:none}.touch .orbit-bullets{display:none}@media only screen and (min-width: 768px){.touch .orbit-container .orbit-prev,.touch .orbit-container .orbit-next{display:inherit}.touch .orbit-bullets{display:block}}.reveal-modal-bg{position:fixed;height:100%;width:100%;background:#000;background:rgba(0,0,0,0.45);z-index:98;display:none;top:0;left:0}.reveal-modal{visibility:hidden;display:none;position:absolute;left:50%;z-index:99;height:auto;margin-left:-40%;width:80%;background-color:#fff;padding:1.25em;border:solid 1px #666;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.4);box-shadow:0 0 10px rgba(0,0,0,0.4);top:50px}.reveal-modal .column,.reveal-modal .columns{min-width:0}.reveal-modal>:first-child{margin-top:0}.reveal-modal>:last-child{margin-bottom:0}.reveal-modal .close-reveal-modal{font-size:1.375em;line-height:1;position:absolute;top:0.5em;right:0.6875em;color:#aaa;font-weight:bold;cursor:pointer}@media only screen and (min-width: 768px){.reveal-modal{padding:1.875em;top:6.25em}.reveal-modal.tiny{margin-left:-15%;width:30%}.reveal-modal.small{margin-left:-20%;width:40%}.reveal-modal.medium{margin-left:-30%;width:60%}.reveal-modal.large{margin-left:-35%;width:70%}.reveal-modal.xlarge{margin-left:-47.5%;width:95%}}@media print{.reveal-modal{background:#fff !important}}.joyride-list{display:none}.joyride-tip-guide{display:none;position:absolute;background:#000;color:#fff;z-index:101;top:0;left:2.5%;font-family:inherit;font-weight:normal;width:95%}.lt-ie9 .joyride-tip-guide{max-width:800px;left:50%;margin-left:-400px}.joyride-content-wrapper{width:100%;padding:1.125em 1.25em 1.5em}.joyride-content-wrapper .button{margin-bottom:0 !important}.joyride-tip-guide .joyride-nub{display:block;position:absolute;left:22px;width:0;height:0;border:inset 14px}.joyride-tip-guide .joyride-nub.top{border-top-style:solid;border-color:#000;border-top-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;top:-28px}.joyride-tip-guide .joyride-nub.bottom{border-bottom-style:solid;border-color:#000 !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;bottom:-28px}.joyride-tip-guide .joyride-nub.right{right:-28px}.joyride-tip-guide .joyride-nub.left{left:-28px}.joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6{line-height:1.25;margin:0;font-weight:bold;color:#fff}.joyride-tip-guide p{margin:0 0 1.125em 0;font-size:0.875em;line-height:1.3}.joyride-timer-indicator-wrap{width:50px;height:3px;border:solid 1px #555;position:absolute;right:1.0625em;bottom:1em}.joyride-timer-indicator{display:block;width:0;height:inherit;background:#666}.joyride-close-tip{position:absolute;right:12px;top:10px;color:#777 !important;text-decoration:none;font-size:30px;font-weight:normal;line-height:0.5 !important}.joyride-close-tip:hover,.joyride-close-tip:focus{color:#eee !important}.joyride-modal-bg{position:fixed;height:100%;width:100%;background:transparent;background:rgba(0,0,0,0.5);z-index:100;display:none;top:0;left:0;cursor:pointer}.joyride-expose-wrapper{background-color:#ffffff;position:absolute;border-radius:3px;z-index:102;-moz-box-shadow:0px 0px 30px #fff;-webkit-box-shadow:0px 0px 15px #fff;box-shadow:0px 0px 15px #fff}.joyride-expose-cover{background:transparent;border-radius:3px;position:absolute;z-index:9999;top:0px;left:0px}@media only screen and (min-width: 768px){.joyride-tip-guide{width:300px;left:inherit}.joyride-tip-guide .joyride-nub.bottom{border-color:#000 !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;bottom:-28px}.joyride-tip-guide .joyride-nub.right{border-color:#000 !important;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important;top:22px;left:auto;right:-28px}.joyride-tip-guide .joyride-nub.left{border-color:#000 !important;border-top-color:transparent !important;border-left-color:transparent !important;border-bottom-color:transparent !important;top:22px;left:-28px;right:auto}}[data-clearing]{*zoom:1;margin-bottom:0;margin-left:0;list-style:none}[data-clearing]:before,[data-clearing]:after{content:" ";display:table}[data-clearing]:after{clear:both}[data-clearing] li{float:left;margin-right:10px}.clearing-blackout{background:#111;position:fixed;width:100%;height:100%;top:0;left:0;z-index:998}.clearing-blackout .clearing-close{display:block}.clearing-container{position:relative;z-index:998;height:100%;overflow:hidden;margin:0}.visible-img{height:95%;position:relative}.visible-img img{position:absolute;left:50%;top:50%;margin-left:-50%;max-height:100%;max-width:100%}.clearing-caption{color:#fff;line-height:1.3;margin-bottom:0;text-align:center;bottom:0;background:#111;width:100%;padding:10px 30px;position:absolute;left:0}.clearing-close{z-index:999;padding-left:20px;padding-top:10px;font-size:40px;line-height:1;color:#fff;display:none}.clearing-close:hover,.clearing-close:focus{color:#ccc}.clearing-assembled .clearing-container{height:100%}.clearing-assembled .clearing-container .carousel>ul{display:none}.clearing-feature li{display:none}.clearing-feature li.clearing-featured-img{display:block}@media only screen and (min-width: 768px){.clearing-main-prev,.clearing-main-next{position:absolute;height:100%;width:40px;top:0}.clearing-main-prev>span,.clearing-main-next>span{position:absolute;top:50%;display:block;width:0;height:0;border:solid 16px}.clearing-main-prev{left:0}.clearing-main-prev>span{left:5px;border-color:transparent;border-right-color:#fff}.clearing-main-next{right:0}.clearing-main-next>span{border-color:transparent;border-left-color:#fff}.clearing-main-prev.disabled,.clearing-main-next.disabled{opacity:0.5}.clearing-assembled .clearing-container .carousel{background:#111;height:150px;margin-top:5px}.clearing-assembled .clearing-container .carousel>ul{display:block;z-index:999;width:200%;height:100%;margin-left:0;position:relative;left:0}.clearing-assembled .clearing-container .carousel>ul li{display:block;width:175px;height:inherit;padding:0;float:left;overflow:hidden;margin-right:1px;position:relative;cursor:pointer;opacity:0.4}.clearing-assembled .clearing-container .carousel>ul li.fix-height img{min-height:100%;height:100%;max-width:none}.clearing-assembled .clearing-container .carousel>ul li a.th{border:none;-webkit-box-shadow:none;box-shadow:none;display:block}.clearing-assembled .clearing-container .carousel>ul li img{cursor:pointer !important;min-width:100% !important}.clearing-assembled .clearing-container .carousel>ul li.visible{opacity:1}.clearing-assembled .clearing-container .visible-img{background:#111;overflow:hidden;height:75%}.clearing-close{position:absolute;top:10px;right:20px;padding-left:0;padding-top:0}}.alert-box{border-style:solid;border-width:1px;display:block;font-weight:bold;margin-bottom:1.25em;position:relative;padding:0.6875em 1.3125em 0.75em 0.6875em;font-size:0.875em;background-color:#2ba6cb;border-color:#2284a1;color:#fff}.alert-box .close{font-size:1.375em;padding:5px 4px 4px;line-height:0;position:absolute;top:0.4375em;right:0.3125em;color:#333;opacity:0.3}.alert-box .close:hover,.alert-box .close:focus{opacity:0.5}.alert-box.radius{-webkit-border-radius:3px;border-radius:3px}.alert-box.round{-webkit-border-radius:1000px;border-radius:1000px}.alert-box.success{background-color:#5da423;border-color:#457a1a;color:#fff}.alert-box.alert{background-color:#c60f13;border-color:#970b0e;color:#fff}.alert-box.secondary{background-color:#e9e9e9;border-color:#d0d0d0;color:#505050}.breadcrumbs{display:block;padding:0.5625em 0.875em 0.5625em;overflow:hidden;margin-left:0;list-style:none;border-style:solid;border-width:1px;background-color:#f6f6f6;border-color:#dcdcdc;-webkit-border-radius:3px;border-radius:3px}.breadcrumbs>*{margin:0;float:left;font-size:0.6875em;text-transform:uppercase;color:#2ba6cb}.breadcrumbs>*:hover a,.breadcrumbs>*:focus a{text-decoration:underline}.breadcrumbs>* a,.breadcrumbs>* span{text-transform:uppercase;color:#2ba6cb}.breadcrumbs>*.current{cursor:default;color:#333}.breadcrumbs>*.current a{cursor:default;color:#333}.breadcrumbs>*.current:hover,.breadcrumbs>*.current:hover a,.breadcrumbs>*.current:focus,.breadcrumbs>*.current:focus a{text-decoration:none}.breadcrumbs>*.unavailable{color:#999}.breadcrumbs>*.unavailable a{color:#999}.breadcrumbs>*.unavailable:hover,.breadcrumbs>*.unavailable:hover a,.breadcrumbs>*.unavailable:focus,.breadcrumbs>*.unavailable a:focus{text-decoration:none;color:#999;cursor:default}.breadcrumbs>*:before{content:"/";color:#aaa;margin:0 0.75em;position:relative;top:1px}.breadcrumbs>*:first-child:before{content:" ";margin:0}.keystroke,kbd{background-color:#ededed;border-color:#dbdbdb;color:#222;border-style:solid;border-width:1px;margin:0;font-family:"Consolas","Menlo","Courier",monospace;font-size:0.875em;padding:0.125em 0.25em 0em;-webkit-border-radius:3px;border-radius:3px}.label{font-weight:bold;text-align:center;text-decoration:none;line-height:1;white-space:nowrap;display:inline-block;position:relative;padding:0.1875em 0.625em 0.25em;font-size:0.875em;background-color:#2ba6cb;color:#fff}.label.radius{-webkit-border-radius:3px;border-radius:3px}.label.round{-webkit-border-radius:1000px;border-radius:1000px}.label.alert{background-color:#c60f13;color:#fff}.label.success{background-color:#5da423;color:#fff}.label.secondary{background-color:#e9e9e9;color:#333}.inline-list{margin:0 auto 1.0625em auto;margin-left:-1.375em;margin-right:0;padding:0;list-style:none;overflow:hidden}.inline-list>li{list-style:none;float:left;margin-left:1.375em;display:block}.inline-list>li>*{display:block}.pagination{display:block;height:1.5em;margin-left:-0.3125em}.pagination li{display:block;float:left;height:1.5em;color:#222;font-size:0.875em;margin-left:0.3125em}.pagination li a{display:block;padding:0.0625em 0.4375em 0.0625em;color:#999}.pagination li:hover a,.pagination li a:focus{background:#e6e6e6}.pagination li.unavailable a{cursor:default;color:#999}.pagination li.unavailable:hover a,.pagination li.unavailable a:focus{background:transparent}.pagination li.current a{background:#2ba6cb;color:#fff;font-weight:bold;cursor:default}.pagination li.current a:hover,.pagination li.current a:focus{background:#2ba6cb}.pagination-centered{text-align:center}.pagination-centered ul>li{float:none;display:inline-block}.panel{border-style:solid;border-width:1px;border-color:#d9d9d9;margin-bottom:1.25em;padding:1.25em;background:#f2f2f2}.panel>:first-child{margin-top:0}.panel>:last-child{margin-bottom:0}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6,.panel p{color:#333}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{line-height:1;margin-bottom:0.625em}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{line-height:1.4}.panel.callout{border-style:solid;border-width:1px;border-color:#2284a1;margin-bottom:1.25em;padding:1.25em;background:#2ba6cb;-webkit-box-shadow:0 1px 0 rgba(255,255,255,0.5) inset;box-shadow:0 1px 0 rgba(255,255,255,0.5) inset}.panel.callout>:first-child{margin-top:0}.panel.callout>:last-child{margin-bottom:0}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6,.panel.callout p{color:#fff}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6{line-height:1;margin-bottom:0.625em}.panel.callout h1.subheader,.panel.callout h2.subheader,.panel.callout h3.subheader,.panel.callout h4.subheader,.panel.callout h5.subheader,.panel.callout h6.subheader{line-height:1.4}.panel.radius{-webkit-border-radius:3px;border-radius:3px}.pricing-table{border:solid 1px #ddd;margin-left:0;margin-bottom:1.25em}.pricing-table *{list-style:none;line-height:1}.pricing-table .title{background-color:#ddd;padding:0.9375em 1.25em;text-align:center;color:#333;font-weight:bold;font-size:1em}.pricing-table .price{background-color:#eee;padding:0.9375em 1.25em;text-align:center;color:#333;font-weight:normal;font-size:1.25em}.pricing-table .description{background-color:#fff;padding:0.9375em;text-align:center;color:#777;font-size:0.75em;font-weight:normal;line-height:1.4;border-bottom:dotted 1px #ddd}.pricing-table .bullet-item{background-color:#fff;padding:0.9375em;text-align:center;color:#333;font-size:0.875em;font-weight:normal;border-bottom:dotted 1px #ddd}.pricing-table .cta-button{background-color:#f5f5f5;text-align:center;padding:1.25em 1.25em 0}.progress{background-color:transparent;height:1.5625em;border:1px solid #ccc;padding:0.125em;margin-bottom:0.625em}.progress .meter{background:#2ba6cb;height:100%;display:block}.progress.secondary .meter{background:#e9e9e9;height:100%;display:block}.progress.success .meter{background:#5da423;height:100%;display:block}.progress.alert .meter{background:#c60f13;height:100%;display:block}.progress.radius{-webkit-border-radius:3px;border-radius:3px}.progress.radius .meter{-webkit-border-radius:2px;border-radius:2px}.progress.round{-webkit-border-radius:1000px;border-radius:1000px}.progress.round .meter{-webkit-border-radius:999px;border-radius:999px}.side-nav{display:block;margin:0;padding:0.875em 0;list-style-type:none;list-style-position:inside}.side-nav li{margin:0 0 0.4375em 0;font-size:0.875em}.side-nav li a{display:block;color:#2ba6cb}.side-nav li.active>a:first-child{color:#4d4d4d;font-weight:bold}.side-nav li.divider{border-top:1px solid;height:0;padding:0;list-style:none;border-top-color:#e6e6e6}.sub-nav{display:block;width:auto;overflow:hidden;margin:-0.25em 0 1.125em;padding-top:0.25em;margin-right:0;margin-left:-0.5625em}.sub-nav dt,.sub-nav dd{float:left;display:inline;margin-left:0.5625em;margin-bottom:0.625em;font-weight:normal;font-size:0.875em}.sub-nav dt a,.sub-nav dd a{color:#999;text-decoration:none}.sub-nav dt.active a,.sub-nav dd.active a{-webkit-border-radius:1000px;border-radius:1000px;font-weight:bold;background:#2ba6cb;padding:0.1875em 0.5625em;cursor:default;color:#fff}@media only screen{div.switch{position:relative;width:100%;padding:0;display:block;overflow:hidden;border-style:solid;border-width:1px;margin-bottom:1.25em;-webkit-animation:webkitSiblingBugfix infinite 1s;height:36px;background:#fff;border-color:#ccc}div.switch label{position:relative;left:0;z-index:2;float:left;width:50%;height:100%;margin:0;font-weight:bold;text-align:left;-webkit-transition:all 0.1s ease-out;-moz-transition:all 0.1s ease-out;transition:all 0.1s ease-out}div.switch input{position:absolute;z-index:3;opacity:0;width:100%;height:100%;-moz-appearance:none}div.switch input:hover,div.switch input:focus{cursor:pointer}div.switch>span{position:absolute;top:-1px;left:-1px;z-index:1;display:block;padding:0;border-width:1px;border-style:solid;-webkit-transition:all 0.1s ease-out;-moz-transition:all 0.1s ease-out;transition:all 0.1s ease-out}div.switch input:not(:checked)+label{opacity:0}div.switch input:checked{display:none !important}div.switch input{left:0;display:block !important}div.switch input:first-of-type+label,div.switch input:first-of-type+span+label{left:-50%}div.switch input:first-of-type:checked+label,div.switch input:first-of-type:checked+span+label{left:0%}div.switch input:last-of-type+label,div.switch input:last-of-type+span+label{right:-50%;left:auto;text-align:right}div.switch input:last-of-type:checked+label,div.switch input:last-of-type:checked+span+label{right:0%;left:auto}div.switch span.custom{display:none !important}div.switch label{padding:0 0.375em;line-height:2.3em;font-size:0.875em}div.switch input:first-of-type:checked ~ span{left:100%;margin-left:-2.1875em}div.switch>span{width:2.25em;height:2.25em}div.switch>span{border-color:#b3b3b3;background:#fff;background:-moz-linear-gradient(top, #fff 0%, #f2f2f2 100%);background:-webkit-linear-gradient(top, #fff 0%, #f2f2f2 100%);background:linear-gradient(to bottom, #fff 0%, #f2f2f2 100%);-webkit-box-shadow:2px 0 10px 0 rgba(0,0,0,0.07),1000px 0 0 1000px #e1f5d1,-2px 0 10px 0 rgba(0,0,0,0.07),-1000px 0 0 1000px #f5f5f5;box-shadow:2px 0 10px 0 rgba(0,0,0,0.07),1000px 0 0 980px #e1f5d1,-2px 0 10px 0 rgba(0,0,0,0.07),-1000px 0 0 1000px #f5f5f5}div.switch:hover>span,div.switch:focus>span{background:#fff;background:-moz-linear-gradient(top, #fff 0%, #e6e6e6 100%);background:-webkit-linear-gradient(top, #fff 0%, #e6e6e6 100%);background:linear-gradient(to bottom, #fff 0%, #e6e6e6 100%)}div.switch:active{background:transparent}div.switch.large{height:44px}div.switch.large label{padding:0 0.375em;line-height:2.3em;font-size:1.0625em}div.switch.large input:first-of-type:checked ~ span{left:100%;margin-left:-2.6875em}div.switch.large>span{width:2.75em;height:2.75em}div.switch.small{height:28px}div.switch.small label{padding:0 0.375em;line-height:2.1em;font-size:0.75em}div.switch.small input:first-of-type:checked ~ span{left:100%;margin-left:-1.6875em}div.switch.small>span{width:1.75em;height:1.75em}div.switch.tiny{height:22px}div.switch.tiny label{padding:0 0.375em;line-height:1.9em;font-size:0.6875em}div.switch.tiny input:first-of-type:checked ~ span{left:100%;margin-left:-1.3125em}div.switch.tiny>span{width:1.375em;height:1.375em}div.switch.radius{-webkit-border-radius:4px;border-radius:4px}div.switch.radius>span{-webkit-border-radius:3px;border-radius:3px}div.switch.round{-webkit-border-radius:1000px;border-radius:1000px}div.switch.round>span{-webkit-border-radius:999px;border-radius:999px}div.switch.round label{padding:0 0.5625em}@-webkit-keyframes webkitSiblingBugfix{from{position:relative}to{position:relative}}}[data-magellan-expedition]{background:#fff;z-index:50;min-width:100%;padding:10px}[data-magellan-expedition] .sub-nav{margin-bottom:0}[data-magellan-expedition] .sub-nav dd{margin-bottom:0}table{background:#fff;margin-bottom:1.25em;border:solid 1px #ddd}table thead,table tfoot{background:#f5f5f5;font-weight:bold}table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:0.5em 0.625em 0.625em;font-size:0.875em;color:#222;text-align:left}table tr th,table tr td{padding:0.5625em 0.625em;font-size:0.875em;color:#222}table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f9f9f9}table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.125em}.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0.2);box-shadow:0 0 0 1px rgba(0,0,0,0.2);-webkit-transition:all 200ms ease-out;-moz-transition:all 200ms ease-out;transition:all 200ms ease-out}.th:hover,.th:focus{-webkit-box-shadow:0 0 6px 1px rgba(43,166,203,0.5);box-shadow:0 0 6px 1px rgba(43,166,203,0.5)}.th.radius{-webkit-border-radius:3px;border-radius:3px}a.th{display:inline-block}.has-tip{border-bottom:dotted 1px #ccc;cursor:help;font-weight:bold;color:#333}.has-tip:hover,.has-tip:focus{border-bottom:dotted 1px #196177;color:#2ba6cb}.has-tip.tip-left,.has-tip.tip-right{float:none !important}.tooltip{display:none;position:absolute;z-index:999;font-weight:bold;font-size:0.9375em;line-height:1.3;padding:0.5em;max-width:85%;left:50%;width:100%;color:#fff;background:#000;-webkit-border-radius:3px;border-radius:3px}.tooltip>.nub{display:block;left:5px;position:absolute;width:0;height:0;border:solid 5px;border-color:transparent transparent #000 transparent;top:-10px}.tooltip.opened{color:#2ba6cb !important;border-bottom:dotted 1px #196177 !important}.tap-to-close{display:block;font-size:0.625em;color:#888;font-weight:normal}@media only screen and (min-width: 768px){.tooltip>.nub{border-color:transparent transparent #000 transparent;top:-10px}.tooltip.tip-top>.nub{border-color:#000 transparent transparent transparent;top:auto;bottom:-10px}.tooltip.tip-left,.tooltip.tip-right{float:none !important}.tooltip.tip-left>.nub{border-color:transparent transparent transparent #000;right:-10px;left:auto;top:50%;margin-top:-5px}.tooltip.tip-right>.nub{border-color:transparent #000 transparent transparent;right:auto;left:-10px;top:50%;margin-top:-5px}}@media only screen and (max-width: 767px){.f-dropdown{max-width:100%;left:0}}.f-dropdown{position:absolute;top:-9999px;list-style:none;margin-left:0;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:16px;z-index:99;margin-top:2px;max-width:200px}.f-dropdown>*:first-child{margin-top:0}.f-dropdown>*:last-child{margin-bottom:0}.f-dropdown:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent #fff transparent;border-bottom-style:solid;position:absolute;top:-12px;left:10px;z-index:99}.f-dropdown:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent #ccc transparent;border-bottom-style:solid;position:absolute;top:-14px;left:9px;z-index:98}.f-dropdown.right:before{left:auto;right:10px}.f-dropdown.right:after{left:auto;right:9px}.f-dropdown li{font-size:0.875em;cursor:pointer;line-height:1.125em;margin:0}.f-dropdown li:hover,.f-dropdown li:focus{background:#eee}.f-dropdown li a{display:block;padding:0.3125em 0.625em;color:#555}.f-dropdown.content{position:absolute;top:-9999px;list-style:none;margin-left:0;padding:1.25em;width:100%;height:auto;max-height:none;background:#fff;border:solid 1px #ccc;font-size:16px;z-index:99;max-width:200px}.f-dropdown.content>*:first-child{margin-top:0}.f-dropdown.content>*:last-child{margin-bottom:0}.f-dropdown.tiny{max-width:200px}.f-dropdown.small{max-width:300px}.f-dropdown.medium{max-width:500px}.f-dropdown.large{max-width:800px} diff --git a/css/github.css b/css/github.css new file mode 100644 index 00000000..088f0657 --- /dev/null +++ b/css/github.css @@ -0,0 +1,88 @@ +/** + * GitHub theme + * + * @author Craig Campbell + * @version 1.0.4 + */ +pre { + border: 1px solid #ccc; + word-wrap: break-word; + padding: 6px 10px; + line-height: 19px; + margin-bottom: 20px; +} + +code { + border: 1px solid #eaeaea; + margin: 0px 2px; + padding: 0px 5px; + font-size: 12px; +} + +pre code { + border: 0px; + padding: 0px; + margin: 0px; + -moz-border-radius: 0px; + -webkit-border-radius: 0px; + border-radius: 0px; +} + +pre, code { + font-family: Consolas, 'Liberation Mono', Courier, monospace; + color: #333; + background: #f8f8f8; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} + +pre, pre code { + font-size: 13px; +} + +pre .comment { + color: #998; +} + +pre .support { + color: #0086B3; +} + +pre .tag, pre .tag-name { + color: navy; +} + +pre .keyword, pre .css-property, pre .vendor-prefix, pre .sass, pre .class, pre .id, pre .css-value, pre .entity.function, pre .storage.function { + font-weight: bold; +} + +pre .css-property, pre .css-value, pre .vendor-prefix, pre .support.namespace { + color: #333; +} + +pre .constant.numeric, pre .keyword.unit, pre .hex-color { + font-weight: normal; + color: #099; +} + +pre .entity.class { + color: #458; +} + +pre .entity.id, pre .entity.function { + color: #900; +} + +pre .attribute, pre .variable { + color: teal; +} + +pre .string, pre .support.value { + font-weight: normal; + color: #d14; +} + +pre .regexp { + color: #009926; +} diff --git a/css/normalize.css b/css/normalize.css new file mode 100644 index 00000000..6d24a385 --- /dev/null +++ b/css/normalize.css @@ -0,0 +1,402 @@ +/*! normalize.css v2.1.1 | MIT License | git.io/normalize */ + +/* ========================================================================== + HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined in IE 8/9. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} + +/** + * Correct `inline-block` display not defined in IE 8/9. + */ + +audio, +canvas, +video { + display: inline-block; +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +[hidden] { + display: none; +} + +/* ========================================================================== + Base + ========================================================================== */ + +/** + * 1. Prevent system color scheme's background color being used in Firefox, IE, + * and Opera. + * 2. Prevent system color scheme's text color being used in Firefox, IE, and + * Opera. + * 3. Set default font family to sans-serif. + * 4. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + background: #fff; /* 1 */ + color: #000; /* 2 */ + font-family: sans-serif; /* 3 */ + -ms-text-size-adjust: 100%; /* 4 */ + -webkit-text-size-adjust: 100%; /* 4 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* ========================================================================== + Links + ========================================================================== */ + +/** + * Address `outline` inconsistency between Chrome and other browsers. + */ + +a:focus { + outline: thin dotted; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* ========================================================================== + Typography + ========================================================================== */ + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari 5, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9, Safari 5, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari 5 and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Correct font family set oddly in Safari 5 and Chrome. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, serif; + font-size: 1em; +} + +/** + * Improve readability of pre-formatted text in all browsers. + */ + +pre { + white-space: pre-wrap; +} + +/** + * Set consistent quote types. + */ + +q { + quotes: "\201C" "\201D" "\2018" "\2019"; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* ========================================================================== + Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9. + */ + +img { + border: 0; +} + +/** + * Correct overflow displayed oddly in IE 9. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* ========================================================================== + Figures + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari 5. + */ + +figure { + margin: 0; +} + +/* ========================================================================== + Forms + ========================================================================== */ + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * 1. Correct font family not being inherited in all browsers. + * 2. Correct font size not being inherited in all browsers. + * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. + */ + +button, +input, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +button, +input { + line-height: normal; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. + * Correct `select` style inheritance in Firefox 4+ and Opera. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * 1. Address box sizing set to `content-box` in IE 8/9. + * 2. Remove excess padding in IE 8/9. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari 5 and Chrome + * on OS X. + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * 1. Remove default vertical scrollbar in IE 8/9. + * 2. Improve readability and alignment in all browsers. + */ + +textarea { + overflow: auto; /* 1 */ + vertical-align: top; /* 2 */ +} + +/* ========================================================================== + Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/css/okaidia.css b/css/okaidia.css new file mode 100644 index 00000000..37b3d15b --- /dev/null +++ b/css/okaidia.css @@ -0,0 +1,109 @@ +/** + * okaidia theme for JavaScript, CSS and HTML + * Loosely based on Monokai textmate theme by http://www.monokai.nl/ + * @author ocodia + */ + +code[class*="language-"], +pre[class*="language-"] { + color: #f8f8f2; + font-size: 0.9em; + text-shadow: 0px 1px rgba(0,0,0,0.3); + font-family: "droid-sans-mono", Consolas, Monaco, 'Andale Mono', monospace; + direction: ltr; + text-align: left; + white-space: pre; + word-spacing: normal; + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +:not(pre) > code[class*="language-"], +pre[class*="language-"] { + background: #272822; +} + +/* Inline code */ +:not(pre) > code[class*="language-"] { + padding: .1em; + border-radius: .3em; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: slategray; +} + +.token.punctuation { + color: #f8f8f2; +} + +.namespace { + opacity: .7; +} + +.token.property, +.token.tag { + color: #f92672; +} + +.token.boolean, +.token.number{ + color: #ae81ff; +} + +.token.symbol, +.token.selector, +.token.attr-name, +.token.string { + color: #a6e22e; +} + + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string { + color: #f8f8f2; +} + +.token.atrule, +.token.attr-value +{ + color: #e6db74; +} + + +.token.keyword{ +color: #f92672; +} + +.token.regex, +.token.important { + color: #fd971f; +} + +.token.important { + font-weight: bold; +} + +.token.entity { + cursor: help; +} diff --git a/css/prism.css b/css/prism.css new file mode 100644 index 00000000..1f74a666 --- /dev/null +++ b/css/prism.css @@ -0,0 +1,117 @@ +/** + * prism.js default theme for JavaScript, CSS and HTML + * Based on dabblet (http://dabblet.com) + * @author Lea Verou + */ + +code[class*="language-"], +pre[class*="language-"] { + color: black; + text-shadow: 0 1px white; + font-family: Consolas, Monaco, 'Andale Mono', monospace; + direction: ltr; + text-align: left; + white-space: pre; + word-spacing: normal; + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +::-moz-selection { + text-shadow: none; + background: #b3d4fc; +} + +::selection { + text-shadow: none; + background: #b3d4fc; +} + +@media print { + code[class*="language-"], + pre[class*="language-"] { + text-shadow: none; + } +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +:not(pre) > code[class*="language-"], +pre[class*="language-"] { + background: #f5f2f0; +} + +/* Inline code */ +:not(pre) > code[class*="language-"] { + padding: .1em; + border-radius: .3em; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: slategray; +} + +.token.punctuation { + color: #999; +} + +.namespace { + opacity: .7; +} + +.token.property, +.token.tag, +.token.boolean, +.token.number { + color: #905; +} + +.token.selector, +.token.attr-name, +.token.string { + color: #690; +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string { + color: #a67f59; + background: hsla(0,0%,100%,.5); +} + +.token.atrule, +.token.attr-value, +.token.keyword { + color: #07a; +} + + +.token.regex, +.token.important { + color: #e90; +} + +.token.important { + font-weight: bold; +} + +.token.entity { + cursor: help; +} diff --git a/css/social_foundicons.css b/css/social_foundicons.css new file mode 100755 index 00000000..914f6472 --- /dev/null +++ b/css/social_foundicons.css @@ -0,0 +1,148 @@ +/* font-face */ +@font-face { + font-family: "SocialFoundicons"; + src: url("../fonts/social_foundicons.eot"); + src: url("../fonts/social_foundicons.eot?#iefix") format("embedded-opentype"), url("../fonts/social_foundicons.woff") format("woff"), url("../fonts/social_foundicons.ttf") format("truetype"), url("../fonts/social_foundicons.svg#SocialFoundicons") format("svg"); + font-weight: normal; + font-style: normal; +} + +/* global foundicon styles */ +[class*="foundicon-"] { + display: inline; + width: auto; + height: auto; + line-height: inherit; + vertical-align: baseline; + background-image: none; + background-position: 0 0; + background-repeat: repeat; +} + +[class*="foundicon-"]:before { + font-family: "SocialFoundicons"; + font-weight: normal; + font-style: normal; + text-decoration: inherit; +} + +/* icons */ +.foundicon-thumb-up:before { + content: "\f000"; +} + +.foundicon-thumb-down:before { + content: "\f001"; +} + +.foundicon-rss:before { + content: "\f002"; +} + +.foundicon-facebook:before { + content: "\f003"; +} + +.foundicon-twitter:before { + content: "\f004"; +} + +.foundicon-pinterest:before { + content: "\f005"; +} + +.foundicon-github:before { + content: "\f006"; +} + +.foundicon-path:before { + content: "\f007"; +} + +.foundicon-linkedin:before { + content: "\f008"; +} + +.foundicon-dribbble:before { + content: "\f009"; +} + +.foundicon-stumble-upon:before { + content: "\f00a"; +} + +.foundicon-behance:before { + content: "\f00b"; +} + +.foundicon-reddit:before { + content: "\f00c"; +} + +.foundicon-google-plus:before { + content: "\f00d"; +} + +.foundicon-youtube:before { + content: "\f00e"; +} + +.foundicon-vimeo:before { + content: "\f00f"; +} + +.foundicon-flickr:before { + content: "\f010"; +} + +.foundicon-slideshare:before { + content: "\f011"; +} + +.foundicon-picassa:before { + content: "\f012"; +} + +.foundicon-skype:before { + content: "\f013"; +} + +.foundicon-steam:before { + content: "\f014"; +} + +.foundicon-instagram:before { + content: "\f015"; +} + +.foundicon-foursquare:before { + content: "\f016"; +} + +.foundicon-delicious:before { + content: "\f017"; +} + +.foundicon-chat:before { + content: "\f018"; +} + +.foundicon-torso:before { + content: "\f019"; +} + +.foundicon-tumblr:before { + content: "\f01a"; +} + +.foundicon-video-chat:before { + content: "\f01b"; +} + +.foundicon-digg:before { + content: "\f01c"; +} + +.foundicon-wordpress:before { + content: "\f01d"; +} diff --git a/css/social_foundicons_ie7.css b/css/social_foundicons_ie7.css new file mode 100644 index 00000000..6a3c9c07 --- /dev/null +++ b/css/social_foundicons_ie7.css @@ -0,0 +1,126 @@ +/* general icons for IE7 */ +[class*="foundicon-"] { + font-family: "SocialFoundicons"; + font-weight: normal; + font-style: normal; +} + +.foundicon-thumb-up { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-thumb-down { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-rss { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-facebook { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-twitter { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-pinterest { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-github { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-path { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-linkedin { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-dribbble { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-stumble-upon { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-behance { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-reddit { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-google-plus { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-youtube { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-vimeo { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-flickr { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-slideshare { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-picassa { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-skype { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-steam { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-instagram { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-foursquare { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-delicious { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-chat { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-torso { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-tumblr { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-video-chat { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-digg { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} + +.foundicon-wordpress { + *zoom: expression(this.runtimeStyle['zoom'] = "1", this.innerHTML = ""); +} diff --git a/css/syntax.css b/css/syntax.css deleted file mode 100644 index 2774b764..00000000 --- a/css/syntax.css +++ /dev/null @@ -1,60 +0,0 @@ -.highlight { background: #ffffff; } -.highlight .c { color: #999988; font-style: italic } /* Comment */ -.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ -.highlight .k { font-weight: bold } /* Keyword */ -.highlight .o { font-weight: bold } /* Operator */ -.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ -.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ -.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ -.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #aa0000 } /* Generic.Error */ -.highlight .gh { color: #999999 } /* Generic.Heading */ -.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ -.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ -.highlight .go { color: #888888 } /* Generic.Output */ -.highlight .gp { color: #555555 } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ -.highlight .gt { color: #aa0000 } /* Generic.Traceback */ -.highlight .kc { font-weight: bold } /* Keyword.Constant */ -.highlight .kd { font-weight: bold } /* Keyword.Declaration */ -.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ -.highlight .kr { font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ -.highlight .m { color: #009999 } /* Literal.Number */ -.highlight .s { color: #d14 } /* Literal.String */ -.highlight .na { color: #008080 } /* Name.Attribute */ -.highlight .nb { color: #0086B3 } /* Name.Builtin */ -.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ -.highlight .no { color: #008080 } /* Name.Constant */ -.highlight .ni { color: #800080 } /* Name.Entity */ -.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ -.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ -.highlight .nn { color: #555555 } /* Name.Namespace */ -.highlight .nt { color: #000080 } /* Name.Tag */ -.highlight .nv { color: #008080 } /* Name.Variable */ -.highlight .ow { font-weight: bold } /* Operator.Word */ -.highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mf { color: #009999 } /* Literal.Number.Float */ -.highlight .mh { color: #009999 } /* Literal.Number.Hex */ -.highlight .mi { color: #009999 } /* Literal.Number.Integer */ -.highlight .mo { color: #009999 } /* Literal.Number.Oct */ -.highlight .sb { color: #d14 } /* Literal.String.Backtick */ -.highlight .sc { color: #d14 } /* Literal.String.Char */ -.highlight .sd { color: #d14 } /* Literal.String.Doc */ -.highlight .s2 { color: #d14 } /* Literal.String.Double */ -.highlight .se { color: #d14 } /* Literal.String.Escape */ -.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ -.highlight .si { color: #d14 } /* Literal.String.Interpol */ -.highlight .sx { color: #d14 } /* Literal.String.Other */ -.highlight .sr { color: #009926 } /* Literal.String.Regex */ -.highlight .s1 { color: #d14 } /* Literal.String.Single */ -.highlight .ss { color: #990073 } /* Literal.String.Symbol */ -.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ -.highlight .vc { color: #008080 } /* Name.Variable.Class */ -.highlight .vg { color: #008080 } /* Name.Variable.Global */ -.highlight .vi { color: #008080 } /* Name.Variable.Instance */ -.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/fonts/.DS_Store b/fonts/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 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 literal 0 HcmV?d00001 diff --git a/fonts/social_foundicons.svg b/fonts/social_foundicons.svg new file mode 100644 index 00000000..eb4189cd --- /dev/null +++ b/fonts/social_foundicons.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/fonts/social_foundicons.ttf b/fonts/social_foundicons.ttf new file mode 100644 index 0000000000000000000000000000000000000000..01158c66b13b6f90e7b7d1cdb5c4e7369c6434ae GIT binary patch literal 16880 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 aW5>+9W@eAzzeG5D)?^Iz?2a?w>Hh*iiRnxL literal 0 HcmV?d00001 diff --git a/fonts/social_foundicons.woff b/fonts/social_foundicons.woff new file mode 100644 index 0000000000000000000000000000000000000000..bd1f1e58a692b73205fce579faee81801d3157aa GIT binary patch literal 10644 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 Vo6R1G_A;~Occ5Fa_S)yx|37T)aRUGV literal 0 HcmV?d00001 diff --git a/index.markdown b/index.markdown index e2031f03..a21dd0ca 100644 --- a/index.markdown +++ b/index.markdown @@ -5,15 +5,15 @@ title: A remote server automation and deployment tool written in Ruby. ### A Simple Task -{% highlight ruby %} -role :demo, %{example.com example.org, example.net} +{% prism ruby %} +role :demo, %w{example.com example.org, example.net} task :uptime do |host| on :demo, in: :parallel do uptime = capture(:uptime) puts "#{host.hostname} reports: #{uptime}" end end -{% endhighlight %} +{% endprism %} Capistrano extends the *Rake* DSL with methods specific to running commands `on()` servers. diff --git a/js/foundation.min.js b/js/foundation.min.js new file mode 100644 index 00000000..3e77d2b2 --- /dev/null +++ b/js/foundation.min.js @@ -0,0 +1,15 @@ +/* + * Foundation Responsive Library + * http://foundation.zurb.com + * Copyright 2013, ZURB + * Free to use under the MIT license. + * http://www.opensource.org/licenses/mit-license.php +*/ +/*jslint unparam: true, browser: true, indent: 2 */ +// Accommodate running jQuery or Zepto in noConflict() mode by +// using an anonymous function to redefine the $ shorthand name. +// See http://docs.jquery.com/Using_jQuery_with_Other_Libraries +// and http://zeptojs.com/ +var libFuncName=null;if(typeof jQuery=="undefined"&&typeof Zepto=="undefined"&&typeof $=="function")libFuncName=$;else if(typeof jQuery=="function")libFuncName=jQuery;else{if(typeof Zepto!="function")throw new TypeError;libFuncName=Zepto}(function(e,t,n,r){"use strict";t.matchMedia=t.matchMedia||function(e,t){var n,r=e.documentElement,i=r.firstElementChild||r.firstChild,s=e.createElement("body"),o=e.createElement("div");return o.id="mq-test-1",o.style.cssText="position:absolute;top:-100em",s.style.background="none",s.appendChild(o),function(e){return o.innerHTML='­',r.insertBefore(s,i),n=o.offsetWidth===42,r.removeChild(s),{matches:n,media:e}}}(n),Array.prototype.filter||(Array.prototype.filter=function(e){if(this==null)throw new TypeError;var t=Object(this),n=t.length>>>0;if(typeof e!="function")return;var r=[],i=arguments[1];for(var s=0;s>>0;if(n===0)return-1;var r=0;arguments.length>1&&(r=Number(arguments[1]),r!=r?r=0:r!=0&&r!=Infinity&&r!=-Infinity&&(r=(r>0||-1)*Math.floor(Math.abs(r))));if(r>=n)return-1;var i=r>=0?r:Math.max(n-Math.abs(r),0);for(;i0)for(var l=u.length-1;l>=0;l--)f.push(this.init_lib(u[l],a))}else{/reflow/i.test(n)&&(a[1]="reflow");for(var c in this.libs)f.push(this.init_lib(c,a))}return typeof n=="function"&&a.unshift(n),this.response_obj(f,a)},response_obj:function(e,t){for(var n=0,r=t.length;n=0;r--)this.lib_methods.hasOwnProperty(n[r])&&(this.libs[e.name][n[r]]=this.lib_methods[n[r]])},random_str:function(e){var t="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz".split("");e||(e=Math.floor(Math.random()*t.length));var n="";for(var r=0;r=0;r--)i=s[r].split(":"),/true/i.test(i[1])&&(i[1]=!0),/false/i.test(i[1])&&(i[1]=!1),u(i[1])&&(i[1]=parseInt(i[1],10)),i.length===2&&i[0].length>0&&(n[a(i[0])]=a(i[1]));return n},delay:function(e,t){return setTimeout(e,t)},scrollTo:function(n,r,i){if(i<0)return;var s=r-e(t).scrollTop(),o=s/i*10;this.scrollToTimerCache=setTimeout(function(){isNaN(parseInt(o,10))||(t.scrollTo(0,e(t).scrollTop()+o),this.scrollTo(n,r,i-10))}.bind(this),10)},scrollLeft:function(e){if(!e.length)return;return"scrollLeft"in e[0]?e[0].scrollLeft:e[0].pageXOffset},empty:function(e){if(e.length&&e.length>0)return!1;if(e.length&&e.length===0)return!0;for(var t in e)if(hasOwnProperty.call(e,t))return!1;return!0}},fix_outer:function(e){e.outerHeight=function(e,t){return typeof Zepto=="function"?e.height():typeof t!="undefined"?e.outerHeight(t):e.outerHeight()},e.outerWidth=function(e){return typeof Zepto=="function"?e.width():typeof bool!="undefined"?e.outerWidth(bool):e.outerWidth()}},error:function(e){return e.name+" "+e.message+"; "+e.more},off:function(){return e(this.scope).off(".fndtn"),e(t).off(".fndtn"),!0},zj:function(){return typeof Zepto!="undefined"?Zepto:jQuery}()},e.fn.foundation=function(){var e=Array.prototype.slice.call(arguments,0);return this.each(function(){return Foundation.init.apply(Foundation,[this].concat(e)),this})}})(libFuncName,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.interchange={name:"interchange",version:"4.2.2",cache:{},settings:{load_attr:"interchange",named_queries:{"default":"only screen and (min-width: 1px)",small:"only screen and (min-width: 768px)",medium:"only screen and (min-width: 1280px)",large:"only screen and (min-width: 1440px)",landscape:"only screen and (orientation: landscape)",portrait:"only screen and (orientation: portrait)",retina:"only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min--moz-device-pixel-ratio: 2),only screen and (-o-min-device-pixel-ratio: 2/1),only screen and (min-device-pixel-ratio: 2),only screen and (min-resolution: 192dpi),only screen and (min-resolution: 2dppx)"},directives:{replace:function(e,t){if(/IMG/.test(e[0].nodeName)){var n=t.split("/"),r=n[n.length-1],i=e[0].src;if((new RegExp(r,"i")).test(e[0].src))return;return e[0].src=t,e.trigger("replace",[e[0].src,i])}}}},init:function(t,n,r){return Foundation.inherit(this,"throttle"),typeof n=="object"&&e.extend(!0,this.settings,n),this.events(),this.images(),typeof n!="string"?this.settings.init:this[n].call(this,r)},events:function(){var n=this;e(t).on("resize.fndtn.interchange",n.throttle(function(){n.resize.call(n)},50))},resize:function(){var e=this.cache;for(var t in e)if(e.hasOwnProperty(t)){var n=this.results(t,e[t]);n&&this.settings.directives[n.scenario[1]](n.el,n.scenario[0])}},results:function(t,n){var r=n.length,i=[];if(r>0){var s=e('[data-uuid="'+t+'"]');for(var o=r-1;o>=0;o--){var u=n[o][2];if(this.settings.named_queries.hasOwnProperty(u))var a=matchMedia(this.settings.named_queries[u]);else var a=matchMedia(n[o][2]);if(a.matches)return{el:s,scenario:n[o]}}}return!1},images:function(e){return typeof this.cached_images=="undefined"||e?this.update_images():this.cached_images},update_images:function(){var t=n.getElementsByTagName("img"),r=t.length,i="data-"+this.settings.load_attr;this.cached_images=[];for(var s=r-1;s>=0;s--)this.loaded(e(t[s]),s===0,function(e,t){if(e){var n=e.getAttribute(i)||"";n.length>0&&this.cached_images.push(e)}t&&this.enhance()}.bind(this));return"deferred"},loaded:function(e,t,n){function r(){n(e[0],t)}function i(){this.one("load",r);if(/MSIE (\d+\.\d+);/.test(navigator.userAgent)){var e=this.attr("src"),t=e.match(/\?/)?"&":"?";t+="random="+(new Date).getTime(),this.attr("src",e+t)}}if(!e.attr("src")){r();return}e[0].complete||e[0].readyState===4?r():i.call(e)},enhance:function(){var n=this.images().length;for(var r=n-1;r>=0;r--)this._object(e(this.images()[r]));return e(t).trigger("resize")},parse_params:function(e,t,n){return[this.trim(e),this.convert_directive(t),this.trim(n)]},convert_directive:function(e){var t=this.trim(e);return t.length>0?t:"replace"},_object:function(e){var t=this.parse_data_attr(e),n=[],r=t.length;if(r>0)for(var i=r-1;i>=0;i--){var s=t[i].split(/\((.*?)(\))$/);if(s.length>1){var o=s[0].split(","),u=this.parse_params(o[0],o[1],s[1]);n.push(u)}}return this.store(e,n)},uuid:function(e){function n(){return((1+Math.random())*65536|0).toString(16).substring(1)}var t=e||"-";return n()+n()+t+n()+t+n()+t+n()+t+n()+n()+n()},store:function(e,t){var n=this.uuid(),r=e.data("uuid");return r?this.cache[r]:(e.attr("data-uuid",n),this.cache[n]=t)},trim:function(t){return typeof t=="string"?e.trim(t):t},parse_data_attr:function(e){var t=e.data(this.settings.load_attr).split(/\[(.*?)\]/),n=t.length,r=[];for(var i=n-1;i>=0;i--)t[i].replace(/[\W\d]+/,"").length>4&&r.push(t[i]);return r},reflow:function(){this.images(!0)}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.dropdown={name:"dropdown",version:"4.2.0",settings:{activeClass:"open",is_hover:!1,opened:function(){},closed:function(){}},init:function(t,n,r){return this.scope=t||this.scope,Foundation.inherit(this,"throttle scrollLeft data_options"),typeof n=="object"&&e.extend(!0,this.settings,n),typeof n!="string"?(this.settings.init||this.events(),this.settings.init):this[n].call(this,r)},events:function(){var n=this;e(this.scope).on("click.fndtn.dropdown","[data-dropdown]",function(t){var r=e.extend({},n.settings,n.data_options(e(this)));t.preventDefault(),r.is_hover||n.toggle(e(this))}).on("mouseenter","[data-dropdown]",function(t){var r=e.extend({},n.settings,n.data_options(e(this)));r.is_hover&&n.toggle(e(this))}).on("mouseleave","[data-dropdown-content]",function(t){var r=e('[data-dropdown="'+e(this).attr("id")+'"]'),i=e.extend({},n.settings,n.data_options(r));i.is_hover&&n.close.call(n,e(this))}).on("opened.fndtn.dropdown","[data-dropdown-content]",this.settings.opened).on("closed.fndtn.dropdown","[data-dropdown-content]",this.settings.closed),e("body").on("click.fndtn.dropdown",function(t){var r=e(t.target).closest("[data-dropdown-content]");if(e(t.target).data("dropdown"))return;if(r.length>0&&(e(t.target).is("[data-dropdown-content]")||e.contains(r.first()[0],t.target))){t.stopPropagation();return}n.close.call(n,e("[data-dropdown-content]"))}),e(t).on("resize.fndtn.dropdown",n.throttle(function(){n.resize.call(n)},50)).trigger("resize"),this.settings.init=!0},close:function(t){var n=this;t.each(function(){e(this).hasClass(n.settings.activeClass)&&(e(this).css(Foundation.rtl?"right":"left","-99999px").removeClass(n.settings.activeClass),e(this).trigger("closed"))})},open:function(e,t){this.css(e.addClass(this.settings.activeClass),t),e.trigger("opened")},toggle:function(t){var n=e("#"+t.data("dropdown"));this.close.call(this,e("[data-dropdown-content]").not(n)),n.hasClass(this.settings.activeClass)?this.close.call(this,n):(this.close.call(this,e("[data-dropdown-content]")),this.open.call(this,n,t))},resize:function(){var t=e("[data-dropdown-content].open"),n=e("[data-dropdown='"+t.attr("id")+"']");t.length&&n.length&&this.css(t,n)},css:function(n,r){var i=n.offsetParent();if(i.length>0&&/body/i.test(n.offsetParent()[0].nodeName)){var s=r.offset();s.top-=n.offsetParent().offset().top,s.left-=n.offsetParent().offset().left}else var s=r.position();if(this.small())n.css({position:"absolute",width:"95%",left:"2.5%","max-width":"none",top:s.top+this.outerHeight(r)});else{if(!Foundation.rtl&&e(t).width()>this.outerWidth(n)+r.offset().left){var o=s.left;n.hasClass("right")&&n.removeClass("right")}else{n.hasClass("right")||n.addClass("right");var o=s.left-(this.outerWidth(n)-this.outerWidth(r))}n.attr("style","").css({position:"absolute",top:s.top+this.outerHeight(r),left:o})}return n},small:function(){return e(t).width()<768||e("html").hasClass("lt-ie9")},off:function(){e(this.scope).off(".fndtn.dropdown"),e("html, body").off(".fndtn.dropdown"),e(t).off(".fndtn.dropdown"),e("[data-dropdown-content]").off(".fndtn.dropdown"),this.settings.init=!1},reflow:function(){}}}(Foundation.zj,this,this.document),function(e,t,n){function f(e){var t={},r=/^jQuery\d+$/;return n.each(e.attributes,function(e,n){n.specified&&!r.test(n.name)&&(t[n.name]=n.value)}),t}function l(e,r){var i=this,s=n(i);if(i.value==s.attr("placeholder")&&s.hasClass("placeholder"))if(s.data("placeholder-password")){s=s.hide().next().show().attr("id",s.removeAttr("id").data("placeholder-id"));if(e===!0)return s[0].value=r;s.focus()}else i.value="",s.removeClass("placeholder"),i==t.activeElement&&i.select()}function c(){var e,t=this,r=n(t),i=r,s=this.id;if(t.value==""){if(t.type=="password"){if(!r.data("placeholder-textinput")){try{e=r.clone().attr({type:"text"})}catch(o){e=n("").attr(n.extend(f(this),{type:"text"}))}e.removeAttr("name").data({"placeholder-password":!0,"placeholder-id":s}).bind("focus.placeholder",l),r.data({"placeholder-textinput":e,"placeholder-id":s}).before(e)}r=r.removeAttr("id").hide().prev().attr("id",s).show()}r.addClass("placeholder"),r[0].value=r.attr("placeholder")}else r.removeClass("placeholder")}var r="placeholder"in t.createElement("input"),i="placeholder"in t.createElement("textarea"),s=n.fn,o=n.valHooks,u,a;r&&i?(a=s.placeholder=function(){return this},a.input=a.textarea=!0):(a=s.placeholder=function(){var e=this;return e.filter((r?"textarea":":input")+"[placeholder]").not(".placeholder").bind({"focus.placeholder":l,"blur.placeholder":c}).data("placeholder-enabled",!0).trigger("blur.placeholder"),e},a.input=r,a.textarea=i,u={get:function(e){var t=n(e);return t.data("placeholder-enabled")&&t.hasClass("placeholder")?"":e.value},set:function(e,r){var i=n(e);return i.data("placeholder-enabled")?(r==""?(e.value=r,e!=t.activeElement&&c.call(e)):i.hasClass("placeholder")?l.call(e,!0,r)||(e.value=r):e.value=r,i):e.value=r}},r||(o.input=u),i||(o.textarea=u),n(function(){n(t).delegate("form","submit.placeholder",function(){var e=n(".placeholder",this).each(l);setTimeout(function(){e.each(c)},10)})}),n(e).bind("beforeunload.placeholder",function(){n(".placeholder").each(function(){this.value=""})}))}(this,document,Foundation.zj),function(e,t,n,r){"use strict";Foundation.libs.placeholder={name:"placeholder",version:"4.2.2",init:function(n,r,i){this.scope=n||this.scope,typeof r!="string"&&(t.onload=function(){e("input, textarea").placeholder()})}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.forms={name:"forms",version:"4.2.2",cache:{},settings:{disable_class:"no-custom",last_combo:null},init:function(t,n,r){return typeof n=="object"&&e.extend(!0,this.settings,n),typeof n!="string"?(this.settings.init||this.events(),this.assemble(),this.settings.init):this[n].call(this,r)},assemble:function(){e('form.custom input[type="radio"]',e(this.scope)).not('[data-customforms="disabled"]').not("."+this.settings.disable_class).each(this.append_custom_markup),e('form.custom input[type="checkbox"]',e(this.scope)).not('[data-customforms="disabled"]').not("."+this.settings.disable_class).each(this.append_custom_markup),e("form.custom select",e(this.scope)).not('[data-customforms="disabled"]').not("."+this.settings.disable_class).not("[multiple=multiple]").each(this.append_custom_select)},events:function(){var r=this;e(this.scope).on("click.fndtn.forms","form.custom span.custom.checkbox",function(t){t.preventDefault(),t.stopPropagation(),r.toggle_checkbox(e(this))}).on("click.fndtn.forms","form.custom span.custom.radio",function(t){t.preventDefault(),t.stopPropagation(),r.toggle_radio(e(this))}).on("change.fndtn.forms","form.custom select",function(t,n){if(!e(this).not('[data-customforms="disabled"])'))return;r.refresh_custom_select(e(this),n)}).on("click.fndtn.forms","form.custom label",function(t){if(e(t.target).is("label")){var n=e("#"+r.escape(e(this).attr("for"))).not('[data-customforms="disabled"]'),i,s;n.length!==0&&(n.attr("type")==="checkbox"?(t.preventDefault(),i=e(this).find("span.custom.checkbox"),i.length===0&&(i=n.add(this).siblings("span.custom.checkbox").first()),r.toggle_checkbox(i)):n.attr("type")==="radio"&&(t.preventDefault(),s=e(this).find("span.custom.radio"),s.length===0&&(s=n.add(this).siblings("span.custom.radio").first()),r.toggle_radio(s)))}}).on("mousedown.fndtn.forms","form.custom div.custom.dropdown",function(){return!1}).on("click.fndtn.forms","form.custom div.custom.dropdown a.current, form.custom div.custom.dropdown a.selector",function(t){var n=e(this),s=n.closest("div.custom.dropdown"),o=i(s,"select");s.hasClass("open")||e(r.scope).trigger("click"),t.preventDefault();if(!1===o.is(":disabled"))return s.toggleClass("open"),s.hasClass("open")?e(r.scope).on("click.fndtn.forms.customdropdown",function(){s.removeClass("open"),e(r.scope).off(".fndtn.forms.customdropdown")}):e(r.scope).on(".fndtn.forms.customdropdown"),!1}).on("click.fndtn.forms touchend.fndtn.forms","form.custom div.custom.dropdown li",function(t){var n=e(this),r=n.closest("div.custom.dropdown"),s=i(r,"select"),o=0;t.preventDefault(),t.stopPropagation();if(!e(this).hasClass("disabled")){e("div.dropdown").not(r).removeClass("open");var u=n.closest("ul").find("li.selected");u.removeClass("selected"),n.addClass("selected"),r.removeClass("open").find("a.current").text(n.text()),n.closest("ul").find("li").each(function(e){n[0]===this&&(o=e)}),s[0].selectedIndex=o,s.data("prevalue",u.html()),s.trigger("change")}}),e(t).on("keydown",function(t){var r=n.activeElement,i=Foundation.libs.forms,s=e(".custom.dropdown.open");if(s.length>0){t.preventDefault(),t.which===13&&s.find("li.selected").trigger("click"),t.which===27&&s.removeClass("open");if(t.which>=65&&t.which<=90){var o=i.go_to(s,t.which),u=s.find("li.selected");o&&(u.removeClass("selected"),i.scrollTo(o.addClass("selected"),300))}if(t.which===38){var u=s.find("li.selected"),a=u.prev(":not(.disabled)");a.length>0&&(a.parent()[0].scrollTop=a.parent().scrollTop()-i.outerHeight(a),u.removeClass("selected"),a.addClass("selected"))}else if(t.which===40){var u=s.find("li.selected"),o=u.next(":not(.disabled)");o.length>0&&(o.parent()[0].scrollTop=o.parent().scrollTop()+i.outerHeight(o),u.removeClass("selected"),o.addClass("selected"))}}}),this.settings.init=!0},go_to:function(e,t){var n=e.find("li"),r=n.length;if(r>0)for(var i=0;i').insertAfter(r)),s.toggleClass("checked",r.is(":checked")),s.toggleClass("disabled",r.is(":disabled"))},append_custom_select:function(t,n){var r=Foundation.libs.forms,i=e(n),s=i.next("div.custom.dropdown"),o=s.find("ul"),u=s.find(".current"),a=s.find(".selector"),f=i.find("option"),l=f.filter(":selected"),c=i.attr("class")?i.attr("class").split(" "):[],h=0,p="",d,v=!1;if(s.length===0){var m=i.hasClass("small")?"small":i.hasClass("medium")?"medium":i.hasClass("large")?"large":i.hasClass("expand")?"expand":"";s=e('
      '),a=s.find(".selector"),o=s.find("ul"),p=f.map(function(){var t=e(this).attr("class")?e(this).attr("class"):"";return"
    • "+e(this).html()+"
    • "}).get().join(""),o.append(p),v=s.prepend(''+l.html()+"").find(".current"),i.after(s).addClass("hidden-field")}else p=f.map(function(){return"
    • "+e(this).html()+"
    • "}).get().join(""),o.html("").append(p);r.assign_id(i,s),s.toggleClass("disabled",i.is(":disabled")),d=o.find("li"),r.cache[s.data("id")]=d.length,f.each(function(t){this.selected&&(d.eq(t).addClass("selected"),v&&v.html(e(this).html())),e(this).is(":disabled")&&d.eq(t).addClass("disabled")});if(!s.is(".small, .medium, .large, .expand")){s.addClass("open");var r=Foundation.libs.forms;r.hidden_fix.adjust(o),h=r.outerWidth(d)>h?r.outerWidth(d):h,Foundation.libs.forms.hidden_fix.reset(),s.removeClass("open")}},assign_id:function(e,t){var n=[+(new Date),Foundation.random_str(5)].join("-");e.attr("data-id",n),t.attr("data-id",n)},refresh_custom_select:function(t,n){var r=this,i=0,s=t.next(),o=t.find("option"),u=s.find("li");if(u.length!==this.cache[s.data("id")]||n)s.find("ul").html(""),o.each(function(){var t=e("
    • "+e(this).html()+"
    • ");s.find("ul").append(t)}),o.each(function(t){this.selected&&(s.find("li").eq(t).addClass("selected"),s.find(".current").html(e(this).html())),e(this).is(":disabled")&&s.find("li").eq(t).addClass("disabled")}),s.removeAttr("style").find("ul").removeAttr("style"),s.find("li").each(function(){s.addClass("open"),r.outerWidth(e(this))>i&&(i=r.outerWidth(e(this))),s.removeClass("open")}),u=s.find("li"),this.cache[s.data("id")]=u.length},toggle_checkbox:function(e){var t=e.prev(),n=t[0];!1===t.is(":disabled")&&(n.checked=n.checked?!1:!0,e.toggleClass("checked"),t.trigger("change"))},toggle_radio:function(e){var t=e.prev(),n=t.closest("form.custom"),r=t[0];!1===t.is(":disabled")&&(n.find('input[type="radio"][name="'+this.escape(t.attr("name"))+'"]').next().not(e).removeClass("checked"),e.hasClass("checked")||e.toggleClass("checked"),r.checked=e.hasClass("checked"),t.trigger("change"))},escape:function(e){return e?e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"):""},hidden_fix:{tmp:[],hidden:null,adjust:function(t){var n=this;n.hidden=t.parents(),n.hidden=n.hidden.add(t).filter(":hidden"),n.hidden.each(function(){var t=e(this);n.tmp.push(t.attr("style")),t.css({visibility:"hidden",display:"block"})})},reset:function(){var t=this;t.hidden.each(function(n){var i=e(this),s=t.tmp[n];s===r?i.removeAttr("style"):i.attr("style",s)}),t.tmp=[],t.hidden=null}},off:function(){e(this.scope).off(".fndtn.forms")},reflow:function(){}};var i=function(t,n){var t=t.prev();while(t.length){if(t.is(n))return t;t=t.prev()}return e()}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.alerts={name:"alerts",version:"4.2.2",settings:{speed:300,callback:function(){}},init:function(t,n,r){return this.scope=t||this.scope,typeof n=="object"&&e.extend(!0,this.settings,n),typeof n!="string"?(this.settings.init||this.events(),this.settings.init):this[n].call(this,r)},events:function(){var t=this;e(this.scope).on("click.fndtn.alerts","[data-alert] a.close",function(n){n.preventDefault(),e(this).closest("[data-alert]").fadeOut(t.speed,function(){e(this).remove(),t.settings.callback()})}),this.settings.init=!0},off:function(){e(this.scope).off(".fndtn.alerts")},reflow:function(){}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.magellan={name:"magellan",version:"4.2.2",settings:{activeClass:"active"},init:function(t,n,r){return this.scope=t||this.scope,Foundation.inherit(this,"data_options"),typeof n=="object"&&e.extend(!0,this.settings,n),typeof n!="string"?(this.settings.init||(this.fixed_magellan=e("[data-magellan-expedition]"),this.set_threshold(),this.last_destination=e("[data-magellan-destination]").last(),this.events()),this.settings.init):this[n].call(this,r)},events:function(){var n=this;e(this.scope).on("arrival.fndtn.magellan","[data-magellan-arrival]",function(t){var r=e(this),i=r.closest("[data-magellan-expedition]"),s=i.attr("data-magellan-active-class")||n.settings.activeClass;r.closest("[data-magellan-expedition]").find("[data-magellan-arrival]").not(r).removeClass(s),r.addClass(s)}),this.fixed_magellan.on("update-position.fndtn.magellan",function(){var t=e(this)}).trigger("update-position"),e(t).on("resize.fndtn.magellan",function(){this.fixed_magellan.trigger("update-position")}.bind(this)).on("scroll.fndtn.magellan",function(){var r=e(t).scrollTop();n.fixed_magellan.each(function(){var t=e(this);typeof t.data("magellan-top-offset")=="undefined"&&t.data("magellan-top-offset",t.offset().top),typeof t.data("magellan-fixed-position")=="undefined"&&t.data("magellan-fixed-position",!1);var i=r+n.settings.threshold>t.data("magellan-top-offset"),s=t.attr("data-magellan-top-offset");t.data("magellan-fixed-position")!=i&&(t.data("magellan-fixed-position",i),i?(t.addClass("fixed"),t.css({position:"fixed",top:0})):(t.removeClass("fixed"),t.css({position:"",top:""})),i&&typeof s!="undefined"&&s!=0&&t.css({position:"fixed",top:s+"px"}))})}),this.last_destination.length>0&&e(t).on("scroll.fndtn.magellan",function(r){var i=e(t).scrollTop(),s=i+e(t).height(),o=Math.ceil(n.last_destination.offset().top);e("[data-magellan-destination]").each(function(){var t=e(this),r=t.attr("data-magellan-destination"),u=t.offset().top-i;u<=n.settings.threshold&&e("[data-magellan-arrival='"+r+"']").trigger("arrival"),s>=e(n.scope).height()&&o>i&&o0?this.outerHeight(this.fixed_magellan,!0):0)},off:function(){e(this.scope).off(".fndtn.magellan")},reflow:function(){}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.reveal={name:"reveal",version:"4.2.2",locked:!1,settings:{animation:"fadeAndPop",animationSpeed:250,closeOnBackgroundClick:!0,closeOnEsc:!0,dismissModalClass:"close-reveal-modal",bgClass:"reveal-modal-bg",open:function(){},opened:function(){},close:function(){},closed:function(){},bg:e(".reveal-modal-bg"),css:{open:{opacity:0,visibility:"visible",display:"block"},close:{opacity:1,visibility:"hidden",display:"none"}}},init:function(t,n,r){return Foundation.inherit(this,"data_options delay"),typeof n=="object"?e.extend(!0,this.settings,n):typeof r!="undefined"&&e.extend(!0,this.settings,r),typeof n!="string"?(this.events(),this.settings.init):this[n].call(this,r)},events:function(){var t=this;return e(this.scope).off(".fndtn.reveal").on("click.fndtn.reveal","[data-reveal-id]",function(n){n.preventDefault();if(!t.locked){var r=e(this),i=r.data("reveal-ajax");t.locked=!0;if(typeof i=="undefined")t.open.call(t,r);else{var s=i===!0?r.attr("href"):i;t.open.call(t,r,{url:s})}}}).on("click.fndtn.reveal",this.close_targets(),function(n){n.preventDefault();if(!t.locked){var r=e.extend({},t.settings,t.data_options(e(".reveal-modal.open")));if(e(n.target)[0]===e("."+r.bgClass)[0]&&!r.closeOnBackgroundClick)return;t.locked=!0,t.close.call(t,e(this).closest(".reveal-modal"))}}).on("open.fndtn.reveal",".reveal-modal",this.settings.open).on("opened.fndtn.reveal",".reveal-modal",this.settings.opened).on("opened.fndtn.reveal",".reveal-modal",this.open_video).on("close.fndtn.reveal",".reveal-modal",this.settings.close).on("closed.fndtn.reveal",".reveal-modal",this.settings.closed).on("closed.fndtn.reveal",".reveal-modal",this.close_video),e("body").bind("keyup.reveal",function(n){var r=e(".reveal-modal.open"),i=e.extend({},t.settings,t.data_options(r));n.which===27&&i.closeOnEsc&&r.foundation("reveal","close")}),!0},open:function(t,n){if(t)if(typeof t.selector!="undefined")var r=e("#"+t.data("reveal-id"));else{var r=e(this.scope);n=t}else var r=e(this.scope);if(!r.hasClass("open")){var i=e(".reveal-modal.open");typeof r.data("css-top")=="undefined"&&r.data("css-top",parseInt(r.css("top"),10)).data("offset",this.cache_offset(r)),r.trigger("open"),i.length<1&&this.toggle_bg(r);if(typeof n=="undefined"||!n.url)this.hide(i,this.settings.css.close),this.show(r,this.settings.css.open);else{var s=this,o=typeof n.success!="undefined"?n.success:null;e.extend(n,{success:function(t,n,u){e.isFunction(o)&&o(t,n,u),r.html(t),e(r).foundation("section","reflow"),s.hide(i,s.settings.css.close),s.show(r,s.settings.css.open)}}),e.ajax(n)}}},close:function(t){var t=t&&t.length?t:e(this.scope),n=e(".reveal-modal.open");n.length>0&&(this.locked=!0,t.trigger("close"),this.toggle_bg(t),this.hide(n,this.settings.css.close))},close_targets:function(){var e="."+this.settings.dismissModalClass;return this.settings.closeOnBackgroundClick?e+", ."+this.settings.bgClass:e},toggle_bg:function(t){e(".reveal-modal-bg").length===0&&(this.settings.bg=e("
      ",{"class":this.settings.bgClass}).appendTo("body")),this.settings.bg.filter(":visible").length>0?this.hide(this.settings.bg):this.show(this.settings.bg)},show:function(n,r){if(r){if(/pop/i.test(this.settings.animation)){r.top=e(t).scrollTop()-n.data("offset")+"px";var i={top:e(t).scrollTop()+n.data("css-top")+"px",opacity:1};return this.delay(function(){return n.css(r).animate(i,this.settings.animationSpeed,"linear",function(){this.locked=!1,n.trigger("opened")}.bind(this)).addClass("open")}.bind(this),this.settings.animationSpeed/2)}if(/fade/i.test(this.settings.animation)){var i={opacity:1};return this.delay(function(){return n.css(r).animate(i,this.settings.animationSpeed,"linear",function(){this.locked=!1,n.trigger("opened")}.bind(this)).addClass("open")}.bind(this),this.settings.animationSpeed/2)}return n.css(r).show().css({opacity:1}).addClass("open").trigger("opened")}return/fade/i.test(this.settings.animation)?n.fadeIn(this.settings.animationSpeed/2):n.show()},hide:function(n,r){if(r){if(/pop/i.test(this.settings.animation)){var i={top:-e(t).scrollTop()-n.data("offset")+"px",opacity:0};return this.delay(function(){return n.animate(i,this.settings.animationSpeed,"linear",function(){this.locked=!1,n.css(r).trigger("closed")}.bind(this)).removeClass("open")}.bind(this),this.settings.animationSpeed/2)}if(/fade/i.test(this.settings.animation)){var i={opacity:0};return this.delay(function(){return n.animate(i,this.settings.animationSpeed,"linear",function(){this.locked=!1,n.css(r).trigger("closed")}.bind(this)).removeClass("open")}.bind(this),this.settings.animationSpeed/2)}return n.hide().css(r).removeClass("open").trigger("closed")}return/fade/i.test(this.settings.animation)?n.fadeOut(this.settings.animationSpeed/2):n.hide()},close_video:function(t){var n=e(this).find(".flex-video"),r=n.find("iframe");r.length>0&&(r.attr("data-src",r[0].src),r.attr("src","about:blank"),n.hide())},open_video:function(t){var n=e(this).find(".flex-video"),i=n.find("iframe");if(i.length>0){var s=i.attr("data-src");if(typeof s=="string")i[0].src=i.attr("data-src");else{var o=i[0].src;i[0].src=r,i[0].src=o}n.show()}},cache_offset:function(e){var t=e.show().height()+parseInt(e.css("top"),10);return e.hide(),t},off:function(){e(this.scope).off(".fndtn.reveal")},reflow:function(){}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.tooltips={name:"tooltips",version:"4.2.2",settings:{selector:".has-tip",additionalInheritableClasses:[],tooltipClass:".tooltip",appendTo:"body","disable-for-touch":!1,tipTemplate:function(e,t){return''+t+''}},cache:{},init:function(t,n,r){Foundation.inherit(this,"data_options");var i=this;typeof n=="object"?e.extend(!0,this.settings,n):typeof r!="undefined"&&e.extend(!0,this.settings,r);if(typeof n=="string")return this[n].call(this,r);Modernizr.touch?e(this.scope).on("click.fndtn.tooltip touchstart.fndtn.tooltip touchend.fndtn.tooltip","[data-tooltip]",function(t){var n=e.extend({},i.settings,i.data_options(e(this)));n["disable-for-touch"]||(t.preventDefault(),e(n.tooltipClass).hide(),i.showOrCreateTip(e(this)))}).on("click.fndtn.tooltip touchstart.fndtn.tooltip touchend.fndtn.tooltip",this.settings.tooltipClass,function(t){t.preventDefault(),e(this).fadeOut(150)}):e(this.scope).on("mouseenter.fndtn.tooltip mouseleave.fndtn.tooltip","[data-tooltip]",function(t){var n=e(this);/enter|over/i.test(t.type)?i.showOrCreateTip(n):(t.type==="mouseout"||t.type==="mouseleave")&&i.hide(n)})},showOrCreateTip:function(e){var t=this. +getTip(e);return t&&t.length>0?this.show(e):this.create(e)},getTip:function(t){var n=this.selector(t),r=null;return n&&(r=e('span[data-selector="'+n+'"]'+this.settings.tooltipClass)),typeof r=="object"?r:!1},selector:function(e){var t=e.attr("id"),n=e.attr("data-tooltip")||e.attr("data-selector");return(t&&t.length<1||!t)&&typeof n!="string"&&(n="tooltip"+Math.random().toString(36).substring(7),e.attr("data-selector",n)),t&&t.length>0?t:n},create:function(t){var n=e(this.settings.tipTemplate(this.selector(t),e("
      ").html(t.attr("title")).html())),r=this.inheritable_classes(t);n.addClass(r).appendTo(this.settings.appendTo),Modernizr.touch&&n.append('tap to close '),t.removeAttr("title").attr("title",""),this.show(t)},reposition:function(n,r,i){var s,o,u,a,f,l;r.css("visibility","hidden").show(),s=n.data("width"),o=r.children(".nub"),u=this.outerHeight(o),a=this.outerHeight(o),l=function(e,t,n,r,i,s){return e.css({top:t?t:"auto",bottom:r?r:"auto",left:i?i:"auto",right:n?n:"auto",width:s?s:"auto"}).end()},l(r,n.offset().top+this.outerHeight(n)+10,"auto","auto",n.offset().left,s);if(e(t).width()<767)l(r,n.offset().top+this.outerHeight(n)+10,"auto","auto",12.5,e(this.scope).width()),r.addClass("tip-override"),l(o,-u,"auto","auto",n.offset().left);else{var c=n.offset().left;Foundation.rtl&&(c=n.offset().left+n.offset().width-this.outerWidth(r)),l(r,n.offset().top+this.outerHeight(n)+10,"auto","auto",c,s),r.removeClass("tip-override"),i&&i.indexOf("tip-top")>-1?l(r,n.offset().top-this.outerHeight(r),"auto","auto",c,s).removeClass("tip-override"):i&&i.indexOf("tip-left")>-1?l(r,n.offset().top+this.outerHeight(n)/2-u*2.5,"auto","auto",n.offset().left-this.outerWidth(r)-u,s).removeClass("tip-override"):i&&i.indexOf("tip-right")>-1&&l(r,n.offset().top+this.outerHeight(n)/2-u*2.5,"auto","auto",n.offset().left+this.outerWidth(n)+u,s).removeClass("tip-override")}r.css("visibility","visible").hide()},inheritable_classes:function(t){var n=["tip-top","tip-left","tip-bottom","tip-right","noradius"].concat(this.settings.additionalInheritableClasses),r=t.attr("class"),i=r?e.map(r.split(" "),function(t,r){if(e.inArray(t,n)!==-1)return t}).join(" "):"";return e.trim(i)},show:function(e){var t=this.getTip(e);this.reposition(e,t,e.attr("class")),t.fadeIn(150)},hide:function(e){var t=this.getTip(e);t.fadeOut(150)},reload:function(){var t=e(this);return t.data("fndtn-tooltips")?t.foundationTooltips("destroy").foundationTooltips("init"):t.foundationTooltips("init")},off:function(){e(this.scope).off(".fndtn.tooltip"),e(this.settings.tooltipClass).each(function(t){e("[data-tooltip]").get(t).attr("title",e(this).text())}).remove()},reflow:function(){}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs.clearing={name:"clearing",version:"4.2.2",settings:{templates:{viewing:'×'},close_selectors:".clearing-close",init:!1,locked:!1},init:function(t,n,r){var i=this;return Foundation.inherit(this,"set_data get_data remove_data throttle data_options"),typeof n=="object"&&(r=e.extend(!0,this.settings,n)),typeof n!="string"?(e(this.scope).find("ul[data-clearing]").each(function(){var t=e(this),n=n||{},r=t.find("li"),s=i.get_data(t);!s&&r.length>0&&(n.$parent=t.parent(),i.set_data(t,e.extend({},i.settings,n,i.data_options(t))),i.assemble(t.find("li")),i.settings.init||i.events().swipe_events())}),this.settings.init):this[n].call(this,r)},events:function(){var n=this;return e(this.scope).on("click.fndtn.clearing","ul[data-clearing] li",function(t,r,i){var r=r||e(this),i=i||r,s=r.next("li"),o=n.get_data(r.parent()),u=e(t.target);t.preventDefault(),o||n.init(),i.hasClass("visible")&&r[0]===i[0]&&s.length>0&&n.is_open(r)&&(i=s,u=i.find("img")),n.open(u,r,i),n.update_paddles(i)}).on("click.fndtn.clearing",".clearing-main-next",function(e){this.nav(e,"next")}.bind(this)).on("click.fndtn.clearing",".clearing-main-prev",function(e){this.nav(e,"prev")}.bind(this)).on("click.fndtn.clearing",this.settings.close_selectors,function(e){Foundation.libs.clearing.close(e,this)}).on("keydown.fndtn.clearing",function(e){this.keydown(e)}.bind(this)),e(t).on("resize.fndtn.clearing",function(){this.resize()}.bind(this)),this.settings.init=!0,this},swipe_events:function(){var t=this;e(this.scope).on("touchstart.fndtn.clearing",".visible-img",function(t){t.touches||(t=t.originalEvent);var n={start_page_x:t.touches[0].pageX,start_page_y:t.touches[0].pageY,start_time:(new Date).getTime(),delta_x:0,is_scrolling:r};e(this).data("swipe-transition",n),t.stopPropagation()}).on("touchmove.fndtn.clearing",".visible-img",function(n){n.touches||(n=n.originalEvent);if(n.touches.length>1||n.scale&&n.scale!==1)return;var r=e(this).data("swipe-transition");typeof r=="undefined"&&(r={}),r.delta_x=n.touches[0].pageX-r.start_page_x,typeof r.is_scrolling=="undefined"&&(r.is_scrolling=!!(r.is_scrolling||Math.abs(r.delta_x)
      ');var r=e("#foundationClearingHolder"),i=this.get_data(n),s=n.detach(),o={grid:'",viewing:i.templates.viewing},u='
      '+o.viewing+o.grid+"
      ";return r.after(u).remove()},open:function(e,t,n){var r=n.closest(".clearing-assembled"),i=r.find("div").first(),s=i.find(".visible-img"),o=s.find("img").not(e);this.locked()||(o.attr("src",this.load(e)).css("visibility","hidden"),this.loaded(o,function(){o.css("visibility","visible"),r.addClass("clearing-blackout"),i.addClass("clearing-container"),s.show(),this.fix_height(n).caption(s.find(".clearing-caption"),e).center(o).shift(t,n,function(){n.siblings().removeClass("visible"),n.addClass("visible")})}.bind(this)))},close:function(t,n){t.preventDefault();var r=function(e){return/blackout/.test(e.selector)?e:e.closest(".clearing-blackout")}(e(n)),i,s;return n===t.target&&r&&(i=r.find("div").first(),s=i.find(".visible-img"),this.settings.prev_index=0,r.find("ul[data-clearing]").attr("style","").closest(".clearing-blackout").removeClass("clearing-blackout"),i.removeClass("clearing-container"),s.hide()),!1},is_open:function(e){return e.parent().attr("style").length>0},keydown:function(t){var n=e(".clearing-blackout").find("ul[data-clearing]");t.which===39&&this.go(n,"next"),t.which===37&&this.go(n,"prev"),t.which===27&&e("a.clearing-close").trigger("click")},nav:function(t,n){var r=e(".clearing-blackout").find("ul[data-clearing]");t.preventDefault(),this.go(r,n)},resize:function(){var t=e(".clearing-blackout .visible-img").find("img");t.length&&this.center(t)},fix_height:function(t){var n=t.parent().children(),r=this;return n.each(function(){var t=e(this),n=t.find("img");t.height()>r.outerHeight(n)&&t.addClass("fix-height")}).closest("ul").width(n.length*100+"%"),this},update_paddles:function(e){var t=e.closest(".carousel").siblings(".visible-img");e.next().length>0?t.find(".clearing-main-next").removeClass("disabled"):t.find(".clearing-main-next").addClass("disabled"),e.prev().length>0?t.find(".clearing-main-prev").removeClass("disabled"):t.find(".clearing-main-prev").addClass("disabled")},center:function(e){return this.rtl?e.css({marginRight:-(this.outerWidth(e)/2),marginTop:-(this.outerHeight(e)/2)}):e.css({marginLeft:-(this.outerWidth(e)/2),marginTop:-(this.outerHeight(e)/2)}),this},load:function(e){if(e[0].nodeName==="A")var t=e.attr("href");else var t=e.parent().attr("href");return this.preload(e),t?t:e.attr("src")},preload:function(e){this.img(e.closest("li").next()).img(e.closest("li").prev())},loaded:function(e,t){function n(){t()}function r(){this.one("load",n);if(/MSIE (\d+\.\d+);/.test(navigator.userAgent)){var e=this.attr("src"),t=e.match(/\?/)?"&":"?";t+="random="+(new Date).getTime(),this.attr("src",e+t)}}if(!e.attr("src")){n();return}e[0].complete||e[0].readyState===4?n():r.call(e)},img:function(e){if(e.length){var t=new Image,n=e.find("a");n.length?t.src=n.attr("href"):t.src=e.find("img").attr("src")}return this},caption:function(e,t){var n=t.data("caption");return n?e.html(n).show():e.text("").hide(),this},go:function(e,t){var n=e.find(".visible"),r=n[t]();r.length&&r.find("img").trigger("click",[n,r])},shift:function(e,t,n){var r=t.parent(),i=this.settings.prev_index||t.index(),s=this.direction(r,e,t),o=parseInt(r.css("left"),10),u=this.outerWidth(t),a;t.index()!==i&&!/skip/.test(s)?/left/.test(s)?(this.lock(),r.animate({left:o+u},300,this.unlock())):/right/.test(s)&&(this.lock(),r.animate({left:o-u},300,this.unlock())):/skip/.test(s)&&(a=t.index()-this.settings.up_count,this.lock(),a>0?r.animate({left:-(a*u)},300,this.unlock()):r.animate({left:0},300,this.unlock())),n()},direction:function(t,n,r){var i=t.find("li"),s=this.outerWidth(i)+this.outerWidth(i)/4,o=Math.floor(this.outerWidth(e(".clearing-container"))/s)-1,u=i.index(r),a;return this.settings.up_count=o,this.adjacent(this.settings.prev_index,u)?u>o&&u>this.settings.prev_index?a="right":u>o-1&&u<=this.settings.prev_index?a="left":a=!1:a="skip",this.settings.prev_index=u,a},adjacent:function(e,t){for(var n=t+1;n>=t-1;n--)if(n===e)return!0;return!1},lock:function(){this.settings.locked=!0},unlock:function(){this.settings.locked=!1},locked:function(){return this.settings.locked},outerHTML:function(e){return e.outerHTML||(new XMLSerializer).serializeToString(e)},off:function(){e(this.scope).off(".fndtn.clearing"),e(t).off(".fndtn.clearing"),this.remove_data(),this.settings.init=!1},reflow:function(){this.init()}}}(Foundation.zj,this,this.document),function(e,t,n){function i(e){return e}function s(e){return decodeURIComponent(e.replace(r," "))}var r=/\+/g,o=e.cookie=function(r,u,a){if(u!==n){a=e.extend({},o.defaults,a),u===null&&(a.expires=-1);if(typeof a.expires=="number"){var f=a.expires,l=a.expires=new Date;l.setDate(l.getDate()+f)}return u=o.json?JSON.stringify(u):String(u),t.cookie=[encodeURIComponent(r),"=",o.raw?u:encodeURIComponent(u),a.expires?"; expires="+a.expires.toUTCString():"",a.path?"; path="+a.path:"",a.domain?"; domain="+a.domain:"",a.secure?"; secure":""].join("")}var c=o.raw?i:s,h=t.cookie.split("; ");for(var p=0,d=h.length;p×',timer:'
      ',tip:'
      ',wrapper:'
      ',button:'',modal:'
      ',expose:'
      ',exposeCover:'
      '},exposeAddClass:""},settings:{},init:function(t,n,r){return this.scope=t||this.scope,Foundation.inherit(this,"throttle data_options scrollTo scrollLeft delay"),typeof n=="object"?e.extend(!0,this.settings,this.defaults,n):e.extend(!0,this.settings,this.defaults,r),typeof n!="string"?(this.settings.init||this.events(),this.settings.init):this[n].call(this,r)},events:function(){var n=this;e(this.scope).on("click.joyride",".joyride-next-tip, .joyride-modal-bg",function(e){e.preventDefault(),this.settings.$li.next().length<1?this.end():this.settings.timer>0?(clearTimeout(this.settings.automate),this.hide(),this.show(),this.startTimer()):(this.hide(),this.show())}.bind(this)).on("click.joyride",".joyride-close-tip",function(e){e.preventDefault(),this.end()}.bind(this)),e(t).on("resize.fndtn.joyride",n.throttle(function(){if(e("[data-joyride]").length>0&&n.settings.$next_tip){if(n.settings.exposed.length>0){var t=e(n.settings.exposed);t.each(function(){var t=e(this);n.un_expose(t),n.expose(t)})}n.is_phone()?n.pos_phone():n.pos_default(!1,!0)}},100)),this.settings.init=!0},start:function(){var t=this,n=e(this.scope).find("[data-joyride]"),r=["timer","scrollSpeed","startOffset","tipAnimationFadeSpeed","cookieExpires"],i=r.length;this.settings.init||this.init(),this.settings.$content_el=n,this.settings.$body=e(this.settings.tipContainer),this.settings.body_offset=e(this.settings.tipContainer).position(),this.settings.$tip_content=this.settings.$content_el.find("> li"),this.settings.paused=!1,this.settings.attempts=0,this.settings.tipLocationPatterns={top:["bottom"],bottom:[],left:["right","top","bottom"],right:["left","top","bottom"]},typeof e.cookie!="function"&&(this.settings.cookieMonster=!1);if(!this.settings.cookieMonster||this.settings.cookieMonster&&e.cookie(this.settings.cookieName)===null)this.settings.$tip_content.each(function(n){var s=e(this);e.extend(!0,t.settings,t.data_options(s));for(var o=i-1;o>=0;o--)t.settings[r[o]]=parseInt(t.settings[r[o]],10);t.create({$li:s,index:n})}),!this.settings.startTimerOnClick&&this.settings.timer>0?(this.show("init"),this.startTimer()):this.show("init")},resume:function(){this.set_li(),this.show()},tip_template:function(t){var n,r;return t.tip_class=t.tip_class||"",n=e(this.settings.template.tip).addClass(t.tip_class),r=e.trim(e(t.li).html())+this.button_text(t.button_text)+this.settings.template.link+this.timer_instance(t.index),n.append(e(this.settings.template.wrapper)),n.first().attr("data-index",t.index),e(".joyride-content-wrapper",n).append(r),n[0]},timer_instance:function(t){var n;return t===0&&this.settings.startTimerOnClick&&this.settings.timer>0||this.settings.timer===0?n="":n=this.outerHTML(e(this.settings.template.timer)[0]),n},button_text:function(t){return this.settings.nextButton?(t=e.trim(t)||"Next",t=this.outerHTML(e(this.settings.template.button).append(t)[0])):t="",t},create:function(t){var n=t.$li.attr("data-button")||t.$li.attr("data-text"),r=t.$li.attr("class"),i=e(this.tip_template({tip_class:r,index:t.index,button_text:n,li:t.$li}));e(this.settings.tipContainer).append(i)},show:function(t){var n=null;this.settings.$li===r||e.inArray(this.settings.$li.index(),this.settings.pauseAfter)===-1?(this.settings.paused?this.settings.paused=!1:this.set_li(t),this.settings.attempts=0,this.settings.$li.length&&this.settings.$target.length>0?(t&&(this.settings.preRideCallback(this.settings.$li.index(),this.settings.$next_tip),this.settings.modal&&this.show_modal()),this.settings.preStepCallback(this.settings.$li.index(),this.settings.$next_tip),this.settings.modal&&this.settings.expose&&this.expose(),this.settings.tipSettings=e.extend(this.settings,this.data_options(this.settings.$li)),this.settings.timer=parseInt(this.settings.timer,10),this.settings.tipSettings.tipLocationPattern=this.settings.tipLocationPatterns[this.settings.tipSettings.tipLocation],/body/i.test(this.settings.$target.selector)||this.scroll_to(),this.is_phone()?this.pos_phone(!0):this.pos_default(!0),n=this.settings.$next_tip.find(".joyride-timer-indicator"),/pop/i.test(this.settings.tipAnimation)?(n.width(0),this.settings.timer>0?(this.settings.$next_tip.show(),this.delay(function(){n.animate({width:n.parent().width()},this.settings.timer,"linear")}.bind(this),this.settings.tipAnimationFadeSpeed)):this.settings.$next_tip.show()):/fade/i.test(this.settings.tipAnimation)&&(n.width(0),this.settings.timer>0?(this.settings.$next_tip.fadeIn(this.settings.tipAnimationFadeSpeed).show(),this.delay(function(){n.animate({width:n.parent().width()},this.settings.timer,"linear")}.bind(this),this.settings.tipAnimationFadeSpeed)):this.settings.$next_tip.fadeIn(this.settings.tipAnimationFadeSpeed)),this.settings.$current_tip=this.settings.$next_tip):this.settings.$li&&this.settings.$target.length<1?this.show():this.end()):this.settings.paused=!0},is_phone:function(){return Modernizr?Modernizr.mq("only screen and (max-width: 767px)")||e(".lt-ie9").length>0:this.settings.$window.width()<767},hide:function(){this.settings.modal&&this.settings.expose&&this.un_expose(),this.settings.modal||e(".joyride-modal-bg").hide(),this.settings.$current_tip.hide(),this.settings.postStepCallback(this.settings.$li.index(),this.settings.$current_tip)},set_li:function(e){e?(this.settings.$li=this.settings.$tip_content.eq(this.settings.startOffset),this.set_next_tip(),this.settings.$current_tip=this.settings.$next_tip):(this.settings.$li=this.settings.$li.next(),this.set_next_tip()),this.set_target()},set_next_tip:function(){this.settings.$next_tip=e(".joyride-tip-guide[data-index='"+this.settings.$li.index()+"']"),this.settings.$next_tip.data("closed","")},set_target:function(){var t=this.settings.$li.attr("data-class"),r=this.settings.$li.attr("data-id"),i=function(){return r?e(n.getElementById(r)):t?e("."+t).first():e("body")};this.settings.$target=i()},scroll_to:function(){var n,r;n=e(t).height()/2,r=Math.ceil(this.settings.$target.offset().top-n+this.outerHeight(this.settings.$next_tip)),r>0&&this.scrollTo(e("html, body"),r,this.settings.scrollSpeed)},paused:function(){return e.inArray(this.settings.$li.index()+1,this.settings.pauseAfter)===-1},restart:function(){this.hide(),this.settings.$li=r,this.show("init")},pos_default:function(n,r){var i=Math.ceil(e(t).height()/2),s=this.settings.$next_tip.offset(),o=this.settings.$next_tip.find(".joyride-nub"),u=Math.ceil(this.outerWidth(o)/2),a=Math.ceil(this.outerHeight(o)/2),f=n||!1;f&&(this.settings.$next_tip.css("visibility","hidden"),this.settings.$next_tip.show()),typeof r=="undefined"&&(r=!1);if(!/body/i.test(this.settings.$target.selector)){if(this.bottom()){var l=this.settings.$target.offset().left;Foundation.rtl&&(l=this.settings.$target.offset().width-this.settings.$next_tip.width()+l),this.settings.$next_tip.css({top:this.settings.$target.offset().top+a+this.outerHeight(this.settings.$target),left:l}),this.nub_position(o,this.settings.tipSettings.nubPosition,"top")}else if(this.top()){var l=this.settings.$target.offset().left;Foundation.rtl&&(l=this.settings.$target.offset().width-this.settings.$next_tip.width()+l),this.settings.$next_tip.css({top:this.settings.$target.offset().top-this.outerHeight(this.settings.$next_tip)-a,left:l}),this.nub_position(o,this.settings.tipSettings.nubPosition,"bottom")}else this.right()?(this.settings.$next_tip.css({top:this.settings.$target.offset().top,left:this.outerWidth(this.settings.$target)+this.settings.$target.offset().left+u}),this.nub_position(o,this.settings.tipSettings.nubPosition,"left")):this.left()&&(this.settings.$next_tip.css({top:this.settings.$target.offset().top,left:this.settings.$target.offset().left-this.outerWidth(this.settings.$next_tip)-u}),this.nub_position(o,this.settings.tipSettings.nubPosition,"right"));!this.visible(this.corners(this.settings.$next_tip))&&this.settings.attempts0&&arguments[0]instanceof e)i=arguments[0];else{if(!this.settings.$target||!!/body/i.test(this.settings.$target.selector))return!1;i=this.settings.$target}if(i.length<1)return t.console&&console.error("element not valid",i),!1;n=e(this.settings.template.expose),this.settings.$body.append(n),n.css({top:i.offset().top,left:i.offset().left,width:this.outerWidth(i,!0),height:this.outerHeight(i,!0)}),r=e(this.settings.template.exposeCover),s={zIndex:i.css("z-index"),position:i.css("position")},o=i.attr("class")==null?"":i.attr("class"),i.css("z-index",parseInt(n.css("z-index"))+1),s.position=="static"&&i.css("position","relative"),i.data("expose-css",s),i.data("orig-class",o),i.attr("class",o+" "+this.settings.exposeAddClass),r.css({top:i.offset().top,left:i.offset().left,width:this.outerWidth(i,!0),height:this.outerHeight(i,!0)}),this.settings.$body.append(r),n.addClass(u),r.addClass(u),i.data("expose",u),this.settings.postExposeCallback(this.settings.$li.index(),this.settings.$next_tip,i),this.add_exposed(i)},un_expose:function(){var n,r,i,s,o,u=!1;if(arguments.length>0&&arguments[0]instanceof e)r=arguments[0];else{if(!this.settings.$target||!!/body/i.test(this.settings.$target.selector))return!1;r=this.settings.$target}if(r.length<1)return t.console&&console.error("element not valid",r),!1;n=r.data("expose"),i=e("."+n),arguments.length>1&&(u=arguments[1]),u===!0?e(".joyride-expose-wrapper,.joyride-expose-cover").remove():i.remove(),s=r.data("expose-css"),s.zIndex=="auto"?r.css("z-index",""):r.css("z-index",s.zIndex),s.position!=r.css("position")&&(s.position=="static"?r.css("position",""):r.css("position",s.position)),o=r.data("orig-class"),r.attr("class",o),r.removeData("orig-classes"),r.removeData("expose"),r.removeData("expose-z-index"),this.remove_exposed(r)},add_exposed:function(t){this.settings.exposed=this.settings.exposed||[],t instanceof e||typeof t=="object"?this.settings.exposed.push(t[0]):typeof t=="string"&&this.settings.exposed.push(t)},remove_exposed:function(t){var n,r;t instanceof e?n=t[0]:typeof t=="string"&&(n=t),this.settings.exposed=this.settings.exposed||[],r=this.settings.exposed.length;for(var i=0;ia&&(a=u),[n.offset().topn.offset().left]},visible:function(e){var t=e.length;while(t--)if(e[t])return!1;return!0},nub_position:function(e,t,n){t==="auto"?e.addClass(n):e.addClass(t)},startTimer:function(){this.settings.$li.length?this.settings.automate=setTimeout(function(){this.hide(),this.show(),this.startTimer()}.bind(this),this.settings.timer):clearTimeout(this.settings.automate)},end:function(){this.settings.cookieMonster&&e.cookie(this.settings.cookieName,"ridden",{expires:this.settings.cookieExpires,domain:this.settings.cookieDomain}),this.settings.timer>0&&clearTimeout(this.settings.automate),this.settings.modal&&this.settings.expose&&this.un_expose(),this.settings.$next_tip.data("closed",!0),e(".joyride-modal-bg").hide(),this.settings.$current_tip.hide(),this.settings.postStepCallback(this.settings.$li.index(),this.settings.$current_tip),this.settings.postRideCallback(this.settings.$li.index(),this.settings.$current_tip),e(".joyride-tip-guide").remove()},outerHTML:function(e){return e.outerHTML||(new XMLSerializer).serializeToString(e)},off:function(){e(this.scope).off(".joyride"),e(t).off(".joyride"),e(".joyride-close-tip, .joyride-next-tip, .joyride-modal-bg").off(".joyride"),e(".joyride-tip-guide, .joyride-modal-bg").remove(),clearTimeout(this.settings.automate),this.settings={}},reflow:function(){}}}(Foundation.zj,this,this.document),function(e,t,n,r){"use strict";Foundation.libs=Foundation.libs||{},Foundation.libs.orbit={name:"orbit",version:"4.2.0",settings:{timer_speed:1e4,pause_on_hover:!0,resume_on_mouseout:!1,animation_speed:500,bullets:!0,stack_on_small:!0,navigation_arrows:!0,slide_number:!0,container_class:"orbit-container",stack_on_small_class:"orbit-stack-on-small",next_class:"orbit-next",prev_class:"orbit-prev",timer_container_class:"orbit-timer",timer_paused_class:"paused",timer_progress_class:"orbit-progress",slides_container_class:"orbit-slides-container",bullets_container_class:"orbit-bullets",bullets_active_class:"active",slide_number_class:"orbit-slide-number",caption_class:"orbit-caption",active_slide_class:"active",orbit_transition_class:"orbit-transitioning"},init:function(t,n,r){var i=this;Foundation.inherit(i,"data_options"),typeof n=="object"&&e.extend(!0,i.settings,n);if(e(t).is("[data-orbit]")){var s=e.extend(!0,{},i);s._init(idx,el)}e("[data-orbit]",t).each(function(t,n){var r=e.extend(!0,{},i);r._init(t,n)})},_container_html:function(){var e=this;return'
      '},_bullets_container_html:function(t){var n=this,r=e('
        ');return t.each(function(t,i){var s=e('
      1. ');t===0&&s.addClass(n.settings.bullets_active_class),r.append(s)}),r},_slide_number_html:function(t,n){var r=this,i=e('
        ');return i.append(""+t+" of "+n+""),i},_timer_html:function(){var e=this;return typeof e.settings.timer_speed=="number"&&e.settings.timer_speed>0?'
        ':""},_next_html:function(){var e=this;return'Next '},_prev_html:function(){var e=this;return'Prev '},_init:function(t,n){var r=this,i=e(n),s=i.wrap(r._container_html()).parent(),o=i.children();e.extend(!0,r.settings,r.data_options(i)),r.settings.navigation_arrows&&(s.append(r._prev_html()),s.append(r._next_html())),i.addClass(r.settings.slides_container_class),r.settings.stack_on_small&&s.addClass(r.settings.stack_on_small_class),r.settings.slide_number&&s.append(r._slide_number_html(1,o.length)),s.append(r._timer_html()),r.settings.bullets&&s.after(r._bullets_container_html(o)),i.append(o.first().clone().attr("data-orbit-slide","")),i.prepend(o.last().clone().attr("data-orbit-slide","")),i.css(Foundation.rtl?"marginRight":"marginLeft","-100%"),o.first().addClass(r.settings.active_slide_class),r._init_events(i),r._init_dimensions(i),r._start_timer(i)},_init_events:function(i){var s=this,o=i.parent();e(t).on("load.fndtn.orbit",function(){i.height(""),i.height(i.height(o.height())),i.trigger("orbit:ready")}).on("resize.fndtn.orbit",function(){i.height(""),i.height(i.height(o.height()))}),e(n).on("click.fndtn.orbit","[data-orbit-link]",function(t){t.preventDefault();var n=e(t.currentTarget).attr("data-orbit-link"),r=i.find("[data-orbit-slide="+n+"]").first();r.length===1&&(s._reset_timer(i,!0),s._goto(i,r.index(),function(){}))}),o.siblings("."+s.settings.bullets_container_class).on("click.fndtn.orbit","[data-orbit-slide-number]",function(t){t.preventDefault(),s._reset_timer(i,!0),s._goto(i,e(t.currentTarget).data("orbit-slide-number"),function(){})}),o.on("mouseenter.fndtn.orbit",function(e){s.settings.pause_on_hover&&s._stop_timer(i)}).on("mouseleave.fndtn.orbit",function(e){s.settings.resume_on_mouseout&&s._start_timer(i)}).on("orbit:after-slide-change.fndtn.orbit",function(e,t){var n=o.find("."+s.settings.slide_number_class);n.length===1&&n.replaceWith(s._slide_number_html(t.slide_number,t.total_slides))}).on("orbit:next-slide.fndtn.orbit click.fndtn.orbit","."+s.settings.next_class.split(" ").join("."),function(e){e.preventDefault(),s._reset_timer(i,!0),s._goto(i,"next",function(){})}).on("orbit:prev-slide.fndtn.orbit click.fndtn.orbit","."+s.settings.prev_class.split(" ").join("."),function(e){e.preventDefault(),s._reset_timer(i,!0),s._goto(i,"prev",function(){})}).on("orbit:toggle-play-pause.fndtn.orbit click.fndtn.orbit touchstart.fndtn.orbit","."+s.settings.timer_container_class,function(t){t.preventDefault();var n=e(t.currentTarget).toggleClass(s.settings.timer_paused_class),r=n.closest("."+s.settings.container_class).find("."+s.settings.slides_container_class);n.hasClass(s.settings.timer_paused_class)?s._stop_timer(r):s._start_timer(r)}).on("touchstart.fndtn.orbit",function(e){e.touches||(e=e.originalEvent);var t={start_page_x:e.touches[0].pageX,start_page_y:e.touches[0].pageY,start_time:(new Date).getTime(),delta_x:0,is_scrolling:r};o.data("swipe-transition",t),e.stopPropagation()}).on("touchmove.fndtn.orbit",function(e){e.touches||(e=e.originalEvent);if(e.touches.length>1||e.scale&&e.scale!==1)return;var t=o.data("swipe-transition");typeof t=="undefined"&&(t={}),t.delta_x=e.touches[0].pageX-t.start_page_x,typeof t.is_scrolling=="undefined"&&(t.is_scrolling=!!(t.is_scrolling||Math.abs(t.delta_x)0&&(r.toggle_active.call(this,t,r),r.reflow())}),e(t).on("resize.fndtn.section",r.throttle(function(){r.resize.call(this)},30)).on("hashchange",function(){r.settings.toggled||(r.set_active_from_hash(),e(this).trigger("resize"))}).trigger("resize"),e(n).on("click.fndtn.section",function(t){e(t.target).closest(r.settings.title_selector).length<1&&e(r.settings.nav_selector).children(r.settings.region_selector).removeClass("active").attr("style","")})},toggle_active:function(t,n){var r=e(this),n=Foundation.libs.section,i=r.closest(n.settings.region_selector),s=r.siblings(n.settings.content_selector),o=i.parent(),u=e.extend({},n.settings,n.data_options(o)),a=o.children(n.settings.active_region_selector);n.settings.toggled=!0,!u.deep_linking&&s.length>0&&t.preventDefault();if(i.hasClass("active"))(n.small(o)||n.is_vertical_nav(o)||n.is_horizontal_nav(o)||n.is_accordion(o))&&(a[0]!==i[0]||a[0]===i[0]&&!u.one_up)&&i.removeClass("active").attr("style","");else{var a=o.children(n.settings.active_region_selector),f=n.outerHeight(i.children(n.settings.title_selector));if(n.small(o)||u.one_up)n.small(o)?a.attr("style",""):a.attr("style","visibility: hidden; padding-top: "+f+"px;");n.small(o)?i.attr("style",""):i.css("padding-top",f),i.addClass("active"),a.length>0&&a.removeClass("active").attr("style",""),n.is_vertical_tabs(o)&&(s.css("display","block"),a!==null&&a.children(n.settings.content_selector).css("display","none"))}setTimeout(function(){n.settings.toggled=!1},300),u.callback()},resize:function(){var t=Foundation.libs.section,n=e(t.settings.section_selector);n.each(function(){var n=e(this),r=n.children(t.settings.active_region_selector),i=e.extend({},t.settings,t.data_options(n));if(r.length>1)r.not(":first").removeClass("active").attr("style","");else if(r.length<1&&!t.is_vertical_nav(n)&&!t.is_horizontal_nav(n)&&!t.is_accordion(n)){var s=n.children(t.settings.region_selector).first();(i.one_up||!t.small(n))&&s.addClass("active"),t.small(n)?s.attr("style",""):s.css("padding-top",t.outerHeight(s.children(t.settings.title_selector)))}t.small(n)?r.attr("style",""):r.css("padding-top",t.outerHeight(r.children(t.settings.title_selector))),t.position_titles(n),t.is_horizontal_nav(n)&&!t.small(n)||t.is_vertical_tabs(n)&&!t.small(n)?t.position_content(n):t.position_content(n,!1)})},is_vertical_nav:function(e){return/vertical-nav/i.test(e.data("section"))},is_horizontal_nav:function(e){return/horizontal-nav/i.test(e.data("section"))},is_accordion:function(e){return/accordion/i.test(e.data("section"))},is_horizontal_tabs:function(e){return/^tabs$/i.test(e.data("section"))},is_vertical_tabs:function(e){return/vertical-tabs/i.test(e.data("section"))},set_active_from_hash:function(){var n=t.location.hash.substring(1),r=e("[data-section]"),i=this;r.each(function(){var t=e(this),r=e.extend({},i.settings,i.data_options(t));if(n.length>0&&r.deep_linking){var s=t.children(i.settings.region_selector).attr("style","").removeClass("active"),o=s.map(function(){var t=e(i.settings.content_selector,this),r=t.data("slug");if((new RegExp(r,"i")).test(n))return t}),u=o.length;for(var a=u-1;a>=0;a--)e(o[a]).parent().addClass("active")}})},position_titles:function(t,n){var r=this,i=t.children(this.settings.region_selector).map(function(){return e(this).children(r.settings.title_selector)}),s=0,o=0,r=this;typeof n=="boolean"?i.attr("style",""):i.each(function(){r.is_vertical_tabs(t)?(e(this).css("top",o),o+=r.outerHeight(e(this))):(r.rtl?e(this).css("right",s):e(this).css("left",s),s+=r.outerWidth(e(this)))})},position_content:function(t,n){var r=this,i=t.children(r.settings.region_selector),s=i.map(function(){return e(this).children(r.settings.title_selector)}),o=i.map(function(){return e(this).children(r.settings.content_selector)});if(typeof n=="boolean")o.attr("style",""),t.attr("style","");else if(r.is_vertical_tabs(t)&&!r.small(t)){var u=0,a=Number.MAX_VALUE,f=null;i.each(function(){var n=e(this),i=n.children(r.settings.title_selector),s=n.children(r.settings.content_selector),o=0;f=r.outerWidth(i),o=r.outerWidth(t)-f,o").insertAfter(s.settings.$topbar);s.settings.breakPoint=n.width(),n.remove(),s.assemble(),s.settings.$topbar.parent().hasClass("fixed")&&e("body").css("padding-top",s.outerHeight(s.settings.$topbar))}),s.settings.init||this.events(),this.settings.init):this[r].call(this,i)},events:function(){var n=this,r=this.outerHeight(e(".top-bar, [data-topbar]"));e(this.scope).off(".fndtn.topbar").on("click.fndtn.topbar",".top-bar .toggle-topbar, [data-topbar] .toggle-topbar",function(i){var s=e(this).closest(".top-bar, [data-topbar]"),o=s.find("section, .section"),u=s.children("ul").first();i.preventDefault(),n.breakpoint()&&(n.rtl?(o.css({right:"0%"}),o.find(">.name").css({right:"100%"})):(o.css({left:"0%"}),o.find(">.name").css({left:"100%"})),o.find("li.moved").removeClass("moved"),s.data("index",0),s.toggleClass("expanded").css("max-height","")),s.hasClass("expanded")?s.parent().hasClass("fixed")&&(s.parent().removeClass("fixed"),s.addClass("fixed"),e("body").css("padding-top","0"),n.settings.scrolltop&&t.scrollTo(0,0)):s.hasClass("fixed")&&(s.parent().addClass("fixed"),s.removeClass("fixed"),e("body").css("padding-top",r))}).on("mouseenter mouseleave",".top-bar li",function(t){if(!n.settings.is_hover)return;/enter|over/i.test(t.type)?e(this).addClass("hover"):e(this).removeClass("hover")}).on("click.fndtn.topbar",".top-bar li.has-dropdown",function(t){if(n.breakpoint())return;var r=e(this),i=e(t.target),s=r.closest("[data-topbar], .top-bar"),o=s.data("topbar");if(n.settings.is_hover&&!Modernizr.touch)return;t.stopImmediatePropagation(),i[0].nodeName==="A"&&i.parent().hasClass("has-dropdown")&&t.preventDefault(),r.hasClass("hover")?r.removeClass("hover").find("li").removeClass("hover"):r.addClass("hover")}).on("click.fndtn.topbar",".top-bar .has-dropdown>a, [data-topbar] .has-dropdown>a",function(t){if(n.breakpoint()){t.preventDefault();var r=e(this),i=r.closest(".top-bar, [data-topbar]"),s=i.find("section, .section"),o=i.children("ul").first(),u=r.next(".dropdown").outerHeight(),a=r.closest("li");i.data("index",i.data("index")+1),a.addClass("moved"),n.rtl?(s.css({right:-(100*i.data("index"))+"%"}),s.find(">.name").css({right:100*i.data("index")+"%"})):(s.css({left:-(100*i.data("index"))+"%"}),s.find(">.name").css({left:100*i.data("index")+"%"})),i.css("max-height",n.height(r.siblings("ul"))+n.outerHeight(o,!0))}}),e(t).on("resize.fndtn.topbar",function(){n.breakpoint()||e(".top-bar, [data-topbar]").css("max-height","").removeClass("expanded").find("li").removeClass("hover")}.bind(this)),e("body").on("click.fndtn.topbar",function(t){var n=e(t.target).closest("[data-topbar], .top-bar");if(n.length>0)return;e(".top-bar li, [data-topbar] li").removeClass("hover")}),e(this.scope).on("click.fndtn",".top-bar .has-dropdown .back, [data-topbar] .has-dropdown .back",function(t){t.preventDefault();var r=e(this),i=r.closest(".top-bar, [data-topbar]"),s=i.children("ul").first(),o=i.find("section, .section"),u=r.closest("li.moved"),a=u.parent();i.data("index",i.data("index")-1),n.rtl?(o.css({right:-(100*i.data("index"))+"%"}),o.find(">.name").css({right:100*i.data("index")+"%"})):(o.css({left:-(100*i.data("index"))+"%"}),o.find(">.name").css({left:100*i.data("index")+"%"})),i.data("index")===0?i.css("max-height",""):i.css("max-height",n.height(a)+n.outerHeight(s,!0)),setTimeout(function(){u.removeClass("moved")},300)})},breakpoint:function(){return e(n).width()<=this.settings.breakPoint||e("html").hasClass("lt-ie9")},assemble:function(){var t=this;this.settings.$section.detach(),this.settings.$section.find(".has-dropdown>a").each(function(){var n=e(this),r=n.siblings(".dropdown"),i=n.attr("href");if(i&&i.length>1)var s=e('
      2. '+n.text()+"
      3. ");else var s=e('
      4. ');t.settings.custom_back_text==1?s.find("h5>a").html("« "+t.settings.back_text):s.find("h5>a").html("« "+n.html()),r.prepend(s)}),this.settings.$section.appendTo(this.settings.$topbar),this.sticky()},height:function(t){var n=0,r=this;return t.find("> li").each(function(){n+=r.outerHeight(e(this),!0)}),n},sticky:function(){var n="."+this.settings.stickyClass;if(e(n).length>0){var r=e(n).length?e(n).offset().top:0,i=e(t),s=this.outerHeight(e(".top-bar"));i.scroll(function(){i.scrollTop()>=r?(e(n).addClass("fixed"),e("body").css("padding-top",s)):i.scrollTop()×' + + '' + }, + + // comma delimited list of selectors that, on click, will close clearing, + // add 'div.clearing-blackout, div.visible-img' to close on background click + close_selectors : '.clearing-close', + + // event initializers and locks + init : false, + locked : false + }, + + init : function (scope, method, options) { + var self = this; + Foundation.inherit(this, 'set_data get_data remove_data throttle data_options'); + + if (typeof method === 'object') { + options = $.extend(true, this.settings, method); + } + + if (typeof method !== 'string') { + $(this.scope).find('ul[data-clearing]').each(function () { + var $el = $(this), + options = options || {}, + lis = $el.find('li'), + settings = self.get_data($el); + + if (!settings && lis.length > 0) { + options.$parent = $el.parent(); + + self.set_data($el, $.extend({}, self.settings, options, self.data_options($el))); + + self.assemble($el.find('li')); + + if (!self.settings.init) { + self.events().swipe_events(); + } + } + }); + + return this.settings.init; + } else { + // fire method + return this[method].call(this, options); + } + }, + + // event binding and initial setup + + events : function () { + var self = this; + + $(this.scope) + .on('click.fndtn.clearing', 'ul[data-clearing] li', + function (e, current, target) { + var current = current || $(this), + target = target || current, + next = current.next('li'), + settings = self.get_data(current.parent()), + image = $(e.target); + + e.preventDefault(); + if (!settings) self.init(); + + // if clearing is open and the current image is + // clicked, go to the next image in sequence + if (target.hasClass('visible') && + current[0] === target[0] && + next.length > 0 && self.is_open(current)) { + target = next; + image = target.find('img'); + } + + // set current and target to the clicked li if not otherwise defined. + self.open(image, current, target); + self.update_paddles(target); + }) + + .on('click.fndtn.clearing', '.clearing-main-next', + function (e) { this.nav(e, 'next') }.bind(this)) + .on('click.fndtn.clearing', '.clearing-main-prev', + function (e) { this.nav(e, 'prev') }.bind(this)) + .on('click.fndtn.clearing', this.settings.close_selectors, + function (e) { Foundation.libs.clearing.close(e, this) }) + .on('keydown.fndtn.clearing', + function (e) { this.keydown(e) }.bind(this)); + + $(window).on('resize.fndtn.clearing', + function () { this.resize() }.bind(this)); + + this.settings.init = true; + return this; + }, + + swipe_events : function () { + var self = this; + + $(this.scope) + .on('touchstart.fndtn.clearing', '.visible-img', function(e) { + if (!e.touches) { e = e.originalEvent; } + var data = { + start_page_x: e.touches[0].pageX, + start_page_y: e.touches[0].pageY, + start_time: (new Date()).getTime(), + delta_x: 0, + is_scrolling: undefined + }; + + $(this).data('swipe-transition', data); + e.stopPropagation(); + }) + .on('touchmove.fndtn.clearing', '.visible-img', function(e) { + if (!e.touches) { e = e.originalEvent; } + // Ignore pinch/zoom events + if(e.touches.length > 1 || e.scale && e.scale !== 1) return; + + var data = $(this).data('swipe-transition'); + + if (typeof data === 'undefined') { + data = {}; + } + + data.delta_x = e.touches[0].pageX - data.start_page_x; + + if ( typeof data.is_scrolling === 'undefined') { + data.is_scrolling = !!( data.is_scrolling || Math.abs(data.delta_x) < Math.abs(e.touches[0].pageY - data.start_page_y) ); + } + + if (!data.is_scrolling && !data.active) { + e.preventDefault(); + var direction = (data.delta_x < 0) ? 'next' : 'prev'; + data.active = true; + self.nav(e, direction); + } + }) + .on('touchend.fndtn.clearing', '.visible-img', function(e) { + $(this).data('swipe-transition', {}); + e.stopPropagation(); + }); + }, + + assemble : function ($li) { + var $el = $li.parent(); + $el.after('
        '); + + var holder = $('#foundationClearingHolder'), + settings = this.get_data($el), + grid = $el.detach(), + data = { + grid: '', + viewing: settings.templates.viewing + }, + wrapper = '
        ' + data.viewing + + data.grid + '
        '; + + return holder.after(wrapper).remove(); + }, + + // event callbacks + + open : function ($image, current, target) { + var root = target.closest('.clearing-assembled'), + container = root.find('div').first(), + visible_image = container.find('.visible-img'), + image = visible_image.find('img').not($image); + + if (!this.locked()) { + // set the image to the selected thumbnail + image + .attr('src', this.load($image)) + .css('visibility', 'hidden'); + + this.loaded(image, function () { + image.css('visibility', 'visible'); + // toggle the gallery + root.addClass('clearing-blackout'); + container.addClass('clearing-container'); + visible_image.show(); + this.fix_height(target) + .caption(visible_image.find('.clearing-caption'), $image) + .center(image) + .shift(current, target, function () { + target.siblings().removeClass('visible'); + target.addClass('visible'); + }); + }.bind(this)); + } + }, + + close : function (e, el) { + e.preventDefault(); + + var root = (function (target) { + if (/blackout/.test(target.selector)) { + return target; + } else { + return target.closest('.clearing-blackout'); + } + }($(el))), container, visible_image; + + if (el === e.target && root) { + container = root.find('div').first(); + visible_image = container.find('.visible-img'); + this.settings.prev_index = 0; + root.find('ul[data-clearing]') + .attr('style', '').closest('.clearing-blackout') + .removeClass('clearing-blackout'); + container.removeClass('clearing-container'); + visible_image.hide(); + } + + return false; + }, + + is_open : function (current) { + return current.parent().attr('style').length > 0; + }, + + keydown : function (e) { + var clearing = $('.clearing-blackout').find('ul[data-clearing]'); + + if (e.which === 39) this.go(clearing, 'next'); + if (e.which === 37) this.go(clearing, 'prev'); + if (e.which === 27) $('a.clearing-close').trigger('click'); + }, + + nav : function (e, direction) { + var clearing = $('.clearing-blackout').find('ul[data-clearing]'); + + e.preventDefault(); + this.go(clearing, direction); + }, + + resize : function () { + var image = $('.clearing-blackout .visible-img').find('img'); + + if (image.length) { + this.center(image); + } + }, + + // visual adjustments + fix_height : function (target) { + var lis = target.parent().children(), + self = this; + + lis.each(function () { + var li = $(this), + image = li.find('img'); + + if (li.height() > self.outerHeight(image)) { + li.addClass('fix-height'); + } + }) + .closest('ul') + .width(lis.length * 100 + '%'); + + return this; + }, + + update_paddles : function (target) { + var visible_image = target + .closest('.carousel') + .siblings('.visible-img'); + + if (target.next().length > 0) { + visible_image + .find('.clearing-main-next') + .removeClass('disabled'); + } else { + visible_image + .find('.clearing-main-next') + .addClass('disabled'); + } + + if (target.prev().length > 0) { + visible_image + .find('.clearing-main-prev') + .removeClass('disabled'); + } else { + visible_image + .find('.clearing-main-prev') + .addClass('disabled'); + } + }, + + center : function (target) { + if (!this.rtl) { + target.css({ + marginLeft : -(this.outerWidth(target) / 2), + marginTop : -(this.outerHeight(target) / 2) + }); + } else { + target.css({ + marginRight : -(this.outerWidth(target) / 2), + marginTop : -(this.outerHeight(target) / 2) + }); + } + return this; + }, + + // image loading and preloading + + load : function ($image) { + if ($image[0].nodeName === "A") { + var href = $image.attr('href'); + } else { + var href = $image.parent().attr('href'); + } + + this.preload($image); + + if (href) return href; + return $image.attr('src'); + }, + + preload : function ($image) { + this + .img($image.closest('li').next()) + .img($image.closest('li').prev()); + }, + + loaded : function (image, callback) { + // based on jquery.imageready.js + // @weblinc, @jsantell, (c) 2012 + + function loaded () { + callback(); + } + + function bindLoad () { + this.one('load', loaded); + + if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { + var src = this.attr( 'src' ), + param = src.match( /\?/ ) ? '&' : '?'; + + param += 'random=' + (new Date()).getTime(); + this.attr('src', src + param); + } + } + + if (!image.attr('src')) { + loaded(); + return; + } + + if (image[0].complete || image[0].readyState === 4) { + loaded(); + } else { + bindLoad.call(image); + } + }, + + img : function (img) { + if (img.length) { + var new_img = new Image(), + new_a = img.find('a'); + + if (new_a.length) { + new_img.src = new_a.attr('href'); + } else { + new_img.src = img.find('img').attr('src'); + } + } + return this; + }, + + // image caption + + caption : function (container, $image) { + var caption = $image.data('caption'); + + if (caption) { + container + .html(caption) + .show(); + } else { + container + .text('') + .hide(); + } + return this; + }, + + // directional methods + + go : function ($ul, direction) { + var current = $ul.find('.visible'), + target = current[direction](); + + if (target.length) { + target + .find('img') + .trigger('click', [current, target]); + } + }, + + shift : function (current, target, callback) { + var clearing = target.parent(), + old_index = this.settings.prev_index || target.index(), + direction = this.direction(clearing, current, target), + left = parseInt(clearing.css('left'), 10), + width = this.outerWidth(target), + skip_shift; + + // we use jQuery animate instead of CSS transitions because we + // need a callback to unlock the next animation + if (target.index() !== old_index && !/skip/.test(direction)){ + if (/left/.test(direction)) { + this.lock(); + clearing.animate({left : left + width}, 300, this.unlock()); + } else if (/right/.test(direction)) { + this.lock(); + clearing.animate({left : left - width}, 300, this.unlock()); + } + } else if (/skip/.test(direction)) { + // the target image is not adjacent to the current image, so + // do we scroll right or not + skip_shift = target.index() - this.settings.up_count; + this.lock(); + + if (skip_shift > 0) { + clearing.animate({left : -(skip_shift * width)}, 300, this.unlock()); + } else { + clearing.animate({left : 0}, 300, this.unlock()); + } + } + + callback(); + }, + + direction : function ($el, current, target) { + var lis = $el.find('li'), + li_width = this.outerWidth(lis) + (this.outerWidth(lis) / 4), + up_count = Math.floor(this.outerWidth($('.clearing-container')) / li_width) - 1, + target_index = lis.index(target), + response; + + this.settings.up_count = up_count; + + if (this.adjacent(this.settings.prev_index, target_index)) { + if ((target_index > up_count) + && target_index > this.settings.prev_index) { + response = 'right'; + } else if ((target_index > up_count - 1) + && target_index <= this.settings.prev_index) { + response = 'left'; + } else { + response = false; + } + } else { + response = 'skip'; + } + + this.settings.prev_index = target_index; + + return response; + }, + + adjacent : function (current_index, target_index) { + for (var i = target_index + 1; i >= target_index - 1; i--) { + if (i === current_index) return true; + } + return false; + }, + + // lock management + + lock : function () { + this.settings.locked = true; + }, + + unlock : function () { + this.settings.locked = false; + }, + + locked : function () { + return this.settings.locked; + }, + + // plugin management/browser quirks + + outerHTML : function (el) { + // support FireFox < 11 + return el.outerHTML || new XMLSerializer().serializeToString(el); + }, + + off : function () { + $(this.scope).off('.fndtn.clearing'); + $(window).off('.fndtn.clearing'); + this.remove_data(); // empty settings cache + this.settings.init = false; + }, + + reflow : function () { + this.init(); + } + }; + +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.cookie.js b/js/foundation/foundation.cookie.js new file mode 100644 index 00000000..862027c8 --- /dev/null +++ b/js/foundation/foundation.cookie.js @@ -0,0 +1,74 @@ +/*! + * jQuery Cookie Plugin v1.3 + * https://github.com/carhartl/jquery-cookie + * + * Copyright 2011, Klaus Hartl + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://www.opensource.org/licenses/mit-license.php + * http://www.opensource.org/licenses/GPL-2.0 + * + * Modified to work with Zepto.js by ZURB + */ +(function ($, document, undefined) { + + var pluses = /\+/g; + + function raw(s) { + return s; + } + + function decoded(s) { + return decodeURIComponent(s.replace(pluses, ' ')); + } + + var config = $.cookie = function (key, value, options) { + + // write + if (value !== undefined) { + options = $.extend({}, config.defaults, options); + + if (value === null) { + options.expires = -1; + } + + if (typeof options.expires === 'number') { + var days = options.expires, t = options.expires = new Date(); + t.setDate(t.getDate() + days); + } + + value = config.json ? JSON.stringify(value) : String(value); + + return (document.cookie = [ + encodeURIComponent(key), '=', config.raw ? value : encodeURIComponent(value), + options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE + options.path ? '; path=' + options.path : '', + options.domain ? '; domain=' + options.domain : '', + options.secure ? '; secure' : '' + ].join('')); + } + + // read + var decode = config.raw ? raw : decoded; + var cookies = document.cookie.split('; '); + for (var i = 0, l = cookies.length; i < l; i++) { + var parts = cookies[i].split('='); + if (decode(parts.shift()) === key) { + var cookie = decode(parts.join('=')); + return config.json ? JSON.parse(cookie) : cookie; + } + } + + return null; + }; + + config.defaults = {}; + + $.removeCookie = function (key, options) { + if ($.cookie(key) !== null) { + $.cookie(key, null, options); + return true; + } + return false; + }; + +})(Foundation.zj, document); diff --git a/js/foundation/foundation.dropdown.js b/js/foundation/foundation.dropdown.js new file mode 100644 index 00000000..60588547 --- /dev/null +++ b/js/foundation/foundation.dropdown.js @@ -0,0 +1,178 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.dropdown = { + name : 'dropdown', + + version : '4.2.0', + + settings : { + activeClass: 'open', + is_hover: false, + opened: function(){}, + closed: function(){} + }, + + init : function (scope, method, options) { + this.scope = scope || this.scope; + Foundation.inherit(this, 'throttle scrollLeft data_options'); + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } + + if (typeof method !== 'string') { + + if (!this.settings.init) { + this.events(); + } + + return this.settings.init; + } else { + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + + $(this.scope) + .on('click.fndtn.dropdown', '[data-dropdown]', function (e) { + var settings = $.extend({}, self.settings, self.data_options($(this))); + e.preventDefault(); + + if (!settings.is_hover) self.toggle($(this)); + }) + .on('mouseenter', '[data-dropdown]', function (e) { + var settings = $.extend({}, self.settings, self.data_options($(this))); + if (settings.is_hover) self.toggle($(this)); + }) + .on('mouseleave', '[data-dropdown-content]', function (e) { + var target = $('[data-dropdown="' + $(this).attr('id') + '"]'), + settings = $.extend({}, self.settings, self.data_options(target)); + if (settings.is_hover) self.close.call(self, $(this)); + }) + .on('opened.fndtn.dropdown', '[data-dropdown-content]', this.settings.opened) + .on('closed.fndtn.dropdown', '[data-dropdown-content]', this.settings.closed); + + $('body').on('click.fndtn.dropdown', function (e) { + var parent = $(e.target).closest('[data-dropdown-content]'); + + if ($(e.target).data('dropdown')) { + return; + } + if (parent.length > 0 && ($(e.target).is('[data-dropdown-content]') || $.contains(parent.first()[0], e.target))) { + e.stopPropagation(); + return; + } + + self.close.call(self, $('[data-dropdown-content]')); + }); + + $(window).on('resize.fndtn.dropdown', self.throttle(function () { + self.resize.call(self); + }, 50)).trigger('resize'); + + this.settings.init = true; + }, + + close: function (dropdown) { + var self = this; + dropdown.each(function () { + if ($(this).hasClass(self.settings.activeClass)) { + $(this) + .css(Foundation.rtl ? 'right':'left', '-99999px') + .removeClass(self.settings.activeClass); + $(this).trigger('closed'); + } + }); + }, + + open: function (dropdown, target) { + this + .css(dropdown + .addClass(this.settings.activeClass), target); + dropdown.trigger('opened'); + }, + + toggle : function (target) { + var dropdown = $('#' + target.data('dropdown')); + + this.close.call(this, $('[data-dropdown-content]').not(dropdown)); + + if (dropdown.hasClass(this.settings.activeClass)) { + this.close.call(this, dropdown); + } else { + this.close.call(this, $('[data-dropdown-content]')) + this.open.call(this, dropdown, target); + } + }, + + resize : function () { + var dropdown = $('[data-dropdown-content].open'), + target = $("[data-dropdown='" + dropdown.attr('id') + "']"); + + if (dropdown.length && target.length) { + this.css(dropdown, target); + } + }, + + css : function (dropdown, target) { + var offset_parent = dropdown.offsetParent(); + // temporary workaround until 4.2 + if (offset_parent.length > 0 && /body/i.test(dropdown.offsetParent()[0].nodeName)) { + var position = target.offset(); + position.top -= dropdown.offsetParent().offset().top; + position.left -= dropdown.offsetParent().offset().left; + } else { + var position = target.position(); + } + + if (this.small()) { + dropdown.css({ + position : 'absolute', + width: '95%', + left: '2.5%', + 'max-width': 'none', + top: position.top + this.outerHeight(target) + }); + } else { + if (!Foundation.rtl && $(window).width() > this.outerWidth(dropdown) + target.offset().left) { + var left = position.left; + if (dropdown.hasClass('right')) { + dropdown.removeClass('right'); + } + } else { + if (!dropdown.hasClass('right')) { + dropdown.addClass('right'); + } + var left = position.left - (this.outerWidth(dropdown) - this.outerWidth(target)); + } + + dropdown.attr('style', '').css({ + position : 'absolute', + top: position.top + this.outerHeight(target), + left: left + }); + } + + return dropdown; + }, + + small : function () { + return $(window).width() < 768 || $('html').hasClass('lt-ie9'); + }, + + off: function () { + $(this.scope).off('.fndtn.dropdown'); + $('html, body').off('.fndtn.dropdown'); + $(window).off('.fndtn.dropdown'); + $('[data-dropdown-content]').off('.fndtn.dropdown'); + this.settings.init = false; + }, + + reflow : function () {} + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.forms.js b/js/foundation/foundation.forms.js new file mode 100644 index 00000000..68705723 --- /dev/null +++ b/js/foundation/foundation.forms.js @@ -0,0 +1,525 @@ +(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.forms = { + name: 'forms', + + version: '4.2.2', + + cache: {}, + + settings: { + disable_class: 'no-custom', + last_combo : null + }, + + init: function (scope, method, options) { + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } + + if (typeof method !== 'string') { + if (!this.settings.init) { + this.events(); + } + + this.assemble(); + + return this.settings.init; + } else { + return this[method].call(this, options); + } + }, + + assemble: function () { + $('form.custom input[type="radio"]', $(this.scope)) + .not('[data-customforms="disabled"]') + .not('.' + this.settings.disable_class) + .each(this.append_custom_markup); + $('form.custom input[type="checkbox"]', $(this.scope)) + .not('[data-customforms="disabled"]') + .not('.' + this.settings.disable_class) + .each(this.append_custom_markup); + $('form.custom select', $(this.scope)) + .not('[data-customforms="disabled"]') + .not('.' + this.settings.disable_class) + .not('[multiple=multiple]') + .each(this.append_custom_select); + }, + + events: function () { + var self = this; + + $(this.scope) + .on('click.fndtn.forms', 'form.custom span.custom.checkbox', function (e) { + e.preventDefault(); + e.stopPropagation(); + self.toggle_checkbox($(this)); + }) + .on('click.fndtn.forms', 'form.custom span.custom.radio', function (e) { + e.preventDefault(); + e.stopPropagation(); + self.toggle_radio($(this)); + }) + .on('change.fndtn.forms', 'form.custom select', function (e, force_refresh) { + if (!$(this).not('[data-customforms="disabled"])')) return; + self.refresh_custom_select($(this), force_refresh); + }) + .on('click.fndtn.forms', 'form.custom label', function (e) { + if ($(e.target).is('label')) { + var $associatedElement = $('#' + self.escape($(this).attr('for'))).not('[data-customforms="disabled"]'), + $customCheckbox, + $customRadio; + + if ($associatedElement.length !== 0) { + if ($associatedElement.attr('type') === 'checkbox') { + e.preventDefault(); + $customCheckbox = $(this).find('span.custom.checkbox'); + //the checkbox might be outside after the label or inside of another element + if ($customCheckbox.length === 0) { + $customCheckbox = $associatedElement.add(this).siblings('span.custom.checkbox').first(); + } + self.toggle_checkbox($customCheckbox); + } else if ($associatedElement.attr('type') === 'radio') { + e.preventDefault(); + $customRadio = $(this).find('span.custom.radio'); + //the radio might be outside after the label or inside of another element + if ($customRadio.length === 0) { + $customRadio = $associatedElement.add(this).siblings('span.custom.radio').first(); + } + self.toggle_radio($customRadio); + } + } + } + }) + .on('mousedown.fndtn.forms', 'form.custom div.custom.dropdown', function () { + return false; + }) + .on('click.fndtn.forms', 'form.custom div.custom.dropdown a.current, form.custom div.custom.dropdown a.selector', function (e) { + var $this = $(this), + $dropdown = $this.closest('div.custom.dropdown'), + $select = getFirstPrevSibling($dropdown, 'select'); + + // make sure other dropdowns close + if (!$dropdown.hasClass('open')) $(self.scope).trigger('click'); + + e.preventDefault(); + if (false === $select.is(':disabled')) { + $dropdown.toggleClass('open'); + + if ($dropdown.hasClass('open')) { + $(self.scope).on('click.fndtn.forms.customdropdown', function () { + $dropdown.removeClass('open'); + $(self.scope).off('.fndtn.forms.customdropdown'); + }); + } else { + $(self.scope).on('.fndtn.forms.customdropdown'); + } + return false; + } + }) + .on('click.fndtn.forms touchend.fndtn.forms', 'form.custom div.custom.dropdown li', function (e) { + var $this = $(this), + $customDropdown = $this.closest('div.custom.dropdown'), + $select = getFirstPrevSibling($customDropdown, 'select'), + selectedIndex = 0; + + e.preventDefault(); + e.stopPropagation(); + + if (!$(this).hasClass('disabled')) { + $('div.dropdown').not($customDropdown).removeClass('open'); + + var $oldThis = $this.closest('ul') + .find('li.selected'); + $oldThis.removeClass('selected'); + + $this.addClass('selected'); + + $customDropdown.removeClass('open') + .find('a.current') + .text($this.text()); + + $this.closest('ul').find('li').each(function (index) { + if ($this[0] === this) { + selectedIndex = index; + } + }); + $select[0].selectedIndex = selectedIndex; + + //store the old value in data + $select.data('prevalue', $oldThis.html()); + $select.trigger('change'); + } + }); + + $(window).on('keydown', function (e) { + var focus = document.activeElement, + self = Foundation.libs.forms, + dropdown = $('.custom.dropdown.open'); + + if (dropdown.length > 0) { + e.preventDefault(); + + if (e.which === 13) { + dropdown.find('li.selected').trigger('click'); + } + + if (e.which === 27) { + dropdown.removeClass('open'); + } + + if (e.which >= 65 && e.which <= 90) { + var next = self.go_to(dropdown, e.which), + current = dropdown.find('li.selected'); + + if (next) { + current.removeClass('selected'); + self.scrollTo(next.addClass('selected'), 300); + } + } + + if (e.which === 38) { + var current = dropdown.find('li.selected'), + prev = current.prev(':not(.disabled)'); + + if (prev.length > 0) { + prev.parent()[0].scrollTop = prev.parent().scrollTop() - self.outerHeight(prev); + current.removeClass('selected'); + prev.addClass('selected'); + } + } else if (e.which === 40) { + var current = dropdown.find('li.selected'), + next = current.next(':not(.disabled)'); + + if (next.length > 0) { + next.parent()[0].scrollTop = next.parent().scrollTop() + self.outerHeight(next); + current.removeClass('selected'); + next.addClass('selected'); + } + } + } + }); + + this.settings.init = true; + }, + + go_to: function (dropdown, character) { + var lis = dropdown.find('li'), + count = lis.length; + + if (count > 0) { + for (var i = 0; i < count; i++) { + var first_letter = lis.eq(i).text().charAt(0).toLowerCase(); + if (first_letter === String.fromCharCode(character).toLowerCase()) return lis.eq(i); + } + } + }, + + scrollTo: function (el, duration) { + if (duration < 0) return; + var parent = el.parent(); + var li_height = this.outerHeight(el); + var difference = (li_height * (el.index())) - parent.scrollTop(); + var perTick = difference / duration * 10; + + this.scrollToTimerCache = setTimeout(function () { + if (!isNaN(parseInt(perTick, 10))) { + parent[0].scrollTop = parent.scrollTop() + perTick; + this.scrollTo(el, duration - 10); + } + }.bind(this), 10); + }, + + append_custom_markup: function (idx, sel) { + var $this = $(sel), + type = $this.attr('type'), + $span = $this.next('span.custom.' + type); + + if (!$this.parent().hasClass('switch')) { + $this.addClass('hidden-field'); + } + + if ($span.length === 0) { + $span = $('').insertAfter($this); + } + + $span.toggleClass('checked', $this.is(':checked')); + $span.toggleClass('disabled', $this.is(':disabled')); + }, + + append_custom_select: function (idx, sel) { + var self = Foundation.libs.forms, + $this = $(sel), + $customSelect = $this.next('div.custom.dropdown'), + $customList = $customSelect.find('ul'), + $selectCurrent = $customSelect.find(".current"), + $selector = $customSelect.find(".selector"), + $options = $this.find('option'), + $selectedOption = $options.filter(':selected'), + copyClasses = $this.attr('class') ? $this.attr('class').split(' ') : [], + maxWidth = 0, + liHtml = '', + $listItems, + $currentSelect = false; + + if ($customSelect.length === 0) { + var customSelectSize = $this.hasClass('small') ? 'small' : $this.hasClass('medium') ? 'medium' : $this.hasClass('large') ? 'large' : $this.hasClass('expand') ? 'expand' : ''; + + $customSelect = $('
          '); + + $selector = $customSelect.find(".selector"); + $customList = $customSelect.find("ul"); + + liHtml = $options.map(function () { + var copyClasses = $(this).attr('class') ? $(this).attr('class') : ''; + return "
        • " + $(this).html() + "
        • "; + }).get().join(''); + + $customList.append(liHtml); + + $currentSelect = $customSelect + .prepend('' + $selectedOption.html() + '') + .find(".current"); + + $this.after($customSelect) + .addClass('hidden-field'); + } else { + liHtml = $options.map(function () { + return "
        • " + $(this).html() + "
        • "; + }) + .get().join(''); + + $customList.html('') + .append(liHtml); + + } // endif $customSelect.length === 0 + + self.assign_id($this, $customSelect); + $customSelect.toggleClass('disabled', $this.is(':disabled')); + $listItems = $customList.find('li'); + + // cache list length + self.cache[$customSelect.data('id')] = $listItems.length; + + $options.each(function (index) { + if (this.selected) { + $listItems.eq(index).addClass('selected'); + + if ($currentSelect) { + $currentSelect.html($(this).html()); + } + } + if ($(this).is(':disabled')) { + $listItems.eq(index).addClass('disabled'); + } + }); + + // + // If we're not specifying a predetermined form size. + // + if (!$customSelect.is('.small, .medium, .large, .expand')) { + + // ------------------------------------------------------------------------------------ + // This is a work-around for when elements are contained within hidden parents. + // For example, when custom-form elements are inside of a hidden reveal modal. + // + // We need to display the current custom list element as well as hidden parent elements + // in order to properly calculate the list item element's width property. + // ------------------------------------------------------------------------------------- + + $customSelect.addClass('open'); + // + // Quickly, display all parent elements. + // This should help us calcualate the width of the list item's within the drop down. + // + var self = Foundation.libs.forms; + self.hidden_fix.adjust($customList); + + maxWidth = (self.outerWidth($listItems) > maxWidth) ? self.outerWidth($listItems) : maxWidth; + + Foundation.libs.forms.hidden_fix.reset(); + + $customSelect.removeClass('open'); + + } // endif + + }, + + assign_id: function ($select, $customSelect) { + var id = [+new Date(), Foundation.random_str(5)].join('-'); + $select.attr('data-id', id); + $customSelect.attr('data-id', id); + }, + + refresh_custom_select: function ($select, force_refresh) { + var self = this; + var maxWidth = 0, + $customSelect = $select.next(), + $options = $select.find('option'), + $listItems = $customSelect.find('li'); + + if ($listItems.length !== this.cache[$customSelect.data('id')] || force_refresh) { + $customSelect.find('ul').html(''); + + $options.each(function () { + var $li = $('
        • ' + $(this).html() + '
        • '); + $customSelect.find('ul').append($li); + }); + + // re-populate + $options.each(function (index) { + if (this.selected) { + $customSelect.find('li').eq(index).addClass('selected'); + $customSelect.find('.current').html($(this).html()); + } + if ($(this).is(':disabled')) { + $customSelect.find('li').eq(index).addClass('disabled'); + } + }); + + // fix width + $customSelect.removeAttr('style') + .find('ul').removeAttr('style'); + $customSelect.find('li').each(function () { + $customSelect.addClass('open'); + if (self.outerWidth($(this)) > maxWidth) { + maxWidth = self.outerWidth($(this)); + } + $customSelect.removeClass('open'); + }); + + $listItems = $customSelect.find('li'); + // cache list length + this.cache[$customSelect.data('id')] = $listItems.length; + } + }, + + toggle_checkbox: function ($element) { + var $input = $element.prev(), + input = $input[0]; + + if (false === $input.is(':disabled')) { + input.checked = ((input.checked) ? false : true); + $element.toggleClass('checked'); + + $input.trigger('change'); + } + }, + + toggle_radio: function ($element) { + var $input = $element.prev(), + $form = $input.closest('form.custom'), + input = $input[0]; + + if (false === $input.is(':disabled')) { + $form.find('input[type="radio"][name="' + this.escape($input.attr('name')) + '"]') + .next().not($element).removeClass('checked'); + + if (!$element.hasClass('checked')) { + $element.toggleClass('checked'); + } + + input.checked = $element.hasClass('checked'); + + $input.trigger('change'); + } + }, + + escape: function (text) { + if (!text) return ''; + return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&"); + }, + + hidden_fix: { + /** + * Sets all hidden parent elements and self to visibile. + * + * @method adjust + * @param {jQuery Object} $child + */ + + // We'll use this to temporarily store style properties. + tmp: [], + + // We'll use this to set hidden parent elements. + hidden: null, + + adjust: function ($child) { + // Internal reference. + var _self = this; + + // Set all hidden parent elements, including this element. + _self.hidden = $child.parents(); + _self.hidden = _self.hidden.add($child).filter(":hidden"); + + // Loop through all hidden elements. + _self.hidden.each(function () { + + // Cache the element. + var $elem = $(this); + + // Store the style attribute. + // Undefined if element doesn't have a style attribute. + _self.tmp.push($elem.attr('style')); + + // Set the element's display property to block, + // but ensure it's visibility is hidden. + $elem.css({ + 'visibility': 'hidden', + 'display': 'block' + }); + }); + + }, // end adjust + + /** + * Resets the elements previous state. + * + * @method reset + */ + reset: function () { + // Internal reference. + var _self = this; + // Loop through our hidden element collection. + _self.hidden.each(function (i) { + // Cache this element. + var $elem = $(this), + _tmp = _self.tmp[i]; // Get the stored 'style' value for this element. + + // If the stored value is undefined. + if (_tmp === undefined) + // Remove the style attribute. + $elem.removeAttr('style'); + else + // Otherwise, reset the element style attribute. + $elem.attr('style', _tmp); + }); + // Reset the tmp array. + _self.tmp = []; + // Reset the hidden elements variable. + _self.hidden = null; + + } // end reset + }, + + off: function () { + $(this.scope).off('.fndtn.forms'); + }, + + reflow : function () {} + }; + + var getFirstPrevSibling = function($el, selector) { + var $el = $el.prev(); + while ($el.length) { + if ($el.is(selector)) return $el; + $el = $el.prev(); + } + return $(); + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.interchange.js b/js/foundation/foundation.interchange.js new file mode 100644 index 00000000..8d15feb3 --- /dev/null +++ b/js/foundation/foundation.interchange.js @@ -0,0 +1,271 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.interchange = { + name : 'interchange', + + version : '4.2.2', + + cache : {}, + + settings : { + load_attr : 'interchange', + + named_queries : { + 'default' : 'only screen and (min-width: 1px)', + small : 'only screen and (min-width: 768px)', + medium : 'only screen and (min-width: 1280px)', + large : 'only screen and (min-width: 1440px)', + landscape : 'only screen and (orientation: landscape)', + portrait : 'only screen and (orientation: portrait)', + retina : 'only screen and (-webkit-min-device-pixel-ratio: 2),' + + 'only screen and (min--moz-device-pixel-ratio: 2),' + + 'only screen and (-o-min-device-pixel-ratio: 2/1),' + + 'only screen and (min-device-pixel-ratio: 2),' + + 'only screen and (min-resolution: 192dpi),' + + 'only screen and (min-resolution: 2dppx)' + }, + + directives : { + replace : function (el, path) { + if (/IMG/.test(el[0].nodeName)) { + var path_parts = path.split('/'), + path_file = path_parts[path_parts.length - 1], + orig_path = el[0].src; + + if (new RegExp(path_file, 'i').test(el[0].src)) return; + + el[0].src = path; + + return el.trigger('replace', [el[0].src, orig_path]); + } + } + } + }, + + init : function (scope, method, options) { + Foundation.inherit(this, 'throttle'); + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } + + this.events(); + this.images(); + + if (typeof method !== 'string') { + return this.settings.init; + } else { + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + + $(window).on('resize.fndtn.interchange', self.throttle(function () { + self.resize.call(self); + }, 50)); + }, + + resize : function () { + var cache = this.cache; + + for (var uuid in cache) { + if (cache.hasOwnProperty(uuid)) { + var passed = this.results(uuid, cache[uuid]); + + if (passed) { + this.settings.directives[passed + .scenario[1]](passed.el, passed.scenario[0]); + } + } + } + + }, + + results : function (uuid, scenarios) { + var count = scenarios.length, + results_arr = []; + + if (count > 0) { + var el = $('[data-uuid="' + uuid + '"]'); + + for (var i = count - 1; i >= 0; i--) { + var rule = scenarios[i][2]; + if (this.settings.named_queries.hasOwnProperty(rule)) { + var mq = matchMedia(this.settings.named_queries[rule]); + } else { + var mq = matchMedia(scenarios[i][2]); + } + if (mq.matches) { + return {el: el, scenario: scenarios[i]}; + } + } + } + + return false; + }, + + images : function (force_update) { + if (typeof this.cached_images === 'undefined' || force_update) { + return this.update_images(); + } + + return this.cached_images; + }, + + update_images : function () { + var images = document.getElementsByTagName('img'), + count = images.length, + data_attr = 'data-' + this.settings.load_attr; + + this.cached_images = []; + + for (var i = count - 1; i >= 0; i--) { + this.loaded($(images[i]), (i === 0), function (image, last) { + if (image) { + var str = image.getAttribute(data_attr) || ''; + + if (str.length > 0) { + this.cached_images.push(image); + } + } + + if (last) this.enhance(); + + }.bind(this)); + } + + return 'deferred'; + }, + + // based on jquery.imageready.js + // @weblinc, @jsantell, (c) 2012 + + loaded : function (image, last, callback) { + function loaded () { + callback(image[0], last); + } + + function bindLoad () { + this.one('load', loaded); + + if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { + var src = this.attr( 'src' ), + param = src.match( /\?/ ) ? '&' : '?'; + + param += 'random=' + (new Date()).getTime(); + this.attr('src', src + param); + } + } + + if (!image.attr('src')) { + loaded(); + return; + } + + if (image[0].complete || image[0].readyState === 4) { + loaded(); + } else { + bindLoad.call(image); + } + }, + + enhance : function () { + var count = this.images().length; + + for (var i = count - 1; i >= 0; i--) { + this._object($(this.images()[i])); + } + + return $(window).trigger('resize'); + }, + + parse_params : function (path, directive, mq) { + return [this.trim(path), this.convert_directive(directive), this.trim(mq)]; + }, + + convert_directive : function (directive) { + var trimmed = this.trim(directive); + + if (trimmed.length > 0) { + return trimmed; + } + + return 'replace'; + }, + + _object : function(el) { + var raw_arr = this.parse_data_attr(el), + scenarios = [], count = raw_arr.length; + + if (count > 0) { + for (var i = count - 1; i >= 0; i--) { + var split = raw_arr[i].split(/\((.*?)(\))$/); + + if (split.length > 1) { + var cached_split = split[0].split(','), + params = this.parse_params(cached_split[0], + cached_split[1], split[1]); + + scenarios.push(params); + } + } + } + + return this.store(el, scenarios); + }, + + uuid : function (separator) { + var delim = separator || "-"; + + function S4() { + return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1); + } + + return (S4() + S4() + delim + S4() + delim + S4() + + delim + S4() + delim + S4() + S4() + S4()); + }, + + store : function (el, scenarios) { + var uuid = this.uuid(), + current_uuid = el.data('uuid'); + + if (current_uuid) return this.cache[current_uuid]; + + el.attr('data-uuid', uuid); + + return this.cache[uuid] = scenarios; + }, + + trim : function(str) { + if (typeof str === 'string') { + return $.trim(str); + } + + return str; + }, + + parse_data_attr : function (el) { + var raw = el.data(this.settings.load_attr).split(/\[(.*?)\]/), + count = raw.length, output = []; + + for (var i = count - 1; i >= 0; i--) { + if (raw[i].replace(/[\W\d]+/, '').length > 4) { + output.push(raw[i]); + } + } + + return output; + }, + + reflow : function () { + this.images(true); + } + + }; + +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.joyride.js b/js/foundation/foundation.joyride.js new file mode 100644 index 00000000..a843dfac --- /dev/null +++ b/js/foundation/foundation.joyride.js @@ -0,0 +1,844 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.joyride = { + name: 'joyride', + + version : '4.2.2', + + defaults : { + expose : false, // turn on or off the expose feature + modal : false, // Whether to cover page with modal during the tour + tipLocation : 'bottom', // 'top' or 'bottom' in relation to parent + nubPosition : 'auto', // override on a per tooltip bases + scrollSpeed : 300, // Page scrolling speed in milliseconds, 0 = no scroll animation + timer : 0, // 0 = no timer , all other numbers = timer in milliseconds + startTimerOnClick : true, // true or false - true requires clicking the first button start the timer + startOffset : 0, // the index of the tooltip you want to start on (index of the li) + nextButton : true, // true or false to control whether a next button is used + tipAnimation : 'fade', // 'pop' or 'fade' in each tip + pauseAfter : [], // array of indexes where to pause the tour after + exposed : [], // array of expose elements + tipAnimationFadeSpeed: 300, // when tipAnimation = 'fade' this is speed in milliseconds for the transition + cookieMonster : false, // true or false to control whether cookies are used + cookieName : 'joyride', // Name the cookie you'll use + cookieDomain : false, // Will this cookie be attached to a domain, ie. '.notableapp.com' + cookieExpires : 365, // set when you would like the cookie to expire. + tipContainer : 'body', // Where will the tip be attached + postRideCallback : function (){}, // A method to call once the tour closes (canceled or complete) + postStepCallback : function (){}, // A method to call after each step + preStepCallback : function (){}, // A method to call before each step + preRideCallback : function (){}, // A method to call before the tour starts (passed index, tip, and cloned exposed element) + postExposeCallback : function (){}, // A method to call after an element has been exposed + template : { // HTML segments for tip layout + link : '×', + timer : '
          ', + tip : '
          ', + wrapper : '
          ', + button : '', + modal : '
          ', + expose : '
          ', + exposeCover: '
          ' + }, + exposeAddClass : '' // One or more space-separated class names to be added to exposed element + }, + + settings : {}, + + init : function (scope, method, options) { + this.scope = scope || this.scope; + Foundation.inherit(this, 'throttle data_options scrollTo scrollLeft delay'); + + if (typeof method === 'object') { + $.extend(true, this.settings, this.defaults, method); + } else { + $.extend(true, this.settings, this.defaults, options); + } + + if (typeof method !== 'string') { + if (!this.settings.init) this.events(); + + return this.settings.init; + } else { + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + + $(this.scope) + .on('click.joyride', '.joyride-next-tip, .joyride-modal-bg', function (e) { + e.preventDefault(); + + if (this.settings.$li.next().length < 1) { + this.end(); + } else if (this.settings.timer > 0) { + clearTimeout(this.settings.automate); + this.hide(); + this.show(); + this.startTimer(); + } else { + this.hide(); + this.show(); + } + + }.bind(this)) + + .on('click.joyride', '.joyride-close-tip', function (e) { + e.preventDefault(); + this.end(); + }.bind(this)); + + $(window).on('resize.fndtn.joyride', self.throttle(function () { + if ($('[data-joyride]').length > 0 && self.settings.$next_tip) { + if (self.settings.exposed.length > 0) { + var $els = $(self.settings.exposed); + + $els.each(function () { + var $this = $(this); + self.un_expose($this); + self.expose($this); + }); + } + + if (self.is_phone()) { + self.pos_phone(); + } else { + self.pos_default(false, true); + } + } + }, 100)); + + this.settings.init = true; + }, + + start : function () { + var self = this, + $this = $(this.scope).find('[data-joyride]'), + integer_settings = ['timer', 'scrollSpeed', 'startOffset', 'tipAnimationFadeSpeed', 'cookieExpires'], + int_settings_count = integer_settings.length; + + if (!this.settings.init) this.init(); + + // non configureable settings + this.settings.$content_el = $this; + this.settings.$body = $(this.settings.tipContainer); + this.settings.body_offset = $(this.settings.tipContainer).position(); + this.settings.$tip_content = this.settings.$content_el.find('> li'); + this.settings.paused = false; + this.settings.attempts = 0; + + this.settings.tipLocationPatterns = { + top: ['bottom'], + bottom: [], // bottom should not need to be repositioned + left: ['right', 'top', 'bottom'], + right: ['left', 'top', 'bottom'] + }; + + // can we create cookies? + if (typeof $.cookie !== 'function') { + this.settings.cookieMonster = false; + } + + // generate the tips and insert into dom. + if (!this.settings.cookieMonster || this.settings.cookieMonster && $.cookie(this.settings.cookieName) === null) { + this.settings.$tip_content.each(function (index) { + var $this = $(this); + $.extend(true, self.settings, self.data_options($this)); + // Make sure that settings parsed from data_options are integers where necessary + for (var i = int_settings_count - 1; i >= 0; i--) { + self.settings[integer_settings[i]] = parseInt(self.settings[integer_settings[i]], 10); + } + self.create({$li : $this, index : index}); + }); + + // show first tip + if (!this.settings.startTimerOnClick && this.settings.timer > 0) { + this.show('init'); + this.startTimer(); + } else { + this.show('init'); + } + + } + }, + + resume : function () { + this.set_li(); + this.show(); + }, + + tip_template : function (opts) { + var $blank, content; + + opts.tip_class = opts.tip_class || ''; + + $blank = $(this.settings.template.tip).addClass(opts.tip_class); + content = $.trim($(opts.li).html()) + + this.button_text(opts.button_text) + + this.settings.template.link + + this.timer_instance(opts.index); + + $blank.append($(this.settings.template.wrapper)); + $blank.first().attr('data-index', opts.index); + $('.joyride-content-wrapper', $blank).append(content); + + return $blank[0]; + }, + + timer_instance : function (index) { + var txt; + + if ((index === 0 && this.settings.startTimerOnClick && this.settings.timer > 0) || this.settings.timer === 0) { + txt = ''; + } else { + txt = this.outerHTML($(this.settings.template.timer)[0]); + } + return txt; + }, + + button_text : function (txt) { + if (this.settings.nextButton) { + txt = $.trim(txt) || 'Next'; + txt = this.outerHTML($(this.settings.template.button).append(txt)[0]); + } else { + txt = ''; + } + return txt; + }, + + create : function (opts) { + var buttonText = opts.$li.attr('data-button') || opts.$li.attr('data-text'), + tipClass = opts.$li.attr('class'), + $tip_content = $(this.tip_template({ + tip_class : tipClass, + index : opts.index, + button_text : buttonText, + li : opts.$li + })); + + $(this.settings.tipContainer).append($tip_content); + }, + + show : function (init) { + var $timer = null; + + // are we paused? + if (this.settings.$li === undefined + || ($.inArray(this.settings.$li.index(), this.settings.pauseAfter) === -1)) { + + // don't go to the next li if the tour was paused + if (this.settings.paused) { + this.settings.paused = false; + } else { + this.set_li(init); + } + + this.settings.attempts = 0; + + if (this.settings.$li.length && this.settings.$target.length > 0) { + if (init) { //run when we first start + this.settings.preRideCallback(this.settings.$li.index(), this.settings.$next_tip); + if (this.settings.modal) { + this.show_modal(); + } + } + + this.settings.preStepCallback(this.settings.$li.index(), this.settings.$next_tip); + + if (this.settings.modal && this.settings.expose) { + this.expose(); + } + + this.settings.tipSettings = $.extend(this.settings, this.data_options(this.settings.$li)); + + this.settings.timer = parseInt(this.settings.timer, 10); + + this.settings.tipSettings.tipLocationPattern = this.settings.tipLocationPatterns[this.settings.tipSettings.tipLocation]; + + // scroll if not modal + if (!/body/i.test(this.settings.$target.selector)) { + this.scroll_to(); + } + + if (this.is_phone()) { + this.pos_phone(true); + } else { + this.pos_default(true); + } + + $timer = this.settings.$next_tip.find('.joyride-timer-indicator'); + + if (/pop/i.test(this.settings.tipAnimation)) { + + $timer.width(0); + + if (this.settings.timer > 0) { + + this.settings.$next_tip.show(); + + this.delay(function () { + $timer.animate({ + width: $timer.parent().width() + }, this.settings.timer, 'linear'); + }.bind(this), this.settings.tipAnimationFadeSpeed); + + } else { + this.settings.$next_tip.show(); + + } + + + } else if (/fade/i.test(this.settings.tipAnimation)) { + + $timer.width(0); + + if (this.settings.timer > 0) { + + this.settings.$next_tip + .fadeIn(this.settings.tipAnimationFadeSpeed) + .show(); + + this.delay(function () { + $timer.animate({ + width: $timer.parent().width() + }, this.settings.timer, 'linear'); + }.bind(this), this.settings.tipAnimationFadeSpeed); + + } else { + this.settings.$next_tip.fadeIn(this.settings.tipAnimationFadeSpeed); + + } + } + + this.settings.$current_tip = this.settings.$next_tip; + + // skip non-existant targets + } else if (this.settings.$li && this.settings.$target.length < 1) { + + this.show(); + + } else { + + this.end(); + + } + } else { + + this.settings.paused = true; + + } + + }, + + is_phone : function () { + if (Modernizr) { + return Modernizr.mq('only screen and (max-width: 767px)') || $('.lt-ie9').length > 0; + } + + return (this.settings.$window.width() < 767); + }, + + hide : function () { + if (this.settings.modal && this.settings.expose) { + this.un_expose(); + } + + if (!this.settings.modal) { + $('.joyride-modal-bg').hide(); + } + this.settings.$current_tip.hide(); + this.settings.postStepCallback(this.settings.$li.index(), + this.settings.$current_tip); + }, + + set_li : function (init) { + if (init) { + this.settings.$li = this.settings.$tip_content.eq(this.settings.startOffset); + this.set_next_tip(); + this.settings.$current_tip = this.settings.$next_tip; + } else { + this.settings.$li = this.settings.$li.next(); + this.set_next_tip(); + } + + this.set_target(); + }, + + set_next_tip : function () { + this.settings.$next_tip = $(".joyride-tip-guide[data-index='" + this.settings.$li.index() + "']"); + this.settings.$next_tip.data('closed', ''); + }, + + set_target : function () { + var cl = this.settings.$li.attr('data-class'), + id = this.settings.$li.attr('data-id'), + $sel = function () { + if (id) { + return $(document.getElementById(id)); + } else if (cl) { + return $('.' + cl).first(); + } else { + return $('body'); + } + }; + + this.settings.$target = $sel(); + }, + + scroll_to : function () { + var window_half, tipOffset; + + window_half = $(window).height() / 2; + tipOffset = Math.ceil(this.settings.$target.offset().top - window_half + this.outerHeight(this.settings.$next_tip)); + if (tipOffset > 0) { + this.scrollTo($('html, body'), tipOffset, this.settings.scrollSpeed); + } + }, + + paused : function () { + return ($.inArray((this.settings.$li.index() + 1), this.settings.pauseAfter) === -1); + }, + + restart : function () { + this.hide(); + this.settings.$li = undefined; + this.show('init'); + }, + + pos_default : function (init, resizing) { + var half_fold = Math.ceil($(window).height() / 2), + tip_position = this.settings.$next_tip.offset(), + $nub = this.settings.$next_tip.find('.joyride-nub'), + nub_width = Math.ceil(this.outerWidth($nub) / 2), + nub_height = Math.ceil(this.outerHeight($nub) / 2), + toggle = init || false; + + // tip must not be "display: none" to calculate position + if (toggle) { + this.settings.$next_tip.css('visibility', 'hidden'); + this.settings.$next_tip.show(); + } + + if (typeof resizing === 'undefined') { + resizing = false; + } + + if (!/body/i.test(this.settings.$target.selector)) { + + if (this.bottom()) { + var leftOffset = this.settings.$target.offset().left; + if (Foundation.rtl) { + leftOffset = this.settings.$target.offset().width - this.settings.$next_tip.width() + leftOffset; + } + this.settings.$next_tip.css({ + top: (this.settings.$target.offset().top + nub_height + this.outerHeight(this.settings.$target)), + left: leftOffset}); + + this.nub_position($nub, this.settings.tipSettings.nubPosition, 'top'); + + } else if (this.top()) { + var leftOffset = this.settings.$target.offset().left; + if (Foundation.rtl) { + leftOffset = this.settings.$target.offset().width - this.settings.$next_tip.width() + leftOffset; + } + this.settings.$next_tip.css({ + top: (this.settings.$target.offset().top - this.outerHeight(this.settings.$next_tip) - nub_height), + left: leftOffset}); + + this.nub_position($nub, this.settings.tipSettings.nubPosition, 'bottom'); + + } else if (this.right()) { + + this.settings.$next_tip.css({ + top: this.settings.$target.offset().top, + left: (this.outerWidth(this.settings.$target) + this.settings.$target.offset().left + nub_width)}); + + this.nub_position($nub, this.settings.tipSettings.nubPosition, 'left'); + + } else if (this.left()) { + + this.settings.$next_tip.css({ + top: this.settings.$target.offset().top, + left: (this.settings.$target.offset().left - this.outerWidth(this.settings.$next_tip) - nub_width)}); + + this.nub_position($nub, this.settings.tipSettings.nubPosition, 'right'); + + } + + if (!this.visible(this.corners(this.settings.$next_tip)) && this.settings.attempts < this.settings.tipSettings.tipLocationPattern.length) { + + $nub.removeClass('bottom') + .removeClass('top') + .removeClass('right') + .removeClass('left'); + + this.settings.tipSettings.tipLocation = this.settings.tipSettings.tipLocationPattern[this.settings.attempts]; + + this.settings.attempts++; + + this.pos_default(); + + } + + } else if (this.settings.$li.length) { + + this.pos_modal($nub); + + } + + if (toggle) { + this.settings.$next_tip.hide(); + this.settings.$next_tip.css('visibility', 'visible'); + } + + }, + + pos_phone : function (init) { + var tip_height = this.outerHeight(this.settings.$next_tip), + tip_offset = this.settings.$next_tip.offset(), + target_height = this.outerHeight(this.settings.$target), + $nub = $('.joyride-nub', this.settings.$next_tip), + nub_height = Math.ceil(this.outerHeight($nub) / 2), + toggle = init || false; + + $nub.removeClass('bottom') + .removeClass('top') + .removeClass('right') + .removeClass('left'); + + if (toggle) { + this.settings.$next_tip.css('visibility', 'hidden'); + this.settings.$next_tip.show(); + } + + if (!/body/i.test(this.settings.$target.selector)) { + + if (this.top()) { + + this.settings.$next_tip.offset({top: this.settings.$target.offset().top - tip_height - nub_height}); + $nub.addClass('bottom'); + + } else { + + this.settings.$next_tip.offset({top: this.settings.$target.offset().top + target_height + nub_height}); + $nub.addClass('top'); + + } + + } else if (this.settings.$li.length) { + this.pos_modal($nub); + } + + if (toggle) { + this.settings.$next_tip.hide(); + this.settings.$next_tip.css('visibility', 'visible'); + } + }, + + pos_modal : function ($nub) { + this.center(); + $nub.hide(); + + this.show_modal(); + }, + + show_modal : function () { + if (!this.settings.$next_tip.data('closed')) { + var joyridemodalbg = $('.joyride-modal-bg'); + if (joyridemodalbg.length < 1) { + $('body').append(this.settings.template.modal).show(); + } + + if (/pop/i.test(this.settings.tipAnimation)) { + joyridemodalbg.show(); + } else { + joyridemodalbg.fadeIn(this.settings.tipAnimationFadeSpeed); + } + } + }, + + expose : function () { + var expose, + exposeCover, + el, + origCSS, + origClasses, + randId = 'expose-'+Math.floor(Math.random()*10000); + + if (arguments.length > 0 && arguments[0] instanceof $) { + el = arguments[0]; + } else if(this.settings.$target && !/body/i.test(this.settings.$target.selector)){ + el = this.settings.$target; + } else { + return false; + } + + if(el.length < 1){ + if(window.console){ + console.error('element not valid', el); + } + return false; + } + + expose = $(this.settings.template.expose); + this.settings.$body.append(expose); + expose.css({ + top: el.offset().top, + left: el.offset().left, + width: this.outerWidth(el, true), + height: this.outerHeight(el, true) + }); + + exposeCover = $(this.settings.template.exposeCover); + + origCSS = { + zIndex: el.css('z-index'), + position: el.css('position') + }; + + origClasses = el.attr('class') == null ? '' : el.attr('class'); + + el.css('z-index',parseInt(expose.css('z-index'))+1); + + if (origCSS.position == 'static') { + el.css('position','relative'); + } + + el.data('expose-css',origCSS); + el.data('orig-class', origClasses); + el.attr('class', origClasses + ' ' + this.settings.exposeAddClass); + + exposeCover.css({ + top: el.offset().top, + left: el.offset().left, + width: this.outerWidth(el, true), + height: this.outerHeight(el, true) + }); + + this.settings.$body.append(exposeCover); + expose.addClass(randId); + exposeCover.addClass(randId); + el.data('expose', randId); + this.settings.postExposeCallback(this.settings.$li.index(), this.settings.$next_tip, el); + this.add_exposed(el); + }, + + un_expose : function () { + var exposeId, + el, + expose , + origCSS, + origClasses, + clearAll = false; + + if (arguments.length > 0 && arguments[0] instanceof $) { + el = arguments[0]; + } else if(this.settings.$target && !/body/i.test(this.settings.$target.selector)){ + el = this.settings.$target; + } else { + return false; + } + + if(el.length < 1){ + if (window.console) { + console.error('element not valid', el); + } + return false; + } + + exposeId = el.data('expose'); + expose = $('.' + exposeId); + + if (arguments.length > 1) { + clearAll = arguments[1]; + } + + if (clearAll === true) { + $('.joyride-expose-wrapper,.joyride-expose-cover').remove(); + } else { + expose.remove(); + } + + origCSS = el.data('expose-css'); + + if (origCSS.zIndex == 'auto') { + el.css('z-index', ''); + } else { + el.css('z-index', origCSS.zIndex); + } + + if (origCSS.position != el.css('position')) { + if(origCSS.position == 'static') {// this is default, no need to set it. + el.css('position', ''); + } else { + el.css('position', origCSS.position); + } + } + + origClasses = el.data('orig-class'); + el.attr('class', origClasses); + el.removeData('orig-classes'); + + el.removeData('expose'); + el.removeData('expose-z-index'); + this.remove_exposed(el); + }, + + add_exposed: function(el){ + this.settings.exposed = this.settings.exposed || []; + if (el instanceof $ || typeof el === 'object') { + this.settings.exposed.push(el[0]); + } else if (typeof el == 'string') { + this.settings.exposed.push(el); + } + }, + + remove_exposed: function(el){ + var search, count; + if (el instanceof $) { + search = el[0] + } else if (typeof el == 'string'){ + search = el; + } + + this.settings.exposed = this.settings.exposed || []; + count = this.settings.exposed.length; + + for (var i=0; i < count; i++) { + if (this.settings.exposed[i] == search) { + this.settings.exposed.splice(i, 1); + return; + } + } + }, + + center : function () { + var $w = $(window); + + this.settings.$next_tip.css({ + top : ((($w.height() - this.outerHeight(this.settings.$next_tip)) / 2) + $w.scrollTop()), + left : ((($w.width() - this.outerWidth(this.settings.$next_tip)) / 2) + this.scrollLeft($w)) + }); + + return true; + }, + + bottom : function () { + return /bottom/i.test(this.settings.tipSettings.tipLocation); + }, + + top : function () { + return /top/i.test(this.settings.tipSettings.tipLocation); + }, + + right : function () { + return /right/i.test(this.settings.tipSettings.tipLocation); + }, + + left : function () { + return /left/i.test(this.settings.tipSettings.tipLocation); + }, + + corners : function (el) { + var w = $(window), + window_half = w.height() / 2, + //using this to calculate since scroll may not have finished yet. + tipOffset = Math.ceil(this.settings.$target.offset().top - window_half + this.settings.$next_tip.outerHeight()), + right = w.width() + this.scrollLeft(w), + offsetBottom = w.height() + tipOffset, + bottom = w.height() + w.scrollTop(), + top = w.scrollTop(); + + if (tipOffset < top) { + if (tipOffset < 0) { + top = 0; + } else { + top = tipOffset; + } + } + + if (offsetBottom > bottom) { + bottom = offsetBottom; + } + + return [ + el.offset().top < top, + right < el.offset().left + el.outerWidth(), + bottom < el.offset().top + el.outerHeight(), + this.scrollLeft(w) > el.offset().left + ]; + }, + + visible : function (hidden_corners) { + var i = hidden_corners.length; + + while (i--) { + if (hidden_corners[i]) return false; + } + + return true; + }, + + nub_position : function (nub, pos, def) { + if (pos === 'auto') { + nub.addClass(def); + } else { + nub.addClass(pos); + } + }, + + startTimer : function () { + if (this.settings.$li.length) { + this.settings.automate = setTimeout(function () { + this.hide(); + this.show(); + this.startTimer(); + }.bind(this), this.settings.timer); + } else { + clearTimeout(this.settings.automate); + } + }, + + end : function () { + if (this.settings.cookieMonster) { + $.cookie(this.settings.cookieName, 'ridden', { expires: this.settings.cookieExpires, domain: this.settings.cookieDomain }); + } + + if (this.settings.timer > 0) { + clearTimeout(this.settings.automate); + } + + if (this.settings.modal && this.settings.expose) { + this.un_expose(); + } + + this.settings.$next_tip.data('closed', true); + + $('.joyride-modal-bg').hide(); + this.settings.$current_tip.hide(); + this.settings.postStepCallback(this.settings.$li.index(), this.settings.$current_tip); + this.settings.postRideCallback(this.settings.$li.index(), this.settings.$current_tip); + $('.joyride-tip-guide').remove(); + }, + + outerHTML : function (el) { + // support FireFox < 11 + return el.outerHTML || new XMLSerializer().serializeToString(el); + }, + + off : function () { + $(this.scope).off('.joyride'); + $(window).off('.joyride'); + $('.joyride-close-tip, .joyride-next-tip, .joyride-modal-bg').off('.joyride'); + $('.joyride-tip-guide, .joyride-modal-bg').remove(); + clearTimeout(this.settings.automate); + this.settings = {}; + }, + + reflow : function () {} + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.js b/js/foundation/foundation.js new file mode 100644 index 00000000..317885ef --- /dev/null +++ b/js/foundation/foundation.js @@ -0,0 +1,447 @@ +/* + * Foundation Responsive Library + * http://foundation.zurb.com + * Copyright 2013, ZURB + * Free to use under the MIT license. + * http://www.opensource.org/licenses/mit-license.php +*/ + +/*jslint unparam: true, browser: true, indent: 2 */ + +// Accommodate running jQuery or Zepto in noConflict() mode by +// using an anonymous function to redefine the $ shorthand name. +// See http://docs.jquery.com/Using_jQuery_with_Other_Libraries +// and http://zeptojs.com/ +var libFuncName = null; + +if (typeof jQuery === "undefined" && + typeof Zepto === "undefined" && + typeof $ === "function") { + libFuncName = $; +} else if (typeof jQuery === "function") { + libFuncName = jQuery; +} else if (typeof Zepto === "function") { + libFuncName = Zepto; +} else { + throw new TypeError(); +} + +(function ($, window, document, undefined) { + 'use strict'; + + /* + matchMedia() polyfill - Test a CSS media + type/query in JS. Authors & copyright (c) 2012: + Scott Jehl, Paul Irish, Nicholas Zakas. + Dual MIT/BSD license + + https://github.com/paulirish/matchMedia.js + */ + + window.matchMedia = window.matchMedia || (function( doc, undefined ) { + + "use strict"; + + var bool, + docElem = doc.documentElement, + refNode = docElem.firstElementChild || docElem.firstChild, + // fakeBody required for + fakeBody = doc.createElement( "body" ), + div = doc.createElement( "div" ); + + div.id = "mq-test-1"; + div.style.cssText = "position:absolute;top:-100em"; + fakeBody.style.background = "none"; + fakeBody.appendChild(div); + + return function(q){ + + div.innerHTML = "­"; + + docElem.insertBefore( fakeBody, refNode ); + bool = div.offsetWidth === 42; + docElem.removeChild( fakeBody ); + + return { + matches: bool, + media: q + }; + + }; + + }( document )); + + // add dusty browser stuff + if (!Array.prototype.filter) { + Array.prototype.filter = function(fun /*, thisp */) { + "use strict"; + + if (this == null) { + throw new TypeError(); + } + + var t = Object(this), + len = t.length >>> 0; + if (typeof fun !== "function") { + return; + } + + var res = [], + thisp = arguments[1]; + for (var i = 0; i < len; i++) { + if (i in t) { + var val = t[i]; // in case fun mutates this + if (fun && fun.call(thisp, val, i, t)) { + res.push(val); + } + } + } + + return res; + } + } + + if (!Function.prototype.bind) { + Function.prototype.bind = function (oThis) { + if (typeof this !== "function") { + // closest thing possible to the ECMAScript 5 internal IsCallable function + throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable"); + } + + var aArgs = Array.prototype.slice.call(arguments, 1), + fToBind = this, + fNOP = function () {}, + fBound = function () { + return fToBind.apply(this instanceof fNOP && oThis + ? this + : oThis, + aArgs.concat(Array.prototype.slice.call(arguments))); + }; + + fNOP.prototype = this.prototype; + fBound.prototype = new fNOP(); + + return fBound; + }; + } + + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { + "use strict"; + if (this == null) { + throw new TypeError(); + } + var t = Object(this); + var len = t.length >>> 0; + if (len === 0) { + return -1; + } + var n = 0; + if (arguments.length > 1) { + n = Number(arguments[1]); + if (n != n) { // shortcut for verifying if it's NaN + n = 0; + } else if (n != 0 && n != Infinity && n != -Infinity) { + n = (n > 0 || -1) * Math.floor(Math.abs(n)); + } + } + if (n >= len) { + return -1; + } + var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); + for (; k < len; k++) { + if (k in t && t[k] === searchElement) { + return k; + } + } + return -1; + } + } + + // fake stop() for zepto. + $.fn.stop = $.fn.stop || function() { + return this; + }; + + window.Foundation = { + name : 'Foundation', + + version : '4.2.2', + + cache : {}, + + init : function (scope, libraries, method, options, response, /* internal */ nc) { + var library_arr, + args = [scope, method, options, response], + responses = [], + nc = nc || false; + + // disable library error catching, + // used for development only + if (nc) this.nc = nc; + + // check RTL + this.rtl = /rtl/i.test($('html').attr('dir')); + + // set foundation global scope + this.scope = scope || this.scope; + + if (libraries && typeof libraries === 'string' && !/reflow/i.test(libraries)) { + if (/off/i.test(libraries)) return this.off(); + + library_arr = libraries.split(' '); + + if (library_arr.length > 0) { + for (var i = library_arr.length - 1; i >= 0; i--) { + responses.push(this.init_lib(library_arr[i], args)); + } + } + } else { + if (/reflow/i.test(libraries)) args[1] = 'reflow'; + + for (var lib in this.libs) { + responses.push(this.init_lib(lib, args)); + } + } + + // if first argument is callback, add to args + if (typeof libraries === 'function') { + args.unshift(libraries); + } + + return this.response_obj(responses, args); + }, + + response_obj : function (response_arr, args) { + for (var i = 0, len = args.length; i < len; i++) { + if (typeof args[i] === 'function') { + return args[i]({ + errors: response_arr.filter(function (s) { + if (typeof s === 'string') return s; + }) + }); + } + } + + return response_arr; + }, + + init_lib : function (lib, args) { + return this.trap(function () { + if (this.libs.hasOwnProperty(lib)) { + this.patch(this.libs[lib]); + return this.libs[lib].init.apply(this.libs[lib], args); + } + else { + return function () {}; + } + }.bind(this), lib); + }, + + trap : function (fun, lib) { + if (!this.nc) { + try { + return fun(); + } catch (e) { + return this.error({name: lib, message: 'could not be initialized', more: e.name + ' ' + e.message}); + } + } + + return fun(); + }, + + patch : function (lib) { + this.fix_outer(lib); + lib.scope = this.scope; + lib.rtl = this.rtl; + }, + + inherit : function (scope, methods) { + var methods_arr = methods.split(' '); + + for (var i = methods_arr.length - 1; i >= 0; i--) { + if (this.lib_methods.hasOwnProperty(methods_arr[i])) { + this.libs[scope.name][methods_arr[i]] = this.lib_methods[methods_arr[i]]; + } + } + }, + + random_str : function (length) { + var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz'.split(''); + + if (!length) { + length = Math.floor(Math.random() * chars.length); + } + + var str = ''; + for (var i = 0; i < length; i++) { + str += chars[Math.floor(Math.random() * chars.length)]; + } + return str; + }, + + libs : {}, + + // methods that can be inherited in libraries + lib_methods : { + set_data : function (node, data) { + // this.name references the name of the library calling this method + var id = [this.name,+new Date(),Foundation.random_str(5)].join('-'); + + Foundation.cache[id] = data; + node.attr('data-' + this.name + '-id', id); + return data; + }, + + get_data : function (node) { + return Foundation.cache[node.attr('data-' + this.name + '-id')]; + }, + + remove_data : function (node) { + if (node) { + delete Foundation.cache[node.attr('data-' + this.name + '-id')]; + node.attr('data-' + this.name + '-id', ''); + } else { + $('[data-' + this.name + '-id]').each(function () { + delete Foundation.cache[$(this).attr('data-' + this.name + '-id')]; + $(this).attr('data-' + this.name + '-id', ''); + }); + } + }, + + throttle : function(fun, delay) { + var timer = null; + return function () { + var context = this, args = arguments; + clearTimeout(timer); + timer = setTimeout(function () { + fun.apply(context, args); + }, delay); + }; + }, + + // parses data-options attribute on nodes and turns + // them into an object + data_options : function (el) { + var opts = {}, ii, p, + opts_arr = (el.attr('data-options') || ':').split(';'), + opts_len = opts_arr.length; + + function isNumber (o) { + return ! isNaN (o-0) && o !== null && o !== "" && o !== false && o !== true; + } + + function trim(str) { + if (typeof str === 'string') return $.trim(str); + return str; + } + + // parse options + for (ii = opts_len - 1; ii >= 0; ii--) { + p = opts_arr[ii].split(':'); + + if (/true/i.test(p[1])) p[1] = true; + if (/false/i.test(p[1])) p[1] = false; + if (isNumber(p[1])) p[1] = parseInt(p[1], 10); + + if (p.length === 2 && p[0].length > 0) { + opts[trim(p[0])] = trim(p[1]); + } + } + + return opts; + }, + + delay : function (fun, delay) { + return setTimeout(fun, delay); + }, + + // animated scrolling + scrollTo : function (el, to, duration) { + if (duration < 0) return; + var difference = to - $(window).scrollTop(); + var perTick = difference / duration * 10; + + this.scrollToTimerCache = setTimeout(function() { + if (!isNaN(parseInt(perTick, 10))) { + window.scrollTo(0, $(window).scrollTop() + perTick); + this.scrollTo(el, to, duration - 10); + } + }.bind(this), 10); + }, + + // not supported in core Zepto + scrollLeft : function (el) { + if (!el.length) return; + return ('scrollLeft' in el[0]) ? el[0].scrollLeft : el[0].pageXOffset; + }, + + // test for empty object or array + empty : function (obj) { + if (obj.length && obj.length > 0) return false; + if (obj.length && obj.length === 0) return true; + + for (var key in obj) { + if (hasOwnProperty.call(obj, key)) return false; + } + + return true; + } + }, + + fix_outer : function (lib) { + lib.outerHeight = function (el, bool) { + if (typeof Zepto === 'function') { + return el.height(); + } + + if (typeof bool !== 'undefined') { + return el.outerHeight(bool); + } + + return el.outerHeight(); + }; + + lib.outerWidth = function (el) { + if (typeof Zepto === 'function') { + return el.width(); + } + + if (typeof bool !== 'undefined') { + return el.outerWidth(bool); + } + + return el.outerWidth(); + }; + }, + + error : function (error) { + return error.name + ' ' + error.message + '; ' + error.more; + }, + + // remove all foundation events. + off: function () { + $(this.scope).off('.fndtn'); + $(window).off('.fndtn'); + return true; + }, + + zj : function () { + if (typeof Zepto !== 'undefined') { + return Zepto; + } else { + return jQuery; + } + }() + }; + + $.fn.foundation = function () { + var args = Array.prototype.slice.call(arguments, 0); + + return this.each(function () { + Foundation.init.apply(Foundation, [this].concat(args)); + return this; + }); + }; + +}(libFuncName, this, this.document)); diff --git a/js/foundation/foundation.magellan.js b/js/foundation/foundation.magellan.js new file mode 100644 index 00000000..15dc5adb --- /dev/null +++ b/js/foundation/foundation.magellan.js @@ -0,0 +1,134 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.magellan = { + name : 'magellan', + + version : '4.2.2', + + settings : { + activeClass: 'active' + }, + + init : function (scope, method, options) { + this.scope = scope || this.scope; + Foundation.inherit(this, 'data_options'); + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } + + if (typeof method !== 'string') { + if (!this.settings.init) { + this.fixed_magellan = $("[data-magellan-expedition]"); + this.set_threshold(); + this.last_destination = $('[data-magellan-destination]').last(); + this.events(); + } + + return this.settings.init; + } else { + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + $(this.scope).on('arrival.fndtn.magellan', '[data-magellan-arrival]', function (e) { + var $destination = $(this), + $expedition = $destination.closest('[data-magellan-expedition]'), + activeClass = $expedition.attr('data-magellan-active-class') + || self.settings.activeClass; + + $destination + .closest('[data-magellan-expedition]') + .find('[data-magellan-arrival]') + .not($destination) + .removeClass(activeClass); + $destination.addClass(activeClass); + }); + + this.fixed_magellan + .on('update-position.fndtn.magellan', function(){ + var $el = $(this); + // $el.data("magellan-fixed-position",""); + // $el.data("magellan-top-offset", ""); + }) + .trigger('update-position'); + + $(window) + .on('resize.fndtn.magellan', function() { + this.fixed_magellan.trigger('update-position'); + }.bind(this)) + + .on('scroll.fndtn.magellan', function() { + var windowScrollTop = $(window).scrollTop(); + self.fixed_magellan.each(function() { + var $expedition = $(this); + if (typeof $expedition.data('magellan-top-offset') === 'undefined') { + $expedition.data('magellan-top-offset', $expedition.offset().top); + } + if (typeof $expedition.data('magellan-fixed-position') === 'undefined') { + $expedition.data('magellan-fixed-position', false) + } + var fixed_position = (windowScrollTop + self.settings.threshold) > $expedition.data("magellan-top-offset"); + var attr = $expedition.attr('data-magellan-top-offset'); + + if ($expedition.data("magellan-fixed-position") != fixed_position) { + $expedition.data("magellan-fixed-position", fixed_position); + if (fixed_position) { + $expedition.addClass('fixed'); + $expedition.css({position:"fixed", top:0}); + } else { + $expedition.removeClass('fixed'); + $expedition.css({position:"", top:""}); + } + if (fixed_position && typeof attr != 'undefined' && attr != false) { + $expedition.css({position:"fixed", top:attr + "px"}); + } + } + }); + }); + + + if (this.last_destination.length > 0) { + $(window).on('scroll.fndtn.magellan', function (e) { + var windowScrollTop = $(window).scrollTop(), + scrolltopPlusHeight = windowScrollTop + $(window).height(), + lastDestinationTop = Math.ceil(self.last_destination.offset().top); + + $('[data-magellan-destination]').each(function () { + var $destination = $(this), + destination_name = $destination.attr('data-magellan-destination'), + topOffset = $destination.offset().top - windowScrollTop; + + if (topOffset <= self.settings.threshold) { + $("[data-magellan-arrival='" + destination_name + "']").trigger('arrival'); + } + // In large screens we may hit the bottom of the page and dont reach the top of the last magellan-destination, so lets force it + if (scrolltopPlusHeight >= $(self.scope).height() && lastDestinationTop > windowScrollTop && lastDestinationTop < scrolltopPlusHeight) { + $('[data-magellan-arrival]').last().trigger('arrival'); + } + }); + }); + } + + this.settings.init = true; + }, + + set_threshold : function () { + if (!this.settings.threshold) { + this.settings.threshold = (this.fixed_magellan.length > 0) ? + this.outerHeight(this.fixed_magellan, true) : 0; + } + }, + + off : function () { + $(this.scope).off('.fndtn.magellan'); + }, + + reflow : function () {} + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.orbit.js b/js/foundation/foundation.orbit.js new file mode 100644 index 00000000..c4a80b40 --- /dev/null +++ b/js/foundation/foundation.orbit.js @@ -0,0 +1,390 @@ +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs = Foundation.libs || {}; + + Foundation.libs.orbit = { + name: 'orbit', + + version: '4.2.0', + + settings: { + timer_speed: 10000, + pause_on_hover: true, + resume_on_mouseout: false, + animation_speed: 500, + bullets: true, + stack_on_small: true, + navigation_arrows: true, + slide_number: true, + container_class: 'orbit-container', + stack_on_small_class: 'orbit-stack-on-small', + next_class: 'orbit-next', + prev_class: 'orbit-prev', + timer_container_class: 'orbit-timer', + timer_paused_class: 'paused', + timer_progress_class: 'orbit-progress', + slides_container_class: 'orbit-slides-container', + bullets_container_class: 'orbit-bullets', + bullets_active_class: 'active', + slide_number_class: 'orbit-slide-number', + caption_class: 'orbit-caption', + active_slide_class: 'active', + orbit_transition_class: 'orbit-transitioning' + }, + + init: function (scope, method, options) { + var self = this; + Foundation.inherit(self, 'data_options'); + + if (typeof method === 'object') { + $.extend(true, self.settings, method); + } + + if ($(scope).is('[data-orbit]')) { + var scoped_self = $.extend(true, {}, self); + scoped_self._init(idx, el); + } + + $('[data-orbit]', scope).each(function(idx, el) { + var scoped_self = $.extend(true, {}, self); + scoped_self._init(idx, el); + }); + }, + + _container_html: function() { + var self = this; + return '
          '; + }, + + _bullets_container_html: function($slides) { + var self = this, + $list = $('
            '); + $slides.each(function(idx, slide) { + var $item = $('
          1. '); + if (idx === 0) { + $item.addClass(self.settings.bullets_active_class); + } + $list.append($item); + }); + return $list; + }, + + _slide_number_html: function(slide_number, total_slides) { + var self = this, + $container = $('
            '); + $container.append('' + slide_number + ' of ' + total_slides + ''); + return $container; + }, + + _timer_html: function() { + var self = this; + if (typeof self.settings.timer_speed === 'number' && self.settings.timer_speed > 0) { + return '
            '; + } else { + return ''; + } + }, + + _next_html: function() { + var self = this; + return 'Next '; + }, + + _prev_html: function() { + var self = this; + return 'Prev '; + }, + + _init: function (idx, slider) { + var self = this, + $slides_container = $(slider), + $container = $slides_container.wrap(self._container_html()).parent(), + $slides = $slides_container.children(); + + $.extend(true, self.settings, self.data_options($slides_container)); + + if (self.settings.navigation_arrows) { + $container.append(self._prev_html()); + $container.append(self._next_html()); + } + $slides_container.addClass(self.settings.slides_container_class); + if (self.settings.stack_on_small) { + $container.addClass(self.settings.stack_on_small_class); + } + if (self.settings.slide_number) { + $container.append(self._slide_number_html(1, $slides.length)); + } + $container.append(self._timer_html()); + if (self.settings.bullets) { + $container.after(self._bullets_container_html($slides)); + } + // To better support the "sliding" effect it's easier + // if we just clone the first and last slides + $slides_container.append($slides.first().clone().attr('data-orbit-slide','')); + $slides_container.prepend($slides.last().clone().attr('data-orbit-slide','')); + // Make the first "real" slide active + $slides_container.css(Foundation.rtl ? 'marginRight' : 'marginLeft', '-100%'); + $slides.first().addClass(self.settings.active_slide_class); + + self._init_events($slides_container); + self._init_dimensions($slides_container); + self._start_timer($slides_container); + }, + + _init_events: function ($slides_container) { + var self = this, + $container = $slides_container.parent(); + + $(window) + .on('load.fndtn.orbit', function() { + $slides_container.height(''); + $slides_container.height($slides_container.height($container.height())); + $slides_container.trigger('orbit:ready'); + }) + .on('resize.fndtn.orbit', function() { + $slides_container.height(''); + $slides_container.height($slides_container.height($container.height())); + }); + + $(document).on('click.fndtn.orbit', '[data-orbit-link]', function(e) { + e.preventDefault(); + var id = $(e.currentTarget).attr('data-orbit-link'), + $slide = $slides_container.find('[data-orbit-slide=' + id + ']').first(); + + if ($slide.length === 1) { + self._reset_timer($slides_container, true); + self._goto($slides_container, $slide.index(), function() {}); + } + }); + + $container.siblings('.' + self.settings.bullets_container_class) + .on('click.fndtn.orbit', '[data-orbit-slide-number]', function(e) { + e.preventDefault(); + self._reset_timer($slides_container, true); + self._goto($slides_container, $(e.currentTarget).data('orbit-slide-number'),function() {}); + }); + + $container + .on('mouseenter.fndtn.orbit', function(e) { + if (self.settings.pause_on_hover) { + self._stop_timer($slides_container); + } + }) + .on('mouseleave.fndtn.orbit', function(e) { + if (self.settings.resume_on_mouseout) { + self._start_timer($slides_container); + } + }) + .on('orbit:after-slide-change.fndtn.orbit', function(e, orbit) { + var $slide_number = $container.find('.' + self.settings.slide_number_class); + + if ($slide_number.length === 1) { + $slide_number.replaceWith(self._slide_number_html(orbit.slide_number, orbit.total_slides)); + } + }) + .on('orbit:next-slide.fndtn.orbit click.fndtn.orbit', '.' + self.settings.next_class.split(" ").join("."), function(e) { + e.preventDefault(); + self._reset_timer($slides_container, true); + self._goto($slides_container, 'next', function() {}); + }) + .on('orbit:prev-slide.fndtn.orbit click.fndtn.orbit', '.' + self.settings.prev_class.split(" ").join("."), function(e) { + e.preventDefault(); + self._reset_timer($slides_container, true); + self._goto($slides_container, 'prev', function() {}); + }) + .on('orbit:toggle-play-pause.fndtn.orbit click.fndtn.orbit touchstart.fndtn.orbit', '.' + self.settings.timer_container_class, function(e) { + e.preventDefault(); + var $timer = $(e.currentTarget).toggleClass(self.settings.timer_paused_class), + $slides_container = $timer.closest('.' + self.settings.container_class) + .find('.' + self.settings.slides_container_class); + + if ($timer.hasClass(self.settings.timer_paused_class)) { + self._stop_timer($slides_container); + } else { + self._start_timer($slides_container); + } + }) + .on('touchstart.fndtn.orbit', function(e) { + if (!e.touches) { e = e.originalEvent; } + var data = { + start_page_x: e.touches[0].pageX, + start_page_y: e.touches[0].pageY, + start_time: (new Date()).getTime(), + delta_x: 0, + is_scrolling: undefined + }; + $container.data('swipe-transition', data); + e.stopPropagation(); + }) + .on('touchmove.fndtn.orbit', function(e) { + if (!e.touches) { e = e.originalEvent; } + // Ignore pinch/zoom events + if(e.touches.length > 1 || e.scale && e.scale !== 1) return; + + var data = $container.data('swipe-transition'); + if (typeof data === 'undefined') { + data = {}; + } + + data.delta_x = e.touches[0].pageX - data.start_page_x; + + if ( typeof data.is_scrolling === 'undefined') { + data.is_scrolling = !!( data.is_scrolling || Math.abs(data.delta_x) < Math.abs(e.touches[0].pageY - data.start_page_y) ); + } + + if (!data.is_scrolling && !data.active) { + e.preventDefault(); + self._stop_timer($slides_container); + var direction = (data.delta_x < 0) ? 'next' : 'prev'; + data.active = true; + self._goto($slides_container, direction, function() {}); + } + }) + .on('touchend.fndtn.orbit', function(e) { + $container.data('swipe-transition', {}); + e.stopPropagation(); + }); + }, + + _init_dimensions: function ($slides_container) { + var $container = $slides_container.parent(), + $slides = $slides_container.children(); + + $slides_container.css('width', $slides.length * 100 + '%'); + $slides.css('width', 100 / $slides.length + '%'); + $slides_container.height($container.height()); + $slides_container.css('width', $slides.length * 100 + '%'); + }, + + _start_timer: function ($slides_container) { + var self = this, + $container = $slides_container.parent(); + + var callback = function() { + self._reset_timer($slides_container, false); + self._goto($slides_container, 'next', function() { + self._start_timer($slides_container); + }); + }; + + var $timer = $container.find('.' + self.settings.timer_container_class), + $progress = $timer.find('.' + self.settings.timer_progress_class), + progress_pct = ($progress.width() / $timer.width()), + delay = self.settings.timer_speed - (progress_pct * self.settings.timer_speed); + + $progress.animate({'width': '100%'}, delay, 'linear', callback); + $slides_container.trigger('orbit:timer-started'); + }, + + _stop_timer: function ($slides_container) { + var self = this, + $container = $slides_container.parent(), + $timer = $container.find('.' + self.settings.timer_container_class), + $progress = $timer.find('.' + self.settings.timer_progress_class), + progress_pct = $progress.width() / $timer.width(); + self._rebuild_timer($container, progress_pct * 100 + '%'); + // $progress.stop(); + $slides_container.trigger('orbit:timer-stopped'); + $timer = $container.find('.' + self.settings.timer_container_class); + $timer.addClass(self.settings.timer_paused_class); + }, + + _reset_timer: function($slides_container, is_paused) { + var self = this, + $container = $slides_container.parent(); + self._rebuild_timer($container, '0%'); + if (typeof is_paused === 'boolean' && is_paused) { + var $timer = $container.find('.' + self.settings.timer_container_class); + $timer.addClass(self.settings.timer_paused_class); + } + }, + + _rebuild_timer: function ($container, width_pct) { + // Zepto is unable to stop animations since they + // are css-based. This is a workaround for that + // limitation, which rebuilds the dom element + // thus stopping the animation + var self = this, + $timer = $container.find('.' + self.settings.timer_container_class), + $new_timer = $(self._timer_html()), + $new_timer_progress = $new_timer.find('.' + self.settings.timer_progress_class); + + if (typeof Zepto === 'function') { + $timer.remove(); + $container.append($new_timer); + $new_timer_progress.css('width', width_pct); + } else if (typeof jQuery === 'function') { + var $progress = $timer.find('.' + self.settings.timer_progress_class); + $progress.css('width', width_pct); + $progress.stop(); + } + }, + + _goto: function($slides_container, index_or_direction, callback) { + var self = this, + $container = $slides_container.parent(), + $slides = $slides_container.children(), + $active_slide = $slides_container.find('.' + self.settings.active_slide_class), + active_index = $active_slide.index(), + margin_position = Foundation.rtl ? 'marginRight' : 'marginLeft'; + + if ($container.hasClass(self.settings.orbit_transition_class)) { + return false; + } + + if (index_or_direction === 'prev') { + if (active_index === 0) { + active_index = $slides.length - 1; + } + else { + active_index--; + } + } + else if (index_or_direction === 'next') { + active_index = (active_index+1) % $slides.length; + } + else if (typeof index_or_direction === 'number') { + active_index = (index_or_direction % $slides.length); + } + if (active_index === ($slides.length - 1) && index_or_direction === 'next') { + $slides_container.css(margin_position, '0%'); + active_index = 1; + } + else if (active_index === 0 && index_or_direction === 'prev') { + $slides_container.css(margin_position, '-' + ($slides.length - 1) * 100 + '%'); + active_index = $slides.length - 2; + } + // Start transition, make next slide active + $container.addClass(self.settings.orbit_transition_class); + $active_slide.removeClass(self.settings.active_slide_class); + $($slides[active_index]).addClass(self.settings.active_slide_class); + // Make next bullet active + var $bullets = $container.siblings('.' + self.settings.bullets_container_class); + if ($bullets.length === 1) { + $bullets.children().removeClass(self.settings.bullets_active_class); + $($bullets.children()[active_index-1]).addClass(self.settings.bullets_active_class); + } + var new_margin_left = '-' + (active_index * 100) + '%'; + // Check to see if animation will occur, otherwise perform + // callbacks manually + $slides_container.trigger('orbit:before-slide-change'); + if ($slides_container.css(margin_position) === new_margin_left) { + $container.removeClass(self.settings.orbit_transition_class); + $slides_container.trigger('orbit:after-slide-change', [{slide_number: active_index, total_slides: $slides_container.children().length - 2}]); + callback(); + } else { + var properties = {}; + properties[margin_position] = new_margin_left; + + $slides_container.animate(properties, self.settings.animation_speed, 'linear', function() { + $container.removeClass(self.settings.orbit_transition_class); + $slides_container.trigger('orbit:after-slide-change', [{slide_number: active_index, total_slides: $slides_container.children().length - 2}]); + callback(); + }); + } + } + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.placeholder.js b/js/foundation/foundation.placeholder.js new file mode 100644 index 00000000..b979ed16 --- /dev/null +++ b/js/foundation/foundation.placeholder.js @@ -0,0 +1,179 @@ +/*! http://mths.be/placeholder v2.0.7 by @mathias + Modified to work with Zepto.js by ZURB +*/ +;(function(window, document, $) { + + var isInputSupported = 'placeholder' in document.createElement('input'), + isTextareaSupported = 'placeholder' in document.createElement('textarea'), + prototype = $.fn, + valHooks = $.valHooks, + hooks, + placeholder; + + if (isInputSupported && isTextareaSupported) { + + placeholder = prototype.placeholder = function() { + return this; + }; + + placeholder.input = placeholder.textarea = true; + + } else { + + placeholder = prototype.placeholder = function() { + var $this = this; + $this + .filter((isInputSupported ? 'textarea' : ':input') + '[placeholder]') + .not('.placeholder') + .bind({ + 'focus.placeholder': clearPlaceholder, + 'blur.placeholder': setPlaceholder + }) + .data('placeholder-enabled', true) + .trigger('blur.placeholder'); + return $this; + }; + + placeholder.input = isInputSupported; + placeholder.textarea = isTextareaSupported; + + hooks = { + 'get': function(element) { + var $element = $(element); + return $element.data('placeholder-enabled') && $element.hasClass('placeholder') ? '' : element.value; + }, + 'set': function(element, value) { + var $element = $(element); + if (!$element.data('placeholder-enabled')) { + return element.value = value; + } + if (value == '') { + element.value = value; + // Issue #56: Setting the placeholder causes problems if the element continues to have focus. + if (element != document.activeElement) { + // We can't use `triggerHandler` here because of dummy text/password inputs :( + setPlaceholder.call(element); + } + } else if ($element.hasClass('placeholder')) { + clearPlaceholder.call(element, true, value) || (element.value = value); + } else { + element.value = value; + } + // `set` can not return `undefined`; see http://jsapi.info/jquery/1.7.1/val#L2363 + return $element; + } + }; + + isInputSupported || (valHooks.input = hooks); + isTextareaSupported || (valHooks.textarea = hooks); + + $(function() { + // Look for forms + $(document).delegate('form', 'submit.placeholder', function() { + // Clear the placeholder values so they don't get submitted + var $inputs = $('.placeholder', this).each(clearPlaceholder); + setTimeout(function() { + $inputs.each(setPlaceholder); + }, 10); + }); + }); + + // Clear placeholder values upon page reload + $(window).bind('beforeunload.placeholder', function() { + $('.placeholder').each(function() { + this.value = ''; + }); + }); + + } + + function args(elem) { + // Return an object of element attributes + var newAttrs = {}, + rinlinejQuery = /^jQuery\d+$/; + $.each(elem.attributes, function(i, attr) { + if (attr.specified && !rinlinejQuery.test(attr.name)) { + newAttrs[attr.name] = attr.value; + } + }); + return newAttrs; + } + + function clearPlaceholder(event, value) { + var input = this, + $input = $(input); + if (input.value == $input.attr('placeholder') && $input.hasClass('placeholder')) { + if ($input.data('placeholder-password')) { + $input = $input.hide().next().show().attr('id', $input.removeAttr('id').data('placeholder-id')); + // If `clearPlaceholder` was called from `$.valHooks.input.set` + if (event === true) { + return $input[0].value = value; + } + $input.focus(); + } else { + input.value = ''; + $input.removeClass('placeholder'); + input == document.activeElement && input.select(); + } + } + } + + function setPlaceholder() { + var $replacement, + input = this, + $input = $(input), + $origInput = $input, + id = this.id; + if (input.value == '') { + if (input.type == 'password') { + if (!$input.data('placeholder-textinput')) { + try { + $replacement = $input.clone().attr({ 'type': 'text' }); + } catch(e) { + $replacement = $('').attr($.extend(args(this), { 'type': 'text' })); + } + $replacement + .removeAttr('name') + .data({ + 'placeholder-password': true, + 'placeholder-id': id + }) + .bind('focus.placeholder', clearPlaceholder); + $input + .data({ + 'placeholder-textinput': $replacement, + 'placeholder-id': id + }) + .before($replacement); + } + $input = $input.removeAttr('id').hide().prev().attr('id', id).show(); + // Note: `$input[0] != input` now! + } + $input.addClass('placeholder'); + $input[0].value = $input.attr('placeholder'); + } else { + $input.removeClass('placeholder'); + } + } + +}(this, document, Foundation.zj)); + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.placeholder = { + name : 'placeholder', + + version : '4.2.2', + + init : function (scope, method, options) { + this.scope = scope || this.scope; + + if (typeof method !== 'string') { + window.onload = function () { + $('input, textarea').placeholder(); + } + } + } + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.reveal.js b/js/foundation/foundation.reveal.js new file mode 100644 index 00000000..cbdee873 --- /dev/null +++ b/js/foundation/foundation.reveal.js @@ -0,0 +1,330 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.reveal = { + name: 'reveal', + + version : '4.2.2', + + locked : false, + + settings : { + animation: 'fadeAndPop', + animationSpeed: 250, + closeOnBackgroundClick: true, + closeOnEsc: true, + dismissModalClass: 'close-reveal-modal', + bgClass: 'reveal-modal-bg', + open: function(){}, + opened: function(){}, + close: function(){}, + closed: function(){}, + bg : $('.reveal-modal-bg'), + css : { + open : { + 'opacity': 0, + 'visibility': 'visible', + 'display' : 'block' + }, + close : { + 'opacity': 1, + 'visibility': 'hidden', + 'display': 'none' + } + } + }, + + init : function (scope, method, options) { + Foundation.inherit(this, 'data_options delay'); + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } else if (typeof options !== 'undefined') { + $.extend(true, this.settings, options); + } + + if (typeof method !== 'string') { + this.events(); + + return this.settings.init; + } else { + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + + $(this.scope) + .off('.fndtn.reveal') + .on('click.fndtn.reveal', '[data-reveal-id]', function (e) { + e.preventDefault(); + + if (!self.locked) { + var element = $(this), + ajax = element.data('reveal-ajax'); + + self.locked = true; + + if (typeof ajax === 'undefined') { + self.open.call(self, element); + } else { + var url = ajax === true ? element.attr('href') : ajax; + + self.open.call(self, element, {url: url}); + } + } + }) + .on('click.fndtn.reveal', this.close_targets(), function (e) { + e.preventDefault(); + if (!self.locked) { + var settings = $.extend({}, self.settings, self.data_options($('.reveal-modal.open'))); + if ($(e.target)[0] === $('.' + settings.bgClass)[0] && !settings.closeOnBackgroundClick) { + return; + } + + self.locked = true; + self.close.call(self, $(this).closest('.reveal-modal')); + } + }) + .on('open.fndtn.reveal', '.reveal-modal', this.settings.open) + .on('opened.fndtn.reveal', '.reveal-modal', this.settings.opened) + .on('opened.fndtn.reveal', '.reveal-modal', this.open_video) + .on('close.fndtn.reveal', '.reveal-modal', this.settings.close) + .on('closed.fndtn.reveal', '.reveal-modal', this.settings.closed) + .on('closed.fndtn.reveal', '.reveal-modal', this.close_video); + + $( 'body' ).bind( 'keyup.reveal', function ( event ) { + var open_modal = $('.reveal-modal.open'), + settings = $.extend({}, self.settings, self.data_options(open_modal)); + if ( event.which === 27 && settings.closeOnEsc) { // 27 is the keycode for the Escape key + open_modal.foundation('reveal', 'close'); + } + }); + + return true; + }, + + open : function (target, ajax_settings) { + if (target) { + if (typeof target.selector !== 'undefined') { + var modal = $('#' + target.data('reveal-id')); + } else { + var modal = $(this.scope); + + ajax_settings = target; + } + } else { + var modal = $(this.scope); + } + + if (!modal.hasClass('open')) { + var open_modal = $('.reveal-modal.open'); + + if (typeof modal.data('css-top') === 'undefined') { + modal.data('css-top', parseInt(modal.css('top'), 10)) + .data('offset', this.cache_offset(modal)); + } + + modal.trigger('open'); + + if (open_modal.length < 1) { + this.toggle_bg(modal); + } + + if (typeof ajax_settings === 'undefined' || !ajax_settings.url) { + this.hide(open_modal, this.settings.css.close); + this.show(modal, this.settings.css.open); + } else { + var self = this, + old_success = typeof ajax_settings.success !== 'undefined' ? ajax_settings.success : null; + + $.extend(ajax_settings, { + success: function (data, textStatus, jqXHR) { + if ( $.isFunction(old_success) ) { + old_success(data, textStatus, jqXHR); + } + + modal.html(data); + $(modal).foundation('section', 'reflow'); + + self.hide(open_modal, self.settings.css.close); + self.show(modal, self.settings.css.open); + } + }); + + $.ajax(ajax_settings); + } + } + }, + + close : function (modal) { + + var modal = modal && modal.length ? modal : $(this.scope), + open_modals = $('.reveal-modal.open'); + + if (open_modals.length > 0) { + this.locked = true; + modal.trigger('close'); + this.toggle_bg(modal); + this.hide(open_modals, this.settings.css.close); + } + }, + + close_targets : function () { + var base = '.' + this.settings.dismissModalClass; + + if (this.settings.closeOnBackgroundClick) { + return base + ', .' + this.settings.bgClass; + } + + return base; + }, + + toggle_bg : function (modal) { + if ($('.reveal-modal-bg').length === 0) { + this.settings.bg = $('
            ', {'class': this.settings.bgClass}) + .appendTo('body'); + } + + if (this.settings.bg.filter(':visible').length > 0) { + this.hide(this.settings.bg); + } else { + this.show(this.settings.bg); + } + }, + + show : function (el, css) { + // is modal + if (css) { + if (/pop/i.test(this.settings.animation)) { + css.top = $(window).scrollTop() - el.data('offset') + 'px'; + var end_css = { + top: $(window).scrollTop() + el.data('css-top') + 'px', + opacity: 1 + }; + + return this.delay(function () { + return el + .css(css) + .animate(end_css, this.settings.animationSpeed, 'linear', function () { + this.locked = false; + el.trigger('opened'); + }.bind(this)) + .addClass('open'); + }.bind(this), this.settings.animationSpeed / 2); + } + + if (/fade/i.test(this.settings.animation)) { + var end_css = {opacity: 1}; + + return this.delay(function () { + return el + .css(css) + .animate(end_css, this.settings.animationSpeed, 'linear', function () { + this.locked = false; + el.trigger('opened'); + }.bind(this)) + .addClass('open'); + }.bind(this), this.settings.animationSpeed / 2); + } + + return el.css(css).show().css({opacity: 1}).addClass('open').trigger('opened'); + } + + // should we animate the background? + if (/fade/i.test(this.settings.animation)) { + return el.fadeIn(this.settings.animationSpeed / 2); + } + + return el.show(); + }, + + hide : function (el, css) { + // is modal + if (css) { + if (/pop/i.test(this.settings.animation)) { + var end_css = { + top: - $(window).scrollTop() - el.data('offset') + 'px', + opacity: 0 + }; + + return this.delay(function () { + return el + .animate(end_css, this.settings.animationSpeed, 'linear', function () { + this.locked = false; + el.css(css).trigger('closed'); + }.bind(this)) + .removeClass('open'); + }.bind(this), this.settings.animationSpeed / 2); + } + + if (/fade/i.test(this.settings.animation)) { + var end_css = {opacity: 0}; + + return this.delay(function () { + return el + .animate(end_css, this.settings.animationSpeed, 'linear', function () { + this.locked = false; + el.css(css).trigger('closed'); + }.bind(this)) + .removeClass('open'); + }.bind(this), this.settings.animationSpeed / 2); + } + + return el.hide().css(css).removeClass('open').trigger('closed'); + } + + // should we animate the background? + if (/fade/i.test(this.settings.animation)) { + return el.fadeOut(this.settings.animationSpeed / 2); + } + + return el.hide(); + }, + + close_video : function (e) { + var video = $(this).find('.flex-video'), + iframe = video.find('iframe'); + + if (iframe.length > 0) { + iframe.attr('data-src', iframe[0].src); + iframe.attr('src', 'about:blank'); + video.hide(); + } + }, + + open_video : function (e) { + var video = $(this).find('.flex-video'), + iframe = video.find('iframe'); + + if (iframe.length > 0) { + var data_src = iframe.attr('data-src'); + if (typeof data_src === 'string') { + iframe[0].src = iframe.attr('data-src'); + } else { + var src = iframe[0].src; + iframe[0].src = undefined; + iframe[0].src = src; + } + video.show(); + } + }, + + cache_offset : function (modal) { + var offset = modal.show().height() + parseInt(modal.css('top'), 10); + + modal.hide(); + + return offset; + }, + + off : function () { + $(this.scope).off('.fndtn.reveal'); + }, + + reflow : function () {} + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.section.js b/js/foundation/foundation.section.js new file mode 100644 index 00000000..b622ffda --- /dev/null +++ b/js/foundation/foundation.section.js @@ -0,0 +1,417 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.section = { + name: 'section', + + version : '4.2.2', + + settings : { + deep_linking: false, + small_breakpoint: 768, + one_up: true, + section_selector : '[data-section]', + region_selector : 'section, .section, [data-section-region]', + title_selector : '.title, [data-section-title]', + active_region_selector : 'section.active, .section.active, .active[data-section-region]', + content_selector : '.content, [data-section-content]', + nav_selector : '[data-section="vertical-nav"], [data-section="horizontal-nav"]', + callback: function (){} + }, + + init : function (scope, method, options) { + var self = this; + Foundation.inherit(this, 'throttle data_options position_right offset_right'); + + if (typeof method === 'object') { + $.extend(true, self.settings, method); + } + + if (typeof method !== 'string') { + this.set_active_from_hash(); + this.events(); + + return true; + } else { + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + + $(this.scope) + .on('click.fndtn.section', '[data-section] .title, [data-section] [data-section-title]', function (e) { + var $this = $(this), + section = $this.closest(self.settings.region_selector); + + if (section.children(self.settings.content_selector).length > 0) { + self.toggle_active.call(this, e, self); + self.reflow(); + } + }); + + $(window) + .on('resize.fndtn.section', self.throttle(function () { + self.resize.call(this); + }, 30)) + .on('hashchange', function () { + if (!self.settings.toggled){ + self.set_active_from_hash(); + $(this).trigger('resize'); + } + }).trigger('resize'); + + $(document) + .on('click.fndtn.section', function (e) { + if ($(e.target).closest(self.settings.title_selector).length < 1) { + $(self.settings.nav_selector) + .children(self.settings.region_selector) + .removeClass('active') + .attr('style', ''); + } + }); + + }, + + toggle_active : function (e, self) { + var $this = $(this), + self = Foundation.libs.section, + region = $this.closest(self.settings.region_selector), + content = $this.siblings(self.settings.content_selector), + parent = region.parent(), + settings = $.extend({}, self.settings, self.data_options(parent)), + prev_active_section = parent + .children(self.settings.active_region_selector); + + self.settings.toggled = true; + + if (!settings.deep_linking && content.length > 0) { + e.preventDefault(); + } + + if (region.hasClass('active')) { + // this is causing the style flash. + if (self.small(parent) + || self.is_vertical_nav(parent) + || self.is_horizontal_nav(parent) + || self.is_accordion(parent)) { + if (prev_active_section[0] !== region[0] + || (prev_active_section[0] === region[0] && !settings.one_up)) { + region + .removeClass('active') + .attr('style', ''); + } + } + } else { + var prev_active_section = parent + .children(self.settings.active_region_selector), + title_height = self.outerHeight(region + .children(self.settings.title_selector)); + + if (self.small(parent) || settings.one_up) { + + if (self.small(parent)) { + prev_active_section.attr('style', ''); + } else { + prev_active_section.attr('style', + 'visibility: hidden; padding-top: '+title_height+'px;'); + } + } + + if (self.small(parent)) { + region.attr('style', ''); + } else { + region.css('padding-top', title_height); + } + + region.addClass('active'); + + if (prev_active_section.length > 0) { + prev_active_section + .removeClass('active') + .attr('style', ''); + } + + // Toggle the content display attribute. This is done to + // ensure accurate outerWidth measurements that account for + // the scrollbar. + if (self.is_vertical_tabs(parent)) { + content.css('display', 'block'); + + if (prev_active_section !== null) { + prev_active_section + .children(self.settings.content_selector) + .css('display', 'none'); + } + } + } + + setTimeout(function () { + self.settings.toggled = false; + }, 300); + + settings.callback(); + }, + + resize : function () { + var self = Foundation.libs.section, + sections = $(self.settings.section_selector); + + sections.each(function() { + var $this = $(this), + active_section = $this + .children(self.settings.active_region_selector), + settings = $.extend({}, self.settings, self.data_options($this)); + + if (active_section.length > 1) { + active_section + .not(':first') + .removeClass('active') + .attr('style', ''); + } else if (active_section.length < 1 + && !self.is_vertical_nav($this) + && !self.is_horizontal_nav($this) + && !self.is_accordion($this)) { + + var first = $this.children(self.settings.region_selector).first(); + + if (settings.one_up || !self.small($this)) { + first.addClass('active'); + } + + if (self.small($this)) { + first.attr('style', ''); + } else { + first.css('padding-top', self.outerHeight(first + .children(self.settings.title_selector))); + } + } + + if (self.small($this)) { + active_section.attr('style', ''); + } else { + active_section.css('padding-top', self.outerHeight(active_section + .children(self.settings.title_selector))); + } + + self.position_titles($this); + + if ( (self.is_horizontal_nav($this) && !self.small($this)) + || self.is_vertical_tabs($this) && !self.small($this)) { + self.position_content($this); + } else { + self.position_content($this, false); + } + }); + }, + + is_vertical_nav : function (el) { + return /vertical-nav/i.test(el.data('section')); + }, + + is_horizontal_nav : function (el) { + return /horizontal-nav/i.test(el.data('section')); + }, + + is_accordion : function (el) { + return /accordion/i.test(el.data('section')); + }, + + is_horizontal_tabs : function (el) { + return /^tabs$/i.test(el.data('section')); + }, + + is_vertical_tabs : function (el) { + return /vertical-tabs/i.test(el.data('section')); + }, + + set_active_from_hash : function () { + var hash = window.location.hash.substring(1), + sections = $('[data-section]'), + self = this; + sections.each(function () { + var section = $(this), + settings = $.extend({}, self.settings, self.data_options(section)); + + if (hash.length > 0 && settings.deep_linking) { + var regions = section + .children(self.settings.region_selector) + .attr('style', '') + .removeClass('active'); + + var hash_regions = regions.map(function () { + var content = $(self.settings.content_selector, this), + content_slug = content.data('slug'); + + if (new RegExp(content_slug, 'i').test(hash)) + return content; + }); + + + var count = hash_regions.length; + + for (var i = count - 1; i >= 0; i--) { + $(hash_regions[i]).parent().addClass('active'); + } + } + }); + }, + + position_titles : function (section, off) { + var self = this, + titles = section + .children(this.settings.region_selector) + .map(function () { + return $(this).children(self.settings.title_selector); + }), + previous_width = 0, + previous_height = 0, + self = this; + + if (typeof off === 'boolean') { + titles.attr('style', ''); + + } else { + titles.each(function () { + if (self.is_vertical_tabs(section)) { + $(this).css('top', previous_height); + previous_height += self.outerHeight($(this)); + } else { + if (!self.rtl) { + $(this).css('left', previous_width); + } else { + $(this).css('right', previous_width); + } + previous_width += self.outerWidth($(this)); + } + }); + } + }, + + position_content : function (section, off) { + var self = this, + regions = section.children(self.settings.region_selector), + titles = regions + .map(function () { + return $(this).children(self.settings.title_selector); + }), + content = regions + .map(function () { + return $(this).children(self.settings.content_selector); + }); + + if (typeof off === 'boolean') { + content.attr('style', ''); + section.attr('style', ''); + } else { + if (self.is_vertical_tabs(section) + && !self.small(section)) { + var content_min_height = 0, + content_min_width = Number.MAX_VALUE, + title_width = null; + + regions.each(function () { + var region = $(this), + title = region.children(self.settings.title_selector), + content = region.children(self.settings.content_selector), + content_width = 0; + + title_width = self.outerWidth(title); + content_width = self.outerWidth(section) - title_width; + + if (content_width < content_min_width) { + content_min_width = content_width; + } + + // Increment the minimum height of the content region + // to align with the height of the titles. + content_min_height += self.outerHeight(title); + + // Set all of the inactive tabs to 'display: none' + // The CSS sets all of the tabs as 'display: block' + // in order to account for scrollbars when measuring the width + // of the content regions. + if (!$(this).hasClass('active')) { + content.css('display', 'none'); + } + }); + + regions.each(function () { + var content = $(this).children(self.settings.content_selector); + content.css('minHeight', content_min_height); + + // Remove 2 pixels to account for the right-shift in the CSS + content.css('maxWidth', content_min_width - 2); + }); + + } else { + regions.each(function () { + var region = $(this), + title = region.children(self.settings.title_selector), + content = region.children(self.settings.content_selector); + if (!self.rtl) { + content + .css({left: title.position().left - 1, + top: self.outerHeight(title) - 2}); + } else { + content + .css({right: self.position_right(title) + 1, + top: self.outerHeight(title) - 2}); + } + }); + + // temporary work around for Zepto outerheight calculation issues. + if (typeof Zepto === 'function') { + section.height(this.outerHeight($(titles[0]))); + } else { + section.height(this.outerHeight($(titles[0])) - 2); + } + } + } + }, + + position_right : function (el) { + var self = this, + section = el.closest(this.settings.section_selector), + regions = section.children(this.settings.region_selector), + section_width = el.closest(this.settings.section_selector).width(), + offset = regions + .map(function () { + return $(this).children(self.settings.title_selector); + }).length; + return (section_width - el.position().left - el.width() * (el.index() + 1) - offset); + }, + + reflow : function (scope) { + var scope = scope || document; + $(this.settings.section_selector, scope).trigger('resize'); + }, + + small : function (el) { + var settings = $.extend({}, this.settings, this.data_options(el)); + + if (this.is_horizontal_tabs(el)) { + return false; + } + if (el && this.is_accordion(el)) { + return true; + } + if ($('html').hasClass('lt-ie9')) { + return true; + } + if ($('html').hasClass('ie8compat')) { + return true; + } + return $(this.scope).width() < settings.small_breakpoint; + }, + + off : function () { + $(this.scope).off('.fndtn.section'); + $(window).off('.fndtn.section'); + $(document).off('.fndtn.section') + } + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.tooltips.js b/js/foundation/foundation.tooltips.js new file mode 100644 index 00000000..bb5d4ac5 --- /dev/null +++ b/js/foundation/foundation.tooltips.js @@ -0,0 +1,208 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.tooltips = { + name: 'tooltips', + + version : '4.2.2', + + settings : { + selector : '.has-tip', + additionalInheritableClasses : [], + tooltipClass : '.tooltip', + appendTo: 'body', + 'disable-for-touch': false, + tipTemplate : function (selector, content) { + return '' + content + ''; + } + }, + + cache : {}, + + init : function (scope, method, options) { + Foundation.inherit(this, 'data_options'); + var self = this; + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } else if (typeof options !== 'undefined') { + $.extend(true, this.settings, options); + } + + if (typeof method !== 'string') { + if (Modernizr.touch) { + $(this.scope) + .on('click.fndtn.tooltip touchstart.fndtn.tooltip touchend.fndtn.tooltip', + '[data-tooltip]', function (e) { + var settings = $.extend({}, self.settings, self.data_options($(this))); + if (!settings['disable-for-touch']) { + e.preventDefault(); + $(settings.tooltipClass).hide(); + self.showOrCreateTip($(this)); + } + }) + .on('click.fndtn.tooltip touchstart.fndtn.tooltip touchend.fndtn.tooltip', + this.settings.tooltipClass, function (e) { + e.preventDefault(); + $(this).fadeOut(150); + }); + } else { + $(this.scope) + .on('mouseenter.fndtn.tooltip mouseleave.fndtn.tooltip', + '[data-tooltip]', function (e) { + var $this = $(this); + + if (/enter|over/i.test(e.type)) { + self.showOrCreateTip($this); + } else if (e.type === 'mouseout' || e.type === 'mouseleave') { + self.hide($this); + } + }); + } + + // $(this.scope).data('fndtn-tooltips', true); + } else { + return this[method].call(this, options); + } + + }, + + showOrCreateTip : function ($target) { + var $tip = this.getTip($target); + + if ($tip && $tip.length > 0) { + return this.show($target); + } + + return this.create($target); + }, + + getTip : function ($target) { + var selector = this.selector($target), + tip = null; + + if (selector) { + tip = $('span[data-selector="' + selector + '"]' + this.settings.tooltipClass); + } + + return (typeof tip === 'object') ? tip : false; + }, + + selector : function ($target) { + var id = $target.attr('id'), + dataSelector = $target.attr('data-tooltip') || $target.attr('data-selector'); + + if ((id && id.length < 1 || !id) && typeof dataSelector != 'string') { + dataSelector = 'tooltip' + Math.random().toString(36).substring(7); + $target.attr('data-selector', dataSelector); + } + + return (id && id.length > 0) ? id : dataSelector; + }, + + create : function ($target) { + var $tip = $(this.settings.tipTemplate(this.selector($target), $('
            ').html($target.attr('title')).html())), + classes = this.inheritable_classes($target); + + $tip.addClass(classes).appendTo(this.settings.appendTo); + if (Modernizr.touch) { + $tip.append('tap to close '); + } + $target.removeAttr('title').attr('title',''); + this.show($target); + }, + + reposition : function (target, tip, classes) { + var width, nub, nubHeight, nubWidth, column, objPos; + + tip.css('visibility', 'hidden').show(); + + width = target.data('width'); + nub = tip.children('.nub'); + nubHeight = this.outerHeight(nub); + nubWidth = this.outerHeight(nub); + + objPos = function (obj, top, right, bottom, left, width) { + return obj.css({ + 'top' : (top) ? top : 'auto', + 'bottom' : (bottom) ? bottom : 'auto', + 'left' : (left) ? left : 'auto', + 'right' : (right) ? right : 'auto', + 'width' : (width) ? width : 'auto' + }).end(); + }; + + objPos(tip, (target.offset().top + this.outerHeight(target) + 10), 'auto', 'auto', target.offset().left, width); + + if ($(window).width() < 767) { + objPos(tip, (target.offset().top + this.outerHeight(target) + 10), 'auto', 'auto', 12.5, $(this.scope).width()); + tip.addClass('tip-override'); + objPos(nub, -nubHeight, 'auto', 'auto', target.offset().left); + } else { + var left = target.offset().left; + if (Foundation.rtl) { + left = target.offset().left + target.offset().width - this.outerWidth(tip); + } + objPos(tip, (target.offset().top + this.outerHeight(target) + 10), 'auto', 'auto', left, width); + tip.removeClass('tip-override'); + if (classes && classes.indexOf('tip-top') > -1) { + objPos(tip, (target.offset().top - this.outerHeight(tip)), 'auto', 'auto', left, width) + .removeClass('tip-override'); + } else if (classes && classes.indexOf('tip-left') > -1) { + objPos(tip, (target.offset().top + (this.outerHeight(target) / 2) - nubHeight*2.5), 'auto', 'auto', (target.offset().left - this.outerWidth(tip) - nubHeight), width) + .removeClass('tip-override'); + } else if (classes && classes.indexOf('tip-right') > -1) { + objPos(tip, (target.offset().top + (this.outerHeight(target) / 2) - nubHeight*2.5), 'auto', 'auto', (target.offset().left + this.outerWidth(target) + nubHeight), width) + .removeClass('tip-override'); + } + } + + tip.css('visibility', 'visible').hide(); + }, + + inheritable_classes : function (target) { + var inheritables = ['tip-top', 'tip-left', 'tip-bottom', 'tip-right', 'noradius'].concat(this.settings.additionalInheritableClasses), + classes = target.attr('class'), + filtered = classes ? $.map(classes.split(' '), function (el, i) { + if ($.inArray(el, inheritables) !== -1) { + return el; + } + }).join(' ') : ''; + + return $.trim(filtered); + }, + + show : function ($target) { + var $tip = this.getTip($target); + + this.reposition($target, $tip, $target.attr('class')); + $tip.fadeIn(150); + }, + + hide : function ($target) { + var $tip = this.getTip($target); + + $tip.fadeOut(150); + }, + + // deprecate reload + reload : function () { + var $self = $(this); + + return ($self.data('fndtn-tooltips')) ? $self.foundationTooltips('destroy').foundationTooltips('init') : $self.foundationTooltips('init'); + }, + + off : function () { + $(this.scope).off('.fndtn.tooltip'); + $(this.settings.tooltipClass).each(function (i) { + $('[data-tooltip]').get(i).attr('title', $(this).text()); + }).remove(); + }, + + reflow : function () {} + }; +}(Foundation.zj, this, this.document)); diff --git a/js/foundation/foundation.topbar.js b/js/foundation/foundation.topbar.js new file mode 100644 index 00000000..4486431d --- /dev/null +++ b/js/foundation/foundation.topbar.js @@ -0,0 +1,297 @@ +/*jslint unparam: true, browser: true, indent: 2 */ + +;(function ($, window, document, undefined) { + 'use strict'; + + Foundation.libs.topbar = { + name : 'topbar', + + version : '4.2.2', + + settings : { + index : 0, + stickyClass : 'sticky', + custom_back_text: true, + back_text: 'Back', + is_hover: true, + scrolltop : true, // jump to top when sticky nav menu toggle is clicked + init : false + }, + + init : function (section, method, options) { + Foundation.inherit(this, 'data_options'); + var self = this; + + if (typeof method === 'object') { + $.extend(true, this.settings, method); + } else if (typeof options !== 'undefined') { + $.extend(true, this.settings, options); + } + + if (typeof method !== 'string') { + + $('.top-bar, [data-topbar]').each(function () { + $.extend(true, self.settings, self.data_options($(this))); + self.settings.$w = $(window); + self.settings.$topbar = $(this); + self.settings.$section = self.settings.$topbar.find('section'); + self.settings.$titlebar = self.settings.$topbar.children('ul').first(); + self.settings.$topbar.data('index', 0); + + var breakpoint = $("
            ").insertAfter(self.settings.$topbar); + self.settings.breakPoint = breakpoint.width(); + breakpoint.remove(); + + self.assemble(); + + if (self.settings.$topbar.parent().hasClass('fixed')) { + $('body').css('padding-top', self.outerHeight(self.settings.$topbar)); + } + }); + + if (!self.settings.init) { + this.events(); + } + + return this.settings.init; + } else { + // fire method + return this[method].call(this, options); + } + }, + + events : function () { + var self = this; + var offst = this.outerHeight($('.top-bar, [data-topbar]')); + $(this.scope) + .off('.fndtn.topbar') + .on('click.fndtn.topbar', '.top-bar .toggle-topbar, [data-topbar] .toggle-topbar', function (e) { + var topbar = $(this).closest('.top-bar, [data-topbar]'), + section = topbar.find('section, .section'), + titlebar = topbar.children('ul').first(); + + e.preventDefault(); + + if (self.breakpoint()) { + if (!self.rtl) { + section.css({left: '0%'}); + section.find('>.name').css({left: '100%'}); + } else { + section.css({right: '0%'}); + section.find('>.name').css({right: '100%'}); + } + + section.find('li.moved').removeClass('moved'); + topbar.data('index', 0); + + topbar + .toggleClass('expanded') + .css('max-height', ''); + } + + if (!topbar.hasClass('expanded')) { + if (topbar.hasClass('fixed')) { + topbar.parent().addClass('fixed'); + topbar.removeClass('fixed'); + $('body').css('padding-top',offst); + } + } else if (topbar.parent().hasClass('fixed')) { + topbar.parent().removeClass('fixed'); + topbar.addClass('fixed'); + $('body').css('padding-top','0'); + + if (self.settings.scrolltop) { + window.scrollTo(0,0); + } + } + }) + + .on('mouseenter mouseleave', '.top-bar li', function (e) { + if (!self.settings.is_hover) return; + + if (/enter|over/i.test(e.type)) { + $(this).addClass('hover'); + } else { + $(this).removeClass('hover'); + } + }) + + .on('click.fndtn.topbar', '.top-bar li.has-dropdown', function (e) { + if (self.breakpoint()) return; + + var li = $(this), + target = $(e.target), + topbar = li.closest('[data-topbar], .top-bar'), + is_hover = topbar.data('topbar'); + + if (self.settings.is_hover && !Modernizr.touch) return; + + e.stopImmediatePropagation(); + + if (target[0].nodeName === 'A' && target.parent().hasClass('has-dropdown')) { + e.preventDefault(); + } + + if (li.hasClass('hover')) { + li + .removeClass('hover') + .find('li') + .removeClass('hover'); + } else { + li.addClass('hover'); + } + }) + + .on('click.fndtn.topbar', '.top-bar .has-dropdown>a, [data-topbar] .has-dropdown>a', function (e) { + if (self.breakpoint()) { + e.preventDefault(); + + var $this = $(this), + topbar = $this.closest('.top-bar, [data-topbar]'), + section = topbar.find('section, .section'), + titlebar = topbar.children('ul').first(), + dropdownHeight = $this.next('.dropdown').outerHeight(), + $selectedLi = $this.closest('li'); + + topbar.data('index', topbar.data('index') + 1); + $selectedLi.addClass('moved'); + + if (!self.rtl) { + section.css({left: -(100 * topbar.data('index')) + '%'}); + section.find('>.name').css({left: 100 * topbar.data('index') + '%'}); + } else { + section.css({right: -(100 * topbar.data('index')) + '%'}); + section.find('>.name').css({right: 100 * topbar.data('index') + '%'}); + } + + topbar.css('max-height', self.height($this.siblings('ul')) + self.outerHeight(titlebar, true)); + } + }); + + $(window).on('resize.fndtn.topbar', function () { + if (!self.breakpoint()) { + $('.top-bar, [data-topbar]') + .css('max-height', '') + .removeClass('expanded') + .find('li') + .removeClass('hover'); + } + }.bind(this)); + + $('body').on('click.fndtn.topbar', function (e) { + var parent = $(e.target).closest('[data-topbar], .top-bar'); + + if (parent.length > 0) { + return; + } + + $('.top-bar li, [data-topbar] li').removeClass('hover'); + }); + + // Go up a level on Click + $(this.scope).on('click.fndtn', '.top-bar .has-dropdown .back, [data-topbar] .has-dropdown .back', function (e) { + e.preventDefault(); + + var $this = $(this), + topbar = $this.closest('.top-bar, [data-topbar]'), + titlebar = topbar.children('ul').first(), + section = topbar.find('section, .section'), + $movedLi = $this.closest('li.moved'), + $previousLevelUl = $movedLi.parent(); + + topbar.data('index', topbar.data('index') - 1); + + if (!self.rtl) { + section.css({left: -(100 * topbar.data('index')) + '%'}); + section.find('>.name').css({left: 100 * topbar.data('index') + '%'}); + } else { + section.css({right: -(100 * topbar.data('index')) + '%'}); + section.find('>.name').css({right: 100 * topbar.data('index') + '%'}); + } + + if (topbar.data('index') === 0) { + topbar.css('max-height', ''); + } else { + topbar.css('max-height', self.height($previousLevelUl) + self.outerHeight(titlebar, true)); + } + + setTimeout(function () { + $movedLi.removeClass('moved'); + }, 300); + }); + }, + + breakpoint : function () { + return $(document).width() <= this.settings.breakPoint || $('html').hasClass('lt-ie9'); + }, + + assemble : function () { + var self = this; + // Pull element out of the DOM for manipulation + this.settings.$section.detach(); + + this.settings.$section.find('.has-dropdown>a').each(function () { + var $link = $(this), + $dropdown = $link.siblings('.dropdown'), + url = $link.attr('href'); + + if (url && url.length > 1) { + var $titleLi = $('
          2. ' + $link.text() +'
          3. '); + } else { + var $titleLi = $('
          4. '); + } + + // Copy link to subnav + if (self.settings.custom_back_text == true) { + $titleLi.find('h5>a').html('« ' + self.settings.back_text); + } else { + $titleLi.find('h5>a').html('« ' + $link.html()); + } + $dropdown.prepend($titleLi); + }); + + // Put element back in the DOM + this.settings.$section.appendTo(this.settings.$topbar); + + // check for sticky + this.sticky(); + }, + + height : function (ul) { + var total = 0, + self = this; + + ul.find('> li').each(function () { total += self.outerHeight($(this), true); }); + + return total; + }, + + sticky : function () { + var klass = '.' + this.settings.stickyClass; + if ($(klass).length > 0) { + var distance = $(klass).length ? $(klass).offset().top: 0, + $window = $(window); + var offst = this.outerHeight($('.top-bar')); + + $window.scroll(function() { + if ($window.scrollTop() >= (distance)) { + $(klass).addClass("fixed"); + $('body').css('padding-top',offst); + } + + else if ($window.scrollTop() < distance) { + $(klass).removeClass("fixed"); + $('body').css('padding-top','0'); + } + }); + } + }, + + off : function () { + $(this.scope).off('.fndtn.topbar'); + $(window).off('.fndtn.topbar'); + }, + + reflow : function () {} + }; +}(Foundation.zj, this, this.document)); diff --git a/js/prism-ruby-language.js b/js/prism-ruby-language.js new file mode 100644 index 00000000..07aee11e --- /dev/null +++ b/js/prism-ruby-language.js @@ -0,0 +1,26 @@ +(function(){ + +if(!window.Prism) { + return; +} + +Prism.languages.ruby = { + 'comment': /#[^\r\n]*(\r?\n|$)/g, + 'string': /("|')(\\?.)*?\1/g, + 'regex': { + pattern: /(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/g, + lookbehind: true + }, + 'keyword': /\b(alias|and|BEGIN|begin|break|case|class|def|define_method|defined|do|each|else|elsif|END|end|ensure|false|for|if|in|module|new|next|nil|not|or|raise|redo|rescue|retry|return|self|super|then|throw|true|undef|unless|until|when|while|yield|desc|task|on|within|as|with|capture|execute|test|role|server)\b/g, + 'builtin': /\b(Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Stat|File|Fixnum|Fload|Hash|Integer|IO|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|String|Struct|TMS|Symbol|ThreadGroup|Thread|Time|TrueClass)\b/, + 'boolean': /\b(true|false)\b/g, + 'number': /\b-?(0x)?\d*\.?\d+\b/g, + 'operator': /[-+]{1,2}|!|=?<|=?>|={1,2}|(&){1,2}|\|?\||\?|\*|\//g, + 'inst-var': /[@&]\b[a-zA-Z_][a-zA-Z_0-9]*[?!]?\b/g, + 'symbol': /:\b[a-zA-Z_][a-zA-Z_0-9]*[?!]?\b/g, + 'const': /\b[A-Z][a-zA-Z_0-9]*[?!]?\b/g, + 'ignore': /&(lt|gt|amp);/gi, + 'punctuation': /[{}[\];(),.:]/g +}; + +})(); diff --git a/js/prism.js b/js/prism.js new file mode 100644 index 00000000..a68ebe6a --- /dev/null +++ b/js/prism.js @@ -0,0 +1,9 @@ +/** + * Prism: Lightweight, robust, elegant syntax highlighting + * MIT license http://www.opensource.org/licenses/mit-license.php/ + * @author Lea Verou http://lea.verou.me + */(function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=self.Prism={util:{type:function(e){return Object.prototype.toString.call(e).match(/\[object (\w+)\]/)[1]},clone:function(e){var n=t.util.type(e);switch(n){case"Object":var r={};for(var i in e)e.hasOwnProperty(i)&&(r[i]=t.util.clone(e[i]));return r;case"Array":return e.slice()}return e}},languages:{extend:function(e,n){var r=t.util.clone(t.languages[e]);for(var i in n)r[i]=n[i];return r},insertBefore:function(e,n,r,i){i=i||t.languages;var s=i[e],o={};for(var u in s)if(s.hasOwnProperty(u)){if(u==n)for(var a in r)r.hasOwnProperty(a)&&(o[a]=r[a]);o[u]=s[u]}return i[e]=o},DFS:function(e,n){for(var r in e){n.call(e,r,e[r]);t.util.type(e)==="Object"&&t.languages.DFS(e[r],n)}}},highlightAll:function(e,n){var r=document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code');for(var i=0,s;s=r[i++];)t.highlightElement(s,e===!0,n)},highlightElement:function(r,i,s){var o,u,a=r;while(a&&!e.test(a.className))a=a.parentNode;if(a){o=(a.className.match(e)||[,""])[1];u=t.languages[o]}if(!u)return;r.className=r.className.replace(e,"").replace(/\s+/g," ")+" language-"+o;a=r.parentNode;/pre/i.test(a.nodeName)&&(a.className=a.className.replace(e,"").replace(/\s+/g," ")+" language-"+o);var f=r.textContent;if(!f)return;f=f.replace(/&/g,"&").replace(/e.length)break e;if(p instanceof i)continue;a.lastIndex=0;var d=a.exec(p);if(d){l&&(c=d[1].length);var v=d.index-1+c,d=d[0].slice(c),m=d.length,g=v+m,y=p.slice(0,v+1),b=p.slice(g+1),w=[h,1];y&&w.push(y);var E=new i(u,f?t.tokenize(d,f):d);w.push(E);b&&w.push(b);Array.prototype.splice.apply(s,w)}}}return s},hooks:{all:{},add:function(e,n){var r=t.hooks.all;r[e]=r[e]||[];r[e].push(n)},run:function(e,n){var r=t.hooks.all[e];if(!r||!r.length)return;for(var i=0,s;s=r[i++];)s(n)}}},n=t.Token=function(e,t){this.type=e;this.content=t};n.stringify=function(e,r,i){if(typeof e=="string")return e;if(Object.prototype.toString.call(e)=="[object Array]")return e.map(function(t){return n.stringify(t,r,e)}).join("");var s={type:e.type,content:n.stringify(e.content,r,i),tag:"span",classes:["token",e.type],attributes:{},language:r,parent:i};s.type=="comment"&&(s.attributes.spellcheck="true");t.hooks.run("wrap",s);var o="";for(var u in s.attributes)o+=u+'="'+(s.attributes[u]||"")+'"';return"<"+s.tag+' class="'+s.classes.join(" ")+'" '+o+">"+s.content+""};if(!self.document){self.addEventListener("message",function(e){var n=JSON.parse(e.data),r=n.language,i=n.code;self.postMessage(JSON.stringify(t.tokenize(i,t.languages[r])));self.close()},!1);return}var r=document.getElementsByTagName("script");r=r[r.length-1];if(r){t.filename=r.src;document.addEventListener&&!r.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)}})();; +Prism.languages.markup={comment:/<!--[\w\W]*?-->/g,prolog:/<\?.+?\?>/,doctype:/<!DOCTYPE.+?>/,cdata:/<!\[CDATA\[[\w\W]*?]]>/i,tag:{pattern:/<\/?[\w:-]+\s*(?:\s+[\w:-]+(?:=(?:("|')(\\?[\w\W])*?\1|\w+))?\s*)*\/?>/gi,inside:{tag:{pattern:/^<\/?[\w:-]+/i,inside:{punctuation:/^<\/?/,namespace:/^[\w-]+?:/}},"attr-value":{pattern:/=(?:('|")[\w\W]*?(\1)|[^\s>]+)/gi,inside:{punctuation:/=|>|"/g}},punctuation:/\/?>/g,"attr-name":{pattern:/[\w:-]+/g,inside:{namespace:/^[\w-]+?:/}}}},entity:/&#?[\da-z]{1,8};/gi};Prism.hooks.add("wrap",function(e){e.type==="entity"&&(e.attributes.title=e.content.replace(/&/,"&"))});; +Prism.languages.css={comment:/\/\*[\w\W]*?\*\//g,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*{))/gi,inside:{punctuation:/[;:]/g}},url:/url\((["']?).*?\1\)/gi,selector:/[^\{\}\s][^\{\};]*(?=\s*\{)/g,property:/(\b|\B)[\w-]+(?=\s*:)/ig,string:/("|')(\\?.)*?\1/g,important:/\B!important\b/gi,ignore:/&(lt|gt|amp);/gi,punctuation:/[\{\};:]/g};Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{style:{pattern:/(<|<)style[\w\W]*?(>|>)[\w\W]*?(<|<)\/style(>|>)/ig,inside:{tag:{pattern:/(<|<)style[\w\W]*?(>|>)|(<|<)\/style(>|>)/ig,inside:Prism.languages.markup.tag.inside},rest:Prism.languages.css}}});; +Prism.languages.clike={comment:{pattern:/(^|[^\\])(\/\*[\w\W]*?\*\/|(^|[^:])\/\/.*?(\r?\n|$))/g,lookbehind:!0},string:/("|')(\\?.)*?\1/g,"class-name":{pattern:/((?:class|interface|extends|implements|trait|instanceof|new)\s+)[a-z0-9_\.\\]+/ig,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|catch|finally|null|break|continue)\b/g,"boolean":/\b(true|false)\b/g,"function":{pattern:/[a-z0-9_]+\(/ig,inside:{punctuation:/\(/}},number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/g,operator:/[-+]{1,2}|!|=?<|=?>|={1,2}|(&){1,2}|\|?\||\?|\*|\/|\~|\^|\%/g,ignore:/&(lt|gt|amp);/gi,punctuation:/[{}[\];(),.:]/g};; +Prism.languages.javascript=Prism.languages.extend("clike",{keyword:/\b(var|let|if|else|while|do|for|return|in|instanceof|function|new|with|typeof|try|catch|finally|null|break|continue)\b/g,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?|NaN|-?Infinity)\b/g});Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\r\n])+\/[gim]{0,3}(?=\s*($|[\r\n,.;})]))/g,lookbehind:!0}});Prism.languages.markup&&Prism.languages.insertBefore("markup","tag",{script:{pattern:/(<|<)script[\w\W]*?(>|>)[\w\W]*?(<|<)\/script(>|>)/ig,inside:{tag:{pattern:/(<|<)script[\w\W]*?(>|>)|(<|<)\/script(>|>)/ig,inside:Prism.languages.markup.tag.inside},rest:Prism.languages.javascript}}});; diff --git a/js/rainbow-custom.min.js b/js/rainbow-custom.min.js new file mode 100644 index 00000000..37f75c2f --- /dev/null +++ b/js/rainbow-custom.min.js @@ -0,0 +1,43 @@ +/* Rainbow v1.2 rainbowco.de | included languages: c, shell, java, d, coffeescript, generic, scheme, javascript, r, haskell, python, html, smalltalk, csharp, go, php, ruby, lua, css */ +var k=!0; +window.Rainbow=function(){function r(a){var b,c=a.getAttribute&&a.getAttribute("data-language")||0;if(!c){a=a.attributes;for(b=0;b=f[d][c])delete f[d][c],delete j[d][c];if(a>=c&&ac&&b'+b+""}function t(a,b,c,i){var e=a.exec(c);if(e){++u;!b.name&&"string"==typeof b.matches[0]&&(b.name=b.matches[0],delete b.matches[0]);var l=e[0],g=e.index,v=e[0].length+g,h=function(){function e(){t(a,b,c,i)}u%100>0?e():setTimeout(e,0)};if(D(g,v))h();else{var n=w(b.matches),m=function(a,c,i){if(a>=c.length)i(l);else{var d=e[c[a]];if(d){var g=b.matches[c[a]],f=g.language,h=g.name&&g.matches? +g.matches:g,j=function(b,d,g){var f;f=0;var h;for(h=1;h/g,">").replace(/&(?![\w\#]+;)/g, +"&"),b,c)}function p(a,b,c){if(b|<=|>=|zero\?|positive\?|negative\?|odd\?|even\?|max|min|\+|\-|\*|\/|abs|quotient|remainder|modulo|gcd|lcm|numerator|denominator|floor|ceiling|truncate|round|rationalize|exp|log|sin|cos|tan|asin|acos|atan|sqrt|expt|make\-rectangular|make\-polar|real\-part|imag\-part|magnitude|angle|exact\->inexact|inexact\->exact|number\->string|string\->number|not|boolean\?|pair\?|cons|car|cdr|set\-car!|set\-cdr!|caar|cadr|cdar|cddr|caaar|caadr|cadar|caddr|cdaar|cdadr|cddar|cdddr|caaaar|caaadr|caadar|caaddr|cadaar|cadadr|caddar|cadddr|cdaaar|cdaadr|cdadar|cdaddr|cddaar|cddadr|cdddar|cddddr|null\?|list\?|list|length|append|reverse|list\-tail|list\-ref|memq|memv|member|assq|assv|assoc|symbol\?|symbol\->string|string\->symbol|char\?|char=\?|char<\?|char>\?|char<=\?|char>=\?|char\-ci=\?|char\-ci<\?|char\-ci>\?|char\-ci<=\?|char\-ci>=\?|char\-alphabetic\?|char\-numeric\?|char\-whitespace\?|char\-upper\-case\?|char\-lower\-case\?|char\->integer|integer\->char|char\-upcase|char\-downcase|string\?|make\-string|string|string\-length|string\-ref|string\-set!|string=\?|string\-ci=\?|string<\?|string>\?|string<=\?|string>=\?|string\-ci<\?|string\-ci>\?|string\-ci<=\?|string\-ci>=\?|substring|string\-append|string\->list|list\->string|string\-copy|string\-fill!|vector\?|make\-vector|vector|vector\-length|vector\-ref|vector\-set!|vector\->list|list\->vector|vector\-fill!|procedure\?|apply|map|for\-each|force|call\-with\-current\-continuation|call\/cc|values|call\-with\-values|dynamic\-wind|eval|scheme\-report\-environment|null\-environment|interaction\-environment|call\-with\-input\-file|call\-with\-output\-file|input\-port\?|output\-port\?|current\-input\-port|current\-output\-port|with\-input\-from\-file|with\-output\-to\-file|open\-input\-file|open\-output\-file|close\-input\-port|close\-output\-port|read|read\-char|peek\-char|eof\-object\?|char\-ready\?|write|display|newline|write\-char|load|transcript\-on|transcript\-off)(?=[\]()\s#])/g}], +k);Rainbow.extend("javascript",[{name:"selector",pattern:/(\s|^)\$(?=\.|\()/g},{name:"support",pattern:/\b(window|document)\b/g},{matches:{1:"support.property"},pattern:/\.(length|node(Name|Value))\b/g},{matches:{1:"support.function"},pattern:/(setTimeout|setInterval)(?=\()/g},{matches:{1:"support.method"},pattern:/\.(getAttribute|push|getElementById|getElementsByClassName|log|setTimeout|setInterval)(?=\()/g},{matches:{1:"support.tag.script",2:[{name:"string",pattern:/('|")(.*?)(\1)/g},{name:"entity.tag.script", +pattern:/(\w+)/g}],3:"support.tag.script"},pattern:/(<\/?)(script.*?)(>)/g},{name:"string.regexp",matches:{1:"string.regexp.open",2:{name:"constant.regexp.escape",pattern:/\\(.){1}/g},3:"string.regexp.close",4:"string.regexp.modifier"},pattern:/(\/)(?!\*)(.+)(\/)([igm]{0,3})/g},{matches:{1:"storage",3:"entity.function"},pattern:/(var)?(\s|^)(\S*)(?=\s?=\s?function\()/g},{matches:{1:"keyword",2:"entity.function"},pattern:/(new)\s+(.*)(?=\()/g},{name:"entity.function",pattern:/(\w+)(?=:\s{0,}function)/g}]);Rainbow.extend("r",[{matches:{1:{name:"keyword.operator",pattern:/\=|<\-|<-/g},2:{name:"string",matches:{name:"constant.character.escape",pattern:/\\('|"){1}/g}}},pattern:/(\(|\s|\[|\=|:)(('|")([^\\\1]|\\.)*?(\3))/gm},{matches:{1:"constant.language"},pattern:/\b(NULL|NA|TRUE|FALSE|T|F|NaN|Inf|NA_integer_|NA_real_|NA_complex_|NA_character_)\b/g},{matches:{1:"constant.symbol"},pattern:/[^0-9a-zA-Z\._](LETTERS|letters|month\.(abb|name)|pi)/g},{name:"keyword.operator",pattern:/<-|<-|-|==|<=|<=|>>|>=|<|>|&&|&&|&|&|!=|\|\|?|\*|\+|\^|\/|%%|%\/%|\=|%in%|%\*%|%o%|%x%|\$|:|~|\[{1,2}|\]{1,2}/g}, +{matches:{1:"storage",3:"entity.function"},pattern:/(\s|^)(.*)(?=\s?=\s?function\s\()/g},{matches:{1:"storage.function"},pattern:/[^a-zA-Z0-9._](function)(?=\s*\()/g},{matches:{1:"namespace",2:"keyword.operator",3:"function.call"},pattern:/([a-zA-Z][a-zA-Z0-9._]+)([:]{2,3})([.a-zA-Z][a-zA-Z0-9._]*(?=\s*\())\b/g},{name:"support.function",pattern:/(^|[^0-9a-zA-Z\._])(array|character|complex|data\.frame|double|integer|list|logical|matrix|numeric|vector)(?=\s*\()/g}]);Rainbow.extend("haskell",[{name:"comment",pattern:/\{\-\-[\s\S(\w+)]+[\-\-][\}$]/gm},{name:"comment",pattern:/\-\-(.*)/g},{matches:{1:"keyword",2:"support.namespace"},pattern:/\b(module)\s(\w+)\s[\(]?(\w+)?[\)?]\swhere/g},{name:"keyword.operator",pattern:/\+|\!|\-|&(gt|lt|amp);|\/\=|\||\@|\:|\.|\+{2}|\:|\*|\=|#|\.{2}|(\\)[a-zA-Z_]/g},{name:"keyword",pattern:/\b(case|class|foreign|hiding|qualified|data|family|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|in|otherwise|module|newtype|of|then|type|where)\b/g}, +{name:"keyword",pattern:/[\`][a-zA-Z_']*?[\`]/g},{matches:{1:"keyword",2:"keyword.operator"},pattern:/\b(infix|infixr|infixl)+\s\d+\s(\w+)*/g},{name:"entity.class",pattern:/\b([A-Z][A-Za-z0-9_']*)/g},{name:"meta.preprocessor",matches:{1:[{matches:{1:"keyword.define",2:"entity.name"},pattern:/(\w+)\s(\w+)\b/g},{name:"keyword.define",pattern:/endif/g},{name:"constant.numeric",pattern:/\d+/g},{matches:{1:"keyword.include",2:"string"},pattern:/(include)\s(.*?)$/g}]},pattern:/^\#([\S\s]*?)$/gm}]);Rainbow.extend("python",[{name:"variable.self",pattern:/self/g},{name:"constant.language",pattern:/None|True|False|NotImplemented|\.\.\./g},{name:"support.object",pattern:/object/g},{name:"support.function.python",pattern:/\b(bs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|bin|file|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern)(?=\()/g}, +{matches:{1:"keyword"},pattern:/\b(pass|lambda|with|is|not|in|from|elif|raise|del)(?=\(|\b)/g},{matches:{1:"storage.class",2:"entity.name.class",3:"entity.other.inherited-class"},pattern:/(class)\s+(\w+)\((\w+?)\)/g},{matches:{1:"storage.function",2:"support.magic"},pattern:/(def)\s+(__\w+)(?=\()/g},{name:"support.magic",pattern:/__(name)__/g},{matches:{1:"keyword.control",2:"support.exception.type"},pattern:/(except) (\w+):/g},{matches:{1:"storage.function",2:"entity.name.function"},pattern:/(def)\s+(\w+)(?=\()/g}, +{name:"entity.name.function.decorator",pattern:/@([\w\.]+)/g},{name:"comment.docstring",pattern:/('{3}|"{3})[\s\S]*?\1/gm}]);Rainbow.extend("html",[{name:"source.php.embedded",matches:{2:{language:"php"}},pattern:/<\?=?(?!xml)(php)?([\s\S]*?)(\?>)/gm},{name:"source.css.embedded",matches:{"0":{language:"css"}},pattern:/<style(.*?)>([\s\S]*?)<\/style>/gm},{name:"source.js.embedded",matches:{"0":{language:"javascript"}},pattern:/<script(?! src)(.*?)>([\s\S]*?)<\/script>/gm},{name:"comment.html",pattern:/<\!--[\S\s]*?-->/g},{matches:{1:"support.tag.open",2:"support.tag.close"},pattern:/(<)|(\/?\??>)/g}, +{name:"support.tag",matches:{1:"support.tag",2:"support.tag.special",3:"support.tag-name"},pattern:/(<\??)(\/|\!?)(\w+)/g},{matches:{1:"support.attribute"},pattern:/([a-z-]+)(?=\=)/gi},{matches:{1:"support.operator",2:"string.quote",3:"string.value",4:"string.quote"},pattern:/(=)('|")(.*?)(\2)/g},{matches:{1:"support.operator",2:"support.value"},pattern:/(=)([a-zA-Z\-0-9]*)\b/g},{matches:{1:"support.attribute"},pattern:/\s(\w+)(?=\s|>)(?![\s\S]*<)/g}],k);Rainbow.extend("smalltalk",[{name:"keyword.pseudovariable",pattern:/self|thisContext/g},{name:"keyword.constant",pattern:/false|nil|true/g},{name:"string",pattern:/'([^']|'')*'/g},{name:"string.symbol",pattern:/#\w+|#'([^']|'')*'/g},{name:"string.character",pattern:/\$\w+/g},{name:"comment",pattern:/"([^"]|"")*"/g},{name:"constant.numeric",pattern:/-?\d+(\.\d+)?((r-?|s)[A-Za-z0-9]+|e-?[0-9]+)?/g},{name:"entity.name.class",pattern:/\b[A-Z]\w*/g},{name:"entity.name.function",pattern:/\b[a-z]\w*:?/g}, +{name:"entity.name.binary",pattern:/(<|>|&|[=~\|\\\/!@*\-_+])+/g},{name:"operator.delimiter",pattern:/;[\(\)\[\]\{\}]|#\[|#\(^\./g}],k);Rainbow.extend("csharp",[{name:"constant",pattern:/\b(false|null|true)\b/g},{name:"keyword",pattern:/\b(abstract|add|alias|ascending|as|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|descending|double|do|dynamic|else|enum|event|explicit|extern|false|finally|fixed|float|foreach|for|from|get|global|goto|group|if|implicit|int|interface|internal|into|in|is|join|let|lock|long|namespace|new|object|operator|orderby|out|override|params|partial|private|protected|public|readonly|ref|remove|return|sbyte|sealed|select|set|short|sizeof|stackalloc|static|string|struct|switch|this|throw|try|typeof|uint|unchecked|ulong|unsafe|ushort|using|value|var|virtual|void|volatile|where|while|yield)\b/g}, +{matches:{1:"keyword",2:{name:"support.class",pattern:/\w+/g}},pattern:/(typeof)\s([^\$].*?)(\)|;)/g},{matches:{1:"keyword.namespace",2:{name:"support.namespace",pattern:/\w+/g}},pattern:/\b(namespace)\s(.*?);/g},{matches:{1:"storage.modifier",2:"storage.class",3:"entity.name.class",4:"storage.modifier.extends",5:"entity.other.inherited-class"},pattern:/\b(abstract|sealed)?\s?(class)\s(\w+)(\sextends\s)?([\w\\]*)?\s?\{?(\n|\})/g},{name:"keyword.static",pattern:/\b(static)\b/g},{matches:{1:"keyword.new", +2:{name:"support.class",pattern:/\w+/g}},pattern:/\b(new)\s([^\$].*?)(?=\)|\(|;|&)/g},{name:"string",pattern:/(")(.*?)\1/g},{name:"integer",pattern:/\b(0x[\da-f]+|\d+)\b/g},{name:"comment",pattern:/\/\*[\s\S]*?\*\/|(\/\/)[\s\S]*?$/gm},{name:"operator",pattern:/(\+\+|\+=|\+|--|-=|-|<<=|<<|<=|=>|>>=|>>|>=|!=|!|~|\^|\|\||&&|&=|&|\?\?|::|:|\*=|\*|\/=|%=|\|=|==|=)/g},{name:"preprocessor",pattern:/(\#if|\#else|\#elif|\#endif|\#define|\#undef|\#warning|\#error|\#line|\#region|\#endregion|\#pragma)[\s\S]*?$/gm}], +k);Rainbow.extend("go",[{matches:{1:{name:"keyword.operator",pattern:/\=/g},2:{name:"string",matches:{name:"constant.character.escape",pattern:/\\(`|"){1}/g}}},pattern:/(\(|\s|\[|\=|:)((`|")([^\\\1]|\\.)*?(\3))/gm},{name:"comment",pattern:/\/\*[\s\S]*?\*\/|(\/\/)[\s\S]*?$/gm},{name:"constant.numeric",pattern:/\b(\d+(\.\d+)?(e(\+|\-)?\d+)?(f|d)?|0x[\da-f]+)\b/gi},{matches:{1:"keyword"},pattern:/\b(break|c(ase|onst|ontinue)|d(efault|efer)|else|fallthrough|for|go(to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)(?=\(|\b)/gi}, +{name:"constant.language",pattern:/true|false|null|string|byte|rune|u?int(8|16|32|64)?|float(32|64)|complex(64|128)/g},{name:"keyword.operator",pattern:/\+|\!|\-|&(gt|lt|amp);|\||\*|\:?=/g},{matches:{1:"function.call"},pattern:/(\w+?)(?=\()/g},{matches:{1:"storage.function",2:"entity.name.function"},pattern:/(func)\s(.*?)(?=\()/g}]);Rainbow.extend("php",[{name:"support",pattern:/\becho\b/g},{matches:{1:"variable.dollar-sign",2:"variable"},pattern:/(\$)(\w+)\b/g},{name:"constant.language",pattern:/true|false|null/ig},{name:"constant",pattern:/\b[A-Z0-9_]{2,}\b/g},{name:"keyword.dot",pattern:/\./g},{name:"keyword",pattern:/\b(die|end(for(each)?|switch|if)|case|require(_once)?|include(_once)?)(?=\(|\b)/g},{matches:{1:"keyword",2:{name:"support.class",pattern:/\w+/g}},pattern:/(instanceof)\s([^\$].*?)(\)|;)/g},{matches:{1:"support.function"}, +pattern:/\b(array(_key_exists|_merge|_keys|_shift)?|isset|count|empty|unset|printf|is_(array|string|numeric|object)|sprintf|each|date|time|substr|pos|str(len|pos|tolower|_replace|totime)?|ord|trim|in_array|implode|end|preg_match|explode|fmod|define|link|list|get_class|serialize|file|sort|mail|dir|idate|log|intval|header|chr|function_exists|dirname|preg_replace|file_exists)(?=\()/g},{name:"variable.language.php-tag",pattern:/(<\?(php)?|\?>)/g},{matches:{1:"keyword.namespace",2:{name:"support.namespace", +pattern:/\w+/g}},pattern:/\b(namespace|use)\s(.*?);/g},{matches:{1:"storage.modifier",2:"storage.class",3:"entity.name.class",4:"storage.modifier.extends",5:"entity.other.inherited-class",6:"storage.modifier.extends",7:"entity.other.inherited-class"},pattern:/\b(abstract|final)?\s?(class|interface|trait)\s(\w+)(\sextends\s)?([\w\\]*)?(\simplements\s)?([\w\\]*)?\s?\{?(\n|\})/g},{name:"keyword.static",pattern:/self::|static::/g},{matches:{1:"storage.function",2:"support.magic"},pattern:/(function)\s(__.*?)(?=\()/g}, +{matches:{1:"keyword.new",2:{name:"support.class",pattern:/\w+/g}},pattern:/\b(new)\s([^\$].*?)(?=\)|\(|;)/g},{matches:{1:{name:"support.class",pattern:/\w+/g},2:"keyword.static"},pattern:/([\w\\]*?)(::)(?=\b|\$)/g},{matches:{2:{name:"support.class",pattern:/\w+/g}},pattern:/(\(|,\s?)([\w\\]*?)(?=\s\$)/g}]);Rainbow.extend("ruby",[{name:"string",matches:{1:"string.open",2:{name:"string.keyword",pattern:/(\#\{.*?\})/g},3:"string.close"},pattern:/("|`)(.*?[^\\\1])?(\1)/g},{name:"string",pattern:/('|"|`)([^\\\1\n]|\\.)*\1/g},{name:"string",pattern:/%[qQ](?=(\(|\[|\{|<|.)(.*?)(?:'|\)|\]|\}|>|\1))(?:\(\2\)|\[\2\]|\{\2\}|\<\2>|\1\2\1)/g},{matches:{1:"string",2:"string",3:"string"},pattern:/(<<)(\w+).*?$([\s\S]*?^\2)/gm},{matches:{1:"string",2:"string",3:"string"},pattern:/(<<\-)(\w+).*?$([\s\S]*?\2)/gm}, +{name:"string.regexp",matches:{1:"string.regexp",2:{name:"string.regexp",pattern:/\\(.){1}/g},3:"string.regexp",4:"string.regexp"},pattern:/(\/)(.*?)(\/)([a-z]*)/g},{name:"string.regexp",matches:{1:"string.regexp",2:{name:"string.regexp",pattern:/\\(.){1}/g},3:"string.regexp",4:"string.regexp"},pattern:/%r(?=(\(|\[|\{|<|.)(.*?)('|\)|\]|\}|>|\1))(?:\(\2\)|\[\2\]|\{\2\}|\<\2>|\1\2\1)([a-z]*)/g},{name:"comment",pattern:/#.*$/gm},{name:"comment",pattern:/^\=begin[\s\S]*?\=end$/gm},{matches:{1:"constant"}, +pattern:/(\w+:)[^:]/g},{matches:{1:"constant.symbol"},pattern:/[^:](:(?:\w+|(?=['"](.*?)['"])(?:"\2"|'\2')))/g},{name:"constant.numeric",pattern:/\b(0x[\da-f]+|\d+)\b/g},{name:"support.class",pattern:/\b[A-Z]\w*(?=((\.|::)[A-Za-z]|\[))/g},{name:"constant",pattern:/\b[A-Z]\w*\b/g},{matches:{1:"storage.class",2:"entity.name.class",3:"entity.other.inherited-class"},pattern:/\s*(class)\s+((?:(?:::)?[A-Z]\w*)+)(?:\s+<\s+((?:(?:::)?[A-Z]\w*)+))?/g},{matches:{1:"storage.module",2:"entity.name.class"}, +pattern:/\s*(module)\s+((?:(?:::)?[A-Z]\w*)+)/g},{name:"variable.global",pattern:/\$([a-zA-Z_]\w*)\b/g},{name:"variable.class",pattern:/@@([a-zA-Z_]\w*)\b/g},{name:"variable.instance",pattern:/@([a-zA-Z_]\w*)\b/g},{matches:{1:"keyword.control"},pattern:/[^\.]\b(BEGIN|begin|case|class|do|else|elsif|END|end|ensure|for|if|in|module|rescue|then|unless|until|when|while)\b(?![?!])/g},{matches:{1:"keyword.control.pseudo-method"},pattern:/[^\.]\b(alias|alias_method|break|next|redo|retry|return|super|undef|yield)\b(?![?!])|\bdefined\?|\bblock_given\?/g}, +{matches:{1:"constant.language"},pattern:/\b(nil|true|false)\b(?![?!])/g},{matches:{1:"variable.language"},pattern:/\b(__(FILE|LINE)__|self)\b(?![?!])/g},{matches:{1:"keyword.special-method"},pattern:/\b(require|gem|initialize|new|loop|include|extend|raise|attr_reader|attr_writer|attr_accessor|attr|catch|throw|private|module_function|public|protected)\b(?![?!])/g},{name:"keyword.operator",pattern:/\s\?\s|=|<<|<<=|%=|&=|\*=|\*\*=|\+=|\-=|\^=|\|{1,2}=|<<|<=>|<(?!<|=)|>(?!<|=|>)|<=|>=|===|==|=~|!=|!~|%|&|\*\*|\*|\+|\-|\/|\||~|>>/g}, +{matches:{1:"keyword.operator.logical"},pattern:/[^\.]\b(and|not|or)\b/g},{matches:{1:"storage.function",2:"entity.name.function"},pattern:/(def)\s(.*?)(?=(\s|\())/g}],k);Rainbow.extend("lua",[{matches:{1:{name:"keyword.operator",pattern:/\=/g},2:{name:"string",matches:{name:"constant.character.escape",pattern:/\\('|"){1}/g}}},pattern:/(\(|\s|\[|\=)(('|")([^\\\1]|\\.)*?(\3))/gm},{name:"comment",pattern:/\-{2}\[{2}\-{2}[\s\S]*?\-{2}\]{2}\-{2}|(\-{2})[\s\S]*?$/gm},{name:"constant.numeric",pattern:/\b(\d+(\.\d+)?(e(\+|\-)?\d+)?(f|d)?|0x[\da-f]+)\b/gi},{matches:{1:"keyword"},pattern:/\b((a|e)nd|in|repeat|break|local|return|do|for|then|else(if)?|function|not|if|or|until|while)(?=\(|\b)/gi}, +{name:"constant.language",pattern:/true|false|nil/g},{name:"keyword.operator",pattern:/\+|\!|\-|&(gt|lt|amp);|\||\*|\=|#|\.{2}/g},{matches:{1:"storage.function",2:"entity.name.function"},pattern:/(function)\s+(\w+[\:|\.]?\w+?)(?=\()/g},{matches:{1:"support.function"},pattern:/\b(print|require|module|\w+\.\w+)(?=\()/g}],k);Rainbow.extend("css",[{name:"comment",pattern:/\/\*[\s\S]*?\*\//gm},{name:"constant.hex-color",pattern:/#([a-f0-9]{3}|[a-f0-9]{6})(?=;|\s|,|\))/gi},{matches:{1:"constant.numeric",2:"keyword.unit"},pattern:/(\d+)(px|em|cm|s|%)?/g},{name:"string",pattern:/('|")(.*?)\1/g},{name:"support.css-property",matches:{1:"support.vendor-prefix"},pattern:/(-o-|-moz-|-webkit-|-ms-)?[\w-]+(?=\s?:)(?!.*\{)/g},{matches:{1:[{name:"entity.name.sass",pattern:/&/g},{name:"direct-descendant",pattern:/>/g},{name:"entity.name.class", +pattern:/\.[\w\-_]+/g},{name:"entity.name.id",pattern:/\#[\w\-_]+/g},{name:"entity.name.pseudo",pattern:/:[\w\-_]+/g},{name:"entity.name.tag",pattern:/\w+/g}]},pattern:/([\w\ ,:\.\#\&\;\-_]+)(?=.*\{)/g},{matches:{2:"support.vendor-prefix",3:"support.css-value"},pattern:/(:|,)\s*(-o-|-moz-|-webkit-|-ms-)?([a-zA-Z-]*)(?=\b)(?!.*\{)/g},{matches:{1:"support.tag.style",2:[{name:"string",pattern:/('|")(.*?)(\1)/g},{name:"entity.tag.style",pattern:/(\w+)/g}],3:"support.tag.style"},pattern:/(<\/?)(style.*?)(>)/g}], +k); diff --git a/js/vendor/custom.modernizr.js b/js/vendor/custom.modernizr.js new file mode 100644 index 00000000..e5afa6ca --- /dev/null +++ b/js/vendor/custom.modernizr.js @@ -0,0 +1,4 @@ +/* Modernizr 2.6.2 (Custom Build) | MIT & BSD + * Build: http://modernizr.com/download/#-inlinesvg-svg-svgclippaths-touch-shiv-mq-cssclasses-teststyles-prefixes-ie8compat-load + */ +;window.Modernizr=function(a,b,c){function y(a){j.cssText=a}function z(a,b){return y(m.join(a+";")+(b||""))}function A(a,b){return typeof a===b}function B(a,b){return!!~(""+a).indexOf(b)}function C(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:A(f,"function")?f.bind(d||b):f}return!1}var d="2.6.2",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k,l={}.toString,m=" -webkit- -moz- -o- -ms- ".split(" "),n={svg:"http://www.w3.org/2000/svg"},o={},p={},q={},r=[],s=r.slice,t,u=function(a,c,d,e){var f,i,j,k,l=b.createElement("div"),m=b.body,n=m||b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),l.appendChild(j);return f=["­",'"].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},v=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return u("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},w={}.hasOwnProperty,x;!A(w,"undefined")&&!A(w.call,"undefined")?x=function(a,b){return w.call(a,b)}:x=function(a,b){return b in a&&A(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=s.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(s.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(s.call(arguments)))};return e}),o.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:u(["@media (",m.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},o.svg=function(){return!!b.createElementNS&&!!b.createElementNS(n.svg,"svg").createSVGRect},o.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="",(a.firstChild&&a.firstChild.namespaceURI)==n.svg},o.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(l.call(b.createElementNS(n.svg,"clipPath")))};for(var D in o)x(o,D)&&(t=D.toLowerCase(),e[t]=o[D](),r.push((e[t]?"":"no-")+t));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)x(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},y(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e.mq=v,e.testStyles=u,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+r.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f type pairs + class2type = {}, + + // List of deleted data cache ids, so we can reuse them + core_deletedIds = [], + + core_version = "1.10.1", + + // Save a reference to some core methods + core_concat = core_deletedIds.concat, + core_push = core_deletedIds.push, + core_slice = core_deletedIds.slice, + core_indexOf = core_deletedIds.indexOf, + core_toString = class2type.toString, + core_hasOwn = class2type.hasOwnProperty, + core_trim = core_version.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, + + // Used for splitting on whitespace + core_rnotwhite = /\S+/g, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // 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-]*))$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }, + + // The ready event handler + completed = function( event ) { + + // 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(); + } + }, + // Clean-up method for dom ready events + detach = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + + } else { + document.detachEvent( "onreadystatechange", completed ); + window.detachEvent( "onload", completed ); + } + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: core_version, + + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + 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 + 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 rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +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; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // 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 ( length === i ) { + 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 + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), + + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // 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"); + } + }, + + // 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 ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + if ( obj == null ) { + return String( obj ); + } + return typeof obj === "object" || typeof obj === "function" ? + class2type[ core_toString.call(obj) ] || "object" : + typeof obj; + }, + + 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 && + !core_hasOwn.call(obj, "constructor") && + !core_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 ( jQuery.support.ownLast ) { + for ( key in obj ) { + return core_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 || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // keepScripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, keepScripts ) { + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + keepScripts = context; + context = false; + } + context = context || document; + + var parsed = rsingleTag.exec( data ), + scripts = !keepScripts && []; + + // Single tag + if ( parsed ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ); + if ( scripts ) { + jQuery( scripts ).remove(); + } + return jQuery.merge( [], parsed.childNodes ); + }, + + parseJSON: function( data ) { + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + if ( data === null ) { + return data; + } + + if ( typeof data === "string" ) { + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + if ( data ) { + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + } + } + } + + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // 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: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_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 { + core_push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_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 l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // 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 + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return core_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 = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( core_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; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + 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; + }, + + now: function() { + return ( new Date() ).getTime(); + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations. + // Note: this method belongs to the css module but it's needed here for the support module. + // If support gets modularized, this method should be moved back to the css module. + swap: function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +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 ); +}; + +// 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 ( jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || type !== "function" && + ( length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj ); +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +/*! + * Sizzle CSS Selector Engine v1.9.4-pre + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-05-27 + */ +(function( window, undefined ) { + +var i, + support, + cachedruns, + Expr, + getText, + isXML, + compile, + outermostContext, + sortInput, + + // 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(), + hasDuplicate = false, + sortOrder = function() { 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 + "*" ), + + rsibling = new RegExp( 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" ) + }, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + 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 : + // BMP codepoint + high < 0 ? + 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 #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 ) && 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 ); +} + +/** + * For feature detection + * @param {Function} fn The function to test for native support + */ +function isNative( fn ) { + return rnative.test( fn + "" ); +} + +/** + * 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 if the test fails + * @param {Boolean} test The result of a test. If true, null will be set as the handler in leiu of the specified handler + */ +function addHandle( attrs, handler, test ) { + attrs = attrs.split("|"); + var current, + i = attrs.length, + setHandle = test ? null : handler; + + while ( i-- ) { + // Don't override a user's handler + if ( !(current = Expr.attrHandle[ attrs[i] ]) || current === handler ) { + Expr.attrHandle[ attrs[i] ] = setHandle; + } + } +} + +/** + * Fetches boolean attributes by node + * @param {Element} elem + * @param {String} name + */ +function boolHandler( elem, name ) { + // XML does not need to be checked as this will not be assigned for XML documents + var val = elem.getAttributeNode( name ); + return val && val.specified ? + val.value : + elem[ name ] === true ? name.toLowerCase() : null; +} + +/** + * Fetches attributes without interpolation + * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx + * @param {Element} elem + * @param {String} name + */ +function interpolationHandler( elem, name ) { + // XML does not need to be checked as this will not be assigned for XML documents + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); +} + +/** + * Uses defaultValue to retrieve value in IE6/7 + * @param {Element} elem + * @param {String} name + */ +function valueHandler( elem ) { + // Ignore the value *property* on inputs by using defaultValue + // Fallback to Sizzle.attr by returning undefined where appropriate + // XML does not need to be checked as this will not be assigned for XML documents + if ( elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns Returns -1 if a precedes b, 1 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]); + } + } + }); + }); +} + +/** + * Detect xml + * @param {Element|Object} elem An element or a document + */ +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; +}; + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * 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 doc = node ? node.ownerDocument || node : preferredDoc, + parent = doc.parentWindow; + + // 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 + if ( parent && parent.frameElement ) { + parent.attachEvent( "onbeforeunload", function() { + setDocument(); + }); + } + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) + support.attributes = assert(function( div ) { + + // Support: IE<8 + // Prevent attribute/property "interpolation" + div.innerHTML = ""; + addHandle( "type|href|height|width", interpolationHandler, div.firstChild.getAttribute("href") === "#" ); + + // Support: IE<9 + // Use getAttributeNode to fetch booleans when getAttribute lies + addHandle( booleans, boolHandler, div.getAttribute("disabled") == null ); + + div.className = "i"; + return !div.getAttribute("className"); + }); + + // Support: IE<9 + // Retrieving value should defer to defaultValue + support.input = assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; + }); + + // IE6/7 still return empty string for value, + // but are actually retrieving the property + addHandle( "value", valueHandler, support.attributes && support.input ); + + /* 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 = 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 = isNative(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 + // 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: Opera 10-12/IE8 + // ^= $= *= and empty values + // Should not select anything + // Support: Windows 8 Native Apps + // The type attribute is restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "t", "" ); + + if ( div.querySelectorAll("[t^='']").length ) { + rbuggyQSA.push( "[*^$]=" + 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 = isNative( (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 + ---------------------------------------------------------------------- */ + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? + 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 + ---------------------------------------------------------------------- */ + + // 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( doc.createElement("div") ) & 1; + }); + + // Document order sorting + sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b ); + + if ( compare ) { + // 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 || contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } + + // Not directly comparable, sort on existence of method + return a.compareDocumentPosition ? -1 : 1; + } : + function( a, b ) { + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Parentless nodes are either documents or disconnected + } else 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 ? + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null : + val; +}; + +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 ); + } + } + + 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 + for ( ; (node = elem[i]); 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 (see #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 only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { + 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; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); + }, + + // 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; + }) + } +}; + +// 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 ); +} + +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 data, cache, outerCache, + dirkey = 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 ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { + if ( (data = cache[1]) === true || data === cachedruns ) { + return data === true; + } + } else { + cache = outerCache[ dir ] = [ dirkey ]; + cache[1] = matcher( elem, context, xml ) || cachedruns; + if ( cache[1] === true ) { + 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 ) { + // A counter to specify which element is currently being matched + var matcherCachedRuns = 0, + bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, expandContext ) { + var elem, j, matcher, + setMatched = [], + matchedCount = 0, + i = "0", + unmatched = seed && [], + outermost = expandContext != null, + contextBackup = outermostContext, + // We must always have either seed elements or context + elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); + + if ( outermost ) { + outermostContext = context !== document && context; + cachedruns = matcherCachedRuns; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + for ( ; (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; + cachedruns = ++matcherCachedRuns; + } + } + + // 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 ) && 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 ) + ); + return results; +} + +// Deprecated +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Initialize against the default document +setDocument(); + +// Support: Chrome<<14 +// Always assume duplicates if they aren't passed to the comparison function +[0, 0].sort( sortOrder ); +support.detectDuplicates = hasDuplicate; + +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; + + +})( window ); +// 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( core_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 ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( list && ( !fired || stack ) ) { + 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 action = tuple[ 0 ], + 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[ action + "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 = core_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 ? core_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(); + } +}); +jQuery.support = (function( support ) { + + var all, a, input, select, fragment, opt, eventName, isSupported, i, + div = document.createElement("div"); + + // Setup + div.setAttribute( "className", "t" ); + div.innerHTML = "
            a"; + + // Finish early in limited (non-browser) environments + all = div.getElementsByTagName("*") || []; + a = div.getElementsByTagName("a")[ 0 ]; + if ( !a || !a.style || !all.length ) { + return support; + } + + // First batch of tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + a.style.cssText = "top:1px;float:left;opacity:.5"; + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + support.getSetAttribute = div.className !== "t"; + + // 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; + + // Get the style information from getAttribute + // (IE uses .cssText instead) + support.style = /top/.test( a.getAttribute("style") ); + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + support.hrefNormalized = a.getAttribute("href") === "/a"; + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + support.opacity = /^0.5/.test( a.style.opacity ); + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + support.cssFloat = !!a.style.cssFloat; + + // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) + support.checkOn = !!input.value; + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + support.optSelected = opt.selected; + + // Tests for enctype support on a form (#6743) + support.enctype = !!document.createElement("form").enctype; + + // 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>"; + + // Will be defined later + support.inlineBlockNeedsLayout = false; + support.shrinkWrapBlocks = false; + support.pixelPosition = false; + support.deleteExpando = true; + support.noCloneEvent = true; + support.reliableMarginRight = true; + support.boxSizingReliable = true; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Support: IE<9 + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + // Check if we can trust getAttribute("value") + input = document.createElement("input"); + input.setAttribute( "value", "" ); + support.input = input.getAttribute( "value" ) === ""; + + // Check if an input maintains its value after becoming a radio + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "checked", "t" ); + input.setAttribute( "name", "t" ); + + fragment = document.createDocumentFragment(); + fragment.appendChild( input ); + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.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() + if ( div.attachEvent ) { + div.attachEvent( "onclick", function() { + support.noCloneEvent = false; + }); + + div.cloneNode( true ).click(); + } + + // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) + // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) + for ( i in { submit: true, change: true, focusin: true }) { + div.setAttribute( eventName = "on" + i, "t" ); + + support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; + } + + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + // Support: IE<9 + // Iteration over object's inherited properties before its own. + for ( i in jQuery( support ) ) { + break; + } + support.ownLast = i !== "0"; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, marginDiv, tds, + divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; + + body.appendChild( container ).appendChild( div ); + + // Support: IE8 + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + div.innerHTML = "
            t
            "; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Support: IE8 + // Check if empty table cells still have offsetWidth/Height + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior. + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + + // Workaround failing boxSizing test due to offsetWidth returning wrong value + // with some non-1 values of body zoom, ticket #13543 + jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { + support.boxSizing = div.offsetWidth === 4; + }); + + // Use window.getComputedStyle because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. (#3333) + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = div.appendChild( document.createElement("div") ); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== core_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.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Support: IE6 + // Check if elements with layout shrink-wrap their children + div.style.display = "block"; + div.innerHTML = "
            "; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + if ( support.inlineBlockNeedsLayout ) { + // 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 = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + all = select = fragment = opt = a = input = null; + + return support; +})({}); + +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +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 ] = core_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 ( jQuery.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 throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "applet": true, + "embed": true, + // Ban all objects except for Flash (which 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 ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + // Do not set data on non-element because it will not be cleared (#8335). + if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { + return false; + } + + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var attrs, name, + data = null, + i = 0, + elem = this[0]; + + // 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" ) ) { + attrs = elem.attributes; + for ( ; i < attrs.length; 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 ) ) : null; + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +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; +} +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 ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + 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 nodeHook, boolHook, + rclass = /[\t\r\n\f]/g, + rreturn = /\r/g, + rfocusable = /^(?:input|select|textarea|button|object)$/i, + rclickable = /^(?:a|area)$/i, + ruseDefault = /^(?:checked|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + getSetInput = jQuery.support.input; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call( this, j, this.className ) ); + }); + } + + if ( proceed ) { + // The disjunction here is for better compressibility (see removeClass) + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + " " + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + elem.className = jQuery.trim( cur ); + + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = arguments.length === 0 || typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call( this, j, this.className ) ); + }); + } + if ( proceed ) { + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + "" + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + elem.className = value ? jQuery.trim( cur ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.match( core_rnotwhite ) || []; + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + // Toggle whole class name + } else if ( type === core_strundefined || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // If the element has a class name or if we're passed "false", + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var ret, hooks, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // Use proper attribute retrieval(#6932, #12072) + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + elem.text; + } + }, + select: { + get: function( elem ) { + var value, option, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one" || index < 0, + values = one ? null : [], + max = one ? index + 1 : options.length, + i = index < 0 ? + max : + one ? index : 0; + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // oldIE doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + // Don't return options that are disabled or in a disabled optgroup + ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && + ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { + optionSet = true; + } + } + + // force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attr: function( elem, name, value ) { + var hooks, ret, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === core_strundefined ) { + return jQuery.prop( elem, name, value ); + } + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + + } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, value + "" ); + return value; + } + + } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var name, propName, + i = 0, + attrNames = value && value.match( core_rnotwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( (name = attrNames[i++]) ) { + propName = jQuery.propFix[ name ] || name; + + // Boolean attributes get special treatment (#10870) + if ( jQuery.expr.match.bool.test( name ) ) { + // Set corresponding property to false + if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + elem[ propName ] = false; + // Support: IE<9 + // Also clear defaultChecked/defaultSelected (if appropriate) + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = + elem[ propName ] = false; + } + + // See #9699 for explanation of this approach (setting first, then removal) + } else { + jQuery.attr( elem, name, "" ); + } + + elem.removeAttribute( getSetAttribute ? name : propName ); + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to default in case type is set after value during creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? + ret : + ( elem[ name ] = value ); + + } else { + return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? + ret : + elem[ name ]; + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + return tabindex ? + parseInt( tabindex, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + -1; + } + } + } +}); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + // IE<8 needs the *property* name + elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); + + // Use defaultChecked and defaultSelected for oldIE + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; + } + + return name; + } +}; +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { + var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; + + jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? + function( elem, name, isXML ) { + var fn = jQuery.expr.attrHandle[ name ], + ret = isXML ? + undefined : + /* jshint eqeqeq: false */ + (jQuery.expr.attrHandle[ name ] = undefined) != + getter( elem, name, isXML ) ? + + name.toLowerCase() : + null; + jQuery.expr.attrHandle[ name ] = fn; + return ret; + } : + function( elem, name, isXML ) { + return isXML ? + undefined : + elem[ jQuery.camelCase( "default-" + name ) ] ? + name.toLowerCase() : + null; + }; +}); + +// fix oldIE attroperties +if ( !getSetInput || !getSetAttribute ) { + jQuery.attrHooks.value = { + set: function( elem, value, name ) { + if ( jQuery.nodeName( elem, "input" ) ) { + // Does not return so that setAttribute is also used + elem.defaultValue = value; + } else { + // Use nodeHook if defined (#1954); otherwise setAttribute is fine + return nodeHook && nodeHook.set( elem, value, name ); + } + } + }; +} + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = { + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + elem.setAttributeNode( + (ret = elem.ownerDocument.createAttribute( name )) + ); + } + + ret.value = value += ""; + + // Break association with cloned elements by also using setAttribute (#9646) + return name === "value" || value === elem.getAttribute( name ) ? + value : + undefined; + } + }; + jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords = + // Some attributes are constructed with empty-string values when not defined + function( elem, name, isXML ) { + var ret; + return isXML ? + undefined : + (ret = elem.getAttributeNode( name )) && ret.value !== "" ? + ret.value : + null; + }; + jQuery.valHooks.button = { + get: function( elem, name ) { + var ret = elem.getAttributeNode( name ); + return ret && ret.specified ? + ret.value : + undefined; + }, + set: nodeHook.set + }; + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + set: function( elem, value, name ) { + nodeHook.set( elem, value === "" ? false : value, name ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }; + }); +} + + +// Some attributes require a special call on IE +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !jQuery.support.hrefNormalized ) { + // href/src property should get the full normalized URL (#10299/#12915) + jQuery.each([ "href", "src" ], function( i, name ) { + jQuery.propHooks[ name ] = { + get: function( elem ) { + return elem.getAttribute( name, 4 ); + } + }; + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Note: IE uppercases css property names, but if we were to .toLowerCase() + // .cssText, that would destroy case senstitivity in URL's, like in "background" + return elem.style.cssText || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = value + "" ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }; +} + +jQuery.each([ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +}); + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }; + if ( !jQuery.support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + // Support: Webkit + // "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + }; + } +}); +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 !== core_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( core_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( core_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 = core_hasOwn.call( event, "type" ) ? event.type : event, + namespaces = core_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 && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === 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 = core_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 ] === core_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.returnValue === false || + 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 ( !jQuery.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 ( !jQuery.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 ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +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 ); + } + } +}); +var isSimple = /^.[^:#\[\.,]*$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +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; + }, + + 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; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + + 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; + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + 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)) ) { + + cur = ret.push( cur ); + break; + } + } + } + + return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); + }, + + // 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 ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( jQuery.unique(all) ); + }, + + 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 ); + }; +}); + +jQuery.extend({ + 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; + })); + }, + + 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; + } +}); + +// 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 ( isSimple.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; + }); +} +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: jQuery.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; + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.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 ); + } + }); + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + 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 jQuery.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 ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.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 + // Snapshot the DOM in case .domManip sweeps something relevant into its fragment + args = jQuery.map( this, function( elem ) { + return [ elem.nextSibling, elem.parentNode ]; + }), + i = 0; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + var next = args[ i++ ], + parent = args[ i++ ]; + + if ( parent ) { + // Don't use the snapshot next if it has moved (#13810) + if ( next && next.parentNode !== parent ) { + next = this.nextSibling; + } + jQuery( this ).remove(); + parent.insertBefore( elem, next ); + } + // Allow new content to include elements from the context set + }, true ); + + // Force removal if there was no new content (e.g., from empty arguments) + return i ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback, allowIntersection ) { + + // Flatten any nested arrays + args = core_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" || jQuery.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, allowIntersection ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, !allowIntersection && 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 ) { + // Hope ajax is available... + 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; + } +}); + +// Support: IE<8 +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType === 1 ? 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 ( !jQuery.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 ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && manipulation_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.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() + core_push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + +function getAll( context, tag ) { + var elems, elem, + i = 0, + found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== core_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 ( manipulation_rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var destElements, node, clone, i, srcElements, + inPage = jQuery.contains( elem.ownerDocument, elem ); + + if ( jQuery.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 ( (!jQuery.support.noCloneEvent || !jQuery.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 ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); + } + + // Remove IE's autoinserted from table fragments + if ( !jQuery.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 ( !jQuery.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 = jQuery.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 !== core_strundefined ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + core_deletedIds.push( id ); + } + } + } + } + }, + + _evalUrl: function( url ) { + return jQuery.ajax({ + url: url, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } +}); +jQuery.fn.extend({ + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + } +}); +var iframe, getStyles, curCSS, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity\s*=\s*([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), + elemdisplay = { BODY: "block" }, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( 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 ); +} + +function showHide( elements, show ) { + var display, elem, hidden, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + values[ index ] = jQuery._data( elem, "olddisplay" ); + display = elem.style.display; + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + + if ( !values[ index ] ) { + hidden = isHidden( elem ); + + if ( display && display !== "none" || !hidden ) { + jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); + } + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + var len, styles, + map = {}, + i = 0; + + if ( jQuery.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + var bool = typeof state === "boolean"; + + return this.each(function() { + if ( bool ? state : isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "columnCount": true, + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, + // but it would mean to define eight (for every problematic property) identical functions + if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var num, val, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + } +}); + +// NOTE: we've included the "window" in window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + getStyles = function( elem ) { + return window.getComputedStyle( elem, null ); + }; + + curCSS = function( elem, name, _computed ) { + var width, minWidth, maxWidth, + computed = _computed || getStyles( elem ), + + // getPropertyValue is only needed for .css('filter') in IE9, see #12537 + ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, + style = elem.style; + + if ( computed ) { + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + getStyles = function( elem ) { + return elem.currentStyle; + }; + + curCSS = function( elem, name, _computed ) { + var left, rs, rsLeft, + computed = _computed || getStyles( elem ), + ret = computed ? computed[ name ] : undefined, + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rs = elem.runtimeStyle; + rsLeft = rs && rs.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + rs.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + rs.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); + } + + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } else { + // at this point, extra isn't content, so add padding + val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var valueIsBorderBox = true, + val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + styles = getStyles( elem ), + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name, styles ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles + ) + ) + "px"; +} + +// Try to determine the default display value of an element +function css_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(" + + + From 05b3d80bf2e485f7c20a2e2f744c493d5566f65d Mon Sep 17 00:00:00 2001 From: yonexyonex Date: Wed, 17 Dec 2014 21:55:11 +0900 Subject: [PATCH 150/256] Fix typo in Release Announcement --- _posts/2013-06-01-release-announcement.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-06-01-release-announcement.markdown b/_posts/2013-06-01-release-announcement.markdown index 6fdea83c..c4a14a5d 100644 --- a/_posts/2013-06-01-release-announcement.markdown +++ b/_posts/2013-06-01-release-announcement.markdown @@ -283,7 +283,7 @@ actually more or less the actual implementation in the the new Gem): task :cleanup do keep_releases = fetch(:releases_to_keep_on_cleanup) releases = capture(:ls, fetch(:releases_directory)) - release_to_delete = releases.sort_by { |r| rn.to_i }.slice(1..-(keep_releases + 1)) + releases_to_delete = releases.sort_by { |r| r.to_i }.slice(1..-(keep_releases + 1)) releases_to_delete.each do |r| execute :rm, fetch(:releases_directory).join(r) end From bdfafc2970ed88d91055c37496e94a097de89714 Mon Sep 17 00:00:00 2001 From: epifanov Date: Wed, 7 Jan 2015 19:54:20 +0300 Subject: [PATCH 151/256] Fix typo in description of hosts filtering --- documentation/advanced-features/host-filtering/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/advanced-features/host-filtering/index.markdown b/documentation/advanced-features/host-filtering/index.markdown index a192fe58..7004939e 100644 --- a/documentation/advanced-features/host-filtering/index.markdown +++ b/documentation/advanced-features/host-filtering/index.markdown @@ -46,7 +46,7 @@ You can set the host filter inside your deploy configuration. For example, you can set the following inside `config/deploy.rb`: {% highlight ruby %} - set :filter, :hosts => %w{server1 server2} + set :filter, :host => %w{server1 server2} {% endhighlight %} Note that you specify the filter as an array rather than as a comma-separated From 9382a49e50dac22683077ea336789148646af1c1 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:07:42 +0000 Subject: [PATCH 152/256] remove unused table_of_contents --- _config.yml | 2 -- _layouts/table_of_contents.html | 1 - 2 files changed, 3 deletions(-) delete mode 100644 _layouts/table_of_contents.html diff --git a/_config.yml b/_config.yml index 3ac76b7b..be259160 100644 --- a/_config.yml +++ b/_config.yml @@ -5,6 +5,4 @@ lsi: false markdown: redcarpet redcarpet: extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"] -table_of_contents: - dirs: [documentation] exclude: ["Gemfile", "Gemfile.lock", "README.md"] diff --git a/_layouts/table_of_contents.html b/_layouts/table_of_contents.html deleted file mode 100644 index 692bc9d8..00000000 --- a/_layouts/table_of_contents.html +++ /dev/null @@ -1 +0,0 @@ -Why is this here? \ No newline at end of file From 7ac03e702049cc6f1d2927350777199043021e14 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:07:49 +0000 Subject: [PATCH 153/256] fix Capistrano documentation repo link --- index.markdown | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.markdown b/index.markdown index 797e9c69..91b75031 100644 --- a/index.markdown +++ b/index.markdown @@ -29,5 +29,4 @@ extended to support them. ### Source Code
            -
            -
            +
            From 55d405ae1893aa7cf8500108616e93835e7d2829 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:07:51 +0000 Subject: [PATCH 154/256] remove unused changes.html --- changes.html | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 changes.html diff --git a/changes.html b/changes.html deleted file mode 100644 index 6d0d3005..00000000 --- a/changes.html +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: default -title: "Recent Site Changes" ---- \ No newline at end of file From 4f1857b475446221d1048a7c093d7593fdf00c3d Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:07:57 +0000 Subject: [PATCH 155/256] include already existing metrics.html instead of inlining the exact same content --- _layouts/default.html | 32 ++------------------------------ 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index dbb6a2d7..b6ec26dd 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -15,38 +15,10 @@ + + {% include metrics.html %} - - - - - {% include header.html %}
            From 1c00f8e2f4b08234473f04f85d0008441e1673cf Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:08:01 +0000 Subject: [PATCH 156/256] move Google Tag Manager to _includes --- _includes/google_tag_manager.html | 6 ++++++ _layouts/default.html | 9 +++------ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 _includes/google_tag_manager.html diff --git a/_includes/google_tag_manager.html b/_includes/google_tag_manager.html new file mode 100644 index 00000000..f04bcd64 --- /dev/null +++ b/_includes/google_tag_manager.html @@ -0,0 +1,6 @@ + + + + diff --git a/_layouts/default.html b/_layouts/default.html index b6ec26dd..87d7e365 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -53,12 +53,9 @@ + Fork me on GitHub - - - - + + {% include google_tag_manager.html %} From 69e1f62684ed39c52fabb5eedf7ad724b010fc80 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:08:04 +0000 Subject: [PATCH 157/256] overhaul navigation restructure plugins and framework extensions --- _includes/navigation.html | 55 ++++++++++--------- .../index.markdown | 2 +- .../bundler/index.markdown | 2 +- documentation/plugins/composer/index.markdown | 6 ++ documentation/plugins/laravel/index.markdown | 6 ++ documentation/plugins/npm/index.markdown | 6 ++ .../passenger/index.markdown | 4 +- .../rbenv-rvm-chruby/index.markdown | 4 +- .../ruby-on-rails/index.markdown | 0 documentation/plugins/symfony/index.markdown | 6 ++ .../plugins/{ => third-party}/index.markdown | 2 +- documentation/upgrading/index.markdown | 4 +- 12 files changed, 63 insertions(+), 34 deletions(-) rename documentation/{frameworks => plugins}/bundler/index.markdown (74%) create mode 100644 documentation/plugins/composer/index.markdown create mode 100644 documentation/plugins/laravel/index.markdown create mode 100644 documentation/plugins/npm/index.markdown rename documentation/{frameworks => plugins}/passenger/index.markdown (55%) rename documentation/{frameworks => plugins}/rbenv-rvm-chruby/index.markdown (84%) rename documentation/{frameworks => plugins}/ruby-on-rails/index.markdown (100%) create mode 100644 documentation/plugins/symfony/index.markdown rename documentation/plugins/{ => third-party}/index.markdown (96%) diff --git a/_includes/navigation.html b/_includes/navigation.html index 8c217bbe..8e4ec025 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,10 +1,11 @@
            • New Hosted Capistrano for Teams
            • +
              Overview
            • What is Capistrano?
            • -
            • +
              Getting Started
            • The Readme, start here!
            • Installation
            • @@ -15,45 +16,49 @@
            • Rollbacks
            • Upgrading from 2.x
            • -
              Advanced Features
              -
            • Remote commands with SSHKit
            • -
            • Remote file task
            • -
            • Role filtering
            • -
            • Host filtering
            • -
            • Using Capistrano from pure Ruby
            • -
            • Overriding Capistrano tasks
            • +
              Advanced Features
              +
            • Using Capistrano from Pure Ruby
            • +
            • Host filtering
            • +
            • Overriding Capistrano Tasks
            • +
            • Remote File Task
            • +
            • Role Filtering
            • +
            • Remote Commands with SSHKit
            • -
              Framework Extensions
              -
            • Ruby on Rails
            • -
            • Bundler
            • -
            • Rbenv & RVM & chruby
            • -
            • Passenger
            • -
            • Plugins
            • - + +
              Plugins
              +
            • Bundler
            • +
            • Composer
            • +
            • Laravel
            • +
            • npm
            • +
            • Phusion Passenger
            • +
            • rbenv & RVM & chruby
            • +
            • Ruby on Rails
            • +
            • Symfony
            • +
            • 3rd Party Plugins
            • +
            • + - -
            • + +
              FAQ
              -
            • Why Does Something Work In An SSH Session, But Not In Capistrano?
            • -
            • How can I get Capistrano to prompt for a password?
            • +
            • Why does something work in an SSH session, but not in Capistrano?
            • How can I access stage configuration variables?
            • - -
            • Should I Use Capistrano To Provision My Servers?
            • - - - - +
            • How can I check for existing remote file?
            • +
            • How can I get Capistrano to prompt for a password?
            • +
            • Should I use Capistrano to provision my servers?
            • +
              Legacy Documentation
            • Capistrano v2
            • +
              Recent Announcements
              {% for post in site.posts %}
            • {{ post.title }}
            • diff --git a/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown b/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown index c810ba0a..513a3020 100644 --- a/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown +++ b/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown @@ -3,7 +3,7 @@ title: How can I check for existing remote file? layout: default --- -The `test` tehod is best used for file checking with bash conditionals +The `test` method is best used for file checking with bash conditionals {% highlight ruby %} if test("[ -f /tmp/foo ]") diff --git a/documentation/frameworks/bundler/index.markdown b/documentation/plugins/bundler/index.markdown similarity index 74% rename from documentation/frameworks/bundler/index.markdown rename to documentation/plugins/bundler/index.markdown index e48adaa2..71bbf0ba 100644 --- a/documentation/frameworks/bundler/index.markdown +++ b/documentation/plugins/bundler/index.markdown @@ -3,7 +3,7 @@ title: Bundler layout: default --- -Capistrano 3.x has moved out Bundler integration into the gem called `capistrano-bundler`. +Capistrano 3 has moved out Bundler integration into the gem called `capistrano-bundler`. You don't need anything except `require 'capistrano/bundler'` to enable it, although check the project page with README if you wish to customize bundle options.
              diff --git a/documentation/plugins/composer/index.markdown b/documentation/plugins/composer/index.markdown new file mode 100644 index 00000000..ef60d755 --- /dev/null +++ b/documentation/plugins/composer/index.markdown @@ -0,0 +1,6 @@ +--- +title: Compose +layout: default +--- + +
              diff --git a/documentation/plugins/laravel/index.markdown b/documentation/plugins/laravel/index.markdown new file mode 100644 index 00000000..4312cc9b --- /dev/null +++ b/documentation/plugins/laravel/index.markdown @@ -0,0 +1,6 @@ +--- +title: Laravel +layout: default +--- + +
              diff --git a/documentation/plugins/npm/index.markdown b/documentation/plugins/npm/index.markdown new file mode 100644 index 00000000..a0f5337c --- /dev/null +++ b/documentation/plugins/npm/index.markdown @@ -0,0 +1,6 @@ +--- +title: npm +layout: default +--- + +
              diff --git a/documentation/frameworks/passenger/index.markdown b/documentation/plugins/passenger/index.markdown similarity index 55% rename from documentation/frameworks/passenger/index.markdown rename to documentation/plugins/passenger/index.markdown index f3b3e8ec..4c19531c 100644 --- a/documentation/frameworks/passenger/index.markdown +++ b/documentation/plugins/passenger/index.markdown @@ -3,9 +3,9 @@ title: Passenger layout: default --- -Capistrano 3.x does not restart your application by default. You need to add a task to do this `after deploy:publishing`. +Capistrano 3 does not restart your application by default. You need to add a task to do this `after deploy:publishing`. If you're using passenger, this gem has you covered. All you need to do is `require 'capistrano/passenger' in your Capfile. -Checkout the README to learn how to customize the timing of restarts. By default, the deployment will wait 5 seconds between server restarts so all your servers don't shut off at once. +Checkout the README to learn how to customize the timing of restarts. By default, the deployment will wait 5 seconds between server restarts so all your servers don't shut off at once.
              diff --git a/documentation/frameworks/rbenv-rvm-chruby/index.markdown b/documentation/plugins/rbenv-rvm-chruby/index.markdown similarity index 84% rename from documentation/frameworks/rbenv-rvm-chruby/index.markdown rename to documentation/plugins/rbenv-rvm-chruby/index.markdown index a8d5328a..88253982 100644 --- a/documentation/frameworks/rbenv-rvm-chruby/index.markdown +++ b/documentation/plugins/rbenv-rvm-chruby/index.markdown @@ -1,9 +1,9 @@ --- -title: Rbenv & RVM & Chruby +title: rbenv & RVM & Chruby layout: default --- -Capistrano 3.x comes with official support of most common ruby version managers: Rbenv, RVM and Chruby. +Capistrano 3 comes with official support of most common ruby version managers: rbenv, RVM and Chruby. Basic installation includes `require 'capistrano/rbenv'` (or `capistrano/rvm` / `capistrano/chruby`) and defining `set :rbenv_ruby_version, '2.0.0-p247'`, or `rvm_ruby_version` / `chruby_ruby`. diff --git a/documentation/frameworks/ruby-on-rails/index.markdown b/documentation/plugins/ruby-on-rails/index.markdown similarity index 100% rename from documentation/frameworks/ruby-on-rails/index.markdown rename to documentation/plugins/ruby-on-rails/index.markdown diff --git a/documentation/plugins/symfony/index.markdown b/documentation/plugins/symfony/index.markdown new file mode 100644 index 00000000..ab3ba0f9 --- /dev/null +++ b/documentation/plugins/symfony/index.markdown @@ -0,0 +1,6 @@ +--- +title: Symfony +layout: default +--- + +
              diff --git a/documentation/plugins/index.markdown b/documentation/plugins/third-party/index.markdown similarity index 96% rename from documentation/plugins/index.markdown rename to documentation/plugins/third-party/index.markdown index d5b05d85..8a3dacc8 100644 --- a/documentation/plugins/index.markdown +++ b/documentation/plugins/third-party/index.markdown @@ -1,5 +1,5 @@ --- -title: Plugins +title: 3rd Plugins layout: default --- diff --git a/documentation/upgrading/index.markdown b/documentation/upgrading/index.markdown index 72714fc8..2005abc6 100644 --- a/documentation/upgrading/index.markdown +++ b/documentation/upgrading/index.markdown @@ -7,7 +7,7 @@ layout: default Update your Gemfile: `gem 'capistrano', '~> 3.0', require: false, group: :development` - If you deploy Rails, you wil also need `capistrano-rails` and `capistrano-bundler` gems (Rails and Bundler integrations were moved out from Capistrano 3.x). + If you deploy Rails, you wil also need `capistrano-rails` and `capistrano-bundler` gems (Rails and Bundler integrations were moved out from Capistrano 3). {% highlight ruby %} group :development do gem 'capistrano-rails', '~> 1.1', require: false @@ -41,7 +41,7 @@ layout: default {% endhighlight %} 3. - Capistrano 3.x is multistage by default, so you will have `config/deploy/production.rb` and `config/deploy/staging.rb` right after capifying. + Capistrano 3 is multistage by default, so you will have `config/deploy/production.rb` and `config/deploy/staging.rb` right after capifying. If you need only one stage, remove these files and declare stage (for example `production`) and servers in `config/deploy.rb`. 4. From 8fc183d434ffb4beeb5ff5a2b796e1f00fba6422 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:08:07 +0000 Subject: [PATCH 158/256] add new pages extracted from capistrano/README.md --- _includes/navigation.html | 35 ++++++------ .../advanced-features/console/index.markdown | 33 +++++++++++ .../advanced-features/ptys/index.markdown | 19 +++++++ .../before-after/index.markdown | 55 +++++++++++++++++++ .../configuration/index.markdown | 22 ++++++++ .../host-and-role-filtering/index.markdown | 49 +++++++++++++++++ .../local-tasks/index.markdown | 35 ++++++++++++ .../password-authentication/index.markdown | 11 ++++ .../getting-started/rollbacks/index.markdown | 1 - .../getting-started/tasks/index.markdown | 19 +++++++ .../getting-started/user-input/index.markdown | 22 ++++++++ 11 files changed, 283 insertions(+), 18 deletions(-) create mode 100644 documentation/advanced-features/console/index.markdown create mode 100644 documentation/advanced-features/ptys/index.markdown create mode 100644 documentation/getting-started/before-after/index.markdown create mode 100644 documentation/getting-started/configuration/index.markdown create mode 100644 documentation/getting-started/host-and-role-filtering/index.markdown create mode 100644 documentation/getting-started/local-tasks/index.markdown create mode 100644 documentation/getting-started/password-authentication/index.markdown create mode 100644 documentation/getting-started/tasks/index.markdown create mode 100644 documentation/getting-started/user-input/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index 8e4ec025..a6b2841a 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -8,21 +8,30 @@
              Getting Started
            • The Readme, start here!
            • +
            • Installation
            • +
            • Configuration
            • Preparing Your Application
            • -
            • Authentication & Authorisation
            • -
            • Cold Start
            • Flow
            • Rollbacks
            • -
            • Upgrading from 2.x
            • +
            • Cold Start
            • +
            • Tasks
            • +
            • Local Tasks
            • +
            • User Input
            • +
            • Before / After Hooks
            • +
            • Authentication & Authorisation
            • +
            • Password Authentication
            • Advanced Features
              -
            • Using Capistrano from Pure Ruby
            • +
            • Console
            • +
            • PTYs
            • +
            • Host and Role Filtering
            • Host filtering
            • -
            • Overriding Capistrano Tasks
            • -
            • Remote File Task
            • Role Filtering
            • +
            • Overriding Capistrano Tasks
            • +
            • Using Capistrano from Pure Ruby
            • +
            • Remote File Task
            • Remote Commands with SSHKit
            • @@ -38,14 +47,6 @@
            • 3rd Party Plugins
            • - - - - - - - -
              FAQ
            • Why does something work in an SSH session, but not in Capistrano?
            • How can I access stage configuration variables?
            • @@ -54,9 +55,9 @@
            • Should I use Capistrano to provision my servers?
            • -
              Legacy Documentation
              -
            • Capistrano - v2
            • +
              Legacy
              +
            • Capistrano 2 Documentation Wiki
            • +
            • Upgrading from Capistrano 2.x to 3
            • Recent Announcements
              diff --git a/documentation/advanced-features/console/index.markdown b/documentation/advanced-features/console/index.markdown new file mode 100644 index 00000000..0348d2fc --- /dev/null +++ b/documentation/advanced-features/console/index.markdown @@ -0,0 +1,33 @@ +--- +title: Console +layout: default +--- + +**Note:** Here be dragons. The console is very immature, but it's much more +cleanly architected than previous incarnations and it'll only get better from +here on in. + +Execute arbitrary remote commands, to use this simply add +`require 'capistrano/console'` which will add the necessary tasks to your +environment: + +``` sh +$ bundle exec cap staging console +``` + +Then, after setting up the server connections, this is how that might look: + +``` sh +$ bundle exec cap production console +capistrano console - enter command to execute on production +production> uptime + INFO [94db8027] Running /usr/bin/env uptime on leehambley@example.com:22 +DEBUG [94db8027] Command: /usr/bin/env uptime +DEBUG [94db8027] 17:11:17 up 50 days, 22:31, 1 user, load average: 0.02, 0.02, 0.05 + INFO [94db8027] Finished in 0.435 seconds command successful. +production> who + INFO [9ce34809] Running /usr/bin/env who on leehambley@example.com:22 +DEBUG [9ce34809] Command: /usr/bin/env who +DEBUG [9ce34809] leehambley pts/0 2013-06-13 17:11 (port-11262.pppoe.wtnet.de) + INFO [9ce34809] Finished in 0.420 seconds command successful. +``` diff --git a/documentation/advanced-features/ptys/index.markdown b/documentation/advanced-features/ptys/index.markdown new file mode 100644 index 00000000..e682b2d2 --- /dev/null +++ b/documentation/advanced-features/ptys/index.markdown @@ -0,0 +1,19 @@ + +There is a configuration option which asks the backend driver to ask the remote host +to assign the connection a *pty*. A *pty* is a pseudo-terminal, which in effect means +*tell the backend that this is an __interactive__ session*. This is normally a bad idea. + +Most of the differences are best explained by [this page](https://github.com/sstephenson/rbenv/wiki/Unix-shell-initialization) from the author of *rbenv*. + +**When Capistrano makes a connection it is a *non-login*, *non-interactive* shell. +This was not an accident!** + +It's often used as a band aid to cure issues related to RVM and rbenv not loading login +and shell initialisation scripts. In these scenarios RVM and rbenv are the tools at fault, +or at least they are being used incorrectly. + +Whilst, especially in the case of language runtimes (Ruby, Node, Python and friends in +particular) there is a temptation to run multiple versions in parallel on a single server +and to switch between them using environmental variables, this is an anti-pattern, and +symptomatic of bad design (e.g. you're testing a second version of Ruby in production because +your company lacks the infrastructure to test this in a staging environment). diff --git a/documentation/getting-started/before-after/index.markdown b/documentation/getting-started/before-after/index.markdown new file mode 100644 index 00000000..b94b36f6 --- /dev/null +++ b/documentation/getting-started/before-after/index.markdown @@ -0,0 +1,55 @@ +--- +title: Before / After Hooks +layout: default +--- + +Where calling on the same task name, executed in order of inclusion + +``` ruby +# call an existing task +before :starting, :ensure_user + +after :finishing, :notify + + +# or define in block +before :starting, :ensure_user do + # +end + +after :finishing, :notify do + # +end +``` + +If it makes sense for your use case (often, that means *generating a file*) +the Rake prerequisite mechanism can be used: + +``` ruby +desc "Create Important File" +file 'important.txt' do |t| + sh "touch #{t.name}" +end +desc "Upload Important File" +task :upload => 'important.txt' do |t| + on roles(:all) do + upload!(t.prerequisites.first, '/tmp') + end +end +``` + +The final way to call out to other tasks is to simply `invoke()` them: + +``` ruby +namespace :example do + task :one do + on roles(:all) { info "One" } + end + task :two do + invoke "example:one" + on roles(:all) { info "Two" } + end +end +``` + +This method is widely used. diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown new file mode 100644 index 00000000..ccefbe3f --- /dev/null +++ b/documentation/getting-started/configuration/index.markdown @@ -0,0 +1,22 @@ +--- +title: Configuration +layout: default +--- + +## Configuration + +The following variables are settable: + +| Variable Name | Description | Notes | +|:---------------------:|----------------------------------------------------------------------|-----------------------------------------------------------------| +| `:repo_url` | The URL of your scm repository (git, hg, svn) | file://, https://, ssh://, or svn+ssh:// are all supported | +| `:repo_tree` | The subtree of the scm repository to deploy (git, hg) | Only implemented for git and hg repos. Extract just this tree | +| `:branch` | The branch you wish to deploy | This only has meaning for git and hg repos, to specify the branch of an svn repo, set `:repo_url` to the branch location. | +| `:scm` | The source control system used | `:git`, `:hg`, `:svn` are currently supported | +| `:tmp_dir` | The (optional) temp directory that will be used (default: /tmp) | if you have a shared web host, this setting may need to be set (i.e. /home/user/tmp/capistrano). | + +__Support removed__ for following variables: + +| Variable Name | Description | Notes | +|:---------------------:|---------------------------------------------------------------------|-----------------------------------------------------------------| +| `:copy_exclude` | The (optional) array of files and/or folders excluded from deploy | Replaced by Git's native `.gitattributes`, see [#515](https://github.com/capistrano/capistrano/issues/515) for more info. | diff --git a/documentation/getting-started/host-and-role-filtering/index.markdown b/documentation/getting-started/host-and-role-filtering/index.markdown new file mode 100644 index 00000000..24a1d818 --- /dev/null +++ b/documentation/getting-started/host-and-role-filtering/index.markdown @@ -0,0 +1,49 @@ +--- +title: Host and Role Filtering +layout: default +--- + +Capistrano enables the declaration of servers and roles, each of which may have properties +associated with them. Tasks are then able to use these definitions in two distinct ways: + +* To determine _configurations_: typically by using the `roles()`, `release_roles()` and + `primary()` methods. Typically these are used outside the scope of the `on()` method. + +* To _interact_ with remote hosts using the `on()` method + +An example of the two would be to create a `/etc/krb5.conf` file containing the list of +available KDC's by using the list of servers returned by `roles(:kdc)` and then uploading +it to all client machines using `on(roles(:all)) do upload!(file) end` + +A problem with this arises when _filters_ are used. Filters are designed to limit the +actual set of hosts that are used to a subset of those in the overall stage, but how +should that apply in the above case? + +If the filter applies to both the _interaction_ and _configuration_ aspects, any configuration +files deployed will not be the same as those on the hosts excluded by the filters. This is +almost certainly not what is wanted, the filters should apply only to the _interactions_ +ensuring that any configuration files deployed will be identical across the stage. + +Another type of filtering is done by defining properties on servers and selecting on that +basis. An example of that is the 'no_release' property and it's use in the +`release_roles()` method. To distinguish these two types of filtering we name them: + +* On-Filtering + Specified in the following ways: + * Via environment variables HOSTS and ROLES + * Via command line options `--hosts` and `--roles` + * Via the `:filter` variable set in a stage file +* Property-Filtering + These are specified by options passed to the `roles()` method (and implicitly in methods + like `release_roles()` and `primary()`) + +To increase the utility of On-Filters they can use regular expressions: +* If the host name in a filter doesn't match `/^[-A-Za-z0-9.]+$/` (the set of valid characters + for a DNS name) then it's assumed to be a regular expression. +* Since role names are Ruby symbols they can legitimately contain any characters. To allow multiple + of them to be specified on one line we use the comma. To use a regexp for a role filter begin + and end the string with '/'. These may not contain a comma. + +When filters are specified using comma separated lists, the final filter is the _union_ of +all of the components. However when multiple filters are declared the result is the +_intersection_. diff --git a/documentation/getting-started/local-tasks/index.markdown b/documentation/getting-started/local-tasks/index.markdown new file mode 100644 index 00000000..c21c680d --- /dev/null +++ b/documentation/getting-started/local-tasks/index.markdown @@ -0,0 +1,35 @@ +--- +title: Local Tasks +layout: default +--- + +Local tasks can be run by replacing `on` with `run_locally`: + +```ruby +desc 'Notify service of deployment' +task :notify do + run_locally do + with rails_env: :development do + rake 'service:notify' + end + end +end +``` + +Of course, you can always just use standard ruby syntax to run things locally: + +```ruby +desc 'Notify service of deployment' +task :notify do + %x('RAILS_ENV=development bundle exec rake "service:notify"') +end +``` + +Alternatively you could use the rake syntax: + +```ruby +desc "Notify service of deployment" +task :notify do + sh 'RAILS_ENV=development bundle exec rake "service:notify"' +end +``` diff --git a/documentation/getting-started/password-authentication/index.markdown b/documentation/getting-started/password-authentication/index.markdown new file mode 100644 index 00000000..dc0d40b3 --- /dev/null +++ b/documentation/getting-started/password-authentication/index.markdown @@ -0,0 +1,11 @@ +--- +title: Password Authentication +layout: default +--- + +Password authentication can be done via `set` and `ask` in your deploy environment file (e.g.: config/deploy/production.rb) + +```ruby +set :password, ask('Server password', nil) +server 'server.domain.com', user: 'ssh_user_name', port: 22, password: fetch(:password), roles: %w{web app db} +``` diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index c800fef6..524d24d7 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -4,4 +4,3 @@ layout: default --- **Missing Content** - diff --git a/documentation/getting-started/tasks/index.markdown b/documentation/getting-started/tasks/index.markdown new file mode 100644 index 00000000..632155d6 --- /dev/null +++ b/documentation/getting-started/tasks/index.markdown @@ -0,0 +1,19 @@ +``` ruby +server 'example.com', roles: [:web, :app] +server 'example.org', roles: [:db, :workers] +desc "Report Uptimes" +task :uptime do + on roles(:all) do |host| + execute :any_command, "with args", :here, "and here" + info "Host #{host} (#{host.roles.to_a.join(', ')}):\t#{capture(:uptime)}" + end +end +``` + +**Note**: + +**tl;dr**: `execute(:bundle, :install)` and `execute('bundle install')` don't behave identically! + +`execute()` has a subtle behaviour. When calling `within './directory' { execute(:bundle, :install) }` for example, the first argument to `execute()` is a *Stringish* with ***no whitespace***. This allows the command to pass through the [SSHKit::CommandMap](https://github.com/capistrano/sshkit#the-command-map) which enables a number of powerful features. + +When the first argument to `execute()` contains whitespace, for example `within './directory' { execute('bundle install') }` (or when using a heredoc), neither Capistrano, nor SSHKit can reliably predict how it should be shell escaped, and thus cannot perform any context, or command mapping, that means that the `within(){}` (as well as `with()`, `as()`, etc) have no effect. There have been a few attempts to resolve this, but we don't consider it a bug although we acknowledge that it might be a little counter intuitive. diff --git a/documentation/getting-started/user-input/index.markdown b/documentation/getting-started/user-input/index.markdown new file mode 100644 index 00000000..ae6c5cb0 --- /dev/null +++ b/documentation/getting-started/user-input/index.markdown @@ -0,0 +1,22 @@ +--- +title: User Input +layout: default +--- + +``` ruby +desc "Ask about breakfast" +task :breakfast do + ask(:breakfast, "pancakes") + on roles(:all) do |h| + execute "echo \"$(whoami) wants #{fetch(:breakfast)} for breakfast!\"" + end +end +``` + +Perfect, who needs telephones. + +When using `ask` to get user input, you can pass `echo: false` to prevent the input from being displayed: + +```ruby +ask(:database_password, "default", echo: false) +``` From 2f2299e378ebd40424cd4f18fcacc5cf54b515b5 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 18 Jan 2015 15:17:46 +0000 Subject: [PATCH 159/256] links plugins directly to GitHub instead of duplicating the READMEs in here --- _includes/navigation.html | 20 +++++++++------- .../host-and-role-filtering/index.markdown | 0 documentation/plugins/bundler/index.markdown | 10 -------- documentation/plugins/composer/index.markdown | 6 ----- documentation/plugins/laravel/index.markdown | 6 ----- documentation/plugins/npm/index.markdown | 6 ----- .../plugins/passenger/index.markdown | 11 --------- .../plugins/rbenv-rvm-chruby/index.markdown | 17 ------------- .../plugins/ruby-on-rails/index.markdown | 24 ------------------- documentation/plugins/symfony/index.markdown | 6 ----- .../index.markdown | 7 ++++-- 11 files changed, 16 insertions(+), 97 deletions(-) rename documentation/{getting-started => advanced-features}/host-and-role-filtering/index.markdown (100%) delete mode 100644 documentation/plugins/bundler/index.markdown delete mode 100644 documentation/plugins/composer/index.markdown delete mode 100644 documentation/plugins/laravel/index.markdown delete mode 100644 documentation/plugins/npm/index.markdown delete mode 100644 documentation/plugins/passenger/index.markdown delete mode 100644 documentation/plugins/rbenv-rvm-chruby/index.markdown delete mode 100644 documentation/plugins/ruby-on-rails/index.markdown delete mode 100644 documentation/plugins/symfony/index.markdown rename documentation/{plugins/third-party => third-party-plugins}/index.markdown (79%) diff --git a/_includes/navigation.html b/_includes/navigation.html index a6b2841a..503018c0 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -36,15 +36,17 @@
            • Plugins
              -
            • Bundler
            • -
            • Composer
            • -
            • Laravel
            • -
            • npm
            • -
            • Phusion Passenger
            • -
            • rbenv & RVM & chruby
            • -
            • Ruby on Rails
            • -
            • Symfony
            • -
            • 3rd Party Plugins
            • +
            • Bundler
            • +
            • Composer
            • +
            • Laravel
            • +
            • npm
            • +
            • Phusion Passenger
            • +
            • chruby
            • +
            • rbenv
            • +
            • RVM
            • +
            • Ruby on Rails
            • +
            • Symfony
            • +
            • 3rd Party Plugins
            • FAQ
              diff --git a/documentation/getting-started/host-and-role-filtering/index.markdown b/documentation/advanced-features/host-and-role-filtering/index.markdown similarity index 100% rename from documentation/getting-started/host-and-role-filtering/index.markdown rename to documentation/advanced-features/host-and-role-filtering/index.markdown diff --git a/documentation/plugins/bundler/index.markdown b/documentation/plugins/bundler/index.markdown deleted file mode 100644 index 71bbf0ba..00000000 --- a/documentation/plugins/bundler/index.markdown +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Bundler -layout: default ---- - -Capistrano 3 has moved out Bundler integration into the gem called `capistrano-bundler`. -You don't need anything except `require 'capistrano/bundler'` to enable it, although check the project page with README if you wish to customize bundle options. - -
              - diff --git a/documentation/plugins/composer/index.markdown b/documentation/plugins/composer/index.markdown deleted file mode 100644 index ef60d755..00000000 --- a/documentation/plugins/composer/index.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Compose -layout: default ---- - -
              diff --git a/documentation/plugins/laravel/index.markdown b/documentation/plugins/laravel/index.markdown deleted file mode 100644 index 4312cc9b..00000000 --- a/documentation/plugins/laravel/index.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Laravel -layout: default ---- - -
              diff --git a/documentation/plugins/npm/index.markdown b/documentation/plugins/npm/index.markdown deleted file mode 100644 index a0f5337c..00000000 --- a/documentation/plugins/npm/index.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: npm -layout: default ---- - -
              diff --git a/documentation/plugins/passenger/index.markdown b/documentation/plugins/passenger/index.markdown deleted file mode 100644 index 4c19531c..00000000 --- a/documentation/plugins/passenger/index.markdown +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Passenger -layout: default ---- - -Capistrano 3 does not restart your application by default. You need to add a task to do this `after deploy:publishing`. -If you're using passenger, this gem has you covered. All you need to do is `require 'capistrano/passenger' in your Capfile. -Checkout the README to learn how to customize the timing of restarts. By default, the deployment will wait 5 seconds between server restarts so all your servers don't shut off at once. - -
              - diff --git a/documentation/plugins/rbenv-rvm-chruby/index.markdown b/documentation/plugins/rbenv-rvm-chruby/index.markdown deleted file mode 100644 index 88253982..00000000 --- a/documentation/plugins/rbenv-rvm-chruby/index.markdown +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: rbenv & RVM & Chruby -layout: default ---- - -Capistrano 3 comes with official support of most common ruby version managers: rbenv, RVM and Chruby. - -Basic installation includes `require 'capistrano/rbenv'` (or `capistrano/rvm` / `capistrano/chruby`) and defining `set :rbenv_ruby_version, '2.0.0-p247'`, or `rvm_ruby_version` / `chruby_ruby`. - -Capistrano is not taking responsibility to install rubies, so on the servers you are deploying to, you will have to manually install the proper ruby and (optionally) create the gemset. - -Check README of each gem if you want to customize other options like user or system-wide installation type. - -
              -
              -
              - diff --git a/documentation/plugins/ruby-on-rails/index.markdown b/documentation/plugins/ruby-on-rails/index.markdown deleted file mode 100644 index ad9afba4..00000000 --- a/documentation/plugins/ruby-on-rails/index.markdown +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: Ruby on Rails -layout: default ---- - -**Note:** The Ruby on Rails tasks target the most recent Ruby on Rails -version, and as such might be unsuitable for you, please test these recipes in -your staging environment before deploying them to production! - - -### Capistrano::Rails - -The official Gem for Capistrano-Rails is named `capistrano-rails`, and one can -simply define this in one's Rails project's `Gemfile`, it will depend on a -suitably new version of Capistrano. - -The -[`README`](https://github.com/capistrano/rails/blob/master/README.md) -for the Capistrano::Rails explains more than enough, sufficed to say that it -adds appropriate hooks for database migrations and asset compilation at the -appropriate times. - -
              - diff --git a/documentation/plugins/symfony/index.markdown b/documentation/plugins/symfony/index.markdown deleted file mode 100644 index ab3ba0f9..00000000 --- a/documentation/plugins/symfony/index.markdown +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Symfony -layout: default ---- - -
              diff --git a/documentation/plugins/third-party/index.markdown b/documentation/third-party-plugins/index.markdown similarity index 79% rename from documentation/plugins/third-party/index.markdown rename to documentation/third-party-plugins/index.markdown index 8a3dacc8..df103c54 100644 --- a/documentation/plugins/third-party/index.markdown +++ b/documentation/third-party-plugins/index.markdown @@ -1,9 +1,10 @@ --- -title: 3rd Plugins +title: 3rd Party Plugins layout: default --- Here are some Capistrano plugins you might find useful. +This list is neither complete nor audited in any way.
              @@ -13,6 +14,8 @@ Here are some Capistrano plugins you might find useful.
              +
              +
              -
              +
              From 9d77662dd8ef039545401711f45cbf4a91190d0f Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Mon, 19 Jan 2015 10:07:58 +0000 Subject: [PATCH 160/256] fix syntax highlighting --- .../capistrano-pure-ruby/index.markdown | 1 + .../advanced-features/console/index.markdown | 8 ++++---- .../getting-started/before-after/index.markdown | 12 ++++++------ .../getting-started/local-tasks/index.markdown | 12 ++++++------ .../password-authentication/index.markdown | 4 ++-- documentation/getting-started/tasks/index.markdown | 4 ++-- .../getting-started/user-input/index.markdown | 8 ++++---- 7 files changed, 25 insertions(+), 24 deletions(-) diff --git a/documentation/advanced-features/capistrano-pure-ruby/index.markdown b/documentation/advanced-features/capistrano-pure-ruby/index.markdown index 97bb8661..ba161bd4 100644 --- a/documentation/advanced-features/capistrano-pure-ruby/index.markdown +++ b/documentation/advanced-features/capistrano-pure-ruby/index.markdown @@ -3,6 +3,7 @@ title: Capistrano in ruby script layout: default --- Instead of building a config folder and deploy, you may want to programmatically set everything in a single ruby script. This could be done as follows: + {% highlight ruby %} require 'capistrano/all' diff --git a/documentation/advanced-features/console/index.markdown b/documentation/advanced-features/console/index.markdown index 0348d2fc..3e5117ad 100644 --- a/documentation/advanced-features/console/index.markdown +++ b/documentation/advanced-features/console/index.markdown @@ -11,13 +11,13 @@ Execute arbitrary remote commands, to use this simply add `require 'capistrano/console'` which will add the necessary tasks to your environment: -``` sh +{% highlight bash %} $ bundle exec cap staging console -``` +{% endhighlight %} Then, after setting up the server connections, this is how that might look: -``` sh +{% highlight bash %} $ bundle exec cap production console capistrano console - enter command to execute on production production> uptime @@ -30,4 +30,4 @@ production> who DEBUG [9ce34809] Command: /usr/bin/env who DEBUG [9ce34809] leehambley pts/0 2013-06-13 17:11 (port-11262.pppoe.wtnet.de) INFO [9ce34809] Finished in 0.420 seconds command successful. -``` +{% endhighlight %} diff --git a/documentation/getting-started/before-after/index.markdown b/documentation/getting-started/before-after/index.markdown index b94b36f6..fab212fb 100644 --- a/documentation/getting-started/before-after/index.markdown +++ b/documentation/getting-started/before-after/index.markdown @@ -5,7 +5,7 @@ layout: default Where calling on the same task name, executed in order of inclusion -``` ruby +{% highlight ruby %} # call an existing task before :starting, :ensure_user @@ -20,12 +20,12 @@ end after :finishing, :notify do # end -``` +{% endhighlight %} If it makes sense for your use case (often, that means *generating a file*) the Rake prerequisite mechanism can be used: -``` ruby +{% highlight ruby %} desc "Create Important File" file 'important.txt' do |t| sh "touch #{t.name}" @@ -36,11 +36,11 @@ task :upload => 'important.txt' do |t| upload!(t.prerequisites.first, '/tmp') end end -``` +{% endhighlight %} The final way to call out to other tasks is to simply `invoke()` them: -``` ruby +{% highlight ruby %} namespace :example do task :one do on roles(:all) { info "One" } @@ -50,6 +50,6 @@ namespace :example do on roles(:all) { info "Two" } end end -``` +{% endhighlight %} This method is widely used. diff --git a/documentation/getting-started/local-tasks/index.markdown b/documentation/getting-started/local-tasks/index.markdown index c21c680d..3d0faa57 100644 --- a/documentation/getting-started/local-tasks/index.markdown +++ b/documentation/getting-started/local-tasks/index.markdown @@ -5,7 +5,7 @@ layout: default Local tasks can be run by replacing `on` with `run_locally`: -```ruby +{% highlight ruby %} desc 'Notify service of deployment' task :notify do run_locally do @@ -14,22 +14,22 @@ task :notify do end end end -``` +{% endhighlight %} Of course, you can always just use standard ruby syntax to run things locally: -```ruby +{% highlight ruby %} desc 'Notify service of deployment' task :notify do %x('RAILS_ENV=development bundle exec rake "service:notify"') end -``` +{% endhighlight %} Alternatively you could use the rake syntax: -```ruby +{% highlight ruby %} desc "Notify service of deployment" task :notify do sh 'RAILS_ENV=development bundle exec rake "service:notify"' end -``` +{% endhighlight %} diff --git a/documentation/getting-started/password-authentication/index.markdown b/documentation/getting-started/password-authentication/index.markdown index dc0d40b3..b95b38aa 100644 --- a/documentation/getting-started/password-authentication/index.markdown +++ b/documentation/getting-started/password-authentication/index.markdown @@ -5,7 +5,7 @@ layout: default Password authentication can be done via `set` and `ask` in your deploy environment file (e.g.: config/deploy/production.rb) -```ruby +{% highlight ruby %} set :password, ask('Server password', nil) server 'server.domain.com', user: 'ssh_user_name', port: 22, password: fetch(:password), roles: %w{web app db} -``` +{% endhighlight %} diff --git a/documentation/getting-started/tasks/index.markdown b/documentation/getting-started/tasks/index.markdown index 632155d6..ed7198c3 100644 --- a/documentation/getting-started/tasks/index.markdown +++ b/documentation/getting-started/tasks/index.markdown @@ -1,4 +1,4 @@ -``` ruby +{% highlight ruby %} server 'example.com', roles: [:web, :app] server 'example.org', roles: [:db, :workers] desc "Report Uptimes" @@ -8,7 +8,7 @@ task :uptime do info "Host #{host} (#{host.roles.to_a.join(', ')}):\t#{capture(:uptime)}" end end -``` +{% endhighlight %} **Note**: diff --git a/documentation/getting-started/user-input/index.markdown b/documentation/getting-started/user-input/index.markdown index ae6c5cb0..da88360d 100644 --- a/documentation/getting-started/user-input/index.markdown +++ b/documentation/getting-started/user-input/index.markdown @@ -3,7 +3,7 @@ title: User Input layout: default --- -``` ruby +{% highlight ruby %} desc "Ask about breakfast" task :breakfast do ask(:breakfast, "pancakes") @@ -11,12 +11,12 @@ task :breakfast do execute "echo \"$(whoami) wants #{fetch(:breakfast)} for breakfast!\"" end end -``` +{% endhighlight %} Perfect, who needs telephones. When using `ask` to get user input, you can pass `echo: false` to prevent the input from being displayed: -```ruby +{% highlight ruby %} ask(:database_password, "default", echo: false) -``` +{% endhighlight %} From 2592c12040d75416abf923eda131d3488410fd3a Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Mon, 19 Jan 2015 10:42:09 +0000 Subject: [PATCH 161/256] add warning about host & role syntax one should use only one syntax, not both at the same time. --- .../getting-started/preparing-your-application/index.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index eda4e52c..8ab2d338 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -125,6 +125,10 @@ comprehensively from something like the *EC2* command line tools, and want to use the extended properties for something that makes sense in their environment. +
              +Only use one syntax to define your server and roles. Do NOT use both for the same server+role. It will break your deployment. +
              + Servers can be defined in a bunch of ways, the following shows defining two servers, one where we set the username, and another where we set the port. These host strings are parsed and expanded out in to the equivalent of the From 533acf95232b71ab587b199b3ff253ffa0d9cd7d Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Mon, 19 Jan 2015 10:42:24 +0000 Subject: [PATCH 162/256] add page about directory structure on server --- _includes/navigation.html | 1 + .../getting-started/structure/index.markdown | 40 +++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 documentation/getting-started/structure/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index 503018c0..667e4975 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -11,6 +11,7 @@
            • Installation
            • Configuration
            • +
            • Structure
            • Preparing Your Application
            • Flow
            • Rollbacks
            • diff --git a/documentation/getting-started/structure/index.markdown b/documentation/getting-started/structure/index.markdown new file mode 100644 index 00000000..d9475d36 --- /dev/null +++ b/documentation/getting-started/structure/index.markdown @@ -0,0 +1,40 @@ +--- +title: Structure +layout: default +--- + +Capistrano uses a strictly defined directory hierarchy on each remote server to organise the source code and other deployment-related data. The root path of this structure can be defined with the configuration variable `:deploy_to`. + +Assuming your `config/deploy.rb` contains this: + +{% highlight ruby %} +set :deploy_to, '/var/www/my_app_name' +{% endhighlight %} + + +Then inspecting the directories inside `/var/www/my_app_name` looks like this: + +{% highlight bash %} + ├── current -> /var/www/my_app_name/releases/20150120114500/ + ├── releases + │   ├── 20150080072500 + │   ├── 20150090083000 + │   ├── 20150100093500 + │   ├── 20150110104000 + │   └── 20150120114500 + ├── repo + │ └── + ├── revisions.log + └── shared + └── +{% endhighlight %} + + + * `current` is a symlink pointing to the latest release. This symlink is updated at the end of a successful deployment. If the deployment fails in any step the `current` symlink still points to the old release. + * `releases` holds all deployments in a timestamped folder. These folders are the target of the `current` symlink. + * `repo` holds the version control system configured. In case of a git repository the content will be a raw git repository (e.g. objects, refs, etc.). + * `revisions.log` is used to log every deploy or rollback. Each entry is timestamped and the executing user (username from local machine) is listed. Depending on your VCS data like branchnames or revision numbers are listed as well. + * `shared` contains the `linked_files` and `linked_dirs` which are symlinked into each release. This data persists across deployments and releases. It should be used for things like database configuration files and static and persistent user storage handed over from one release to the next. + + +The application is completely contained within the path of `:deploy_to`. If you plan on deploying multiple applications to the same server, simply choose a different `:deploy_to` path. From 6819b683e7a720b126271264daa2867983d722ab Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 10:55:59 +0000 Subject: [PATCH 163/256] fix line wrap --- .../preparing-your-application/index.markdown | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index 8ab2d338..e2e8628d 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -24,9 +24,9 @@ miscomprehended notions upon anyone.
              If you've accidentally committed state secrets to the repository, you might -want to take special -steps to erase them from the repository history for all time. +want to take +special steps +to erase them from the repository history for all time.
              Ideally one should remove `config/database.yml` to something like @@ -67,7 +67,8 @@ This will create a bunch of files, the important ones are: └── tasks {% endhighlight %} -Your new Capfile will automatically include any tasks from any `*.rake` files in `lib/capistrano/tasks`. +Your new Capfile will automatically include any tasks from any `*.rake` files +in `lib/capistrano/tasks`. ### 4. Configure your server addresses in the generated files. @@ -126,7 +127,8 @@ use the extended properties for something that makes sense in their environment.
              -Only use one syntax to define your server and roles. Do NOT use both for the same server+role. It will break your deployment. +Only use one syntax to define your server and roles. Do NOT use both for the +same server+role. It will break your deployment.
              Servers can be defined in a bunch of ways, the following shows defining two From 9d2b76ab79371e99ac81d89bd04b4386561a8b52 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 10:56:20 +0000 Subject: [PATCH 164/256] fix list of supported VCS/SCM systems --- .../preparing-your-application/index.markdown | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index e2e8628d..bb785d07 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -13,12 +13,8 @@ layout: default If you are not doing so already, you should host your code somewhere with a provider such as Github, BitBucket, Codeplane, or repositoryhosting.com. -
              -At present Capistrano v3.0.x only supports Git. It's just a matter of time -until we support Subversion, Mecurial, Darcs and friends again. Please -contribute if you know these tools well, we do not and don't want to force our -miscomprehended notions upon anyone. -
              +Capistrano currently supports Git, Mercurial, and SVN out of the box. +There might be 3rd party plugins adding support for various other systems. ### 2. Move secrets out of the repository. From 4eb7e72c4a0867f1d54c78b617b5389dface7150 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 19:55:46 +0000 Subject: [PATCH 165/256] fix missing front-matter --- documentation/advanced-features/ptys/index.markdown | 4 ++++ documentation/getting-started/tasks/index.markdown | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/documentation/advanced-features/ptys/index.markdown b/documentation/advanced-features/ptys/index.markdown index e682b2d2..e684e70b 100644 --- a/documentation/advanced-features/ptys/index.markdown +++ b/documentation/advanced-features/ptys/index.markdown @@ -1,3 +1,7 @@ +--- +title: PTYs +layout: default +--- There is a configuration option which asks the backend driver to ask the remote host to assign the connection a *pty*. A *pty* is a pseudo-terminal, which in effect means diff --git a/documentation/getting-started/tasks/index.markdown b/documentation/getting-started/tasks/index.markdown index ed7198c3..e7f0c63d 100644 --- a/documentation/getting-started/tasks/index.markdown +++ b/documentation/getting-started/tasks/index.markdown @@ -1,3 +1,8 @@ +--- +title: Tasks +layout: default +--- + {% highlight ruby %} server 'example.com', roles: [:web, :app] server 'example.org', roles: [:db, :workers] From a4a3d57cd90f229e31d93efe6c498526da044e51 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 20:44:18 +0000 Subject: [PATCH 166/256] add configuration variables with explainations --- .../configuration/index.markdown | 113 ++++++++++++++++-- 1 file changed, 101 insertions(+), 12 deletions(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index ccefbe3f..d0fe7f2f 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -3,20 +3,109 @@ title: Configuration layout: default --- -## Configuration +## Location + +Configuration variables can be either global or specific to your stage. + +* global + * `config/deploy.rb` +* stage specific + * `config/deploy/.rb` + +## Access + +Each variable can be set to a specific value: + +{% highlight ruby %} +set :application, 'MyLittleApplication' + +# use a lambda to delay evaluation +set :application, -> { "SomeThing_#{fetch :other_config}" } +{% endhighlight %} + + +A value can be retrieved from the configuration at any time: + +{% highlight ruby %} +fetch :application +# => "MyLittleApplication" + +fetch(:special_thing, 'some_default_value') +# will return the value if set, or the second argument as default value +{% endhighlight %} + +## Variables The following variables are settable: -| Variable Name | Description | Notes | -|:---------------------:|----------------------------------------------------------------------|-----------------------------------------------------------------| -| `:repo_url` | The URL of your scm repository (git, hg, svn) | file://, https://, ssh://, or svn+ssh:// are all supported | -| `:repo_tree` | The subtree of the scm repository to deploy (git, hg) | Only implemented for git and hg repos. Extract just this tree | -| `:branch` | The branch you wish to deploy | This only has meaning for git and hg repos, to specify the branch of an svn repo, set `:repo_url` to the branch location. | -| `:scm` | The source control system used | `:git`, `:hg`, `:svn` are currently supported | -| `:tmp_dir` | The (optional) temp directory that will be used (default: /tmp) | if you have a shared web host, this setting may need to be set (i.e. /home/user/tmp/capistrano). | +* `:application` + * The name of the application. -__Support removed__ for following variables: +* `:deploy_to` + * **default:** `-> { "/var/www/#{fetch(:application)}" }` + * The path on the remote server where the application should be deployed. + * If application contains whitespace or such this path might be invalid. See Structure for the exact directorys used. -| Variable Name | Description | Notes | -|:---------------------:|---------------------------------------------------------------------|-----------------------------------------------------------------| -| `:copy_exclude` | The (optional) array of files and/or folders excluded from deploy | Replaced by Git's native `.gitattributes`, see [#515](https://github.com/capistrano/capistrano/issues/515) for more info. | +* `:scm` + * **default:** `:git` + * The Source Control Management used. + * Currently :git, :hg and :svn are supported. Plugins might add additional ones. + +* `:repo_url` + * URL to the repository. + * Must be a valid URL for the used SCM. + +* `:repo_tree` + * The subtree of the repository to deploy. + * Currently only implemented for Git and Hg. + +* `:linked_files` + * **default:** `[]` + * Listed files will be symlinked into each release directory during deployment. + * Can be used for persistent configuration files like `database.yml`. See Structure for the exact directorys. + +* `:linked_dirs` + * **default:** `[]` + * Listed directories will be symlinked into the release directory during deployment. + * Can be used for persistent directories like uploads or other data. See Structure for the exact directorys. + +* `:default_env` + * **default:** `{}` + * Default shell environment used during command execution. + * Can be used to set or manipulate specific environment variables (e.g. `$PATH` and such). + +* `:branch` + * **default:** `'master'` + * The branch name to be deployed from SCM. + +* `:keep_releases` + * **default:** `5` + * The last `n` releases are kept for possible rollbacks. + * The cleanup task detects outdated release folders and removes them if needed. + +* `:tmp_dir` + * **default:** `'/tmp'` + * Temporary directory used during deployments to store data. + * If you have a shared web host, this setting may need to be set (e.g. /home/user/tmp/capistrano). + +* `:local_user` + * **default:** `-> { Etc.getlogin }` + * Username of the local machine used to update the revision log. + +* `:pty` + * **default:** `false` + * Used in SSHKit. + +* `:log_level` + * **default:** `:debug` + * Used in SSHKit. + +* `:format` + * **default:** `:pretty` + * Used in SSHKit. + + +Capistrano plugins can provide their own configuration variables. Please refer +to the plugin documentation for the specifics. Plugins are allowed to add or +manipulate default values as well as already user-defined values after the +plugin is loaded. From 9c4ede25614277db2e960ad23e7b5b925bfbd43d Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Thu, 22 Jan 2015 15:23:09 +0000 Subject: [PATCH 167/256] fix external links --- .../2013-06-01-release-announcement.markdown | 5 +---- .../getting-started/cold-start/index.markdown | 20 ++++++++----------- .../installation/index.markdown | 2 +- 3 files changed, 10 insertions(+), 17 deletions(-) diff --git a/_posts/2013-06-01-release-announcement.markdown b/_posts/2013-06-01-release-announcement.markdown index c4a14a5d..4aae5058 100644 --- a/_posts/2013-06-01-release-announcement.markdown +++ b/_posts/2013-06-01-release-announcement.markdown @@ -103,10 +103,7 @@ essentially a dependency resolution system, it offers a lot of nice ways to, for example build a tarball as a dependency of uploading it and deploying it. This has allowed us to do away with the *copy* strategy all together, as it -can now be implemented from scratch in fewer than ten lines of code. You can -check out the [replicating the copy -strategy](/screencasts/replicating_the_copy_strategy) screencast and -acompanying documentation if you want to explore that any further. +can now be implemented from scratch in fewer than ten lines of code. The guiding principle is dependency resolution, and interoperability with other tools, for example: diff --git a/documentation/getting-started/cold-start/index.markdown b/documentation/getting-started/cold-start/index.markdown index 3f5a730a..bc499ddb 100644 --- a/documentation/getting-started/cold-start/index.markdown +++ b/documentation/getting-started/cold-start/index.markdown @@ -102,14 +102,12 @@ simply call: me@localhost $ cap staging git:check {% endhighlight %} -This task is defined -[here](https://github.com/capistrano/capistrano/blob/master/lib/capistrano/tasks/git.rake) -in the source code, and looks a lot like what we wrote above to check the file -permissions, however the Git check recipe is a bit more complicated, having to -potentially deal with three different authentication schemes, which need to be -worked around differently. This task expresses a *dependency* on the -`git:git-wrapper` task which is resolved first for us by Capistrano. (This is -one of the pieces we inherit from Rake) +This task is defined in the default Git SCM-strategy and looks a lot like what +we wrote above to check the file permissions, however the Git check recipe is +a bit more complicated, having to potentially deal with three different +authentication schemes, which need to be worked around differently. This task +expresses a *dependency* on the `git:git-wrapper` task which is resolved first +for us by Capistrano. (This is one of the pieces we inherit from Rake) If this fails we'll see: @@ -145,10 +143,8 @@ To run through that shortly, what did we do: 2. Capistrano recognised that in order to fulfil this request, it had to first execute the task `git:wrapper`, a *prerequisite*. 3. Capistrano executed the `git:wrapper` task, and uploaded the - `/tmp/git-ssh.sh` file, and made it executable. This satisfies the - `git:wrapper` task defined - [here](https://github.com/capistrano/capistrano/blob/v3/lib/capistrano/tasks/git.rake#L9) - in the source code. This script is actually processed as a template. + `/tmp/git-ssh.sh` file, and made it executable. + This script is actually processed as a template. 4. With the git wrapper in place, we can safely script against Git without it prompting us for input, so we ask git to `ls-remote` on the repository we defined. As this exited with an [unclean diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index c469b46a..1efdf05d 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -76,7 +76,7 @@ the risk of accidentally upgrading to `v3`. -- [rubygems]: http://rubygems.org/ -[rubygems-pessimistic-operator]: http://docs.rubygems.org/read/chapter/16#page74 +[rubygems-pessimistic-operator]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint [capistrano-rails-asset-pipeline-readme]: https://github.com/capistrano/rails/blob/master/README.md [capistrano-rails-database-migrations-readme]: https://github.com/capistrano/rails/blob/master/README.md [capistrano-rails-gem-bundler-readme]: https://github.com/capistrano/bundler/blob/master/README.md From fc74d7df6cdba9eec1cce2698c2582419aef7676 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Thu, 22 Jan 2015 15:24:57 +0000 Subject: [PATCH 168/256] add capistrano logo img alt attribute --- _includes/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/header.html b/_includes/header.html index 48a7c4ae..1f42b622 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -2,7 +2,7 @@ From 34923b9814fab8934d515c78e9f95ac4b9ca9f52 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Thu, 22 Jan 2015 19:10:42 +0000 Subject: [PATCH 169/256] merge user input and password ask page --- _includes/navigation.html | 5 ++- .../password-authentication/index.markdown | 11 ------ .../getting-started/user-input/index.markdown | 34 ++++++++++++++++--- 3 files changed, 32 insertions(+), 18 deletions(-) delete mode 100644 documentation/getting-started/password-authentication/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index 667e4975..7d1ddc1f 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -10,18 +10,17 @@
            • The Readme, start here!
            • Installation
            • -
            • Configuration
            • Structure
            • +
            • Configuration
            • +
            • User Input
            • Preparing Your Application
            • Flow
            • Rollbacks
            • Cold Start
            • Tasks
            • Local Tasks
            • -
            • User Input
            • Before / After Hooks
            • Authentication & Authorisation
            • -
            • Password Authentication
            • Advanced Features
              diff --git a/documentation/getting-started/password-authentication/index.markdown b/documentation/getting-started/password-authentication/index.markdown deleted file mode 100644 index b95b38aa..00000000 --- a/documentation/getting-started/password-authentication/index.markdown +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Password Authentication -layout: default ---- - -Password authentication can be done via `set` and `ask` in your deploy environment file (e.g.: config/deploy/production.rb) - -{% highlight ruby %} -set :password, ask('Server password', nil) -server 'server.domain.com', user: 'ssh_user_name', port: 22, password: fetch(:password), roles: %w{web app db} -{% endhighlight %} diff --git a/documentation/getting-started/user-input/index.markdown b/documentation/getting-started/user-input/index.markdown index da88360d..b2be70e3 100644 --- a/documentation/getting-started/user-input/index.markdown +++ b/documentation/getting-started/user-input/index.markdown @@ -3,7 +3,13 @@ title: User Input layout: default --- +User input can be required in a task or during configuration: + {% highlight ruby %} +# used in a configuration +set :database_name, ask('Enter the database name:') + +# used in a task desc "Ask about breakfast" task :breakfast do ask(:breakfast, "pancakes") @@ -13,10 +19,30 @@ task :breakfast do end {% endhighlight %} -Perfect, who needs telephones. - -When using `ask` to get user input, you can pass `echo: false` to prevent the input from being displayed: +When using `ask` to get user input, you can pass `echo: false` to prevent the +input from being displayed. This option should be used to ask the user for +passwords and other sensitive data during a deploy run. {% highlight ruby %} -ask(:database_password, "default", echo: false) +set :database_password, ask('Enter the database password:', 'default', echo: false) +{% endhighlight %} + + +If you only pass in a symbol this will be printed as text for the user and the +input will be saved to this variable: + +{% highlight ruby %} +ask(:database_encoding, 'UTF-8') + +fetch(:database_encoding) +# => contains the user input (or the default) +# once the above line got executed +{% endhighlight %} + + +You can use `ask` to set a server- or role-specific configuration variable. + +{% highlight ruby %} +set :password, ask('Server password', nil) +server 'example.com', user: 'ssh_user_name', port: 22, password: fetch(:password), roles: %w{web app db} {% endhighlight %} From 311bbc5bbfe6b8bb3f1e2a146940f259cb7e6a56 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 11:08:18 +0000 Subject: [PATCH 170/256] use correct gem versions according to GitHub Pages up-to-date versions of installed gems are listed: https://pages.github.com/versions/ --- Gemfile | 9 ++-- Gemfile.lock | 144 +++++++++++++++++++++++++++++++++++---------------- 2 files changed, 106 insertions(+), 47 deletions(-) diff --git a/Gemfile b/Gemfile index 778e82e8..fc892603 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,8 @@ source "https://rubygems.org" -gem "jekyll" -gem "unindent" -gem 'github-pages', github: 'github/pages-gem' +# keep versions up-to-date with the actual GitHub Pages setup +# https://pages.github.com/versions/ + +# just do `bundle update` to get the latest version. + +gem 'github-pages' diff --git a/Gemfile.lock b/Gemfile.lock index 7cfa2cb7..686123da 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,70 +1,126 @@ -GIT - remote: git://github.com/github/pages-gem.git - revision: a73cbe4d6b683e0ef1bbeefc01e10daac1498a65 - specs: - github-pages (12) - RedCloth (= 4.2.9) - jekyll (= 1.4.2) - kramdown (= 1.2.0) - liquid (= 2.5.4) - maruku (= 0.7.0) - rdiscount (= 2.1.7) - redcarpet (= 2.3.0) - GEM remote: https://rubygems.org/ specs: RedCloth (4.2.9) + activesupport (4.2.0) + i18n (~> 0.7) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.3, >= 0.3.4) + tzinfo (~> 1.1) blankslate (2.1.2.4) - classifier (1.3.4) - fast-stemmer (>= 1.0.0) + celluloid (0.16.0) + timers (~> 4.0.0) + classifier-reborn (2.0.3) + fast-stemmer (~> 1.0) + coffee-script (2.3.0) + coffee-script-source + execjs + coffee-script-source (1.8.0) colorator (0.1) - commander (4.1.5) - highline (~> 1.6.11) + execjs (2.2.2) fast-stemmer (1.0.2) - ffi (1.9.3) - highline (1.6.20) - jekyll (1.4.2) - classifier (~> 1.3) + ffi (1.9.6) + gemoji (2.1.0) + github-pages (32) + RedCloth (= 4.2.9) + github-pages-health-check (~> 0.2) + jekyll (= 2.4.0) + jekyll-coffeescript (= 1.0.1) + jekyll-mentions (= 0.2.1) + jekyll-redirect-from (= 0.6.2) + jekyll-sass-converter (= 1.2.0) + jekyll-sitemap (= 0.6.3) + jemoji (= 0.4.0) + kramdown (= 1.5.0) + liquid (= 2.6.1) + maruku (= 0.7.0) + mercenary (~> 0.3) + pygments.rb (= 0.6.0) + rdiscount (= 2.1.7) + redcarpet (= 3.1.2) + terminal-table (~> 1.4) + github-pages-health-check (0.2.1) + net-dns (~> 0.6) + public_suffix (~> 1.4) + hitimes (1.2.2) + html-pipeline (1.9.0) + activesupport (>= 2) + nokogiri (~> 1.4) + i18n (0.7.0) + jekyll (2.4.0) + classifier-reborn (~> 2.0) colorator (~> 0.1) - commander (~> 4.1.3) - liquid (~> 2.5.2) - listen (~> 1.3) - maruku (~> 0.7.0) - pygments.rb (~> 0.5.0) - redcarpet (~> 2.3.0) - safe_yaml (~> 0.9.7) + jekyll-coffeescript (~> 1.0) + jekyll-gist (~> 1.0) + jekyll-paginate (~> 1.0) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 1.1) + kramdown (~> 1.3) + liquid (~> 2.6.1) + mercenary (~> 0.3.3) + pygments.rb (~> 0.6.0) + redcarpet (~> 3.1) + safe_yaml (~> 1.0) toml (~> 0.1.0) - kramdown (1.2.0) - liquid (2.5.4) - listen (1.3.1) + jekyll-coffeescript (1.0.1) + coffee-script (~> 2.2) + jekyll-gist (1.1.0) + jekyll-mentions (0.2.1) + html-pipeline (~> 1.9.0) + jekyll (~> 2.0) + jekyll-paginate (1.1.0) + jekyll-redirect-from (0.6.2) + jekyll (~> 2.0) + jekyll-sass-converter (1.2.0) + sass (~> 3.2) + jekyll-sitemap (0.6.3) + jekyll-watch (1.2.0) + listen (~> 2.7) + jemoji (0.4.0) + gemoji (~> 2.0) + html-pipeline (~> 1.9) + jekyll (~> 2.0) + json (1.8.2) + kramdown (1.5.0) + liquid (2.6.1) + listen (2.8.5) + celluloid (>= 0.15.2) rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9) - rb-kqueue (>= 0.2) maruku (0.7.0) + mercenary (0.3.5) + mini_portile (0.6.2) + minitest (5.5.1) + net-dns (0.8.0) + nokogiri (1.6.5) + mini_portile (~> 0.6.0) parslet (1.5.0) blankslate (~> 2.0) - posix-spawn (0.3.8) - pygments.rb (0.5.4) + posix-spawn (0.3.9) + public_suffix (1.4.6) + pygments.rb (0.6.0) posix-spawn (~> 0.3.6) yajl-ruby (~> 1.1.0) rb-fsevent (0.9.4) - rb-inotify (0.9.3) - ffi (>= 0.5.0) - rb-kqueue (0.2.0) + rb-inotify (0.9.5) ffi (>= 0.5.0) rdiscount (2.1.7) - redcarpet (2.3.0) - safe_yaml (0.9.7) - toml (0.1.0) + redcarpet (3.1.2) + safe_yaml (1.0.4) + sass (3.4.10) + terminal-table (1.4.5) + thread_safe (0.3.4) + timers (4.0.1) + hitimes + toml (0.1.2) parslet (~> 1.5.0) - unindent (1.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) yajl-ruby (1.1.0) PLATFORMS ruby DEPENDENCIES - github-pages! - jekyll - unindent + github-pages From dc24096bb8783e689bd1ca374590e396f39341ca Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 11:14:35 +0000 Subject: [PATCH 171/256] fix stated Ruby version dependency --- documentation/getting-started/installation/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index 1efdf05d..ba25a04c 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -3,7 +3,7 @@ title: Installation layout: default --- -Capistrano is bundled as a Ruby Gem. **It requires Ruby 1.9 or newer.** +Capistrano is bundled as a Ruby Gem. **It requires Ruby 1.9.3 or newer.** Capistrano can be installed as a standalone Gem, or bundled into your application. From 85a8d1fac85995ebced4f6c5a0c202b192438a75 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 21 Jan 2015 11:29:48 +0000 Subject: [PATCH 172/256] fix layout indentation for pygments must start at column 0 lines wrapped at column 80-ish --- .../capistrano-pure-ruby/index.markdown | 32 ++-- .../host-filtering/index.markdown | 6 +- .../index.markdown | 20 ++- .../advanced-features/ptys/index.markdown | 32 ++-- .../remote-file/index.markdown | 17 +- .../role-filtering/index.markdown | 6 +- .../index.markdown | 2 +- .../index.markdown | 48 +++--- .../index.markdown | 127 +++++++-------- .../getting-started/cold-start/index.markdown | 148 +++++++++--------- .../getting-started/flow/index.markdown | 4 +- .../installation/index.markdown | 20 +-- .../preparing-your-application/index.markdown | 82 +++++----- .../getting-started/structure/index.markdown | 52 +++--- .../introductory-demo-video/index.markdown | 36 ----- .../what-is-capistrano/index.markdown | 85 +++++----- documentation/upgrading/index.markdown | 127 ++++++++------- 17 files changed, 421 insertions(+), 423 deletions(-) delete mode 100644 documentation/overview/introductory-demo-video/index.markdown diff --git a/documentation/advanced-features/capistrano-pure-ruby/index.markdown b/documentation/advanced-features/capistrano-pure-ruby/index.markdown index ba161bd4..72fc4745 100644 --- a/documentation/advanced-features/capistrano-pure-ruby/index.markdown +++ b/documentation/advanced-features/capistrano-pure-ruby/index.markdown @@ -2,24 +2,28 @@ title: Capistrano in ruby script layout: default --- -Instead of building a config folder and deploy, you may want to programmatically set everything in a single ruby script. This could be done as follows: + +Instead of building a config folder and deploy, you may want to +programmatically set everything in a single ruby script. This could be done as +follows: {% highlight ruby %} - require 'capistrano/all' +require 'capistrano/all' - stages = "production" - set :application, 'my_app_name' - set :repo_url, 'git@github.com:capistrano/capistrano.git' - set :deploy_to, '/var/www/' - set :stage, :production - role :app, %w{} +stages = "production" +set :application, 'my_app_name' +set :repo_url, 'git@github.com:capistrano/capistrano.git' +set :deploy_to, '/var/www/' +set :stage, :production +role :app, %w{} - require 'capistrano/setup' - require 'capistrano/deploy' - Dir.glob('capistrano/tasks/*.rake').each { |r| import r } +require 'capistrano/setup' +require 'capistrano/deploy' +Dir.glob('capistrano/tasks/*.rake').each { |r| import r } - Capistrano::Application.invoke("production") - Capistrano::Application.invoke("deploy") +Capistrano::Application.invoke("production") +Capistrano::Application.invoke("deploy") {% endhighlight%} -Note that the require order is important as the stage needs to be set before you load setup and deploy. +Note that the require order is important as the stage needs to be set before +you load setup and deploy. diff --git a/documentation/advanced-features/host-filtering/index.markdown b/documentation/advanced-features/host-filtering/index.markdown index 7004939e..261e8839 100644 --- a/documentation/advanced-features/host-filtering/index.markdown +++ b/documentation/advanced-features/host-filtering/index.markdown @@ -35,7 +35,7 @@ Capistrano will read the host filter from the environment variable `HOSTS` if it is set. You can set it inline: {% highlight bash %} - HOSTS=server1,server2 cap production deploy +HOSTS=server1,server2 cap production deploy {% endhighlight %} Specify multiple hosts by separating them with a comma. @@ -46,7 +46,7 @@ You can set the host filter inside your deploy configuration. For example, you can set the following inside `config/deploy.rb`: {% highlight ruby %} - set :filter, :host => %w{server1 server2} +set :filter, :host => %w{server1 server2} {% endhighlight %} Note that you specify the filter as an array rather than as a comma-separated @@ -58,7 +58,7 @@ In a similar way to using the environment variable, you can set the role filter by specifying it as a command line argument to `cap`: {% highlight bash %} - cap --hosts=server1,server2 production deploy +cap --hosts=server1,server2 production deploy {% endhighlight %} Like the environment variable method, specify multiple servers by separating diff --git a/documentation/advanced-features/overriding-capistrano-tasks/index.markdown b/documentation/advanced-features/overriding-capistrano-tasks/index.markdown index ee292671..4da973a7 100644 --- a/documentation/advanced-features/overriding-capistrano-tasks/index.markdown +++ b/documentation/advanced-features/overriding-capistrano-tasks/index.markdown @@ -3,7 +3,9 @@ title: Overriding Capistrano tasks layout: default --- -When re-defining a task in Capistrano v2, the original task was replaced. The Rake DSL on which Capistrano v3 is built is additive however, which means that given the following definitions +When re-defining a task in Capistrano v2, the original task was replaced. The +Rake DSL on which Capistrano v3 is built is additive however, which means that +given the following definitions {% highlight ruby %} task :foo do @@ -17,13 +19,18 @@ end Will print both `foo` and `bar`. -But it is also possible to completely clear a task and then re-defining it from scratch. A `Rake::Task` provides the `clear` method for this, which internally performs three separate actions: +But it is also possible to completely clear a task and then re-defining it +from scratch. A `Rake::Task` provides the `clear` method for this, which +internally performs three separate actions: - `clear_prerequisites` - `clear_actions` - `clear_comments` -Clearing the prerequisites (i.e. any dependencies that may have been defined for a task) is probably not what you want, though. Let's say, for example, that you want to re-define the `deploy:revert_release` task, which is defined as follows: +Clearing the prerequisites (i.e. any dependencies that may have been defined +for a task) is probably not what you want, though. Let's say, for example, +that you want to re-define the `deploy:revert_release` task, which is defined +as follows: {% highlight ruby %} task :revert_release => :rollback_release_path do @@ -31,9 +38,12 @@ task :revert_release => :rollback_release_path do end {% endhighlight %} -Calling `clear` on this task and then re-defining it results in `rollback_release_path` never being called, thus breaking rollback behavior. +Calling `clear` on this task and then re-defining it results in +`rollback_release_path` never being called, thus breaking rollback behavior. -Under most circumstances, you will simply want to use `clear_actions`, which removes the specified task's behaviour, but does not alter it's dependencies or comments: +Under most circumstances, you will simply want to use `clear_actions`, which +removes the specified task's behaviour, but does not alter it's dependencies +or comments: {% highlight ruby %} task :init do diff --git a/documentation/advanced-features/ptys/index.markdown b/documentation/advanced-features/ptys/index.markdown index e684e70b..f25bec4e 100644 --- a/documentation/advanced-features/ptys/index.markdown +++ b/documentation/advanced-features/ptys/index.markdown @@ -3,21 +3,25 @@ title: PTYs layout: default --- -There is a configuration option which asks the backend driver to ask the remote host -to assign the connection a *pty*. A *pty* is a pseudo-terminal, which in effect means -*tell the backend that this is an __interactive__ session*. This is normally a bad idea. +There is a configuration option which asks the backend driver to ask the +remote host to assign the connection a *pty*. A *pty* is a pseudo-terminal, +which in effect means *tell the backend that this is an __interactive__ +session*. This is normally a bad idea. -Most of the differences are best explained by [this page](https://github.com/sstephenson/rbenv/wiki/Unix-shell-initialization) from the author of *rbenv*. +Most of the differences are best explained by [this +page](https://github.com/sstephenson/rbenv/wiki/Unix-shell-initialization) +from the author of *rbenv*. -**When Capistrano makes a connection it is a *non-login*, *non-interactive* shell. -This was not an accident!** +**When Capistrano makes a connection it is a *non-login*, *non-interactive* +shell. This was not an accident!** -It's often used as a band aid to cure issues related to RVM and rbenv not loading login -and shell initialisation scripts. In these scenarios RVM and rbenv are the tools at fault, -or at least they are being used incorrectly. +It's often used as a band aid to cure issues related to RVM and rbenv not +loading login and shell initialisation scripts. In these scenarios RVM and +rbenv are the tools at fault, or at least they are being used incorrectly. -Whilst, especially in the case of language runtimes (Ruby, Node, Python and friends in -particular) there is a temptation to run multiple versions in parallel on a single server -and to switch between them using environmental variables, this is an anti-pattern, and -symptomatic of bad design (e.g. you're testing a second version of Ruby in production because -your company lacks the infrastructure to test this in a staging environment). +Whilst, especially in the case of language runtimes (Ruby, Node, Python and +friends in particular) there is a temptation to run multiple versions in +parallel on a single server and to switch between them using environmental +variables, this is an anti-pattern, and symptomatic of bad design (e.g. you're +testing a second version of Ruby in production because your company lacks the +infrastructure to test this in a staging environment). diff --git a/documentation/advanced-features/remote-file/index.markdown b/documentation/advanced-features/remote-file/index.markdown index 6c96336f..578787ec 100644 --- a/documentation/advanced-features/remote-file/index.markdown +++ b/documentation/advanced-features/remote-file/index.markdown @@ -9,16 +9,15 @@ As an example, this task can be used to ensure that files to be linked exist before running the check:linked_files task: {% highlight ruby %} - namespace :deploy do - namespace :check do - task :linked_files => 'config/newrelic.yml' - end +namespace :deploy do + namespace :check do + task :linked_files => 'config/newrelic.yml' end +end - remote_file 'config/newrelic.yml' => '/tmp/newrelic.yml', roles: :app - - file '/tmp/newrelic.yml' do |t| - sh "curl -o #{t.name} https://rpm.newrelic.com/accounts/xx/newrelic.yml" - end +remote_file 'config/newrelic.yml' => '/tmp/newrelic.yml', roles: :app +file '/tmp/newrelic.yml' do |t| + sh "curl -o #{t.name} https://rpm.newrelic.com/accounts/xx/newrelic.yml" +end {% endhighlight %} diff --git a/documentation/advanced-features/role-filtering/index.markdown b/documentation/advanced-features/role-filtering/index.markdown index 60e1661d..f98a4e54 100644 --- a/documentation/advanced-features/role-filtering/index.markdown +++ b/documentation/advanced-features/role-filtering/index.markdown @@ -28,7 +28,7 @@ Capistrano will read the role filter from the environment variable `ROLES` if it is set. You can set it inline: {% highlight bash %} - ROLES=app,web cap production deploy +ROLES=app,web cap production deploy {% endhighlight %} Specify multiple roles by separating them with a comma. @@ -39,7 +39,7 @@ You can set the role filter inside your deploy configuration. For example, you can set the following inside `config/deploy.rb`: {% highlight ruby %} - set :filter, :roles => %w{app web} +set :filter, :roles => %w{app web} {% endhighlight %} Note that you specify the filter as an array rather than as a comma-separated @@ -51,7 +51,7 @@ In a similar way to using the environment variable, you can set the role filter by specifying it as a command line argument to `cap`: {% highlight bash %} - cap --roles=app,web production deploy +cap --roles=app,web production deploy {% endhighlight %} Like the environment variable method, specify multiple roles by separating them diff --git a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown b/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown index 421a7d4d..d71d0f3b 100644 --- a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown +++ b/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown @@ -5,7 +5,7 @@ layout: default Configuration variables are access with the fetch method, like so: {% highlight ruby %} - local = fetch(:configuration_variable, _default_value_) +local = fetch(:configuration_variable, _default_value_) {% endhighlight %} This works fine when accessing configuration variables defined within the same file. For example accessing a previously set configuration variable defined in deploy.rb or accessing a set configuration variable in a stage file. diff --git a/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown b/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown index 185c1891..c57a62b6 100644 --- a/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown +++ b/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown @@ -61,21 +61,21 @@ First, we'll try a *real* SSH session, logging in via our terminal, and seeing what happens: {% highlight bash %} - me@localhost $ ssh me@remote - me@remote $ [[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive' - Interactive - me@remote $ shopt -q login_shell && echo 'Login shell' || echo 'Not login shell' - Login shell +me@localhost $ ssh me@remote +me@remote $ [[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive' +Interactive +me@remote $ shopt -q login_shell && echo 'Login shell' || echo 'Not login shell' +Login shell {% endhighlight %} Contrast that with what happens when we hand the command to run to the SSH command line without logging in first... {% highlight bash %} - me@localhost $ ssh me@remote "[[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive'" - Interactive - me@localhost $ ssh me@remote "shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'" - Not login shell +me@localhost $ ssh me@remote "[[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive'" +Interactive +me@localhost $ ssh me@remote "shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'" +Not login shell {% endhighlight %} Here we can see that Bash is still starting in **interactive** mode when we're @@ -87,26 +87,26 @@ can have a very simple, Capfile, we don't even need to load the default recipes to test this: {% highlight ruby %} - # Capistrano 3.0.x - task :query_interactive do - on 'me@remote' do - info capture("[[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive'") - end - end - task :query_login do - on 'me@remote' do - info capture("shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'") - end - end +# Capistrano 3 +task :query_interactive do + on 'me@remote' do + info capture("[[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive'") + end +end +task :query_login do + on 'me@remote' do + info capture("shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'") + end +end {% endhighlight %} Gives us the following: {% highlight bash %} - me@localhost $ cap query_login - INFO Not login shell - me@localhost $ cap query_interactive - INFO Not interactive +me@localhost $ cap query_login +INFO Not login shell +me@localhost $ cap query_interactive +INFO Not interactive {% endhighlight %} ## Which shell startup files do get loaded? diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/documentation/getting-started/authentication-and-authorisation/index.markdown index 6833dadd..e50ff081 100644 --- a/documentation/getting-started/authentication-and-authorisation/index.markdown +++ b/documentation/getting-started/authentication-and-authorisation/index.markdown @@ -3,18 +3,19 @@ title: Authentication & Authorisation layout: default --- -**Note:** In the documentation we simply recommend creating a single deployment user, -and sharing it between team members. If you know why this is a bad idea (or -why this may be against regulations in your jurisdiction in some cases, we -assume that you know well enough how to use groups, umasking and setgid bits -to make this work reliably for unique logins across team members) +**Note:** In the documentation we simply recommend creating a single +deployment user, and sharing it between team members. If you know why this is +a bad idea (or why this may be against regulations in your jurisdiction in +some cases, we assume that you know well enough how to use groups, umasking +and setgid bits to make this work reliably for unique logins across team +members) To create this deploy user we'll assume something like the following has been done: {% highlight bash %} - root@remote $ adduser deploy - root@remote $ passwd -l deploy +root@remote $ adduser deploy +root@remote $ passwd -l deploy {% endhighlight %} The first line creates a completely standard user, it has a home directory, @@ -54,7 +55,7 @@ quits or gets fired, you can remove their key from that file, and the rest of you can keep on shipping! {% highlight bash %} - me@localhost $ ssh-keygen -t rsa -C 'me@my_email_address.com' +me@localhost $ ssh-keygen -t rsa -C 'me@my_email_address.com' {% endhighlight %} You'll be prompted for a passphrase, that's fine. Type one and keep it safe. @@ -72,15 +73,15 @@ minutes upwards.) We can see which keys are loaded in the SSH agent by running `ssh-add -l` {% highlight bash %} - me@localhost $ ssh-add -l - 2048 af:ce:7e:c5:93:18:39:ff:54:20:7a:2d:ec:05:7c:a5 /Users/me/.ssh/id_rsa (RSA) +me@localhost $ ssh-add -l +2048 af:ce:7e:c5:93:18:39:ff:54:20:7a:2d:ec:05:7c:a5 /Users/me/.ssh/id_rsa (RSA) {% endhighlight %} If you don't see any keys listed, you can simply run `ssh-add`: {% highlight bash %} - me@localhost $ ssh-add - Identity added: /Users/me/.ssh/id_rsa (/Users/me/.ssh/id_rsa) +me@localhost $ ssh-add +Identity added: /Users/me/.ssh/id_rsa (/Users/me/.ssh/id_rsa) {% endhighlight %} Typically, ssh-add will ask you for the passphrase when you add a key. @@ -98,8 +99,8 @@ At this point with the key loaded into the agent, we need to put the we can ask our local key agent for the public parts of the keys it has loaded: {% highlight bash %} - me@localhost $ ssh-add -L - ssh-rsa jccXJ/JRfGxnkh/8iL........dbfCH/9cDiKa0Dw8XGAo01mU/w== /Users/me/.ssh/id_rsa +me@localhost $ ssh-add -L +ssh-rsa jccXJ/JRfGxnkh/8iL........dbfCH/9cDiKa0Dw8XGAo01mU/w== /Users/me/.ssh/id_rsa {% endhighlight %} This will be a lot longer when you run it, I snipped the output because it @@ -116,13 +117,13 @@ If you are on linux there often exists a command process, otherwise the workflow is something like: {% highlight bash %} - me@localhost $ ssh root@remote - root@remote $ su - deploy - deploy@remote $ cd ~ - deploy@remote $ mkdir .ssh - deploy@remote $ echo "ssh-rsa jccXJ/JRfGxnkh/8iL........dbfCH/9cDiKa0Dw8XGAo01mU/w== /Users/me/.ssh/id_rsa" >> .ssh/authorized_keys - deploy@remote $ chmod 700 .ssh - deploy@remote $ chmod 600 .ssh/authorized_keys +me@localhost $ ssh root@remote +root@remote $ su - deploy +deploy@remote $ cd ~ +deploy@remote $ mkdir .ssh +deploy@remote $ echo "ssh-rsa jccXJ/JRfGxnkh/8iL........dbfCH/9cDiKa0Dw8XGAo01mU/w== /Users/me/.ssh/id_rsa" >> .ssh/authorized_keys +deploy@remote $ chmod 700 .ssh +deploy@remote $ chmod 600 .ssh/authorized_keys {% endhighlight %} **Remember:** This needs to be done on every server you want to use, you can @@ -132,9 +133,9 @@ use the same key for each one, but only one key per developer is recommended. If we did all that correctly, we should now be able to do something like this: {% highlight bash %} - me@localhost $ ssh deploy@one-of-my-servers.com 'hostname; uptime' - one-of-my-servers.com - 19:23:32 up 62 days, 44 min, 1 user, load average: 0.00, 0.01, 0.05 +me@localhost $ ssh deploy@one-of-my-servers.com 'hostname; uptime' +one-of-my-servers.com +19:23:32 up 62 days, 44 min, 1 user, load average: 0.00, 0.01, 0.05 {% endhighlight %} That should happen without having to enter a passphrase for your SSH key, or @@ -192,8 +193,8 @@ Github. Here's how we can check if that works, first get the URL of the repository: {% highlight bash %} - me@localhost $ git config remote.origin.url - git@github.com:capistrano/rails3-bootstrap-devise-cancan.git +me@localhost $ git config remote.origin.url +git@github.com:capistrano/rails3-bootstrap-devise-cancan.git {% endhighlight %} Here we're listing our private (for testing purposes) fork of the @@ -203,11 +204,11 @@ Tutorials project. We can try to access the repository via our server by doing the following: {% highlight bash %} - # List SSH keys that are loaded into the agent - me@localhost $ ssh-add -l - # Make sure they key is loaded if 'ssh-add -l' didn't show anything - me@localhost $ ssh-add - me@localhost $ ssh -A deploy@one-of-my-servers.com 'git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git +# List SSH keys that are loaded into the agent +me@localhost $ ssh-add -l +# Make sure they key is loaded if 'ssh-add -l' didn't show anything +me@localhost $ ssh-add +me@localhost $ ssh -A deploy@one-of-my-servers.com 'git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git {% endhighlight %} We first check that the agent has the keys loaded. If not we simply load it @@ -225,15 +226,15 @@ to the list of known hosts. From the SSH documentation: {% highlight bash %} - -A Enables forwarding of the authentication agent connection. This can also be - specified on a per-host basis in a configuration file. +-A Enables forwarding of the authentication agent connection. This can also be + specified on a per-host basis in a configuration file. - Agent forwarding should be enabled with caution. Users with the ability to - bypass file permissions on the remote host (for the agent's UNIX-domain - socket) can access the local agent through the forwarded connection. An - attacker cannot obtain key material from the agent, however they can perform - operations on the keys that enable them to authenticate using the identities - loaded into the agent. + Agent forwarding should be enabled with caution. Users with the ability to + bypass file permissions on the remote host (for the agent's UNIX-domain + socket) can access the local agent through the forwarded connection. An + attacker cannot obtain key material from the agent, however they can perform + operations on the keys that enable them to authenticate using the identities + loaded into the agent. {% endhighlight %} In layman's terms, you shouldn't use SSH agent forwarding to machines where you @@ -254,9 +255,9 @@ Github, we'll be prompted for a username and password: ##### 1.2.2.1 With a regular username/password {% highlight bash %} - me@localhost $ git ls-remote https://github.com/capistrano/rails3-bootstrap-devise-cancan.git - Username for 'https://github.com': myownusername - Password for 'https://capistrano@github.com': +me@localhost $ git ls-remote https://github.com/capistrano/rails3-bootstrap-devise-cancan.git +Username for 'https://github.com': myownusername +Password for 'https://capistrano@github.com': {% endhighlight %} This challenge response prompt doesn't work well for automating things, so @@ -269,9 +270,9 @@ HTTPS not plain ol' HTTP is to embed the username and password in the URL, note this won't work well if your password has special characters: {% highlight bash %} - me@localhost $ git ls-remote https://capistrano:ourverysecretpassword@github.com/capistrano/rails3-bootstrap-devise-cancan.git - 3419812c9f146d9a84b44bcc2c3caef94da54758HEAD - 3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master +me@localhost $ git ls-remote https://capistrano:ourverysecretpassword@github.com/capistrano/rails3-bootstrap-devise-cancan.git +3419812c9f146d9a84b44bcc2c3caef94da54758HEAD +3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master {% endhighlight %} The bigger problem with passwords, whether inlined into the URL, or entered @@ -286,9 +287,9 @@ Tokens](https://github.com/blog/1509-personal-api-tokens) which allow you to do something like this: {% highlight bash %} - me@localhost $ git ls-remote https://XXXX:@github.com/capistrano/rails3-bootstrap-devise-cancan.git - 3419812c9f146d9a84b44bcc2c3caef94da54758HEAD - 3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master +me@localhost $ git ls-remote https://XXXX:@github.com/capistrano/rails3-bootstrap-devise-cancan.git +3419812c9f146d9a84b44bcc2c3caef94da54758HEAD +3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master {% endhighlight %} Where `XXXX` is a personal API token, as such: @@ -338,16 +339,16 @@ To configure this hierarchy, ignoring for the moment the passwordless `sudo` access that you may or may not need depending how well your servers are setup: {% highlight bash %} - me@localhost $ ssh root@remote - # Capistrano will use /var/www/....... where ... is the value set in - # :application, you can override this by setting the ':deploy_to' variable - root@remote $ deploy_to=/var/www/rails3-bootstrap-devise-cancan-demo - root@remote $ mkdir -p ${deploy_to} - root@remote $ chown deploy:deploy ${deploy_to} - root@remote $ umask 0002 - root@remote $ chmod g+s ${deploy_to} - root@remote $ mkdir ${deploy_to}/{releases,shared} - root@remote $ chown deploy ${deploy_to}/{releases,shared} +me@localhost $ ssh root@remote +# Capistrano will use /var/www/....... where ... is the value set in +# :application, you can override this by setting the ':deploy_to' variable +root@remote $ deploy_to=/var/www/rails3-bootstrap-devise-cancan-demo +root@remote $ mkdir -p ${deploy_to} +root@remote $ chown deploy:deploy ${deploy_to} +root@remote $ umask 0002 +root@remote $ chmod g+s ${deploy_to} +root@remote $ mkdir ${deploy_to}/{releases,shared} +root@remote $ chown deploy ${deploy_to}/{releases,shared} {% endhighlight %} **Note:** The `chmod g+s` is a really handy, and little known Unix feature, it @@ -362,11 +363,11 @@ files from Apache, or our web server by running the web server in the `deploy` group namespace. {% highlight bash %} - root@remote # stat -c "%A (%a) %n" ${deploy_to}/ - drwx--S--- (2700) /var/www/rails3-bootstrap-devise-cancan-demo +root@remote # stat -c "%A (%a) %n" ${deploy_to}/ +drwx--S--- (2700) /var/www/rails3-bootstrap-devise-cancan-demo - root@remote # stat -c "%A (%a) %n" ${deploy_to}/* - drwxrwsr-x (2775) /var/www/rails3-bootstrap-devise-cancan-demo/releases - drwxrwsr-x (2775) /var/www/rails3-bootstrap-devise-cancan-demo/shared +root@remote # stat -c "%A (%a) %n" ${deploy_to}/* +drwxrwsr-x (2775) /var/www/rails3-bootstrap-devise-cancan-demo/releases +drwxrwsr-x (2775) /var/www/rails3-bootstrap-devise-cancan-demo/shared {% endhighlight %} diff --git a/documentation/getting-started/cold-start/index.markdown b/documentation/getting-started/cold-start/index.markdown index bc499ddb..8f14f7b0 100644 --- a/documentation/getting-started/cold-start/index.markdown +++ b/documentation/getting-started/cold-start/index.markdown @@ -21,17 +21,17 @@ technologies. ### 1. Checking the directory structure on the remote machine: {% highlight bash %} - me@localhost $ ssh deploy@remote 'ls -lR /var/www/my-application' - my-application: - total 8 - drwxrwsr-x 2 deploy deploy 4096 Jun 24 20:55 releases - drwxrwsr-x 2 deploy deploy 4096 Jun 24 20:55 shared +me@localhost $ ssh deploy@remote 'ls -lR /var/www/my-application' +my-application: +total 8 +drwxrwsr-x 2 deploy deploy 4096 Jun 24 20:55 releases +drwxrwsr-x 2 deploy deploy 4096 Jun 24 20:55 shared - my-application/releases: - total 0 +my-application/releases: +total 0 - my-application/shared: - total 0 +my-application/shared: +total 0 {% endhighlight %} This checks in one simple command that the ssh keys you setup are working (you @@ -45,16 +45,16 @@ quickly introduce ourselves to a quick Cap task to check these things on all the machines for us: {% highlight ruby %} - desc "Check that we can access everything" - task :check_write_permissions do - on roles(:all) do |host| - if test("[ -w #{fetch(:deploy_to)} ]") - info "#{fetch(:deploy_to)} is writable on #{host}" - else - error "#{fetch(:deploy_to)} is not writable on #{host}" - end - end +desc "Check that we can access everything" +task :check_write_permissions do + on roles(:all) do |host| + if test("[ -w #{fetch(:deploy_to)} ]") + info "#{fetch(:deploy_to)} is writable on #{host}" + else + error "#{fetch(:deploy_to)} is not writable on #{host}" end + end +end {% endhighlight %} Running this should give you a pretty decent overview, one line of output for @@ -71,20 +71,20 @@ something like `access_check.rake`, and run `cap -T` from the top directory and we'll be able to see the task listed: {% highlight bash %} - me@localhost $ bundle exec cap -T - # ... lots of other tasks ... - cap check_write_permissions # Check that we can access everything - # ... lots of other tasks ... +me@localhost $ bundle exec cap -T +# ... lots of other tasks ... +cap check_write_permissions # Check that we can access everything +# ... lots of other tasks ... {% endhighlight %} Then we simply call it: {% highlight bash %} - me@localhost $ bundle exec cap staging check_write_permissions - DEBUG [82c92144] Running /usr/bin/env [ -w /var/www/my-application ] on myserver.com - DEBUG [82c92144] Command: [ -w /var/www/my-application ] - DEBUG [82c92144] Finished in 0.456 seconds command successful. - INFO /var/www/my-application is writable on myserver.com +me@localhost $ bundle exec cap staging check_write_permissions +DEBUG [82c92144] Running /usr/bin/env [ -w /var/www/my-application ] on myserver.com +DEBUG [82c92144] Command: [ -w /var/www/my-application ] +DEBUG [82c92144] Finished in 0.456 seconds command successful. +INFO /var/www/my-application is writable on myserver.com {% endhighlight %} If we've done something wrong, that won't happen and we'll know that we need @@ -99,7 +99,7 @@ Capistrano does just this, so to check if the Git access is working, we can simply call: {% highlight bash %} - me@localhost $ cap staging git:check +me@localhost $ cap staging git:check {% endhighlight %} This task is defined in the default Git SCM-strategy and looks a lot like what @@ -112,24 +112,24 @@ for us by Capistrano. (This is one of the pieces we inherit from Rake) If this fails we'll see: {% highlight bash %} - me@localhost $ cap staging git:check - cap staging git:check - DEBUG Uploading /tmp/git-ssh.sh 0% - INFO Uploading /tmp/git-ssh.sh 100% - INFO [118bd3e4] Running /usr/bin/env chmod +x /tmp/git-ssh.sh on example.com - DEBUG [118bd3e4] Command: /usr/bin/env chmod +x /tmp/git-ssh.sh - INFO [118bd3e4] Finished in 0.049 seconds command successful. - INFO [a996463f] Running /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git on harrow - DEBUG [a996463f] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git ) - DEBUG [a996463f] Warning: Permanently added 'github.com,204.232.175.90' (RSA) to the list of known hosts. - DEBUG [a996463f] Permission denied (publickey). - DEBUG [a996463f] fatal: The remote end hung up unexpectedly - cap aborted! - git stdout: Nothing written - git stderr: Nothing written +me@localhost $ cap staging git:check +cap staging git:check +DEBUG Uploading /tmp/git-ssh.sh 0% + INFO Uploading /tmp/git-ssh.sh 100% + INFO [118bd3e4] Running /usr/bin/env chmod +x /tmp/git-ssh.sh on example.com +DEBUG [118bd3e4] Command: /usr/bin/env chmod +x /tmp/git-ssh.sh + INFO [118bd3e4] Finished in 0.049 seconds command successful. + INFO [a996463f] Running /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git on harrow +DEBUG [a996463f] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git ) +DEBUG [a996463f] Warning: Permanently added 'github.com,204.232.175.90' (RSA) to the list of known hosts. +DEBUG [a996463f] Permission denied (publickey). +DEBUG [a996463f] fatal: The remote end hung up unexpectedly +cap aborted! +git stdout: Nothing written +git stderr: Nothing written - Tasks: TOP => git:check - (See full trace by running task with --trace) +Tasks: TOP => git:check +(See full trace by running task with --trace) {% endhighlight %} This'll typically come out looking more beautiful depending on your terminal @@ -156,35 +156,35 @@ working by writing a tiny Cap task, or simply using SSH to do it for us, the choice is yours: {% highlight ruby %} - # lib/capistrano/tasks/agent_forwarding.rake - desc "Check if agent forwarding is working" - task :forwarding do - on roles(:all) do |h| - if test("env | grep SSH_AUTH_SOCK") - info "Agent forwarding is up to #{h}" - else - error "Agent forwarding is NOT up to #{h}" - end - end +# lib/capistrano/tasks/agent_forwarding.rake +desc "Check if agent forwarding is working" +task :forwarding do + on roles(:all) do |h| + if test("env | grep SSH_AUTH_SOCK") + info "Agent forwarding is up to #{h}" + else + error "Agent forwarding is NOT up to #{h}" end + end +end {% endhighlight %} That gave the output: {% highlight bash %} - cap staging forwarding - DEBUG [f1269276] Running /usr/bin/env env | grep SSH_AUTH_SOCK on example.com - DEBUG [f1269276] Command: env | grep SSH_AUTH_SOCK - DEBUG [f1269276] SSH_AUTH_SOCK=/tmp/ssh-nQUEmyQ2nS/agent.2546 - DEBUG [f1269276] Finished in 0.453 seconds command successful. - INFO Agent forwarding is up to example.com +cap staging forwarding +DEBUG [f1269276] Running /usr/bin/env env | grep SSH_AUTH_SOCK on example.com +DEBUG [f1269276] Command: env | grep SSH_AUTH_SOCK +DEBUG [f1269276] SSH_AUTH_SOCK=/tmp/ssh-nQUEmyQ2nS/agent.2546 +DEBUG [f1269276] Finished in 0.453 seconds command successful. + INFO Agent forwarding is up to example.com {% endhighlight %} If you don't feel like writing a Capistrano task, one could simply do: {% highlight bash %} - me@localhost $ ssh -A example.com 'env | grep SSH_AUTH_SOCK' - SSH_AUTH_SOCK=/tmp/ssh-Tb6X8V53tm/agent.2934 +me@localhost $ ssh -A example.com 'env | grep SSH_AUTH_SOCK' +SSH_AUTH_SOCK=/tmp/ssh-Tb6X8V53tm/agent.2934 {% endhighlight %} If we see the `SSH_AUTH_SOCK` output, that's a pretty good indication that SSH @@ -193,17 +193,17 @@ you an SSH key, then we're good to go. **Make sure that you're using the `git@...` repository URL** {% highlight bash %} - cap staging git:check - DEBUG Uploading /tmp/git-ssh.sh 0% - INFO Uploading /tmp/git-ssh.sh 100% - INFO [21382716] Running /usr/bin/env chmod +x /tmp/git-ssh.sh on example.com - DEBUG [21382716] Command: /usr/bin/env chmod +x /tmp/git-ssh.sh - INFO [21382716] Finished in 0.047 seconds command successful. - INFO [f40edfbb] Running /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git on example.com - DEBUG [f40edfbb] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git ) - DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 HEAD - DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 refs/heads/master - INFO [f40edfbb] Finished in 3.319 seconds command successful. +cap staging git:check +DEBUG Uploading /tmp/git-ssh.sh 0% + INFO Uploading /tmp/git-ssh.sh 100% + INFO [21382716] Running /usr/bin/env chmod +x /tmp/git-ssh.sh on example.com +DEBUG [21382716] Command: /usr/bin/env chmod +x /tmp/git-ssh.sh + INFO [21382716] Finished in 0.047 seconds command successful. + INFO [f40edfbb] Running /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git on example.com +DEBUG [f40edfbb] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git ) +DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 HEAD +DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 refs/heads/master + INFO [f40edfbb] Finished in 3.319 seconds command successful. {% endhighlight %} ![Capistrano Git Check Colour Example](/images/successful-git-check-example-screenshot.png) diff --git a/documentation/getting-started/flow/index.markdown b/documentation/getting-started/flow/index.markdown index e16bc6b7..3fa72a61 100644 --- a/documentation/getting-started/flow/index.markdown +++ b/documentation/getting-started/flow/index.markdown @@ -40,7 +40,8 @@ deploy:finishing_rollback - finish the rollback, clean up everything deploy:finished {% endhighlight %} -As you can see, rollback flow shares many tasks with deploy flow. But note that, rollback flow runs its own `:finishing_rollback` task because its +As you can see, rollback flow shares many tasks with deploy flow. But note +that, rollback flow runs its own `:finishing_rollback` task because its cleanup process is usually different from deploy flow. ### Flow examples @@ -108,4 +109,3 @@ deploy deploy:finished deploy:log_revision {% endhighlight %} - diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index ba25a04c..c58d5103 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -18,16 +18,16 @@ therefore recommended to use an appropriate bundler. The following command will install the latest released capistrano `v3` revision: {% highlight bash %} - $ gem install capistrano +$ gem install capistrano {% endhighlight %} Or grab the bleeding edge head from: {% highlight bash %} - $ git clone https://github.com/capistrano/capistrano.git - $ cd capistrano - $ gem build *.gemspec - $ gem install *.gem +$ git clone https://github.com/capistrano/capistrano.git +$ cd capistrano +$ gem build *.gemspec +$ gem install *.gem {% endhighlight %} ### Usage in a Rails project @@ -35,9 +35,9 @@ Or grab the bleeding edge head from: Add the following lines to the Gemfile: {% highlight ruby %} - group :development do - gem 'capistrano-rails', '~> 1.1.1' - end +group :development do + gem 'capistrano-rails', '~> 1.1.1' +end {% endhighlight %} The `capistrano-rails` gem includes extras specifically designed for Ruby on @@ -54,7 +54,7 @@ part, to get the best, and most sensible results, simply `require` in Capfile, after the `require 'capistrano/deploy'` line: {% highlight ruby %} - require 'capistrano/rails' +require 'capistrano/rails' {% endhighlight %} @@ -65,7 +65,7 @@ by mistake, then you can lock your Gem version for Capistrano at something like: {% highlight ruby %} - gem 'capistrano', '~> 2.15' # Or whatever patch release you are using +gem 'capistrano', '~> 2.15' # Or whatever patch release you are using {% endhighlight %} This is the [pessimistic operator][rubygems-pessimistic-operator] which diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index bb785d07..1f2d9640 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -35,8 +35,8 @@ The original `database.yml` should be added to the `.gitignore` (or your SCM's parallel concept of ignored files) {% highlight bash %} - $ cp config/database.yml{,.example} - $ echo config/database.yml >> .gitignore +$ cp config/database.yml{,.example} +$ echo config/database.yml >> .gitignore {% endhighlight %} This should be done for any other secret files, we'll create the production @@ -45,22 +45,22 @@ version of the file when we deploy, and symlink it into place. ### 3. Initialize Capistrano in your application. {% highlight bash %} - $ cd my-project - $ cap install +$ cd my-project +$ cap install {% endhighlight %} This will create a bunch of files, the important ones are: {% highlight bash %} - ├── Capfile - ├── config - │   ├── deploy - │   │   ├── production.rb - │   │   └── staging.rb - │   └── deploy.rb - └── lib - └── capistrano - └── tasks +├── Capfile +├── config +│   ├── deploy +│   │   ├── production.rb +│   │   └── staging.rb +│   └── deploy.rb +└── lib + └── capistrano + └── tasks {% endhighlight %} Your new Capfile will automatically include any tasks from any `*.rake` files @@ -88,26 +88,26 @@ common. The example file generated will look something like this: {% highlight ruby %} - set :stage, :staging +set :stage, :staging - # Simple Role Syntax - # ================== - # Supports bulk-adding hosts to roles, the primary - # server in each group is considered to be the first - # unless any hosts have the primary property set. - role :app, %w{example.com} - role :web, %w{example.com} - role :db, %w{example.com} +# Simple Role Syntax +# ================== +# Supports bulk-adding hosts to roles, the primary +# server in each group is considered to be the first +# unless any hosts have the primary property set. +role :app, %w{example.com} +role :web, %w{example.com} +role :db, %w{example.com} - # Extended Server Syntax - # ====================== - # This can be used to drop a more detailed server - # definition into the server list. The second argument - # is something that quacks like a hash and can be used - # to set extended properties on the server. - server 'example.com', roles: %w{web app}, my_property: :my_value +# Extended Server Syntax +# ====================== +# This can be used to drop a more detailed server +# definition into the server list. The second argument +# is something that quacks like a hash and can be used +# to set extended properties on the server. +server 'example.com', roles: %w{web app}, my_property: :my_value - # set :rails_env, :staging +# set :rails_env, :staging {% endhighlight %} Both the simple role, and extended server syntaxes result in one or more @@ -133,10 +133,12 @@ These host strings are parsed and expanded out in to the equivalent of the server line after the comment: {% highlight ruby %} - role :web, %w{hello@world.com example.com:1234} - # ...is the same as doing... - server 'world.com', roles: [:web], user: 'hello' - server 'example.com', roles: [:web], port: 1234 +# using simple syntax +role :web, %w{hello@world.com example.com:1234} + +# using extended syntax (which is equivalent) +server 'world.com', roles: [:web], user: 'hello' +server 'example.com', roles: [:web], port: 1234 {% endhighlight %} ### 5. Set the shared information in `deploy.rb`. @@ -150,9 +152,9 @@ self-documenting, commented-out configuration options, feel free to play with them a little: {% highlight ruby %} - set :application, 'my app name' - set :repo_url, 'git@example.com:me/my_repo.git' - ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp } + set :application, 'my app name' + set :repo_url, 'git@example.com:me/my_repo.git' + ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp } {% endhighlight %} Here we'd set the name of the application, ideally in a way that's safe for @@ -173,9 +175,9 @@ forked to the Capistrano repository, but you can find the (unchanged) original [here](https://github.com/RailsApps/rails3-bootstrap-devise-cancan). {% highlight ruby %} - set :application, 'rails3-bootstrap-devise-cancan-demo' - set :repo_url, 'https://github.com/capistrano/rails3-bootstrap-devise-cancan' - set :branch, 'master' + set :application, 'rails3-bootstrap-devise-cancan-demo' + set :repo_url, 'https://github.com/capistrano/rails3-bootstrap-devise-cancan' + set :branch, 'master' {% endhighlight %} I've simplified the `:branch` variable to simply be a `set` variable, not a diff --git a/documentation/getting-started/structure/index.markdown b/documentation/getting-started/structure/index.markdown index d9475d36..122e2248 100644 --- a/documentation/getting-started/structure/index.markdown +++ b/documentation/getting-started/structure/index.markdown @@ -15,26 +15,42 @@ set :deploy_to, '/var/www/my_app_name' Then inspecting the directories inside `/var/www/my_app_name` looks like this: {% highlight bash %} - ├── current -> /var/www/my_app_name/releases/20150120114500/ - ├── releases - │   ├── 20150080072500 - │   ├── 20150090083000 - │   ├── 20150100093500 - │   ├── 20150110104000 - │   └── 20150120114500 - ├── repo - │ └── - ├── revisions.log - └── shared - └── +├── current -> /var/www/my_app_name/releases/20150120114500/ +├── releases +│   ├── 20150080072500 +│   ├── 20150090083000 +│   ├── 20150100093500 +│   ├── 20150110104000 +│   └── 20150120114500 +├── repo +│ └── +├── revisions.log +└── shared + └── {% endhighlight %} - * `current` is a symlink pointing to the latest release. This symlink is updated at the end of a successful deployment. If the deployment fails in any step the `current` symlink still points to the old release. - * `releases` holds all deployments in a timestamped folder. These folders are the target of the `current` symlink. - * `repo` holds the version control system configured. In case of a git repository the content will be a raw git repository (e.g. objects, refs, etc.). - * `revisions.log` is used to log every deploy or rollback. Each entry is timestamped and the executing user (username from local machine) is listed. Depending on your VCS data like branchnames or revision numbers are listed as well. - * `shared` contains the `linked_files` and `linked_dirs` which are symlinked into each release. This data persists across deployments and releases. It should be used for things like database configuration files and static and persistent user storage handed over from one release to the next. +* `current` is a symlink pointing to the latest release. This symlink is +updated at the end of a successful deployment. If the deployment fails in any +step the `current` symlink still points to the old release. +* `releases` holds all deployments in a timestamped folder. These folders are +the target of the `current` symlink. -The application is completely contained within the path of `:deploy_to`. If you plan on deploying multiple applications to the same server, simply choose a different `:deploy_to` path. +* `repo` holds the version control system configured. In case of a git +repository the content will be a raw git repository (e.g. objects, refs, +etc.). + +* `revisions.log` is used to log every deploy or rollback. Each entry is +timestamped and the executing user (username from local machine) is listed. +Depending on your VCS data like branchnames or revision numbers are listed as +well. + +* `shared` contains the `linked_files` and `linked_dirs` which are symlinked +into each release. This data persists across deployments and releases. It +should be used for things like database configuration files and static and +persistent user storage handed over from one release to the next. + +The application is completely contained within the path of `:deploy_to`. If +you plan on deploying multiple applications to the same server, simply choose +a different `:deploy_to` path. diff --git a/documentation/overview/introductory-demo-video/index.markdown b/documentation/overview/introductory-demo-video/index.markdown deleted file mode 100644 index 63577cd9..00000000 --- a/documentation/overview/introductory-demo-video/index.markdown +++ /dev/null @@ -1,36 +0,0 @@ ---- -title: Introductory Demo Video -layout: default ---- - -The video below was filmed on Mac OSX 10.8 using a more-or-less standard shell -without much previous setup. - -It covers using Capistrano to install an example Rails project on a previously -unprepared server, covering all aspects of Github access, as well as -privisioning the server using *Chef Solo* and Capistrano with *Rake*. - -#### Show Notes - -The *Chef Solo* recipes can be reached at [this repository at -Github][capistrano-chef-solo-example-recipes], they rely on a fairly new -version of *Chef Solo*, spefically any including the results of [this -ticket][chef-issue-3365]. The aforementioned *Chef* issue adds environment -support to *Chef Solo*. - -The provisioning can also be done using any other mechanism, it's generally -accepted however that there's not much point in automising your deploys, -unless you are also automating provisioning of your servers for a known, -consistent state. - -Using `sudo` with any deployment can be tricky, so it's better to avoid it. -Rebooting services without `sudo` is typically the first place people run into -trouble using Capistrano. The [trouble shooting page for `sudo` -problems][troubleshooting-sudo-password] may help. - -**Note:** Some long sequences have been shortened (nobody needs to sit and watch me -sitting and watching Ruby compile, for example!) - --- -[chef-issue-3365]: https://github.com/opscode/chef/pull/359 -[troubleshooting-sudo-password]: /troubleshooting/sudo-password/ diff --git a/documentation/overview/what-is-capistrano/index.markdown b/documentation/overview/what-is-capistrano/index.markdown index 989ee574..5afa2c20 100644 --- a/documentation/overview/what-is-capistrano/index.markdown +++ b/documentation/overview/what-is-capistrano/index.markdown @@ -23,7 +23,7 @@ Ruby software to form part of a larger tool. #### What does it look like? {% highlight bash %} - me@localhost $ cap staging deploy +me@localhost $ cap staging deploy {% endhighlight %}
              @@ -99,49 +99,48 @@ There's lots of cool stuff in the Capistrano toy box: * A sane, expressive API: {% highlight ruby %} - desc "Show off the API" - task :ditty do +desc "Show off the API" +task :ditty do - on roles(:all) do |host| - # Capture output from the remote host, and re-use it - # we can reflect on the `host` object passed to the block - # and use the `info` logger method to benefit from the - # output formatter that is selected. - uptime = capture('uptime') - if host.roles.include?(:web) - info "Your webserver #{host} has uptime: #{uptime}" - end + on roles(:all) do |host| + # Capture output from the remote host, and re-use it + # we can reflect on the `host` object passed to the block + # and use the `info` logger method to benefit from the + # output formatter that is selected. + uptime = capture('uptime') + if host.roles.include?(:web) + info "Your webserver #{host} has uptime: #{uptime}" end - - on roles(:app) do - # We can set environmental variables for the duration of a block - # and move the process into a directoy, executing arbitrary tasks - # such as letting Rails do some heavy lifting. - with({:rails_env => :production}) do - within('/var/www/my/rails/app') do - execute :rails, :runner, 'MyModel.something' - end - end - end - - on roles(:db) do - # We can even switch users, provided we have support on the remote - # server for switching to that user without being prompted for a - # passphrase. - as 'postgres' do - widgets = capture "echo 'SELECT * FROM widgets;' | psql my_database" - if widgets.to_i < 50 - warn "There are fewer than 50 widgets in the database on #{host}!" - end - end - end - - on roles(:all) do - # We can even use `test` the way the Unix gods intended - if test("[ -d /some/directory ]") - info "Phew, it's ok, the directory exists!" - end - end - end + + on roles(:app) do + # We can set environmental variables for the duration of a block + # and move the process into a directoy, executing arbitrary tasks + # such as letting Rails do some heavy lifting. + with({:rails_env => :production}) do + within('/var/www/my/rails/app') do + execute :rails, :runner, 'MyModel.something' + end + end + end + + on roles(:db) do + # We can even switch users, provided we have support on the remote + # server for switching to that user without being prompted for a + # passphrase. + as 'postgres' do + widgets = capture "echo 'SELECT * FROM widgets;' | psql my_database" + if widgets.to_i < 50 + warn "There are fewer than 50 widgets in the database on #{host}!" + end + end + end + + on roles(:all) do + # We can even use `test` the way the Unix gods intended + if test("[ -d /some/directory ]") + info "Phew, it's ok, the directory exists!" + end + end +end {% endhighlight %} diff --git a/documentation/upgrading/index.markdown b/documentation/upgrading/index.markdown index 2005abc6..6f4f44ce 100644 --- a/documentation/upgrading/index.markdown +++ b/documentation/upgrading/index.markdown @@ -4,87 +4,86 @@ layout: default --- 1. - Update your Gemfile: `gem 'capistrano', '~> 3.0', require: false, group: :development` +Update your Gemfile: `gem 'capistrano', '~> 3.0', require: false, group: :development` - If you deploy Rails, you wil also need `capistrano-rails` and `capistrano-bundler` gems (Rails and Bundler integrations were moved out from Capistrano 3). - {% highlight ruby %} - group :development do - gem 'capistrano-rails', '~> 1.1', require: false - gem 'capistrano-bundler', '~> 1.1', require: false - end - {% endhighlight %} +If you deploy Rails, you wil also need `capistrano-rails` and `capistrano-bundler` gems (Rails and Bundler integrations were moved out from Capistrano 3). +{% highlight ruby %} +group :development do + gem 'capistrano-rails', '~> 1.1', require: false + gem 'capistrano-bundler', '~> 1.1', require: false +end +{% endhighlight %} You can add idiomatic support for your preferred ruby version manager: rvm, rbenv, chruby. - {% highlight ruby %} - group :development do - gem 'capistrano-rvm', '~> 0.1', require: false - gem 'capistrano-rbenv', '~> 2.0', require: false - gem 'capistrano-chruby', github: 'capistrano/chruby', require: false - end - {% endhighlight %} +{% highlight ruby %} +group :development do + gem 'capistrano-rvm', '~> 0.1', require: false + gem 'capistrano-rbenv', '~> 2.0', require: false + gem 'capistrano-chruby', github: 'capistrano/chruby', require: false +end +{% endhighlight %} 2. - We recommend to capify the project from scratch and move definitions from old to new configs then. +We recommend to capify the project from scratch and move definitions from old to new configs then. - {% highlight bash %} - mkdir old_cap - mv Capfile old_cap - mv config/deploy.rb old_cap - mv config/deploy/ old_cap # --> only for multistage setups - {% endhighlight %} +{% highlight bash %} +mkdir old_cap +mv Capfile old_cap +mv config/deploy.rb old_cap +mv config/deploy/ old_cap # --> only for multistage setups +{% endhighlight %} - It's time to capify: +It's time to capify: - {% highlight bash %} - cap install - {% endhighlight %} +{% highlight bash %} +cap install +{% endhighlight %} 3. - Capistrano 3 is multistage by default, so you will have `config/deploy/production.rb` and `config/deploy/staging.rb` right after capifying. +Capistrano 3 is multistage by default, so you will have `config/deploy/production.rb` and `config/deploy/staging.rb` right after capifying. If you need only one stage, remove these files and declare stage (for example `production`) and servers in `config/deploy.rb`. 4. - Update `config/deploy/production.rb` and `config/deploy/staging.rb` to have relevant data there. You may also want to add more stages from old configs (`old_cap/deploy/`). +Update `config/deploy/production.rb` and `config/deploy/staging.rb` to have relevant data there. You may also want to add more stages from old configs (`old_cap/deploy/`). 5. - If you had a gateway server set doing `set :gateway, "www.capify.org"` you should upgrade to +If you had a gateway server set doing `set :gateway, "www.capify.org"` you should upgrade to - {% highlight ruby %} - require 'net/ssh/proxy/command' +{% highlight ruby %} +require 'net/ssh/proxy/command' - set :ssh_options, proxy: Net::SSH::Proxy::Command.new('ssh mygateway.com -W %h:%p') - {% endhighlight %} +set :ssh_options, proxy: Net::SSH::Proxy::Command.new('ssh mygateway.com -W %h:%p') +{% endhighlight %} - Or the per-server `ssh_options` equivalent. +Or the per-server `ssh_options` equivalent. 6. - Now you need to refactor your old `deploy.rb` (also `Capfile`, but in most of cases developers didn't change it in Capistrano 2.x). Move parameters (like `set :deploy_to, "/home/deploy/#{application}"` or `set :keep_releases, 4`) to `config/deploy.rb` and tasks to `Capfile`. +Now you need to refactor your old `deploy.rb` (also `Capfile`, but in most of cases developers didn't change it in Capistrano 2.x). Move parameters (like `set :deploy_to, "/home/deploy/#{application}"` or `set :keep_releases, 4`) to `config/deploy.rb` and tasks to `Capfile`. - *Important: `repository` option was renamed to `repo_url`; `default_environment` option was renamed to `default_env`.* +*Important: `repository` option was renamed to `repo_url`; `default_environment` option was renamed to `default_env`.* - - Notice that some parameters are not necessary anymore: `use_sudo`, `normalize_asset_timestamps`. +Notice that some parameters are not necessary anymore: `use_sudo`, `normalize_asset_timestamps`. 7. - If you didn't use `deploy_to` before and deployed to `/u/apps/your_app_name`, you need one more change. Now default deploy path is `/var/www/app_name` and your config will be broken after upgrade. Just declare custom `deploy_to` option: +If you didn't use `deploy_to` before and deployed to `/u/apps/your_app_name`, you need one more change. Now default deploy path is `/var/www/app_name` and your config will be broken after upgrade. Just declare custom `deploy_to` option: - {% highlight ruby %} - set :deploy_to, "/u/apps/#{fetch(:application)}" - {% endhighlight %} +{% highlight ruby %} +set :deploy_to, "/u/apps/#{fetch(:application)}" +{% endhighlight %} - But in advance, `/u/apps` is not the best place to store apps and we advice you to change it later. +But in advance, `/u/apps` is not the best place to store apps and we advice you to change it later. 8. - Keep editing Capfile and uncomment addons you need, such as rbenv/rvm, bundler or rails. - {% highlight ruby %} - require 'capistrano/rails' - require 'capistrano/bundler' - require 'capistrano/rbenv' - {% endhighlight %} +Keep editing Capfile and uncomment addons you need, such as rbenv/rvm, bundler or rails. +{% highlight ruby %} +require 'capistrano/rails' +require 'capistrano/bundler' +require 'capistrano/rbenv' +{% endhighlight %} 9. - Yay! Try to deploy with your new config set. If you discover any missing info in this upgrade guide, you're welcome to contribute to it. +Yay! Try to deploy with your new config set. If you discover any missing info in this upgrade guide, you're welcome to contribute to it. # General recommendations @@ -93,22 +92,22 @@ layout: default Instead of: {% highlight ruby %} - run <<-CMD.compact - cd -- #{latest_release} && - RAILS_ENV=#{rails_env.to_s.shellescape} #{asset_env} #{rake} assets:precompile - CMD +run <<-CMD.compact + cd -- #{latest_release} && + RAILS_ENV=#{rails_env.to_s.shellescape} #{asset_env} #{rake} assets:precompile +CMD {% endhighlight %} It's better to use: {% highlight ruby %} - on roles :all do - within fetch(:latest_release_directory) do - with rails_env: fetch(:rails_env) do - execute :rake, 'assets:precompile' - end +on roles :all do + within fetch(:latest_release_directory) do + with rails_env: fetch(:rails_env) do + execute :rake, 'assets:precompile' end end +end {% endhighlight %} Note: 'within' blocks are required to be wrapped in an 'on' block for the dsl to recognize it @@ -116,11 +115,11 @@ Note: 'within' blocks are required to be wrapped in an 'on' block for the dsl to You may only have one 'with' block per call. If you need more than one env set, use the syntax in the 'with' block arg like this (pass it a map): {% highlight ruby %} - on roles :all do - within fetch(:latest_release_directory) do - with rails_env: fetch(:rails_env), rails_relative_url_root: '/home' do - execute :rake, 'assets:precompile', env: {rails_env: fetch(:rails_env), rails_relative_url_root: ''} - end +on roles :all do + within fetch(:latest_release_directory) do + with rails_env: fetch(:rails_env), rails_relative_url_root: '/home' do + execute :rake, 'assets:precompile', env: {rails_env: fetch(:rails_env), rails_relative_url_root: ''} end end +end {% endhighlight %} From 86ac6444dc486360330884862cf89c671c3dbd65 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Fri, 23 Jan 2015 11:35:52 +0100 Subject: [PATCH 173/256] Update navigation.html Remove unused class. --- _includes/navigation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index 7d1ddc1f..103a2d23 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,5 +1,5 @@
                -
              • New Hosted Capistrano for Teams
              • +
              • New Hosted Capistrano for Teams
              • Overview
                From 23130de7bf34160d78b30df4c293e8542088e980 Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Tue, 27 Jan 2015 14:58:46 -0800 Subject: [PATCH 174/256] Document Property filtering Linked with PR #1352 for Capistrano --- _includes/navigation.html | 1 + .../property-filtering/index.markdown | 55 +++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 documentation/advanced-features/property-filtering/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index 103a2d23..a27db689 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -27,6 +27,7 @@
              • Console
              • PTYs
              • Host and Role Filtering
              • +
              • Property Filtering
              • Host filtering
              • Role Filtering
              • Overriding Capistrano Tasks
              • diff --git a/documentation/advanced-features/property-filtering/index.markdown b/documentation/advanced-features/property-filtering/index.markdown new file mode 100644 index 00000000..3ad3613a --- /dev/null +++ b/documentation/advanced-features/property-filtering/index.markdown @@ -0,0 +1,55 @@ +--- +title: Property Filtering +layout: default +--- + +Options may be passed to the `roles()` method (and implicitly in methods like +`release_roles()` and `primary()`) that affect the set of servers returned. These options +take the form of a Hash passed as the last parameter. Each of the key/value pairs in the +hash are evaluated in the sequence they are declared and if all are true for a specific +server then the server will be returned. The keys must always be symbols which have the +following meaning: + +* `:filter`, or `:select`: The value must return true for the server to be included, +* `:exclude`: The value must return false for the server to be included, and +* Any other symbol is taken as a server property name whose value must equal the given value. + +In the first two cases the values themselves can be a lambda that will be evaluated with the +current server. In the last case the value may be anything and is just tested for +equality. + +Examples +{% highlight ruby %} +server 'example1.com', roles: %w{web}, active: true +server 'example2.com', roles: %w{web} +server 'example3.com', roles: %w{app web}, active: true +server 'example4.com', roles: %w{app}, primary: true +server 'example5.com', roles: %w{db}, no_release: true, active:true + +task :demo do + puts "All active release roles: 1,3" + release_roles(:all, filter: :active).each do |r| + puts "#{r.hostname}" + end + puts "All active roles: 1,3,5" + roles(:all, active: true).each do |r| + puts "#{r.hostname}" + end + puts "All web and db roles with selected names: 2,3" + roles(:web, :db, select: ->(s){ s.hostname =~ /[234]/}).each do |r| + puts "#{r.hostname}" + end + puts "All with no active property: 2,4" + roles(:all, active: nil).each do |r| + puts "#{r.hostname}" + end + puts "All except active: 2,4" + roles(:all, exclude: :active).each do |r| + puts "#{r.hostname}" + end + puts "All primary: 4" + roles(:all, select: :primary).each do |r| + puts "#{r.hostname}" + end +end +{% endhighlight %} From 750cfecf98bc4d737a6604e850371aadb361efdf Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Tue, 27 Jan 2015 15:35:46 -0800 Subject: [PATCH 175/256] Document :repo_path stage variable --- .../getting-started/configuration/index.markdown | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index d0fe7f2f..8ed394a6 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -44,7 +44,7 @@ The following variables are settable: * `:deploy_to` * **default:** `-> { "/var/www/#{fetch(:application)}" }` * The path on the remote server where the application should be deployed. - * If application contains whitespace or such this path might be invalid. See Structure for the exact directorys used. + * If application contains whitespace or such this path might be invalid. See Structure for the exact directories used. * `:scm` * **default:** `:git` @@ -55,7 +55,13 @@ The following variables are settable: * URL to the repository. * Must be a valid URL for the used SCM. +* `:repo_path` + * **default:** `-> { "#{fetch(:deploy_to)}/repo" }` + * The path on the remote server where the repository should be placed. + * This does not normally need to be set + * `:repo_tree` + * **default:** None. The whole repository is normally deployed. * The subtree of the repository to deploy. * Currently only implemented for Git and Hg. From 4935dc277b5e25caa6dd40e211c5b0b9ba103f27 Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Fri, 6 Feb 2015 11:10:08 -0800 Subject: [PATCH 176/256] Add Vim swap files to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 984f8815..1780d98b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ _site_site .DS_Store .bundle/ /_site/ +*.swp From fb85835485fcae8d7deeb7131fd9ea7e13c0a887 Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Fri, 6 Feb 2015 11:12:32 -0800 Subject: [PATCH 177/256] Refactor Filtering Documentation Create new high-level topic for Filtering Add Regex information to existing documentation --- _includes/navigation.html | 2 +- .../filtering/index.markdown | 62 +++++++++++++++++++ .../host-and-role-filtering/index.markdown | 49 --------------- .../host-filtering/index.markdown | 14 ++--- .../property-filtering/index.markdown | 18 +++--- .../role-filtering/index.markdown | 8 +++ 6 files changed, 87 insertions(+), 66 deletions(-) create mode 100644 documentation/advanced-features/filtering/index.markdown delete mode 100644 documentation/advanced-features/host-and-role-filtering/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index a27db689..143a7293 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -26,7 +26,7 @@
                Advanced Features
              • Console
              • PTYs
              • -
              • Host and Role Filtering
              • +
              • Filtering
              • Property Filtering
              • Host filtering
              • Role Filtering
              • diff --git a/documentation/advanced-features/filtering/index.markdown b/documentation/advanced-features/filtering/index.markdown new file mode 100644 index 00000000..604ce3c5 --- /dev/null +++ b/documentation/advanced-features/filtering/index.markdown @@ -0,0 +1,62 @@ +--- +title: Filtering +layout: default +--- + +Filtering is the term given to reducing the entire set of servers declared in a stage file +to a smaller set. There are three types of filters used in Capistrano (Host, Role and +Property) and they take effect in two quite different ways because of the two distinct +uses to which the declarations of servers, roles and properties are put in tasks: + +* To determine _configurations_: typically by using the `roles()`, `release_roles()` and + `primary()` methods. Typically these are used outside the scope of the `on()` method. + +* To _interact_ with remote hosts using the `on()` method + +An illustration of this would be to create a `/etc/krb5.conf` file containing the list of +available KDC's by using the list of servers returned by `roles(:kdc)` and then uploading +it to all client machines using `on(roles(:all)) do upload!(file) end` + +A problem with this arises when _filters_ are used. Filters are designed to limit the +actual set of hosts that are used to a subset of those in the overall stage, but how +should that apply in the above case? + +If the filter applies to both the _interaction_ and _configuration_ aspects, any configuration +files deployed will not be the same as those on the hosts excluded by the filters. This is +almost certainly not what is wanted, the filters should apply only to the _interactions_ +ensuring that any configuration files deployed will be identical across the stage. + +So we define two different categories of filter, the interaction ones which are called _On-Filters_ +and the configuration ones which are _Property-Filters_ + +### On-Filtering + +On-filters apply only to the `on()` method that invokes SSH. There are two types: + +* [Host Filters](/documentation/advanced-features/host-filtering/), and + +* [Role Filters](/documentation/advanced-features/role-filtering/) + + +In both the above cases, when filters are specified using comma separated lists, the final +filter is the _union_ of all of the components. However when multiple filters are declared +the result is the _intersection_. + +This means that you can filter by both role and host but you will get the _intersection_ +of the servers. For example, lets say you filtered by the role `app`, then by +the hostnames `server1` and `server2`. Capistrano would first filter the +available servers to only those with the role `app`, then filter them +to look for servers with the hostname `server1` or `server2`. If only `server2` +had the role `app` (`server1` has some other role), then in this situation your +task would only run on `server2`. + +### Property-Filtering + +Property-filters select servers based on the value of their properties alone and +are specified by options passed to the `roles()` method (and implicitly in methods +like `release_roles()` and `primary()`) + +An example of that is the 'no_release' property and it's use in the `release_roles()` method. + +See the [documentation](/documentation/advanced-features/property-filtering/) for +details diff --git a/documentation/advanced-features/host-and-role-filtering/index.markdown b/documentation/advanced-features/host-and-role-filtering/index.markdown deleted file mode 100644 index 24a1d818..00000000 --- a/documentation/advanced-features/host-and-role-filtering/index.markdown +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Host and Role Filtering -layout: default ---- - -Capistrano enables the declaration of servers and roles, each of which may have properties -associated with them. Tasks are then able to use these definitions in two distinct ways: - -* To determine _configurations_: typically by using the `roles()`, `release_roles()` and - `primary()` methods. Typically these are used outside the scope of the `on()` method. - -* To _interact_ with remote hosts using the `on()` method - -An example of the two would be to create a `/etc/krb5.conf` file containing the list of -available KDC's by using the list of servers returned by `roles(:kdc)` and then uploading -it to all client machines using `on(roles(:all)) do upload!(file) end` - -A problem with this arises when _filters_ are used. Filters are designed to limit the -actual set of hosts that are used to a subset of those in the overall stage, but how -should that apply in the above case? - -If the filter applies to both the _interaction_ and _configuration_ aspects, any configuration -files deployed will not be the same as those on the hosts excluded by the filters. This is -almost certainly not what is wanted, the filters should apply only to the _interactions_ -ensuring that any configuration files deployed will be identical across the stage. - -Another type of filtering is done by defining properties on servers and selecting on that -basis. An example of that is the 'no_release' property and it's use in the -`release_roles()` method. To distinguish these two types of filtering we name them: - -* On-Filtering - Specified in the following ways: - * Via environment variables HOSTS and ROLES - * Via command line options `--hosts` and `--roles` - * Via the `:filter` variable set in a stage file -* Property-Filtering - These are specified by options passed to the `roles()` method (and implicitly in methods - like `release_roles()` and `primary()`) - -To increase the utility of On-Filters they can use regular expressions: -* If the host name in a filter doesn't match `/^[-A-Za-z0-9.]+$/` (the set of valid characters - for a DNS name) then it's assumed to be a regular expression. -* Since role names are Ruby symbols they can legitimately contain any characters. To allow multiple - of them to be specified on one line we use the comma. To use a regexp for a role filter begin - and end the string with '/'. These may not contain a comma. - -When filters are specified using comma separated lists, the final filter is the _union_ of -all of the components. However when multiple filters are declared the result is the -_intersection_. diff --git a/documentation/advanced-features/host-filtering/index.markdown b/documentation/advanced-features/host-filtering/index.markdown index 261e8839..4ff22bf9 100644 --- a/documentation/advanced-features/host-filtering/index.markdown +++ b/documentation/advanced-features/host-filtering/index.markdown @@ -17,14 +17,6 @@ If you specify a filter, it will match servers that have the listed hostnames, and it will run *all* the roles for each server. In other words, it only affects the servers the task runs on, not what tasks are run on a server. -You can limit by role and by host; if you do this, the role filtering will -apply first. For example, lets say you filtered by the role `app`, then by -the hostnames `server1` and `server2`. Capistrano would first filter the -available servers to only those with the role `app`, then filter them -to look for servers with the hostname `server1` or `server2`. If only `server2` -had the role `app` (`server1` has some other role), then in this situation your -task would only run on `server2`. - ### Specifying a host filter There are three ways to specify the host filter. @@ -63,3 +55,9 @@ cap --hosts=server1,server2 production deploy Like the environment variable method, specify multiple servers by separating them with a comma. + +### Using Regular Expressions + +If the host name in a filter doesn't match the set of valid characters for a DNS name +(Given by the regular expression `/^[-A-Za-z0-9.]+$/`) then it's assumed to be a regular +expression in standard Ruby syntax. diff --git a/documentation/advanced-features/property-filtering/index.markdown b/documentation/advanced-features/property-filtering/index.markdown index 3ad3613a..85bdd331 100644 --- a/documentation/advanced-features/property-filtering/index.markdown +++ b/documentation/advanced-features/property-filtering/index.markdown @@ -10,16 +10,18 @@ hash are evaluated in the sequence they are declared and if all are true for a s server then the server will be returned. The keys must always be symbols which have the following meaning: -* `:filter`, or `:select`: The value must return true for the server to be included, -* `:exclude`: The value must return false for the server to be included, and +* `:filter`, or `:select`: The value is either a property keyname or a lambda which is + called with the server as parameter. The value must return true for the server to be + included. + +* `:exclude`: As above but the value must return false for the server to be included. + * Any other symbol is taken as a server property name whose value must equal the given value. + A lambda will not be called if one is supplied! -In the first two cases the values themselves can be a lambda that will be evaluated with the -current server. In the last case the value may be anything and is just tested for -equality. +### Examples -Examples -{% highlight ruby %} +```ruby server 'example1.com', roles: %w{web}, active: true server 'example2.com', roles: %w{web} server 'example3.com', roles: %w{app web}, active: true @@ -52,4 +54,4 @@ task :demo do puts "#{r.hostname}" end end -{% endhighlight %} +``` diff --git a/documentation/advanced-features/role-filtering/index.markdown b/documentation/advanced-features/role-filtering/index.markdown index f98a4e54..90052c1e 100644 --- a/documentation/advanced-features/role-filtering/index.markdown +++ b/documentation/advanced-features/role-filtering/index.markdown @@ -56,3 +56,11 @@ cap --roles=app,web production deploy Like the environment variable method, specify multiple roles by separating them with a comma. + +### Using Regular Expressions + +Since role names are Ruby symbols they can legitimately contain any characters. However to +allow multiple of them to be specified on one line we use the comma as a separator. + +To use a regular expression for a role filter begin and end the string with '/'. Because +of the above these regular expressions may not contain a comma. From 8033031f383fd65bc1e691965429c829fb14647f Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Fri, 6 Feb 2015 11:19:15 -0800 Subject: [PATCH 178/256] Add Properties documentation Describe setting, merging and retrieving Include new role_properties method Requires PR #1360 in capistrano --- _includes/navigation.html | 1 + .../properties/index.markdown | 171 ++++++++++++++++++ 2 files changed, 172 insertions(+) create mode 100644 documentation/advanced-features/properties/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index 143a7293..0fad4592 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -27,6 +27,7 @@
              • Console
              • PTYs
              • Filtering
              • +
              • Properties
              • Property Filtering
              • Host filtering
              • Role Filtering
              • diff --git a/documentation/advanced-features/properties/index.markdown b/documentation/advanced-features/properties/index.markdown new file mode 100644 index 00000000..4c85432e --- /dev/null +++ b/documentation/advanced-features/properties/index.markdown @@ -0,0 +1,171 @@ +--- +title: Properties +layout: default +--- + +Server objects in Capistrano essentially consist of a name and a hash: The name is the DNS +name (or IP address) and the hash contains the 'Properties' of the server. These +properties are of two sorts: ones required by Capistrano (_Capistrano Properties_) and +ones available for use by the Application (_Custom Properties_). These share the same +namespace (there is only one underlying hash!) so the names of custom properties are +restricted. + +### Capistrano Properties + +The Capistrano properties are those used to SSH into the server and those that support the +basic _role_ functionality. These are: + +* `:user` - the name of the SSH user for the server +* `:password` - for the SSH user +* `:port` - the port number of the SSH daemon on the server +* `:roles` - an array of rolenames +* `:primary` - a boolean that indicates whether the server should be considered primary or + not. + +The values of `:user`, `:password` and `:port` if not specified will default to the same +values contained in the `:ssh_options` global variable of the stage. If this is not +specified then SSH will fallback to any settings in your local `~/.ssh/config` + +
                The :user and :port properties are treated somewhat +differently to the other properties: They are not merged as described below. If you +define multiple servers with different users or ports then multiple instances of +the server will be created. This is usually not what is expected. It is recommended to +specify the user and port for all servers in the stage variable :ssh_config. This +behaviour is currently under review and may be changed in future.
                + + +### Custom Properties + +When using Capistrano as a general purpose deployment framework (above and beyond it's +traditional use for Rails deployments) it becomes important to be able to store additional +parameters. You can think of Capistrano as an _MVC_ framework for deployments, where the +stage file (representing all the relationships between application components) is the +_Model_, the tasks (enabling model changes to be actioned) are the _Controllers_, and the +actual physical embodiments (typically configuration files on running servers) are the +_Views_. + +### Property setting in Complex Configurations + +As configurations involve more servers it helps to be able to define a set of +properties at the role level, and have those be overridden by a later definition at the +server level. This keeps your configuration as DRY as possible. A typical requirement is +defining a set of Redis servers which all have the same port parameter and are all slaves +except for one which is the master. + +To allow this properties can be set at both the _Server_ and _Role_ level. The guiding +principle is that the properties are _merged_ and that __the last definition wins__. +In practice we finesse this slightly depending on the type of the properties value: + +* _scalar_ values, such as the `:user` string will be overridden +* _hash_ values will have their keys merged with duplicate keys taking on + the value of the last one. +* _array_ values will have subsequent entries appended to the array + +#### Example of Server and Role Properties + +The above Redis requirement can be met using the following declarations in the stage file: + +```ruby +role :redis, %w{ r1.example.com r2.example.com r3.example.com }, redis: { port: 6379, master: false }, +server 'r1.example.com', redis: { port: 6380, master: true } +``` + +#### Conventions for Role Properties + +This is complicated by the fact that a single machine may serve multiple roles, and in +fact a single machine may need to do the same role twice! An example of this might be in a +development situation where you want a single machine to be the database server, a primary +Redis server and a slave Redis server. + +To solve this problem we adopt a convention for the use of server properties: + +* Server properties for a given role should be stored with the keyname equal to the role. + The contents of the property can be a scalar, array or hash. + +* Multiple occurrences of a role on the same server should have the contents be an array, + in which the successive elements denote each instance. + +The following example shows a configuration with multiple redis and sentinel roles on the +same server: + +```ruby +server 'dev.local', roles: %w{db web redis sentinel worker}, primary: true, + redis: [ { name: 'resque', port: 6379, db: 0, downtime: 10, master: true }, + { name: 'resque', port: 6380, db: 0, downtime: 10 } ], + sentinel: [ { port: 26379 }, { port: 26380 }, { port: 26381 } ] +``` + +These properties can be accessed in the ordinary way, but to assist in obtaining them you +can use the `role_properties()` function. + +## Setting Properties + +Properties can be set at both the role and server levels. + +### Role Properties + +The declaration of a role takes an array of server names and a trailing hash of +properties. By convention the first server in a role declaration is taken to be the +primary, but the `:primary` property will not actually be set in such a case. + +### Server Properties + +The declaration of a server takes the name of a server and a trailing hash of properties. +One of those properties must be `:role` and have a value which is an array of role names. + +### Accessing Properties + +#### The `roles()` Method +The `roles()` method takes one or more role names (or an array of roles) and returns an array of `Capistrano::Configuration::Server` objects that belong to those roles. It yields a `host` variable which has the following: + +* `hostname` - a String +* `properties` - the configuration hash-like object +* `properties.keys` - the names of properties above +* `roles` - a Set of role names as symbols +* `primary` - the name of the host if it has the :primary property set to true + +Note that the `host.keys` property which seems to be an empty array! + +The servers produced by a roles() method are NOT filtered. + +#### The `role_properties()` Method + +This takes a list of roles (followed by an optional [Property +Filter](/documentation/advanced-features/property-filtering)) and returns an array of +hosts and their properties: + +```ruby +task :props do + rps = role_properties(:redis, :sentinel) + rps.each do |props| + puts props.inspect + end +end + +# Produces... + +{:name=>"resque", :port=>6379, :db=>0, :downtime=>10, :master=>true, :role=>:redis, :hostname=>"dev.local"} +{:name=>"resque", :port=>6380, :db=>0, :downtime=>10, :role=>:redis, :hostname=>"dev.local"} +{:port=>26379, :role=>:sentinel, :hostname=>"dev.local"} +{:port=>26380, :role=>:sentinel, :hostname=>"dev.local"} +{:port=>26381, :role=>:sentinel, :hostname=>"dev.local"} +``` + +Alternatively you can supply a block and it will yield the hostname, role and properties: + +```ruby +task :props_block do + role_properties(:sentinel) do |hostname, role, props| + puts "Host: #{hostname}, Role: #{role}, #{props.inspect}" + end +end + +# Produces... + +Host: dev.local, Role: sentinel, {:port=>26379} +Host: dev.local, Role: sentinel, {:port=>26380} +Host: dev.local, Role: sentinel, {:port=>26381} +``` + +Note that unlike `on()` this function doesn't cause any remote execution to occur, it is purely for +configuration purposes. From 7bc57b2ec19eb76d448dc6219702167b8750f798 Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Fri, 6 Feb 2015 11:21:35 -0800 Subject: [PATCH 179/256] =?UTF-8?q?Improve=20=E2=80=98Preparing=20your=20A?= =?UTF-8?q?pp=E2=80=99=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use backticks to avoid formatting fail using {% highlight .. %} syntax Describe property merging issues --- .../preparing-your-application/index.markdown | 72 ++++++++++--------- 1 file changed, 39 insertions(+), 33 deletions(-) diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index 1f2d9640..b77b8d25 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -34,24 +34,24 @@ configuration into place at deploy time. The original `database.yml` should be added to the `.gitignore` (or your SCM's parallel concept of ignored files) -{% highlight bash %} +```bash $ cp config/database.yml{,.example} $ echo config/database.yml >> .gitignore -{% endhighlight %} +``` This should be done for any other secret files, we'll create the production version of the file when we deploy, and symlink it into place. ### 3. Initialize Capistrano in your application. -{% highlight bash %} +```bash $ cd my-project $ cap install -{% endhighlight %} +``` This will create a bunch of files, the important ones are: -{% highlight bash %} +```bash ├── Capfile ├── config │   ├── deploy @@ -61,11 +61,12 @@ This will create a bunch of files, the important ones are: └── lib └── capistrano └── tasks -{% endhighlight %} +``` Your new Capfile will automatically include any tasks from any `*.rake` files in `lib/capistrano/tasks`. + ### 4. Configure your server addresses in the generated files. We'll just work with the staging environment here, so you can pretend that @@ -87,7 +88,7 @@ common. The example file generated will look something like this: -{% highlight ruby %} +```ruby set :stage, :staging # Simple Role Syntax @@ -108,38 +109,43 @@ role :db, %w{example.com} server 'example.com', roles: %w{web app}, my_property: :my_value # set :rails_env, :staging -{% endhighlight %} +``` -Both the simple role, and extended server syntaxes result in one or more -servers for each role being defined. The `app` and `db` roles are just -placeholders, if you are using the `capistrano/rails-*` addons (more on -that later) then they have a meaning, but if you are deploying something -simpler, feel free to delete them if they're meaningless to you. +Servers can be defined in two ways, implicitly using the simple `role` syntax and +explicitly using the extended `server` syntax. Both result in one or more servers for +each role being defined. The `app` and `db` roles are just placeholders, if you are using +the `capistrano/rails-*` addons (more on that later) then they have a meaning, but if you +are deploying something simpler, feel free to delete them if they're meaningless to you. -The extended server syntax exists to allow the definition of arbitrary server -properties; it's there incase people want to build the server list more -comprehensively from something like the *EC2* command line tools, and want to -use the extended properties for something that makes sense in their -environment. +Both types can specify optional _properties_ to be associated with a server or role. These +properties include Capistrano-required ones such as the SSH options (username, port, keys +etc.) and also arbitrary custom properties. The are there incase people want to build the +server list more comprehensively from something like the *EC2* command line tools, and +want to use the extended properties for something that makes sense in their environment. -
                -Only use one syntax to define your server and roles. Do NOT use both for the -same server+role. It will break your deployment. -
                +The following shows defining two servers, one where we set the +username, and another where we set the port. These host strings are parsed and expanded +out in to the equivalent of the server line after the comment: -Servers can be defined in a bunch of ways, the following shows defining two -servers, one where we set the username, and another where we set the port. -These host strings are parsed and expanded out in to the equivalent of the -server line after the comment: - -{% highlight ruby %} +```ruby # using simple syntax role :web, %w{hello@world.com example.com:1234} # using extended syntax (which is equivalent) server 'world.com', roles: [:web], user: 'hello' server 'example.com', roles: [:web], port: 1234 -{% endhighlight %} +``` + +
                You can define a server or role using both syntaxes and the +properties will be merged. See the Properties Documentation for details +
                + +
                If you define servers with either the simple or the extended +syntax and explicitly specify a user or a port number multiple servers will be created +and the merging will be ill-defined. This may break your deployment! If you wish to merge +properties then specify the user and port in the variable :ssh_config. This behaviour is +currently under review and may be changed in future. +
                ### 5. Set the shared information in `deploy.rb`. @@ -151,11 +157,11 @@ The generated sample file starts with the following, and is followed by a few self-documenting, commented-out configuration options, feel free to play with them a little: -{% highlight ruby %} +```ruby set :application, 'my app name' set :repo_url, 'git@example.com:me/my_repo.git' ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp } -{% endhighlight %} +``` Here we'd set the name of the application, ideally in a way that's safe for filenames on your target operating system. @@ -174,11 +180,11 @@ Cancan (for authorisation) along side Twitter Bootstrap for assets has been forked to the Capistrano repository, but you can find the (unchanged) original [here](https://github.com/RailsApps/rails3-bootstrap-devise-cancan). -{% highlight ruby %} +```ruby set :application, 'rails3-bootstrap-devise-cancan-demo' set :repo_url, 'https://github.com/capistrano/rails3-bootstrap-devise-cancan' set :branch, 'master' -{% endhighlight %} +``` I've simplified the `:branch` variable to simply be a `set` variable, not a question prompt, as this repository only has a master branch. From c79b3613cdc108f169be01818fb2df9734745104 Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Sat, 7 Feb 2015 09:55:09 -0800 Subject: [PATCH 180/256] Change all highlights to use back-ticks --- .../capistrano-pure-ruby/index.markdown | 4 +- .../advanced-features/console/index.markdown | 8 +-- .../host-filtering/index.markdown | 12 ++-- .../index.markdown | 16 ++--- .../remote-file/index.markdown | 4 +- .../role-filtering/index.markdown | 12 ++-- .../advanced-features/ssh-kit/index.markdown | 4 +- .../index.markdown | 20 +++--- .../index.markdown | 4 +- .../index.markdown | 4 +- .../index.markdown | 16 ++--- .../index.markdown | 68 +++++++++---------- .../before-after/index.markdown | 12 ++-- .../getting-started/cold-start/index.markdown | 40 +++++------ .../configuration/index.markdown | 8 +-- .../getting-started/flow/index.markdown | 20 +++--- .../installation/index.markdown | 20 +++--- .../local-tasks/index.markdown | 12 ++-- .../getting-started/structure/index.markdown | 8 +-- .../getting-started/tasks/index.markdown | 4 +- .../getting-started/user-input/index.markdown | 16 ++--- .../what-is-capistrano/index.markdown | 8 +-- documentation/upgrading/index.markdown | 40 +++++------ index.markdown | 4 +- 24 files changed, 182 insertions(+), 182 deletions(-) diff --git a/documentation/advanced-features/capistrano-pure-ruby/index.markdown b/documentation/advanced-features/capistrano-pure-ruby/index.markdown index 72fc4745..68438922 100644 --- a/documentation/advanced-features/capistrano-pure-ruby/index.markdown +++ b/documentation/advanced-features/capistrano-pure-ruby/index.markdown @@ -7,7 +7,7 @@ Instead of building a config folder and deploy, you may want to programmatically set everything in a single ruby script. This could be done as follows: -{% highlight ruby %} +```ruby require 'capistrano/all' stages = "production" @@ -23,7 +23,7 @@ Dir.glob('capistrano/tasks/*.rake').each { |r| import r } Capistrano::Application.invoke("production") Capistrano::Application.invoke("deploy") -{% endhighlight%} +``` Note that the require order is important as the stage needs to be set before you load setup and deploy. diff --git a/documentation/advanced-features/console/index.markdown b/documentation/advanced-features/console/index.markdown index 3e5117ad..907413eb 100644 --- a/documentation/advanced-features/console/index.markdown +++ b/documentation/advanced-features/console/index.markdown @@ -11,13 +11,13 @@ Execute arbitrary remote commands, to use this simply add `require 'capistrano/console'` which will add the necessary tasks to your environment: -{% highlight bash %} +```bash $ bundle exec cap staging console -{% endhighlight %} +``` Then, after setting up the server connections, this is how that might look: -{% highlight bash %} +```bash $ bundle exec cap production console capistrano console - enter command to execute on production production> uptime @@ -30,4 +30,4 @@ production> who DEBUG [9ce34809] Command: /usr/bin/env who DEBUG [9ce34809] leehambley pts/0 2013-06-13 17:11 (port-11262.pppoe.wtnet.de) INFO [9ce34809] Finished in 0.420 seconds command successful. -{% endhighlight %} +``` diff --git a/documentation/advanced-features/host-filtering/index.markdown b/documentation/advanced-features/host-filtering/index.markdown index 4ff22bf9..5e589752 100644 --- a/documentation/advanced-features/host-filtering/index.markdown +++ b/documentation/advanced-features/host-filtering/index.markdown @@ -26,9 +26,9 @@ There are three ways to specify the host filter. Capistrano will read the host filter from the environment variable `HOSTS` if it is set. You can set it inline: -{% highlight bash %} +```bash HOSTS=server1,server2 cap production deploy -{% endhighlight %} +``` Specify multiple hosts by separating them with a comma. @@ -37,9 +37,9 @@ Specify multiple hosts by separating them with a comma. You can set the host filter inside your deploy configuration. For example, you can set the following inside `config/deploy.rb`: -{% highlight ruby %} +```ruby set :filter, :host => %w{server1 server2} -{% endhighlight %} +``` Note that you specify the filter as an array rather than as a comma-separated list of servers when using this method. @@ -49,9 +49,9 @@ list of servers when using this method. In a similar way to using the environment variable, you can set the role filter by specifying it as a command line argument to `cap`: -{% highlight bash %} +```bash cap --hosts=server1,server2 production deploy -{% endhighlight %} +``` Like the environment variable method, specify multiple servers by separating them with a comma. diff --git a/documentation/advanced-features/overriding-capistrano-tasks/index.markdown b/documentation/advanced-features/overriding-capistrano-tasks/index.markdown index 4da973a7..316696cf 100644 --- a/documentation/advanced-features/overriding-capistrano-tasks/index.markdown +++ b/documentation/advanced-features/overriding-capistrano-tasks/index.markdown @@ -7,7 +7,7 @@ When re-defining a task in Capistrano v2, the original task was replaced. The Rake DSL on which Capistrano v3 is built is additive however, which means that given the following definitions -{% highlight ruby %} +```ruby task :foo do puts "foo" end @@ -15,7 +15,7 @@ end task :foo do puts "bar" end -{% endhighlight %} +``` Will print both `foo` and `bar`. @@ -32,11 +32,11 @@ for a task) is probably not what you want, though. Let's say, for example, that you want to re-define the `deploy:revert_release` task, which is defined as follows: -{% highlight ruby %} +```ruby task :revert_release => :rollback_release_path do # ... end -{% endhighlight %} +``` Calling `clear` on this task and then re-defining it results in `rollback_release_path` never being called, thus breaking rollback behavior. @@ -45,7 +45,7 @@ Under most circumstances, you will simply want to use `clear_actions`, which removes the specified task's behaviour, but does not alter it's dependencies or comments: -{% highlight ruby %} +```ruby task :init do puts "init" end @@ -58,13 +58,13 @@ Rake::Task["foo"].clear_actions task :foo do puts "bar" end -{% endhighlight %} +``` Running the `foo` task will print -{% highlight ruby %} +```ruby init bar -{% endhighlight %} +``` --- diff --git a/documentation/advanced-features/remote-file/index.markdown b/documentation/advanced-features/remote-file/index.markdown index 578787ec..cab8b16e 100644 --- a/documentation/advanced-features/remote-file/index.markdown +++ b/documentation/advanced-features/remote-file/index.markdown @@ -8,7 +8,7 @@ The `remote_file` task is allowing the existence of a remote file to be set as a As an example, this task can be used to ensure that files to be linked exist before running the check:linked_files task: -{% highlight ruby %} +```ruby namespace :deploy do namespace :check do task :linked_files => 'config/newrelic.yml' @@ -20,4 +20,4 @@ remote_file 'config/newrelic.yml' => '/tmp/newrelic.yml', roles: :app file '/tmp/newrelic.yml' do |t| sh "curl -o #{t.name} https://rpm.newrelic.com/accounts/xx/newrelic.yml" end -{% endhighlight %} +``` diff --git a/documentation/advanced-features/role-filtering/index.markdown b/documentation/advanced-features/role-filtering/index.markdown index 90052c1e..3bf5d118 100644 --- a/documentation/advanced-features/role-filtering/index.markdown +++ b/documentation/advanced-features/role-filtering/index.markdown @@ -27,9 +27,9 @@ There are three ways to specify the role filter. Capistrano will read the role filter from the environment variable `ROLES` if it is set. You can set it inline: -{% highlight bash %} +```bash ROLES=app,web cap production deploy -{% endhighlight %} +``` Specify multiple roles by separating them with a comma. @@ -38,9 +38,9 @@ Specify multiple roles by separating them with a comma. You can set the role filter inside your deploy configuration. For example, you can set the following inside `config/deploy.rb`: -{% highlight ruby %} +```ruby set :filter, :roles => %w{app web} -{% endhighlight %} +``` Note that you specify the filter as an array rather than as a comma-separated list of roles when using this method. @@ -50,9 +50,9 @@ list of roles when using this method. In a similar way to using the environment variable, you can set the role filter by specifying it as a command line argument to `cap`: -{% highlight bash %} +```bash cap --roles=app,web production deploy -{% endhighlight %} +``` Like the environment variable method, specify multiple roles by separating them with a comma. diff --git a/documentation/advanced-features/ssh-kit/index.markdown b/documentation/advanced-features/ssh-kit/index.markdown index 8a454695..2dfc5a19 100644 --- a/documentation/advanced-features/ssh-kit/index.markdown +++ b/documentation/advanced-features/ssh-kit/index.markdown @@ -7,7 +7,7 @@ Capistrano executes commands on remote servers using [**SSHKit**](https://github An example setting a working directory, user and environment variable: -{% highlight ruby %} +```ruby on roles(:app), in: :sequence, wait: 5 do within "/opt/sites/example.com" do # commands in this block execute in the @@ -23,7 +23,7 @@ on roles(:app), in: :sequence, wait: 5 do end end end -{% endhighlight %} +``` For more examples, see the EXAMPLES.md file in the [**SSHKit**](https://github.com/capistrano/sshkit) project: diff --git a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown b/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown index d71d0f3b..62241d95 100644 --- a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown +++ b/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown @@ -4,9 +4,9 @@ layout: default --- Configuration variables are access with the fetch method, like so: -{% highlight ruby %} +```ruby local = fetch(:configuration_variable, _default_value_) -{% endhighlight %} +``` This works fine when accessing configuration variables defined within the same file. For example accessing a previously set configuration variable defined in deploy.rb or accessing a set configuration variable in a stage file. @@ -15,27 +15,27 @@ The deploy.rb configuration is executed first and then the stage file(s) from co For example, let's create a configuration variable in the production and staging files and access the current one from deploy.rb. config/deploy/production.rb -{% highlight ruby %} +```ruby set :app_domain, "www.my_application.com" -{% endhighlight %} +``` config/deploy/staging.rb -{% highlight ruby %} +```ruby set :app_domain, "stage.application_test.com" -{% endhighlight %} +``` These variables are not available in deploy.rb using `fetch(:nginx_port)` or `fetch(:app_domain)` because they are not defined when deploy.rb is executed. They can, however, be lazily loaded using a lambda in deploy.rb like this: config/deploy.rb -{% highlight ruby %} +```ruby set :nginx_server_name, ->{ fetch(:app_domain) } set :puma_bind, ->{ "unix:/tmp/#{fetch(:app_domain)}.sock" } -{% endhighlight %} +``` Now the `:nginx_server_name` and `:puma_bind` variables will be lazily assigned the values set in which ever stage file was used to deploy. If you need to create nested hashes, you might find `do/end` syntax more readable: -{% highlight ruby %} +```ruby set :database_yml, -> do { production: { @@ -43,4 +43,4 @@ set :database_yml, -> do } } end -{% endhighlight %} +``` diff --git a/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown b/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown index 513a3020..bdb62c94 100644 --- a/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown +++ b/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown @@ -5,9 +5,9 @@ layout: default The `test` method is best used for file checking with bash conditionals -{% highlight ruby %} +```ruby if test("[ -f /tmp/foo ]") # do stuff end -{% endhighlight %} +``` diff --git a/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown b/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown index 780c3632..3c0bf0fd 100644 --- a/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown +++ b/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown @@ -5,8 +5,8 @@ layout: default Password authentication can be done via `ask` in your deploy environment file (e.g.: config/environments/production.rb) -{% highlight ruby %} +```ruby # Capistrano > 3.2.0 supports echo: false ask(:password, nil, echo: false) server 'server.domain.com', user: 'ssh_user_name', port: 22, password: fetch(:password), roles: %w{web app db} -{% endhighlight %} +``` diff --git a/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown b/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown index c57a62b6..ae4631ee 100644 --- a/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown +++ b/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown @@ -60,23 +60,23 @@ figure this out! First, we'll try a *real* SSH session, logging in via our terminal, and seeing what happens: -{% highlight bash %} +```bash me@localhost $ ssh me@remote me@remote $ [[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive' Interactive me@remote $ shopt -q login_shell && echo 'Login shell' || echo 'Not login shell' Login shell -{% endhighlight %} +``` Contrast that with what happens when we hand the command to run to the SSH command line without logging in first... -{% highlight bash %} +```bash me@localhost $ ssh me@remote "[[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive'" Interactive me@localhost $ ssh me@remote "shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'" Not login shell -{% endhighlight %} +``` Here we can see that Bash is still starting in **interactive** mode when we're just running a single command, that's because the terminal we are using is @@ -86,7 +86,7 @@ When we try the same with Capistrano we'll see yet another set of results; we can have a very simple, Capfile, we don't even need to load the default recipes to test this: -{% highlight ruby %} +```ruby # Capistrano 3 task :query_interactive do on 'me@remote' do @@ -98,16 +98,16 @@ task :query_login do info capture("shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'") end end -{% endhighlight %} +``` Gives us the following: -{% highlight bash %} +```bash me@localhost $ cap query_login INFO Not login shell me@localhost $ cap query_interactive INFO Not interactive -{% endhighlight %} +``` ## Which shell startup files do get loaded? diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/documentation/getting-started/authentication-and-authorisation/index.markdown index e50ff081..2dd5fa29 100644 --- a/documentation/getting-started/authentication-and-authorisation/index.markdown +++ b/documentation/getting-started/authentication-and-authorisation/index.markdown @@ -13,10 +13,10 @@ members) To create this deploy user we'll assume something like the following has been done: -{% highlight bash %} +```bash root@remote $ adduser deploy root@remote $ passwd -l deploy -{% endhighlight %} +``` The first line creates a completely standard user, it has a home directory, which we'll need in a moment, and has a shell, so it may log in. This needs to @@ -54,9 +54,9 @@ public key to the `deploy` user's `authorized_keys` file, that way if someone quits or gets fired, you can remove their key from that file, and the rest of you can keep on shipping! -{% highlight bash %} +```bash me@localhost $ ssh-keygen -t rsa -C 'me@my_email_address.com' -{% endhighlight %} +``` You'll be prompted for a passphrase, that's fine. Type one and keep it safe. This passphrase ensures that if your computer is stolen, people still need a @@ -72,17 +72,17 @@ minutes upwards.) We can see which keys are loaded in the SSH agent by running `ssh-add -l` -{% highlight bash %} +```bash me@localhost $ ssh-add -l 2048 af:ce:7e:c5:93:18:39:ff:54:20:7a:2d:ec:05:7c:a5 /Users/me/.ssh/id_rsa (RSA) -{% endhighlight %} +``` If you don't see any keys listed, you can simply run `ssh-add`: -{% highlight bash %} +```bash me@localhost $ ssh-add Identity added: /Users/me/.ssh/id_rsa (/Users/me/.ssh/id_rsa) -{% endhighlight %} +``` Typically, ssh-add will ask you for the passphrase when you add a key. @@ -98,10 +98,10 @@ At this point with the key loaded into the agent, we need to put the `/home/users/deploy/.ssh/authorized_keys`, to get the contents of that file, we can ask our local key agent for the public parts of the keys it has loaded: -{% highlight bash %} +```bash me@localhost $ ssh-add -L ssh-rsa jccXJ/JRfGxnkh/8iL........dbfCH/9cDiKa0Dw8XGAo01mU/w== /Users/me/.ssh/id_rsa -{% endhighlight %} +``` This will be a lot longer when you run it, I snipped the output because it looked bad. @@ -116,7 +116,7 @@ If you are on linux there often exists a command [`ssh-copy-id`](http://linux.die.net/man/1/ssh-copy-id) which streamlines this process, otherwise the workflow is something like: -{% highlight bash %} +```bash me@localhost $ ssh root@remote root@remote $ su - deploy deploy@remote $ cd ~ @@ -124,7 +124,7 @@ deploy@remote $ mkdir .ssh deploy@remote $ echo "ssh-rsa jccXJ/JRfGxnkh/8iL........dbfCH/9cDiKa0Dw8XGAo01mU/w== /Users/me/.ssh/id_rsa" >> .ssh/authorized_keys deploy@remote $ chmod 700 .ssh deploy@remote $ chmod 600 .ssh/authorized_keys -{% endhighlight %} +``` **Remember:** This needs to be done on every server you want to use, you can use the same key for each one, but only one key per developer is recommended. @@ -132,11 +132,11 @@ use the same key for each one, but only one key per developer is recommended. If we did all that correctly, we should now be able to do something like this: -{% highlight bash %} +```bash me@localhost $ ssh deploy@one-of-my-servers.com 'hostname; uptime' one-of-my-servers.com 19:23:32 up 62 days, 44 min, 1 user, load average: 0.00, 0.01, 0.05 -{% endhighlight %} +``` That should happen without having to enter a passphrase for your SSH key, or prompting you for an SSH password (which the deploy user doesn't have anyway). @@ -164,7 +164,7 @@ charset="utf-8"> If your server isn't accessible directly and you need to use the SSH ProxyCommand option, you should do -{% highlight ruby %} +```ruby require 'net/ssh/proxy/command' set :ssh_options, proxy: Net::SSH::Proxy::Command.new('ssh mygateway.com -W %h:%p') @@ -175,7 +175,7 @@ server 'internal-hostname', ssh_options: { proxy: Net::SSH::Proxy::Command.new('ssh mygateway.com -W %h:%p'), } -{% endhighlight %} +``` #### 1.2 From our servers to the repository host @@ -192,10 +192,10 @@ Github. Here's how we can check if that works, first get the URL of the repository: -{% highlight bash %} +```bash me@localhost $ git config remote.origin.url git@github.com:capistrano/rails3-bootstrap-devise-cancan.git -{% endhighlight %} +``` Here we're listing our private (for testing purposes) fork of the rails3-bootstrap-devise-cancan repository forked from the Rails Examples and @@ -203,13 +203,13 @@ Tutorials project. We can try to access the repository via our server by doing the following: -{% highlight bash %} +```bash # List SSH keys that are loaded into the agent me@localhost $ ssh-add -l # Make sure they key is loaded if 'ssh-add -l' didn't show anything me@localhost $ ssh-add me@localhost $ ssh -A deploy@one-of-my-servers.com 'git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git -{% endhighlight %} +``` We first check that the agent has the keys loaded. If not we simply load it and enter the passphrase when prompted. @@ -225,7 +225,7 @@ to the list of known hosts. From the SSH documentation: -{% highlight bash %} +```bash -A Enables forwarding of the authentication agent connection. This can also be specified on a per-host basis in a configuration file. @@ -235,7 +235,7 @@ From the SSH documentation: attacker cannot obtain key material from the agent, however they can perform operations on the keys that enable them to authenticate using the identities loaded into the agent. -{% endhighlight %} +``` In layman's terms, you shouldn't use SSH agent forwarding to machines where you don't trust the administrators, as they can can override the permissions on @@ -254,11 +254,11 @@ Github, we'll be prompted for a username and password: ##### 1.2.2.1 With a regular username/password -{% highlight bash %} +```bash me@localhost $ git ls-remote https://github.com/capistrano/rails3-bootstrap-devise-cancan.git Username for 'https://github.com': myownusername Password for 'https://capistrano@github.com': -{% endhighlight %} +``` This challenge response prompt doesn't work well for automating things, so there are two ways to get around this depending on your server's host @@ -269,11 +269,11 @@ The other mechanism, and the reason that its **very** important to always use HTTPS not plain ol' HTTP is to embed the username and password in the URL, note this won't work well if your password has special characters: -{% highlight bash %} +```bash me@localhost $ git ls-remote https://capistrano:ourverysecretpassword@github.com/capistrano/rails3-bootstrap-devise-cancan.git 3419812c9f146d9a84b44bcc2c3caef94da54758HEAD 3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master -{% endhighlight %} +``` The bigger problem with passwords, whether inlined into the URL, or entered into a `netrc` file, is that the password gives access to **your entire Github @@ -286,11 +286,11 @@ at Github, they recently rolled out a feature called [Personal API Tokens](https://github.com/blog/1509-personal-api-tokens) which allow you to do something like this: -{% highlight bash %} +```bash me@localhost $ git ls-remote https://XXXX:@github.com/capistrano/rails3-bootstrap-devise-cancan.git 3419812c9f146d9a84b44bcc2c3caef94da54758HEAD 3419812c9f146d9a84b44bcc2c3caef94da54758HEADrefs/heads/master -{% endhighlight %} +``` Where `XXXX` is a personal API token, as such: @@ -321,9 +321,9 @@ have configured *passwordless* `sudo`. Configuring `sudo` to give some users access to some commands under some circumstances is beyond the scope of this documentation, but sufficed to say something like: -{% highlight bash %} +```bash deploy ALL=NOPASSWD:/etc/init.d/mysqld, /etc/init.d/apache2 -{% endhighlight %} +``` This example would give the user named `deploy` access to call `sudo /etc/init.d/mysql _________` and the same for the `apache2` control script. @@ -338,7 +338,7 @@ notice a change. To configure this hierarchy, ignoring for the moment the passwordless `sudo` access that you may or may not need depending how well your servers are setup: -{% highlight bash %} +```bash me@localhost $ ssh root@remote # Capistrano will use /var/www/....... where ... is the value set in # :application, you can override this by setting the ':deploy_to' variable @@ -349,7 +349,7 @@ root@remote $ umask 0002 root@remote $ chmod g+s ${deploy_to} root@remote $ mkdir ${deploy_to}/{releases,shared} root@remote $ chown deploy ${deploy_to}/{releases,shared} -{% endhighlight %} +``` **Note:** The `chmod g+s` is a really handy, and little known Unix feature, it means that at the operating system level, without having to pay much attention @@ -362,12 +362,12 @@ group: read/write, other: none*. This means that we'll be able to read these files from Apache, or our web server by running the web server in the `deploy` group namespace. -{% highlight bash %} +```bash root@remote # stat -c "%A (%a) %n" ${deploy_to}/ drwx--S--- (2700) /var/www/rails3-bootstrap-devise-cancan-demo root@remote # stat -c "%A (%a) %n" ${deploy_to}/* drwxrwsr-x (2775) /var/www/rails3-bootstrap-devise-cancan-demo/releases drwxrwsr-x (2775) /var/www/rails3-bootstrap-devise-cancan-demo/shared -{% endhighlight %} +``` diff --git a/documentation/getting-started/before-after/index.markdown b/documentation/getting-started/before-after/index.markdown index fab212fb..f07171e5 100644 --- a/documentation/getting-started/before-after/index.markdown +++ b/documentation/getting-started/before-after/index.markdown @@ -5,7 +5,7 @@ layout: default Where calling on the same task name, executed in order of inclusion -{% highlight ruby %} +```ruby # call an existing task before :starting, :ensure_user @@ -20,12 +20,12 @@ end after :finishing, :notify do # end -{% endhighlight %} +``` If it makes sense for your use case (often, that means *generating a file*) the Rake prerequisite mechanism can be used: -{% highlight ruby %} +```ruby desc "Create Important File" file 'important.txt' do |t| sh "touch #{t.name}" @@ -36,11 +36,11 @@ task :upload => 'important.txt' do |t| upload!(t.prerequisites.first, '/tmp') end end -{% endhighlight %} +``` The final way to call out to other tasks is to simply `invoke()` them: -{% highlight ruby %} +```ruby namespace :example do task :one do on roles(:all) { info "One" } @@ -50,6 +50,6 @@ namespace :example do on roles(:all) { info "Two" } end end -{% endhighlight %} +``` This method is widely used. diff --git a/documentation/getting-started/cold-start/index.markdown b/documentation/getting-started/cold-start/index.markdown index 8f14f7b0..5d5e3c74 100644 --- a/documentation/getting-started/cold-start/index.markdown +++ b/documentation/getting-started/cold-start/index.markdown @@ -20,7 +20,7 @@ technologies. ### 1. Checking the directory structure on the remote machine: -{% highlight bash %} +```bash me@localhost $ ssh deploy@remote 'ls -lR /var/www/my-application' my-application: total 8 @@ -32,7 +32,7 @@ total 0 my-application/shared: total 0 -{% endhighlight %} +``` This checks in one simple command that the ssh keys you setup are working (you might yet be prompted for the password), and the permissions on the directory @@ -44,7 +44,7 @@ Now that we know how to check for permissions, and repository access, we'll quickly introduce ourselves to a quick Cap task to check these things on all the machines for us: -{% highlight ruby %} +```ruby desc "Check that we can access everything" task :check_write_permissions do on roles(:all) do |host| @@ -55,7 +55,7 @@ task :check_write_permissions do end end end -{% endhighlight %} +``` Running this should give you a pretty decent overview, one line of output for each server. It's also your first introduction to the API of Capistrano for @@ -70,22 +70,22 @@ later, but add those lines to a file in `./lib/capistrano/tasks`, call it something like `access_check.rake`, and run `cap -T` from the top directory and we'll be able to see the task listed: -{% highlight bash %} +```bash me@localhost $ bundle exec cap -T # ... lots of other tasks ... cap check_write_permissions # Check that we can access everything # ... lots of other tasks ... -{% endhighlight %} +``` Then we simply call it: -{% highlight bash %} +```bash me@localhost $ bundle exec cap staging check_write_permissions DEBUG [82c92144] Running /usr/bin/env [ -w /var/www/my-application ] on myserver.com DEBUG [82c92144] Command: [ -w /var/www/my-application ] DEBUG [82c92144] Finished in 0.456 seconds command successful. INFO /var/www/my-application is writable on myserver.com -{% endhighlight %} +``` If we've done something wrong, that won't happen and we'll know that we need to jump on the mailing list to get help, into IRC or ask a friend. @@ -98,9 +98,9 @@ wrap Git in a shell script that makes it behave. Capistrano does just this, so to check if the Git access is working, we can simply call: -{% highlight bash %} +```bash me@localhost $ cap staging git:check -{% endhighlight %} +``` This task is defined in the default Git SCM-strategy and looks a lot like what we wrote above to check the file permissions, however the Git check recipe is @@ -111,7 +111,7 @@ for us by Capistrano. (This is one of the pieces we inherit from Rake) If this fails we'll see: -{% highlight bash %} +```bash me@localhost $ cap staging git:check cap staging git:check DEBUG Uploading /tmp/git-ssh.sh 0% @@ -130,7 +130,7 @@ git stderr: Nothing written Tasks: TOP => git:check (See full trace by running task with --trace) -{% endhighlight %} +``` This'll typically come out looking more beautiful depending on your terminal colour support, you may well see something like this: @@ -155,7 +155,7 @@ In this case, we'll be using SSH agent forwarding, we can check if that's working by writing a tiny Cap task, or simply using SSH to do it for us, the choice is yours: -{% highlight ruby %} +```ruby # lib/capistrano/tasks/agent_forwarding.rake desc "Check if agent forwarding is working" task :forwarding do @@ -167,32 +167,32 @@ task :forwarding do end end end -{% endhighlight %} +``` That gave the output: -{% highlight bash %} +```bash cap staging forwarding DEBUG [f1269276] Running /usr/bin/env env | grep SSH_AUTH_SOCK on example.com DEBUG [f1269276] Command: env | grep SSH_AUTH_SOCK DEBUG [f1269276] SSH_AUTH_SOCK=/tmp/ssh-nQUEmyQ2nS/agent.2546 DEBUG [f1269276] Finished in 0.453 seconds command successful. INFO Agent forwarding is up to example.com -{% endhighlight %} +``` If you don't feel like writing a Capistrano task, one could simply do: -{% highlight bash %} +```bash me@localhost $ ssh -A example.com 'env | grep SSH_AUTH_SOCK' SSH_AUTH_SOCK=/tmp/ssh-Tb6X8V53tm/agent.2934 -{% endhighlight %} +``` If we see the `SSH_AUTH_SOCK` output, that's a pretty good indication that SSH agent forwarding is enabled, and if on your local machine `ssh-add -l` shows you an SSH key, then we're good to go. **Make sure that you're using the `git@...` repository URL** -{% highlight bash %} +```bash cap staging git:check DEBUG Uploading /tmp/git-ssh.sh 0% INFO Uploading /tmp/git-ssh.sh 100% @@ -204,6 +204,6 @@ DEBUG [f40edfbb] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/b DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 HEAD DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 refs/heads/master INFO [f40edfbb] Finished in 3.319 seconds command successful. -{% endhighlight %} +``` ![Capistrano Git Check Colour Example](/images/successful-git-check-example-screenshot.png) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 8ed394a6..0ddf26f0 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -16,23 +16,23 @@ Configuration variables can be either global or specific to your stage. Each variable can be set to a specific value: -{% highlight ruby %} +```ruby set :application, 'MyLittleApplication' # use a lambda to delay evaluation set :application, -> { "SomeThing_#{fetch :other_config}" } -{% endhighlight %} +``` A value can be retrieved from the configuration at any time: -{% highlight ruby %} +```ruby fetch :application # => "MyLittleApplication" fetch(:special_thing, 'some_default_value') # will return the value if set, or the second argument as default value -{% endhighlight %} +``` ## Variables diff --git a/documentation/getting-started/flow/index.markdown b/documentation/getting-started/flow/index.markdown index 3fa72a61..bc1e2dfe 100644 --- a/documentation/getting-started/flow/index.markdown +++ b/documentation/getting-started/flow/index.markdown @@ -10,7 +10,7 @@ Capistrano v3 provides a default **deploy flow** and a **rollback flow**: When you run `cap production deploy`, it invokes the following tasks in sequence: -{% highlight ruby %} +```ruby deploy:starting - start a deployment, make sure everything is ready deploy:started - started hook (for custom tasks) deploy:updating - update server(s) with a new release @@ -19,7 +19,7 @@ deploy:publishing - publish the new release deploy:published - published hook deploy:finishing - finish the deployment, clean up everything deploy:finished - finished hook -{% endhighlight %} +``` Notice there are several hook tasks e.g. `:started`, `:updated` for you to hook up custom tasks into the flow using `after()` and `before()`. @@ -29,7 +29,7 @@ you to hook up custom tasks into the flow using `after()` and `before()`. When you run `cap production deploy:rollback`, it invokes the following tasks in sequence: -{% highlight ruby %} +```ruby deploy:starting deploy:started deploy:reverting - revert server(s) to previous release @@ -38,7 +38,7 @@ deploy:publishing deploy:published deploy:finishing_rollback - finish the rollback, clean up everything deploy:finished -{% endhighlight %} +``` As you can see, rollback flow shares many tasks with deploy flow. But note that, rollback flow runs its own `:finishing_rollback` task because its @@ -48,18 +48,18 @@ cleanup process is usually different from deploy flow. Assume you require the following files in `Capfile`, -{% highlight ruby %} +```ruby # Capfile require 'capistrano/setup' require 'capistrano/deploy' require 'capistrano/bundler' require 'capistrano/rails/migrations' require 'capistrano/rails/assets' -{% endhighlight %} +``` When you run `cap production deploy`, it runs these tasks: -{% highlight ruby %} +```ruby deploy deploy:starting [before] @@ -84,11 +84,11 @@ deploy deploy:cleanup deploy:finished deploy:log_revision -{% endhighlight %} +``` For `cap production deploy:rollback`, it runs these tasks: -{% highlight ruby %} +```ruby deploy deploy:starting [before] @@ -108,4 +108,4 @@ deploy deploy:cleanup_rollback deploy:finished deploy:log_revision -{% endhighlight %} +``` diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index c58d5103..4e8387a0 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -17,28 +17,28 @@ therefore recommended to use an appropriate bundler. The following command will install the latest released capistrano `v3` revision: -{% highlight bash %} +```bash $ gem install capistrano -{% endhighlight %} +``` Or grab the bleeding edge head from: -{% highlight bash %} +```bash $ git clone https://github.com/capistrano/capistrano.git $ cd capistrano $ gem build *.gemspec $ gem install *.gem -{% endhighlight %} +``` ### Usage in a Rails project Add the following lines to the Gemfile: -{% highlight ruby %} +```ruby group :development do gem 'capistrano-rails', '~> 1.1.1' end -{% endhighlight %} +``` The `capistrano-rails` gem includes extras specifically designed for Ruby on Rails, specifically: @@ -53,9 +53,9 @@ The documentation for these components can be found in part, to get the best, and most sensible results, simply `require` in Capfile, after the `require 'capistrano/deploy'` line: -{% highlight ruby %} +```ruby require 'capistrano/rails' -{% endhighlight %} +``` ##### Help! I was using Capistrano `v2.x` and I didn't want to upgrade! @@ -64,9 +64,9 @@ If you are using Capistrano `v2.x.x` and have also installed Capistrano `v3` by mistake, then you can lock your Gem version for Capistrano at something like: -{% highlight ruby %} +```ruby gem 'capistrano', '~> 2.15' # Or whatever patch release you are using -{% endhighlight %} +``` This is the [pessimistic operator][rubygems-pessimistic-operator] which installs the closest matching version, at the time of writing this would diff --git a/documentation/getting-started/local-tasks/index.markdown b/documentation/getting-started/local-tasks/index.markdown index 3d0faa57..c21c680d 100644 --- a/documentation/getting-started/local-tasks/index.markdown +++ b/documentation/getting-started/local-tasks/index.markdown @@ -5,7 +5,7 @@ layout: default Local tasks can be run by replacing `on` with `run_locally`: -{% highlight ruby %} +```ruby desc 'Notify service of deployment' task :notify do run_locally do @@ -14,22 +14,22 @@ task :notify do end end end -{% endhighlight %} +``` Of course, you can always just use standard ruby syntax to run things locally: -{% highlight ruby %} +```ruby desc 'Notify service of deployment' task :notify do %x('RAILS_ENV=development bundle exec rake "service:notify"') end -{% endhighlight %} +``` Alternatively you could use the rake syntax: -{% highlight ruby %} +```ruby desc "Notify service of deployment" task :notify do sh 'RAILS_ENV=development bundle exec rake "service:notify"' end -{% endhighlight %} +``` diff --git a/documentation/getting-started/structure/index.markdown b/documentation/getting-started/structure/index.markdown index 122e2248..866655c0 100644 --- a/documentation/getting-started/structure/index.markdown +++ b/documentation/getting-started/structure/index.markdown @@ -7,14 +7,14 @@ Capistrano uses a strictly defined directory hierarchy on each remote server to Assuming your `config/deploy.rb` contains this: -{% highlight ruby %} +```ruby set :deploy_to, '/var/www/my_app_name' -{% endhighlight %} +``` Then inspecting the directories inside `/var/www/my_app_name` looks like this: -{% highlight bash %} +```bash ├── current -> /var/www/my_app_name/releases/20150120114500/ ├── releases │   ├── 20150080072500 @@ -27,7 +27,7 @@ Then inspecting the directories inside `/var/www/my_app_name` looks like this: ├── revisions.log └── shared └── -{% endhighlight %} +``` * `current` is a symlink pointing to the latest release. This symlink is diff --git a/documentation/getting-started/tasks/index.markdown b/documentation/getting-started/tasks/index.markdown index e7f0c63d..5a4911e5 100644 --- a/documentation/getting-started/tasks/index.markdown +++ b/documentation/getting-started/tasks/index.markdown @@ -3,7 +3,7 @@ title: Tasks layout: default --- -{% highlight ruby %} +```ruby server 'example.com', roles: [:web, :app] server 'example.org', roles: [:db, :workers] desc "Report Uptimes" @@ -13,7 +13,7 @@ task :uptime do info "Host #{host} (#{host.roles.to_a.join(', ')}):\t#{capture(:uptime)}" end end -{% endhighlight %} +``` **Note**: diff --git a/documentation/getting-started/user-input/index.markdown b/documentation/getting-started/user-input/index.markdown index b2be70e3..aa35323a 100644 --- a/documentation/getting-started/user-input/index.markdown +++ b/documentation/getting-started/user-input/index.markdown @@ -5,7 +5,7 @@ layout: default User input can be required in a task or during configuration: -{% highlight ruby %} +```ruby # used in a configuration set :database_name, ask('Enter the database name:') @@ -17,32 +17,32 @@ task :breakfast do execute "echo \"$(whoami) wants #{fetch(:breakfast)} for breakfast!\"" end end -{% endhighlight %} +``` When using `ask` to get user input, you can pass `echo: false` to prevent the input from being displayed. This option should be used to ask the user for passwords and other sensitive data during a deploy run. -{% highlight ruby %} +```ruby set :database_password, ask('Enter the database password:', 'default', echo: false) -{% endhighlight %} +``` If you only pass in a symbol this will be printed as text for the user and the input will be saved to this variable: -{% highlight ruby %} +```ruby ask(:database_encoding, 'UTF-8') fetch(:database_encoding) # => contains the user input (or the default) # once the above line got executed -{% endhighlight %} +``` You can use `ask` to set a server- or role-specific configuration variable. -{% highlight ruby %} +```ruby set :password, ask('Server password', nil) server 'example.com', user: 'ssh_user_name', port: 22, password: fetch(:password), roles: %w{web app db} -{% endhighlight %} +``` diff --git a/documentation/overview/what-is-capistrano/index.markdown b/documentation/overview/what-is-capistrano/index.markdown index 5afa2c20..b7f832d6 100644 --- a/documentation/overview/what-is-capistrano/index.markdown +++ b/documentation/overview/what-is-capistrano/index.markdown @@ -22,9 +22,9 @@ Ruby software to form part of a larger tool. #### What does it look like? -{% highlight bash %} +```bash me@localhost $ cap staging deploy -{% endhighlight %} +```
                DEBUG Uploading /tmp/git-ssh.sh 0%
                @@ -98,7 +98,7 @@ There's lots of cool stuff in the Capistrano toy box:
                 * Support for complex environments.
                 * A sane, expressive API:
                 
                -{% highlight ruby %}
                +```ruby
                 desc "Show off the API"
                 task :ditty do
                 
                @@ -143,4 +143,4 @@ task :ditty do
                     end
                   end
                 end
                -{% endhighlight %}
                +```
                diff --git a/documentation/upgrading/index.markdown b/documentation/upgrading/index.markdown
                index 6f4f44ce..8d2d0596 100644
                --- a/documentation/upgrading/index.markdown
                +++ b/documentation/upgrading/index.markdown
                @@ -8,37 +8,37 @@ Update your Gemfile: `gem 'capistrano', '~> 3.0', require: false, group: :develo
                 
                 
                 If you deploy Rails, you wil also need `capistrano-rails` and `capistrano-bundler` gems (Rails and Bundler integrations were moved out from Capistrano 3).
                -{% highlight ruby %}
                +```ruby
                 group :development do
                   gem 'capistrano-rails',   '~> 1.1', require: false
                   gem 'capistrano-bundler', '~> 1.1', require: false
                 end
                -{% endhighlight %}
                +```
                 
                   You can add idiomatic support for your preferred ruby version manager: rvm, rbenv, chruby.
                -{% highlight ruby %}
                +```ruby
                 group :development do
                   gem 'capistrano-rvm',   '~> 0.1', require: false
                   gem 'capistrano-rbenv', '~> 2.0', require: false
                   gem 'capistrano-chruby', github: 'capistrano/chruby', require: false
                 end
                -{% endhighlight %}
                +```
                 
                 2.
                 We recommend to capify the project from scratch and move definitions from old to new configs then.
                 
                -{% highlight bash %}
                +```bash
                 mkdir old_cap
                 mv Capfile old_cap
                 mv config/deploy.rb old_cap
                 mv config/deploy/ old_cap # --> only for multistage setups
                -{% endhighlight %}
                +```
                 
                 It's time to capify:
                 
                -{% highlight bash %}
                +```bash
                 cap install
                -{% endhighlight %}
                +```
                 
                 3.
                 Capistrano 3 is multistage by default, so you will have `config/deploy/production.rb` and `config/deploy/staging.rb` right after capifying.
                @@ -50,11 +50,11 @@ Update `config/deploy/production.rb` and `config/deploy/staging.rb` to have rele
                 5.
                 If you had a gateway server set doing `set :gateway, "www.capify.org"` you should upgrade to
                 
                -{% highlight ruby %}
                +```ruby
                 require 'net/ssh/proxy/command'
                 
                 set :ssh_options, proxy: Net::SSH::Proxy::Command.new('ssh mygateway.com -W %h:%p')
                -{% endhighlight %}
                +```
                 
                 Or the per-server `ssh_options` equivalent.
                 
                @@ -68,19 +68,19 @@ Notice that some parameters are not necessary anymore: `use_sudo`, `normalize_as
                 7.
                 If you didn't use `deploy_to` before and deployed to `/u/apps/your_app_name`, you need one more change. Now default deploy path is `/var/www/app_name` and your config will be broken after upgrade. Just declare custom `deploy_to` option:
                 
                -{% highlight ruby %}
                +```ruby
                 set :deploy_to, "/u/apps/#{fetch(:application)}"
                -{% endhighlight %}
                +```
                 
                 But in advance, `/u/apps` is not the best place to store apps and we advice you to change it later.
                 
                 8.
                 Keep editing Capfile and uncomment addons you need, such as rbenv/rvm, bundler or rails.
                -{% highlight ruby %}
                +```ruby
                 require 'capistrano/rails'
                 require 'capistrano/bundler'
                 require 'capistrano/rbenv'
                -{% endhighlight %}
                +```
                 
                 9.
                 Yay! Try to deploy with your new config set. If you discover any missing info in this upgrade guide, you're welcome to contribute to it.
                @@ -91,16 +91,16 @@ Yay! Try to deploy with your new config set. If you discover any missing info in
                 
                 Instead of:
                 
                -{% highlight ruby %}
                +```ruby
                 run <<-CMD.compact
                   cd -- #{latest_release} &&
                   RAILS_ENV=#{rails_env.to_s.shellescape} #{asset_env} #{rake} assets:precompile
                 CMD
                -{% endhighlight %}
                +```
                 
                 It's better to use:
                 
                -{% highlight ruby %}
                +```ruby
                 on roles :all do
                   within fetch(:latest_release_directory) do
                     with rails_env: fetch(:rails_env) do
                @@ -108,13 +108,13 @@ on roles :all do
                     end
                   end
                 end
                -{% endhighlight %}
                +```
                 
                 Note: 'within' blocks are required to be wrapped in an 'on' block for the dsl to recognize it
                 
                 You may only have one 'with' block per call. If you need more than one env set, use the syntax in the 'with' block arg like this (pass it a map):
                 
                -{% highlight ruby %}
                +```ruby
                 on roles :all do
                   within fetch(:latest_release_directory) do
                     with rails_env: fetch(:rails_env), rails_relative_url_root: '/home' do
                @@ -122,4 +122,4 @@ on roles :all do
                     end
                   end
                 end
                -{% endhighlight %}
                +```
                diff --git a/index.markdown b/index.markdown
                index 91b75031..2241ed63 100644
                --- a/index.markdown
                +++ b/index.markdown
                @@ -5,7 +5,7 @@ title: A remote server automation and deployment tool written in Ruby.
                 
                 ### A Simple Task
                 
                -{% highlight ruby %}
                +```ruby
                 role :demo, %w{example.com example.org example.net}
                 task :uptime do
                   on roles(:demo), in: :parallel do |host|
                @@ -13,7 +13,7 @@ task :uptime do
                     puts "#{host.hostname} reports: #{uptime}"
                   end
                 end
                -{% endhighlight %}
                +```
                 
                 Capistrano extends the *Rake* DSL with methods specific to running commands
                 `on()` servers.
                
                From 7191e7716d21bd6bea332e7f01c0c128b36d7f7c Mon Sep 17 00:00:00 2001
                From: Nick Townsend 
                Date: Sat, 7 Feb 2015 10:38:40 -0800
                Subject: [PATCH 181/256] Fixed typos in original PR
                
                ---
                 .../properties/index.markdown                 | 24 ++++++++++---------
                 .../preparing-your-application/index.markdown |  2 +-
                 2 files changed, 14 insertions(+), 12 deletions(-)
                
                diff --git a/documentation/advanced-features/properties/index.markdown b/documentation/advanced-features/properties/index.markdown
                index 4c85432e..4c6c9c3d 100644
                --- a/documentation/advanced-features/properties/index.markdown
                +++ b/documentation/advanced-features/properties/index.markdown
                @@ -56,7 +56,7 @@ To allow this properties can be set at both the _Server_ and _Role_ level. The g
                 principle is that the properties are _merged_ and that __the last definition wins__.
                 In practice we finesse this slightly depending on the type of the properties value:
                 
                -* _scalar_ values, such as the `:user` string will be overridden
                +* _scalar_ values will be overridden
                 * _hash_ values will have their keys merged with duplicate keys taking on
                   the value of the last one.
                 * _array_ values will have subsequent entries appended to the array
                @@ -85,7 +85,7 @@ To solve this problem we adopt a convention for the use of server properties:
                 * Multiple occurrences of a role on the same server should have the contents be an array,
                   in which the successive elements denote each instance.
                 
                -The following example shows a configuration with multiple redis and sentinel roles on the
                +The following example shows a configuration with multiple Redis and Sentinel roles on the
                 same server:
                 
                 ```ruby
                @@ -96,7 +96,7 @@ server 'dev.local', roles: %w{db web redis sentinel worker}, primary: true,
                 ```
                 
                 These properties can be accessed in the ordinary way, but to assist in obtaining them you
                -can use the `role_properties()` function.
                +can use the `role_properties()` function (see below).
                 
                 ## Setting Properties
                 
                @@ -116,23 +116,25 @@ One of those properties must be `:role` and have a value which is an array of ro
                 ### Accessing Properties
                 
                 #### The `roles()` Method
                -The `roles()` method takes one or more role names (or an array of roles) and returns an array of `Capistrano::Configuration::Server` objects that belong to those roles. It yields a `host` variable which has the following:
                +
                +The `roles()` method takes one or more role names (or an array of roles) followed by an
                +optional [Property Filter](/documentation/advanced-features/property-filtering)) and
                +returns an array of `Capistrano::Configuration::Server` objects that belong to those
                +roles. These have the following useful attributes:
                 
                 * `hostname` - a String
                -* `properties` - the configuration hash-like object
                -* `properties.keys` - the names of properties above
                +* `properties.keys` - the names of the available properties
                +* `properties` - a hash-like object that stores the properties.
                +   It uses Ruby's 'method_missing' to provide a method for each valid key.
                 * `roles` - a Set of role names as symbols
                -* `primary` - the name of the host if it has the :primary property set to true
                 
                -Note that the `host.keys` property which seems to be an empty array!
                -
                -The servers produced by a roles() method are NOT filtered.
                +The servers retrieved by this method are NOT filtered by any host or role filters.
                 
                 #### The `role_properties()` Method
                 
                 This takes a list of roles (followed by an optional [Property
                 Filter](/documentation/advanced-features/property-filtering)) and returns an array of
                -hosts and their properties:
                +hashes containing the properties with the keys `:hostname` and `:role` added:
                 
                 ```ruby
                 task :props do
                diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown
                index b77b8d25..87224764 100644
                --- a/documentation/getting-started/preparing-your-application/index.markdown
                +++ b/documentation/getting-started/preparing-your-application/index.markdown
                @@ -119,7 +119,7 @@ are deploying something simpler, feel free to delete them if they're meaningless
                 
                 Both types can specify optional _properties_ to be associated with a server or role. These
                 properties include Capistrano-required ones such as the SSH options (username, port, keys
                -etc.) and also arbitrary custom properties.  The are there incase people want to build the
                +etc.) and also arbitrary custom properties.  They are there in case people want to build the
                 server list more comprehensively from something like the *EC2* command line tools, and
                 want to use the extended properties for something that makes sense in their environment.
                 
                
                From 2671d0d40cf8fa94faded78227fd5b33be1af3b1 Mon Sep 17 00:00:00 2001
                From: Jeffrey Warren 
                Date: Sun, 8 Feb 2015 14:20:02 -0500
                Subject: [PATCH 182/256] Fix typo in "preparing your application"
                
                Changed "Github" to "GitHub" as is on their website.
                ---
                 .../getting-started/preparing-your-application/index.markdown   | 2 +-
                 1 file changed, 1 insertion(+), 1 deletion(-)
                
                diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown
                index 1f2d9640..d899dcb0 100644
                --- a/documentation/getting-started/preparing-your-application/index.markdown
                +++ b/documentation/getting-started/preparing-your-application/index.markdown
                @@ -11,7 +11,7 @@ layout: default
                 ### 1. Commit your application to some externally available source control hosting provider.
                 
                 If you are not doing so already, you should host your code somewhere with a
                -provider such as Github, BitBucket, Codeplane, or repositoryhosting.com.
                +provider such as GitHub, BitBucket, Codeplane, or repositoryhosting.com.
                 
                 Capistrano currently supports Git, Mercurial, and SVN out of the box.
                 There might be 3rd party plugins adding support for various other systems.
                
                From 41be3ef51e0180f9bdf12c32bf467d0fcb0ee1bd Mon Sep 17 00:00:00 2001
                From: =?UTF-8?q?=E5=A6=82=E5=BD=BC?= 
                Date: Wed, 11 Feb 2015 21:14:54 +0800
                Subject: [PATCH 183/256] add hostmenu plugin
                
                ---
                 documentation/third-party-plugins/index.markdown | 2 ++
                 1 file changed, 2 insertions(+)
                
                diff --git a/documentation/third-party-plugins/index.markdown b/documentation/third-party-plugins/index.markdown
                index df103c54..dbf76fdb 100644
                --- a/documentation/third-party-plugins/index.markdown
                +++ b/documentation/third-party-plugins/index.markdown
                @@ -19,3 +19,5 @@ This list is neither complete nor audited in any way.
                 
                + +
                From 25e072350c8a400619f2b5652ecba818d410ba5b Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Fri, 13 Feb 2015 14:37:01 -0800 Subject: [PATCH 184/256] Update Capistrano properties documentation * Consolidation of servers uses hostname only * on() method now uses a copy of the host --- .../properties/index.markdown | 50 +++++++++++++++---- .../preparing-your-application/index.markdown | 8 ++- 2 files changed, 44 insertions(+), 14 deletions(-) diff --git a/documentation/advanced-features/properties/index.markdown b/documentation/advanced-features/properties/index.markdown index 4c6c9c3d..7b4a3e74 100644 --- a/documentation/advanced-features/properties/index.markdown +++ b/documentation/advanced-features/properties/index.markdown @@ -19,20 +19,26 @@ basic _role_ functionality. These are: * `:password` - for the SSH user * `:port` - the port number of the SSH daemon on the server * `:roles` - an array of rolenames +* `:ssh_config` - a hash of SSH parameters (see below) * `:primary` - a boolean that indicates whether the server should be considered primary or not. -The values of `:user`, `:password` and `:port` if not specified will default to the same -values contained in the `:ssh_options` global variable of the stage. If this is not -specified then SSH will fallback to any settings in your local `~/.ssh/config` +The `:user`, and `:port` may be specified in three ways: +* As part of the hostname (user@host:port), +* In the properties `:user` and `:port`, and +* In the property `:ssh_config` with the same keys -
                The :user and :port properties are treated somewhat -differently to the other properties: They are not merged as described below. If you -define multiple servers with different users or ports then multiple instances of -the server will be created. This is usually not what is expected. It is recommended to -specify the user and port for all servers in the stage variable :ssh_config. This -behaviour is currently under review and may be changed in future.
                +The `:password` may only be specified in the properties or the `:ssh_config` and not in +the hostname. +#### Precedence + +Values specified in the hostname will be overridden by any property declarations. The last +property declaration overrides all the previous server or role declarations. + +If no properties or hostname declarations are found then the `:ssh_options` property holds +the defaults. These are in turn merged with any defaults in the stage global variable of +the same name. Finally SSH will honour settings in your local `~/.ssh/config` file. ### Custom Properties @@ -44,6 +50,32 @@ _Model_, the tasks (enabling model changes to be actioned) are the _Controllers_ actual physical embodiments (typically configuration files on running servers) are the _Views_. +### Property Access from within Tasks + +The properties on Capistrano server are accessible programmatically from a Capistrano +task. _Capistrano_ properties are available through methods on the host object itself and +_Custom_ properties via methods on the `properties` attribute of the host. + +These methods have the expected names: `user`, `port` and so on. An exception is the +`ssh_config` which is available via the `netssh_options` method. + +The following feature is new in Capistrano 3.3.6 and above. + +Within the scope of an `on()` block, the host that is yielded is a *copy* of the underlying +host, which allows you to temporarily override any of the properties by calling the setter +method. An example is: + +```ruby +on roles(:all) do |host| + host.user = 'root' + host.password = 'supersecret' + execute :yum, 'makecache' +end +``` + +This temporarily sets the SSH user to 'root' (with an appropriate password) without +affecting the SSH user defined for the server in the configuration. + ### Property setting in Complex Configurations As configurations involve more servers it helps to be able to define a set of diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index fd4c2d36..20901e32 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -141,11 +141,9 @@ properties will be merged. See the Properties Documentation for details
                If you define servers with either the simple or the extended -syntax and explicitly specify a user or a port number multiple servers will be created -and the merging will be ill-defined. This may break your deployment! If you wish to merge -properties then specify the user and port in the variable :ssh_config. This behaviour is -currently under review and may be changed in future. -
                +syntax and explicitly specify a user or a port number the last definition will win. This +is identical behaviour to scalar custom properties. In older versions of Capistrano +multiple servers were created and the merging was ill-defined.
              ### 5. Set the shared information in `deploy.rb`. From b1203b84a463356e0b93da2a600e924febc8556f Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Sat, 14 Feb 2015 16:43:57 -0800 Subject: [PATCH 185/256] Update SSH Properties documentation --- .../properties/index.markdown | 29 +++++++++++-------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/documentation/advanced-features/properties/index.markdown b/documentation/advanced-features/properties/index.markdown index 7b4a3e74..a0007c18 100644 --- a/documentation/advanced-features/properties/index.markdown +++ b/documentation/advanced-features/properties/index.markdown @@ -19,26 +19,31 @@ basic _role_ functionality. These are: * `:password` - for the SSH user * `:port` - the port number of the SSH daemon on the server * `:roles` - an array of rolenames -* `:ssh_config` - a hash of SSH parameters (see below) +* `:ssh_options` - a hash of SSH parameters (see below) * `:primary` - a boolean that indicates whether the server should be considered primary or not. -The `:user`, and `:port` may be specified in three ways: -* As part of the hostname (user@host:port), -* In the properties `:user` and `:port`, and -* In the property `:ssh_config` with the same keys +The `:user`, `:port` and `:password` may be specified as follows: -The `:password` may only be specified in the properties or the `:ssh_config` and not in -the hostname. +* As part of the hostname in the form 'user@host:port' without a password, +* In the properties `:user`, `:password` and `:port`, and +* In the property `:ssh_options` (with the same keys) #### Precedence -Values specified in the hostname will be overridden by any property declarations. The last -property declaration overrides all the previous server or role declarations. +The SSH related properties are set with the following precedence, beginning with the +highest: -If no properties or hostname declarations are found then the `:ssh_options` property holds -the defaults. These are in turn merged with any defaults in the stage global variable of -the same name. Finally SSH will honour settings in your local `~/.ssh/config` file. +* Property declarations on the server or role. The last property declaration overrides all + the previous server or role declarations +* Values specified in the hostname string +* Values in the server or role `:ssh_options` property +* The stage global variable `:ssh_options` +* The SSHKit backend `ssh_options` +* The settings in your local `~/.ssh/config` file + +Note however that defaults taken from these places will _not_ be reflected back into the +server properties, so `host.user` will be nil if a lower precedence default is being used. ### Custom Properties From 1dc7ec751c43ac9f76bf99680e7e9d290f15debc Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Thu, 12 Mar 2015 09:57:35 -0700 Subject: [PATCH 186/256] Add airbrussh to third party plugins list --- documentation/third-party-plugins/index.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/third-party-plugins/index.markdown b/documentation/third-party-plugins/index.markdown index dbf76fdb..8d37e5eb 100644 --- a/documentation/third-party-plugins/index.markdown +++ b/documentation/third-party-plugins/index.markdown @@ -21,3 +21,5 @@ This list is neither complete nor audited in any way.
              + +
              From 6b389e5d1b425f2589c785334b9432c8772499e5 Mon Sep 17 00:00:00 2001 From: Justin Edwards Date: Thu, 12 Mar 2015 16:00:28 -0500 Subject: [PATCH 187/256] typo correction in doc (unclosed parenthesis) --- .../authentication-and-authorisation/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/documentation/getting-started/authentication-and-authorisation/index.markdown index 2dd5fa29..b11aba76 100644 --- a/documentation/getting-started/authentication-and-authorisation/index.markdown +++ b/documentation/getting-started/authentication-and-authorisation/index.markdown @@ -208,7 +208,7 @@ We can try to access the repository via our server by doing the following: me@localhost $ ssh-add -l # Make sure they key is loaded if 'ssh-add -l' didn't show anything me@localhost $ ssh-add -me@localhost $ ssh -A deploy@one-of-my-servers.com 'git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git +me@localhost $ ssh -A deploy@one-of-my-servers.com 'git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git' ``` We first check that the agent has the keys loaded. If not we simply load it From 9adf38ca5c0eeb5288bfbef44b66f9ce600e20ca Mon Sep 17 00:00:00 2001 From: Leevi Graham Date: Mon, 23 Mar 2015 12:20:50 +1100 Subject: [PATCH 188/256] Fixes parentheses. --- .../authentication-and-authorisation/index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/documentation/getting-started/authentication-and-authorisation/index.markdown index b11aba76..5b673ee9 100644 --- a/documentation/getting-started/authentication-and-authorisation/index.markdown +++ b/documentation/getting-started/authentication-and-authorisation/index.markdown @@ -6,9 +6,9 @@ layout: default **Note:** In the documentation we simply recommend creating a single deployment user, and sharing it between team members. If you know why this is a bad idea (or why this may be against regulations in your jurisdiction in -some cases, we assume that you know well enough how to use groups, umasking +some cases), we assume that you know well enough how to use groups, umasking and setgid bits to make this work reliably for unique logins across team -members) +members. To create this deploy user we'll assume something like the following has been done: From 0ab1b70bf0d0fc1db62b8eae4b4007e2d40d2149 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Thu, 9 Apr 2015 11:42:51 +0200 Subject: [PATCH 191/256] Introduce CarbonAds --- _includes/carbon.html | 1 + _includes/header.html | 5 ++++- css/capistrano.css | 17 +++++++++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 _includes/carbon.html diff --git a/_includes/carbon.html b/_includes/carbon.html new file mode 100644 index 00000000..3fe8ad75 --- /dev/null +++ b/_includes/carbon.html @@ -0,0 +1 @@ + diff --git a/_includes/header.html b/_includes/header.html index 1f42b622..eeb37274 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,9 +1,12 @@
              -
              + +
              + {% include carbon.html %} +
              diff --git a/css/capistrano.css b/css/capistrano.css index 12475c7d..5f222eed 100644 --- a/css/capistrano.css +++ b/css/capistrano.css @@ -2,6 +2,23 @@ body { font-family: "proxima-nova",sans-serif; } +#carbonads img { + float: left; + margin-right: 1em; +} + +#carbonads .carbon-text { + display: block; + font-size: 0.9em; + color: silver; +} + +#carbonads .carbon-poweredby { + font-size: 0.75em; + display: block; + color: silver +} + .header { margin-bottom: 30px; padding-top: 20px; From f44ad4b8e525a1429e50d14dbb1d294bb664fc15 Mon Sep 17 00:00:00 2001 From: Jonathan Rochkind Date: Mon, 20 Apr 2015 15:42:47 -0400 Subject: [PATCH 192/256] list more third-party plugins --- documentation/third-party-plugins/index.markdown | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/documentation/third-party-plugins/index.markdown b/documentation/third-party-plugins/index.markdown index 8d37e5eb..3d52c32c 100644 --- a/documentation/third-party-plugins/index.markdown +++ b/documentation/third-party-plugins/index.markdown @@ -23,3 +23,18 @@ This list is neither complete nor audited in any way.
              + +
              + +
              + +
              + +
              + +
              + +
              + +
              + From b6d31abe127d15640d3c3e3441b9d7cf291ec2e3 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Mon, 4 May 2015 10:09:57 +0200 Subject: [PATCH 193/256] Update navigation.html --- _includes/navigation.html | 1 + 1 file changed, 1 insertion(+) diff --git a/_includes/navigation.html b/_includes/navigation.html index 0fad4592..f993a449 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -40,6 +40,7 @@
              Plugins
            • Bundler
            • Composer
            • +
            • Drupal
            • Laravel
            • npm
            • Phusion Passenger
            • From 558e68a930b9bf05373c073851731f2031ca864a Mon Sep 17 00:00:00 2001 From: Viktar Basharymau <6alliapumob@gmail.com> Date: Tue, 5 May 2015 16:07:11 +0300 Subject: [PATCH 194/256] Fix some typos (%s/directorys/directories/g) --- documentation/getting-started/configuration/index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 0ddf26f0..ca1a5127 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -68,12 +68,12 @@ The following variables are settable: * `:linked_files` * **default:** `[]` * Listed files will be symlinked into each release directory during deployment. - * Can be used for persistent configuration files like `database.yml`. See Structure for the exact directorys. + * Can be used for persistent configuration files like `database.yml`. See Structure for the exact directories. * `:linked_dirs` * **default:** `[]` * Listed directories will be symlinked into the release directory during deployment. - * Can be used for persistent directories like uploads or other data. See Structure for the exact directorys. + * Can be used for persistent directories like uploads or other data. See Structure for the exact directories. * `:default_env` * **default:** `{}` From 704db53bfaa001c457f21ba5d96eab832e869929 Mon Sep 17 00:00:00 2001 From: David Radcliffe Date: Mon, 18 May 2015 15:41:44 -0400 Subject: [PATCH 195/256] fix markdown spacing so that code blocks show up properly --- documentation/upgrading/index.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/documentation/upgrading/index.markdown b/documentation/upgrading/index.markdown index 8d2d0596..a4cf7a80 100644 --- a/documentation/upgrading/index.markdown +++ b/documentation/upgrading/index.markdown @@ -8,6 +8,7 @@ Update your Gemfile: `gem 'capistrano', '~> 3.0', require: false, group: :develo If you deploy Rails, you wil also need `capistrano-rails` and `capistrano-bundler` gems (Rails and Bundler integrations were moved out from Capistrano 3). + ```ruby group :development do gem 'capistrano-rails', '~> 1.1', require: false @@ -16,6 +17,7 @@ end ``` You can add idiomatic support for your preferred ruby version manager: rvm, rbenv, chruby. + ```ruby group :development do gem 'capistrano-rvm', '~> 0.1', require: false @@ -76,6 +78,7 @@ But in advance, `/u/apps` is not the best place to store apps and we advice you 8. Keep editing Capfile and uncomment addons you need, such as rbenv/rvm, bundler or rails. + ```ruby require 'capistrano/rails' require 'capistrano/bundler' From 343f003de7b89b5c582d4a915998721b021669f8 Mon Sep 17 00:00:00 2001 From: Andrew Nikolaev Date: Wed, 8 Jul 2015 16:44:41 +0300 Subject: [PATCH 196/256] fix an example in command mapping --- _posts/2013-06-01-release-announcement.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-06-01-release-announcement.markdown b/_posts/2013-06-01-release-announcement.markdown index 4aae5058..50ce5d11 100644 --- a/_posts/2013-06-01-release-announcement.markdown +++ b/_posts/2013-06-01-release-announcement.markdown @@ -432,7 +432,7 @@ for example: if ! [ -e /tmp/somefile ] then touch /tmp/somefile chmod 0644 /tmp/somefile - end + fi EOBLOCK {% endhighlight %} From 14dc57ffbaefc25d4d1b22600cdb1d11d05f70fc Mon Sep 17 00:00:00 2001 From: Nick Townsend Date: Thu, 16 Jul 2015 16:22:14 -0700 Subject: [PATCH 197/256] Update set :filter documentation --- documentation/advanced-features/host-filtering/index.markdown | 4 +++- documentation/advanced-features/role-filtering/index.markdown | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/documentation/advanced-features/host-filtering/index.markdown b/documentation/advanced-features/host-filtering/index.markdown index 5e589752..f3d8f7b0 100644 --- a/documentation/advanced-features/host-filtering/index.markdown +++ b/documentation/advanced-features/host-filtering/index.markdown @@ -38,12 +38,14 @@ You can set the host filter inside your deploy configuration. For example, you can set the following inside `config/deploy.rb`: ```ruby -set :filter, :host => %w{server1 server2} +set :filter, :hosts => %w{server1 server2} ``` Note that you specify the filter as an array rather than as a comma-separated list of servers when using this method. +Note that the keyname `:host` is also supported. + #### On the command line In a similar way to using the environment variable, you can set the role diff --git a/documentation/advanced-features/role-filtering/index.markdown b/documentation/advanced-features/role-filtering/index.markdown index 3bf5d118..c4e0a8c1 100644 --- a/documentation/advanced-features/role-filtering/index.markdown +++ b/documentation/advanced-features/role-filtering/index.markdown @@ -45,6 +45,8 @@ set :filter, :roles => %w{app web} Note that you specify the filter as an array rather than as a comma-separated list of roles when using this method. +Note that the keyname `:role` is also supported. + #### On the command line In a similar way to using the environment variable, you can set the role From 36ccf4d1cd699fc0db5a806f2a1542d1e15e3a8f Mon Sep 17 00:00:00 2001 From: James Almond Date: Tue, 4 Aug 2015 11:01:43 +0100 Subject: [PATCH 198/256] Migration documentation now mentions difference in cleanup behaviour --- documentation/upgrading/index.markdown | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/documentation/upgrading/index.markdown b/documentation/upgrading/index.markdown index a4cf7a80..17ea1ffb 100644 --- a/documentation/upgrading/index.markdown +++ b/documentation/upgrading/index.markdown @@ -126,3 +126,13 @@ on roles :all do end end ``` + +# Notable differences between 2.x and 3 + +#### Cleanup + +Capistrano 3 now runs the `deploy:cleanup` task as part of the standard deploy workflow and keeps 5 releases by default. Previously this was left for you to add manually, if required. To change the number of releases kept set the `keep_releases` configuration variable: + +```ruby +set :keep_releases, 10 +``` From 80b6ca1201c2af3b070790509b6b16fa100841c1 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Tue, 1 Sep 2015 19:45:13 +0200 Subject: [PATCH 199/256] Introduce banner for Harrow.io Sorry chaps, we're trying a push to promote Harrow.io to try and make my work on Capistrano sustainable, and to promote our new SaaS Harrow.io, which is a new take on CI tooling focused on collaboration. It was designed with "Web Based Capistrano" in mind, but as you might imagine, once one builds a tool for running Cap in the "cloud" it's not a big leap to run anything else. Ping me off-list if you have any issues with anything here, we tried to be very fair with the behaviour, cookie lifetimes and positioning. tl;dr: - Invisible by default (display none) - Reasonable cookie lifetime - Made visible using jQuery (.css("display", "block") --- .gitignore | 1 + Gemfile.lock | 3 + _config.yml | 2 +- _includes/header.html | 20 +++++-- _includes/navigation.html | 2 +- _layouts/default.html | 31 ++++++----- css/capistrano.css | 62 ++++++++++++++++++++- js/jquery.cookie.js | 114 ++++++++++++++++++++++++++++++++++++++ 8 files changed, 215 insertions(+), 20 deletions(-) create mode 100644 js/jquery.cookie.js diff --git a/.gitignore b/.gitignore index 1780d98b..1c8368a9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ _site_site .bundle/ /_site/ *.swp +vendor/ diff --git a/Gemfile.lock b/Gemfile.lock index 686123da..e9d2b093 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -124,3 +124,6 @@ PLATFORMS DEPENDENCIES github-pages + +BUNDLED WITH + 1.10.3 diff --git a/_config.yml b/_config.yml index be259160..dcf7a69c 100644 --- a/_config.yml +++ b/_config.yml @@ -5,4 +5,4 @@ lsi: false markdown: redcarpet redcarpet: extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"] -exclude: ["Gemfile", "Gemfile.lock", "README.md"] +exclude: ["Gemfile", "Gemfile.lock", "README.md", "vendor"] diff --git a/_includes/header.html b/_includes/header.html index eeb37274..64ecec3c 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,12 +1,24 @@ +
              +
              New!
              +

              Our web-based Capistrano

              +

              + Improve collaboration within your team. +
              + Hosted, secure and available any time, from anywhere. +

              + Try it now! + No thanks +
              +
              -
              + -
              - {% include carbon.html %} -
              + + +
              diff --git a/_includes/navigation.html b/_includes/navigation.html index f993a449..a430871c 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,5 +1,5 @@
              - - - - - - - - - {% include footer.html %} - - + + diff --git a/css/capistrano.css b/css/capistrano.css index 5f222eed..2f3f44e6 100644 --- a/css/capistrano.css +++ b/css/capistrano.css @@ -23,9 +23,69 @@ body { margin-bottom: 30px; padding-top: 20px; background-color: #1C1B39; - height: 170px; + min-height: 170px; } +.harrowBanner { + overflow: hidden; + position: absolute; + top: 140px; + max-width: 650px; + left:0; + right:0; + box-shadow: 5px 5px 15px rgba(0,0,0, 0.5); + max-width: 60%; + margin: auto; + /* outline: 1px dotted pink; */ + text-align: center; + background-color: rgba(28, 25, 59, 0.95); + border: 2px solid rgba(255, 255, 255, 0.75); + padding: 20px 40px; + z-index: 10000; + display: none; +} + +.harrowBanner__newRibbon { + width: 200px; + background-color: #95b; + position: absolute; + top: 0px; + left: -65px; + text-align: center; + line-height: 50px; + letter-spacing: 1px; + color: #f0f0f0; + transform: rotate(-45deg); + -webkit-transform: rotate(-45deg); + box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); + font-weight: bold; +} + +.harrowBanner__title { + color: #fff; +} + +.harrowBanner__p { + color: #fff; +} + +.harrowBanner__ctaButton { + background-color: #4CC1DD; + border-radius: 3px; + font-weight: bold; + padding: 10px 20px; + color: #fff; + display: inline-block; + margin-bottom: 20px; +} + +.harrowBanner__dismissLink { + color: #fff; + font-size: 75%; + display: block; +} + + h1, h2, h3, h4, h5, h6 { font-weight: 400; font-family: 'Enriqueta', serif; diff --git a/js/jquery.cookie.js b/js/jquery.cookie.js new file mode 100644 index 00000000..8218817b --- /dev/null +++ b/js/jquery.cookie.js @@ -0,0 +1,114 @@ +/*! + * jQuery Cookie Plugin v1.4.1 + * https://github.com/carhartl/jquery-cookie + * + * Copyright 2006, 2014 Klaus Hartl + * Released under the MIT license + */ +(function (factory) { + if (typeof define === 'function' && define.amd) { + // AMD (Register as an anonymous module) + define(['jquery'], factory); + } else if (typeof exports === 'object') { + // Node/CommonJS + module.exports = factory(require('jquery')); + } else { + // Browser globals + factory(jQuery); + } +}(function ($) { + + var pluses = /\+/g; + + function encode(s) { + return config.raw ? s : encodeURIComponent(s); + } + + function decode(s) { + return config.raw ? s : decodeURIComponent(s); + } + + function stringifyCookieValue(value) { + return encode(config.json ? JSON.stringify(value) : String(value)); + } + + function parseCookieValue(s) { + if (s.indexOf('"') === 0) { + // This is a quoted cookie as according to RFC2068, unescape... + s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\'); + } + + try { + // Replace server-side written pluses with spaces. + // If we can't decode the cookie, ignore it, it's unusable. + // If we can't parse the cookie, ignore it, it's unusable. + s = decodeURIComponent(s.replace(pluses, ' ')); + return config.json ? JSON.parse(s) : s; + } catch(e) {} + } + + function read(s, converter) { + var value = config.raw ? s : parseCookieValue(s); + return $.isFunction(converter) ? converter(value) : value; + } + + var config = $.cookie = function (key, value, options) { + + // Write + + if (arguments.length > 1 && !$.isFunction(value)) { + options = $.extend({}, config.defaults, options); + + if (typeof options.expires === 'number') { + var days = options.expires, t = options.expires = new Date(); + t.setMilliseconds(t.getMilliseconds() + days * 864e+5); + } + + return (document.cookie = [ + encode(key), '=', stringifyCookieValue(value), + options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE + options.path ? '; path=' + options.path : '', + options.domain ? '; domain=' + options.domain : '', + options.secure ? '; secure' : '' + ].join('')); + } + + // Read + + var result = key ? undefined : {}, + // To prevent the for loop in the first place assign an empty array + // in case there are no cookies at all. Also prevents odd result when + // calling $.cookie(). + cookies = document.cookie ? document.cookie.split('; ') : [], + i = 0, + l = cookies.length; + + for (; i < l; i++) { + var parts = cookies[i].split('='), + name = decode(parts.shift()), + cookie = parts.join('='); + + if (key === name) { + // If second argument (value) is a function it's a converter... + result = read(cookie, value); + break; + } + + // Prevent storing a cookie that we couldn't decode. + if (!key && (cookie = read(cookie)) !== undefined) { + result[name] = cookie; + } + } + + return result; + }; + + config.defaults = {}; + + $.removeCookie = function (key, options) { + // Must not alter options, thus extending a fresh object... + $.cookie(key, '', $.extend({}, options, { expires: -1 })); + return !$.cookie(key); + }; + +})); From 493c4f2662d1f4f0f65056ca3369fdc1b2b16561 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Wed, 2 Sep 2015 11:11:22 +0200 Subject: [PATCH 200/256] Correct broken URLs to Harrow --- _includes/header.html | 2 +- _includes/navigation.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/header.html b/_includes/header.html index 64ecec3c..ef9460af 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -6,7 +6,7 @@
              Hosted, secure and available any time, from anywhere.

              - Try it now! + Try it now! No thanks
            diff --git a/_includes/navigation.html b/_includes/navigation.html index a430871c..c7f1574e 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,5 +1,5 @@
              -
            • New Hosted Capistrano for Teams
            • +
            • New Hosted Capistrano for Teams
            • Overview
              From 2a8875c279e08c77bcf5137c14a8746b82c629bb Mon Sep 17 00:00:00 2001 From: Chris Ickes Date: Mon, 21 Sep 2015 10:05:25 -0400 Subject: [PATCH 201/256] Ignores Capistrano config files by default when deploying Capistrano config & task files were ending up on production servers, which was less than ideal. Base Capistrano files are now automatically ignored when deploying via .gitattributes. --- .../advanced-features/ignoring/index.markdown | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 documentation/advanced-features/ignoring/index.markdown diff --git a/documentation/advanced-features/ignoring/index.markdown b/documentation/advanced-features/ignoring/index.markdown new file mode 100644 index 00000000..35248a83 --- /dev/null +++ b/documentation/advanced-features/ignoring/index.markdown @@ -0,0 +1,13 @@ +--- +title: Ignoring +layout: default +--- + +Files commited to version control (i.e. not in .gitignore) can still be ignored when +deploying. To ignore these files or directories, simply add them to .gitattributes: +``` +config/deploy/deploy.rb export-ignore +config/deploy/ export-ignore +``` + +These files will be kept in version control but not deployed to the server. From b0480a26d6d008667d9f7378f66a02a762147b38 Mon Sep 17 00:00:00 2001 From: Oliboy50 Date: Sat, 31 Oct 2015 01:00:29 +0100 Subject: [PATCH 202/256] add FAQ how to change config paths --- _includes/navigation.html | 1 + .../index.markdown | 38 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index c7f1574e..8d8e2016 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -57,6 +57,7 @@
            • How can I access stage configuration variables?
            • How can I check for existing remote file?
            • How can I get Capistrano to prompt for a password?
            • +
            • How can I set Capistrano configuration paths?
            • Should I use Capistrano to provision my servers?
            • diff --git a/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown b/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown new file mode 100644 index 00000000..059bba92 --- /dev/null +++ b/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown @@ -0,0 +1,38 @@ +--- +title: How can I set Capistrano configuration paths? +layout: default +--- + +Capistrano `config` and `tasks` paths can be explicitly defined, like so: + +Capfile +```ruby +# default deploy_config_path is 'config/deploy.rb' +set :deploy_config_path, 'cap/deploy.rb' +# default stage_config_path is 'config/deploy' +set :stage_config_path, 'cap/stages' + +# deploy_config_path and stage_config_path variables must be set before 'capistrano/setup' +require 'capistrano/setup' + +# default tasks path is `lib/capistrano/tasks/*.rake` (note that you can also change the file extensions) +Dir.glob('cap/tasks/*.rb').each { |r| import r } +``` + +Here is the corresponding capistrano configuration structure: + +```bash +├── Capfile +└── cap + ├── stages + │ ├── production.rb + │ └── staging.rb + ├── tasks + │ └── custom_tasks.rb + └── deploy.rb +``` + +
              +Be aware that you will have to provide an absolute path, if you want your "deploy_config_path" to be "capistrano/deploy.rb". +See this issue for more explanations and how to get an absolute path in Ruby. +
              From 42b6fac0e40e88dd00899c4c43a59877ae1f1f6a Mon Sep 17 00:00:00 2001 From: Oliboy50 Date: Sat, 31 Oct 2015 17:18:18 +0100 Subject: [PATCH 203/256] fix FAQ how-can-i-set-capistrano-configuration-paths layout --- .../index.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown b/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown index 059bba92..562285a3 100644 --- a/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown +++ b/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown @@ -6,16 +6,18 @@ layout: default Capistrano `config` and `tasks` paths can be explicitly defined, like so: Capfile + ```ruby # default deploy_config_path is 'config/deploy.rb' set :deploy_config_path, 'cap/deploy.rb' # default stage_config_path is 'config/deploy' set :stage_config_path, 'cap/stages' -# deploy_config_path and stage_config_path variables must be set before 'capistrano/setup' +# previous variables MUST be set before 'capistrano/setup' require 'capistrano/setup' -# default tasks path is `lib/capistrano/tasks/*.rake` (note that you can also change the file extensions) +# default tasks path is `lib/capistrano/tasks/*.rake` +# (note that you can also change the file extensions) Dir.glob('cap/tasks/*.rb').each { |r| import r } ``` From 34387e7612f0a162c74aeb9310ea7f7249fe699c Mon Sep 17 00:00:00 2001 From: Sam Bauers Date: Sat, 5 Dec 2015 19:32:51 +1100 Subject: [PATCH 204/256] Add Capistrano Committed to 3rd party plugins list --- documentation/third-party-plugins/index.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/third-party-plugins/index.markdown b/documentation/third-party-plugins/index.markdown index 3d52c32c..21b5ab06 100644 --- a/documentation/third-party-plugins/index.markdown +++ b/documentation/third-party-plugins/index.markdown @@ -38,3 +38,5 @@ This list is neither complete nor audited in any way.
              +
              + From 69dc1e0fafe2fd9c4eac1016cf2d6fc41b8e215d Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Wed, 9 Dec 2015 18:02:42 +0100 Subject: [PATCH 205/256] Min ruby version is now 2.0 instead of 1.9.3 $gem install capistrano ERROR: Error installing capistrano: net-ssh requires Ruby version >= 2.0. --- documentation/getting-started/installation/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index 4e8387a0..2d373f20 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -3,7 +3,7 @@ title: Installation layout: default --- -Capistrano is bundled as a Ruby Gem. **It requires Ruby 1.9.3 or newer.** +Capistrano is bundled as a Ruby Gem. **It requires Ruby 2.0 or newer.** Capistrano can be installed as a standalone Gem, or bundled into your application. From 896fd58e7acf6f1a673b488987fecdae4535ce66 Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Tue, 29 Dec 2015 14:32:17 +0100 Subject: [PATCH 206/256] Add svn repo_url example --- documentation/getting-started/configuration/index.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index ca1a5127..0e013a63 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -54,6 +54,7 @@ The following variables are settable: * `:repo_url` * URL to the repository. * Must be a valid URL for the used SCM. + * Hint: when using :svn and branches, declare the repo_url like this: `set :repo_url, -> { "svn://myhost/myrepo/#{fetch(:branch)}" }` * `:repo_path` * **default:** `-> { "#{fetch(:deploy_to)}/repo" }` From 6e56929215a91a4b90e8f8ce2abf8296ccd08a9c Mon Sep 17 00:00:00 2001 From: William Johnston Date: Tue, 29 Dec 2015 07:46:41 -0600 Subject: [PATCH 207/256] Use semver compatible versioning. --- documentation/getting-started/installation/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index 2d373f20..1a238278 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -36,7 +36,7 @@ Add the following lines to the Gemfile: ```ruby group :development do - gem 'capistrano-rails', '~> 1.1.1' + gem 'capistrano-rails', '~> 1.1' end ``` From 5c7eb7e72b10cfd96bc05a6bafb02bb33c4d8fa5 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Tue, 29 Dec 2015 08:10:22 -0600 Subject: [PATCH 208/256] Basic SSH docs. --- .../installation/index.markdown | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index 2d373f20..fb2cc1af 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -57,6 +57,31 @@ Capfile, after the `require 'capistrano/deploy'` line: require 'capistrano/rails' ``` +##### SSH + +Capistrano deploys using SSH. Thus, you must be able to SSH (ideally with keys +and ssh-agent) from the deployment system to the destination system for +Capistrano to work. + +You can test this using a ssh client, e.g. `ssh myuser@destinationserver`. If +you cannot connect at all, you may need to set up the SSH server or resolve +firewall/network issues. Look for a tutorial (here are suggestions for +[Ubuntu](https://help.ubuntu.com/community/SSH) and +[RedHat/CentOS](http://www.cyberciti.biz/faq/centos-ssh/)). + +If a password is requested when you log in, you may need to set up SSH keys. +GitHub has a [good tutorial](https://help.github.com/articles/generating-ssh-keys/) +on creating these (follow steps 1 through 3). You will need to add your public +key to `~/.ssh/authorized_keys` on the destination server as the deployment user +(append on a new line). + +More information on SSH and login is available via the +[Authentication and Authorisation](http://capistranorb.com/documentation/getting-started/authentication-and-authorisation/) +section of the guide. + +If you are still struggling to get login working, try the +[Capistrano SSH Doctor](https://github.com/capistrano-plugins/capistrano-ssh-doctor) +plugin. ##### Help! I was using Capistrano `v2.x` and I didn't want to upgrade! From ee8c5f7329bbd1ef68d241ada4220999e5e3a78f Mon Sep 17 00:00:00 2001 From: William Johnston Date: Thu, 14 Jan 2016 22:18:50 -0600 Subject: [PATCH 209/256] Initial rollback documentation. --- .../getting-started/rollbacks/index.markdown | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index 524d24d7..bdac81da 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -3,4 +3,18 @@ title: Rollbacks layout: default --- -**Missing Content** +When a deployment is run, Capistrano executes one task at a time on all servers and waits for that task to be done before moving on to the next one. If a task fails on one or more servers, the errors are printed, Capistrano waits for all servers to either return an error or succeed, and then stops execution of any further tasks. + +If the error occurs during a deployment task which is prior to the final cutover, for example during creation of symlinks, the process will simply stop and the server will continue to run. However if the failing deployment task is after `deploy:symlink:release`, during which the `current` symlink is moved to the newly deployed code, this may result in an inconsistent state which should be solved by executing `cap [stage] deploy:rollback`. Rollback can also be a solution for issues with failed deployments due to buggy code or other reasons. + +Per http://capistranorb.com/documentation/getting-started/flow/, the standard deployment and rollback processes are nearly identical. The difference is that in a deploy, the `deploy:updating` and `deploy:updated` tasks are executed, while in a rollback, the `deploy:reverting` and `deploy:reverted` (a hook task) tasks are run. Also, instead of `deploy:finishing`, `deploy:finishing_rollback` is run, as cleanup can sometimes be different. + +## `deploy:reverting` + +This starts by setting the release_path to the last known good release path. It does this by obtaining a list of folders in the releases folder and if there are at least two, sets the second to last release as the release_path. It also sets the `rollback_timestamp` to this same release which it uses for the log entry. + +Once this has been set, the remaining standard deployment tasks flip the symlink accordingly. + +## `deploy:finishing_rollback` + +To finish the rollback, Capistrano creates a tarball of the failed release in the deploy path, and then deletes the release folder. From f69de6eab1212e22756a9324f667fb85c48990bf Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sat, 16 Jan 2016 07:58:35 -0600 Subject: [PATCH 210/256] More cleanups per discussion on PR. --- documentation/getting-started/rollbacks/index.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index bdac81da..49f7296b 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -3,9 +3,11 @@ title: Rollbacks layout: default --- -When a deployment is run, Capistrano executes one task at a time on all servers and waits for that task to be done before moving on to the next one. If a task fails on one or more servers, the errors are printed, Capistrano waits for all servers to either return an error or succeed, and then stops execution of any further tasks. +In the majority of failed deployment situations, it probably makes more sense to revert the bad code and redeploy, rather than running deploy:rollback. Capistrano provides basic rollback support, but as each application and system handles rollbacks differently, it is up to the individual to test and validate that rollback behaves correctly for their use case. For example, capistrano-rails will run special tasks on rollback to fix the assets, but does nothing special with database migrations. -If the error occurs during a deployment task which is prior to the final cutover, for example during creation of symlinks, the process will simply stop and the server will continue to run. However if the failing deployment task is after `deploy:symlink:release`, during which the `current` symlink is moved to the newly deployed code, this may result in an inconsistent state which should be solved by executing `cap [stage] deploy:rollback`. Rollback can also be a solution for issues with failed deployments due to buggy code or other reasons. +When a deployment is run, Capistrano executes one task at a time on all servers and waits for that task to be done before moving on to the next one. If a task fails on a server, Capistrano exits without waiting for further tasks. In a multiple server situation, when a task fails on one server by exiting with a non-0 exit code Capistrano closes the SSH connection to any still in-progress servers and their tasks exit. + +If the error occurs during a deployment task which is prior to the final cutover, for example during creation of symlinks, the process will simply stop and the previously deployed application will continue to run. However if the failing deployment task is after `deploy:symlink:release`, during which the `current` symlink is moved to the newly deployed code, this may result in an inconsistent state which may be solved by executing `cap [stage] deploy:rollback`. Rollback can also be a solution for issues with failed deployments due to buggy code or other reasons. Per http://capistranorb.com/documentation/getting-started/flow/, the standard deployment and rollback processes are nearly identical. The difference is that in a deploy, the `deploy:updating` and `deploy:updated` tasks are executed, while in a rollback, the `deploy:reverting` and `deploy:reverted` (a hook task) tasks are run. Also, instead of `deploy:finishing`, `deploy:finishing_rollback` is run, as cleanup can sometimes be different. From 2756478b10a4f163a498dd2e67f7ed3ebe272734 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sat, 16 Jan 2016 07:59:29 -0600 Subject: [PATCH 211/256] Add a new clarifying paragraph --- documentation/getting-started/rollbacks/index.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index 49f7296b..86d2e2c7 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -5,6 +5,8 @@ layout: default In the majority of failed deployment situations, it probably makes more sense to revert the bad code and redeploy, rather than running deploy:rollback. Capistrano provides basic rollback support, but as each application and system handles rollbacks differently, it is up to the individual to test and validate that rollback behaves correctly for their use case. For example, capistrano-rails will run special tasks on rollback to fix the assets, but does nothing special with database migrations. +Correctly rolling back a release is a complex process that depends on the specifics of your application and the Capistrano plugins you've assembled. *Be proactive and test your rollback procedure before trying it for the first time in a time of crisis.* + When a deployment is run, Capistrano executes one task at a time on all servers and waits for that task to be done before moving on to the next one. If a task fails on a server, Capistrano exits without waiting for further tasks. In a multiple server situation, when a task fails on one server by exiting with a non-0 exit code Capistrano closes the SSH connection to any still in-progress servers and their tasks exit. If the error occurs during a deployment task which is prior to the final cutover, for example during creation of symlinks, the process will simply stop and the previously deployed application will continue to run. However if the failing deployment task is after `deploy:symlink:release`, during which the `current` symlink is moved to the newly deployed code, this may result in an inconsistent state which may be solved by executing `cap [stage] deploy:rollback`. Rollback can also be a solution for issues with failed deployments due to buggy code or other reasons. From 7ab440015fbee68507d5d6d007bd9f01a408952a Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sat, 16 Jan 2016 08:07:34 -0600 Subject: [PATCH 212/256] Some slight grammar improvements --- documentation/getting-started/rollbacks/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index 86d2e2c7..168cf279 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -7,7 +7,7 @@ In the majority of failed deployment situations, it probably makes more sense to Correctly rolling back a release is a complex process that depends on the specifics of your application and the Capistrano plugins you've assembled. *Be proactive and test your rollback procedure before trying it for the first time in a time of crisis.* -When a deployment is run, Capistrano executes one task at a time on all servers and waits for that task to be done before moving on to the next one. If a task fails on a server, Capistrano exits without waiting for further tasks. In a multiple server situation, when a task fails on one server by exiting with a non-0 exit code Capistrano closes the SSH connection to any still in-progress servers and their tasks exit. +When a deployment is run, Capistrano executes one task at a time on all servers and waits for that task to be done before moving on to the next one. If a task fails on a server, Capistrano exits without waiting for further tasks. In a multiple server situation, when a task fails on one server by exiting with a non-0 exit code, Capistrano closes the SSH connections to any still in-progress servers and their tasks exit. If the error occurs during a deployment task which is prior to the final cutover, for example during creation of symlinks, the process will simply stop and the previously deployed application will continue to run. However if the failing deployment task is after `deploy:symlink:release`, during which the `current` symlink is moved to the newly deployed code, this may result in an inconsistent state which may be solved by executing `cap [stage] deploy:rollback`. Rollback can also be a solution for issues with failed deployments due to buggy code or other reasons. From 985d09cb706333d2f866942653ff5d9cda5aa756 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sun, 17 Jan 2016 07:02:01 -0600 Subject: [PATCH 213/256] Clean up style. --- .../advanced-features/ignoring/index.markdown | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/documentation/advanced-features/ignoring/index.markdown b/documentation/advanced-features/ignoring/index.markdown index 35248a83..ace074cc 100644 --- a/documentation/advanced-features/ignoring/index.markdown +++ b/documentation/advanced-features/ignoring/index.markdown @@ -3,11 +3,11 @@ title: Ignoring layout: default --- -Files commited to version control (i.e. not in .gitignore) can still be ignored when -deploying. To ignore these files or directories, simply add them to .gitattributes: +Files commited to version control (i.e. not in .gitignore) can still be ignored when deploying. To ignore these files or directories, simply add them to .gitattributes: + ``` -config/deploy/deploy.rb export-ignore +config/deploy/deploy.rb export-ignore config/deploy/ export-ignore -``` - -These files will be kept in version control but not deployed to the server. +``` + +These files will be kept in version control but not deployed to the server. From 2a7dbac4aa5908e445d187b5dc43be48045aa5e6 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sun, 17 Jan 2016 07:03:33 -0600 Subject: [PATCH 214/256] Add a note about the necessity of this feature. --- documentation/advanced-features/ignoring/index.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/advanced-features/ignoring/index.markdown b/documentation/advanced-features/ignoring/index.markdown index ace074cc..3b4e6322 100644 --- a/documentation/advanced-features/ignoring/index.markdown +++ b/documentation/advanced-features/ignoring/index.markdown @@ -11,3 +11,5 @@ config/deploy/ export-ignore ``` These files will be kept in version control but not deployed to the server. + +*Note:* This feature is probably unnecessary unless the root of your repository is also your web server's docroot. For example, in a Rails application, the docroot is the `public/` folder. Since all of the Capistrano configuration lives above or beside this folder, it cannot be served and is not a security risk. If the docroot is indeed at the base of the repository, consider changing that by moving the code at the repository base to a subdirectory such as public_html instead of using this feature. Note that this feature is very specific to Git and will not work on other SCMs. From eeeb3c5b8543b9dbb5af584081355fe5ab994469 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Sun, 17 Jan 2016 17:41:37 -0800 Subject: [PATCH 215/256] Redo README to explain how to run the site locally --- README.md | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 270965d4..96b428fa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,23 @@ -capistranorb.com -==================== +# capistranorb.com -Essay style documentation for Capistrano build with Jekyll and Github Pages. -Send a PR here to contribute docs @ [capistranorb.com](http://capistranorb.com) +This is the repository that generates the [capistranorb.com](http://capistranorb.com/) site. Feel free to send pull requests to make improvements to Capistrano's documentation! + +### Quick start + +This is a GitHub Pages project, which means it is built using Jekyll. To run the site locally, you'll need a functioning Ruby environment. + +After checking out the capistrano-documentation project, run: + +``` +bundle install +``` + +Then start the Jekyll server with: + +``` +bundle exec jekyll serve +``` + +You should now be able to preview the site on `http://localhost:4000`. After making any changes to markdown or HTML files, just refresh your browser to see the results. You do not have to restart the Jekyll process. + +More information: [Using Jekyll with Pages](https://help.github.com/articles/using-jekyll-with-pages/). From 5c73d5e02ade1c93008484838f3537326365a39b Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sun, 17 Jan 2016 17:40:20 -0600 Subject: [PATCH 216/256] Add navigation and fix code block. --- _includes/navigation.html | 1 + documentation/advanced-features/ignoring/index.markdown | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index 8d8e2016..820f6429 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -35,6 +35,7 @@
            • Using Capistrano from Pure Ruby
            • Remote File Task
            • Remote Commands with SSHKit
            • +
            • Preventing file deployment with gitattributes
            • Plugins
              diff --git a/documentation/advanced-features/ignoring/index.markdown b/documentation/advanced-features/ignoring/index.markdown index 3b4e6322..b8444b68 100644 --- a/documentation/advanced-features/ignoring/index.markdown +++ b/documentation/advanced-features/ignoring/index.markdown @@ -5,7 +5,7 @@ layout: default Files commited to version control (i.e. not in .gitignore) can still be ignored when deploying. To ignore these files or directories, simply add them to .gitattributes: -``` +```bash config/deploy/deploy.rb export-ignore config/deploy/ export-ignore ``` From 8048559b58fead83fd75eb295b1792b8138499be Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Mon, 18 Jan 2016 09:21:15 +0100 Subject: [PATCH 217/256] Move ':branch' option up, and add undocumented svn_username/svn_password --- .../getting-started/configuration/index.markdown | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 0e013a63..6d3e2fc6 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -56,6 +56,16 @@ The following variables are settable: * Must be a valid URL for the used SCM. * Hint: when using :svn and branches, declare the repo_url like this: `set :repo_url, -> { "svn://myhost/myrepo/#{fetch(:branch)}" }` +* `:branch` + * **default:** `'master'` + * The branch name to be deployed from SCM. + +* `:svn_username` + * When using :svn, provides the username for authentication. + +* `:svn_password` + * When using :svn, provides the password for authentication. + * `:repo_path` * **default:** `-> { "#{fetch(:deploy_to)}/repo" }` * The path on the remote server where the repository should be placed. @@ -81,10 +91,6 @@ The following variables are settable: * Default shell environment used during command execution. * Can be used to set or manipulate specific environment variables (e.g. `$PATH` and such). -* `:branch` - * **default:** `'master'` - * The branch name to be deployed from SCM. - * `:keep_releases` * **default:** `5` * The last `n` releases are kept for possible rollbacks. From 5040190cc30eb52256e38e80d6bbaa371058d0aa Mon Sep 17 00:00:00 2001 From: William Johnston Date: Mon, 18 Jan 2016 10:28:40 -0600 Subject: [PATCH 218/256] Remove misleading documentation page. --- _includes/navigation.html | 1 - .../capistrano-pure-ruby/index.markdown | 29 ------------------- 2 files changed, 30 deletions(-) delete mode 100644 documentation/advanced-features/capistrano-pure-ruby/index.markdown diff --git a/_includes/navigation.html b/_includes/navigation.html index 820f6429..d537da70 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -32,7 +32,6 @@
            • Host filtering
            • Role Filtering
            • Overriding Capistrano Tasks
            • -
            • Using Capistrano from Pure Ruby
            • Remote File Task
            • Remote Commands with SSHKit
            • Preventing file deployment with gitattributes
            • diff --git a/documentation/advanced-features/capistrano-pure-ruby/index.markdown b/documentation/advanced-features/capistrano-pure-ruby/index.markdown deleted file mode 100644 index 68438922..00000000 --- a/documentation/advanced-features/capistrano-pure-ruby/index.markdown +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: Capistrano in ruby script -layout: default ---- - -Instead of building a config folder and deploy, you may want to -programmatically set everything in a single ruby script. This could be done as -follows: - -```ruby -require 'capistrano/all' - -stages = "production" -set :application, 'my_app_name' -set :repo_url, 'git@github.com:capistrano/capistrano.git' -set :deploy_to, '/var/www/' -set :stage, :production -role :app, %w{} - -require 'capistrano/setup' -require 'capistrano/deploy' -Dir.glob('capistrano/tasks/*.rake').each { |r| import r } - -Capistrano::Application.invoke("production") -Capistrano::Application.invoke("deploy") -``` - -Note that the require order is important as the stage needs to be set before -you load setup and deploy. From 4b31f3ccd4756614929b02a4836b658e277ce779 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Mon, 18 Jan 2016 10:33:02 -0600 Subject: [PATCH 219/256] Move code from readme into docs. --- .../validation-of-variables/index.markdown | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 documentation/advanced-features/validation-of-variables/index.markdown diff --git a/documentation/advanced-features/validation-of-variables/index.markdown b/documentation/advanced-features/validation-of-variables/index.markdown new file mode 100644 index 00000000..7a4e850b --- /dev/null +++ b/documentation/advanced-features/validation-of-variables/index.markdown @@ -0,0 +1,13 @@ +## Validation of variables + +To validate a variable, each time before it is set, define a validation: + +```ruby +validate :some_key do |key, value| + if value.length < 5 + raise Capistrano::ValidationError, "Length of #{key} is too short!" + end +end +``` + +Multiple validation can be assigned to a single key. Validations will be executed in the order of registration. From b8475bd0ca45ea94a11907bf2845e8f52d602c84 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Mon, 18 Jan 2016 10:41:43 -0600 Subject: [PATCH 220/256] Add documentation for deploy:failure hook. --- .../getting-started/rollbacks/index.markdown | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index 168cf279..f6dc5006 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -22,3 +22,15 @@ Once this has been set, the remaining standard deployment tasks flip the symlink ## `deploy:finishing_rollback` To finish the rollback, Capistrano creates a tarball of the failed release in the deploy path, and then deletes the release folder. + +## `deploy:failed` + +In a situation where `cap [stage] deploy` fails, the `deploy:failed` hook is invoked. You can add custom rollback tasks to this hook: + +```ruby +after 'deploy:failed', :send_for_help do + # +end +``` + +This is different from a specifically invoked rollback, and is application specific. *For reasons stated above, it can be dangerous to use this hook without careful testing.* From 8802802e2d0b52db0e014a411d3ab675b8b4be8f Mon Sep 17 00:00:00 2001 From: William Johnston Date: Mon, 18 Jan 2016 14:25:18 -0600 Subject: [PATCH 221/256] Fix frontmatter and navigation for validation. --- _includes/navigation.html | 1 + .../advanced-features/validation-of-variables/index.markdown | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index d537da70..f861674e 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -35,6 +35,7 @@
            • Remote File Task
            • Remote Commands with SSHKit
            • Preventing file deployment with gitattributes
            • +
            • Validation of variables
            • Plugins
              diff --git a/documentation/advanced-features/validation-of-variables/index.markdown b/documentation/advanced-features/validation-of-variables/index.markdown index 7a4e850b..497e6d56 100644 --- a/documentation/advanced-features/validation-of-variables/index.markdown +++ b/documentation/advanced-features/validation-of-variables/index.markdown @@ -1,4 +1,7 @@ -## Validation of variables +--- +layout: default +title: Validation of variables +--- To validate a variable, each time before it is set, define a validation: From c6f5d533f57aa4b73b889196d6e1e1490298461e Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Fri, 29 Jan 2016 10:01:41 +0100 Subject: [PATCH 222/256] Document new option `svn_revision` --- documentation/getting-started/configuration/index.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 6d3e2fc6..9052c8e7 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -66,6 +66,9 @@ The following variables are settable: * `:svn_password` * When using :svn, provides the password for authentication. +* `:svn_revision` + * When using :svn, set the specific revision number you want to deploy. + * `:repo_path` * **default:** `-> { "#{fetch(:deploy_to)}/repo" }` * The path on the remote server where the repository should be placed. From 06b079cf38d8f3fd9854519f42fcd02d59a46611 Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Mon, 1 Feb 2016 11:34:29 +0100 Subject: [PATCH 223/256] Add "new since" note --- documentation/getting-started/configuration/index.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 9052c8e7..2fbbea3c 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -67,6 +67,7 @@ The following variables are settable: * When using :svn, provides the password for authentication. * `:svn_revision` + * **New in version 3.5** * When using :svn, set the specific revision number you want to deploy. * `:repo_path` From 7333d664377ee08b2868a840b47506dfe7642808 Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Mon, 1 Feb 2016 11:38:09 +0100 Subject: [PATCH 224/256] Add link to documentation source repo --- index.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.markdown b/index.markdown index 2241ed63..574cd330 100644 --- a/index.markdown +++ b/index.markdown @@ -30,3 +30,6 @@ extended to support them.
              + +
              +
              From c1650843350b6d255bdf27babbc294f919bb375c Mon Sep 17 00:00:00 2001 From: Marco van 't Wout Date: Mon, 1 Feb 2016 12:10:13 +0100 Subject: [PATCH 225/256] Add google search box to navigation --- _includes/navigation.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_includes/navigation.html b/_includes/navigation.html index f861674e..8f0d16bc 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,6 +1,13 @@
              • New Hosted Capistrano for Teams
              • + +
                Search
                +
                + + + +
              • Overview
              • What is Capistrano?
              • From 8ed2c35a390750a4e197e15b974966fb8d2f7e3b Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 2 Feb 2016 05:55:49 +0600 Subject: [PATCH 226/256] correction of typo; --- documentation/overview/what-is-capistrano/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/overview/what-is-capistrano/index.markdown b/documentation/overview/what-is-capistrano/index.markdown index b7f832d6..1bf85a10 100644 --- a/documentation/overview/what-is-capistrano/index.markdown +++ b/documentation/overview/what-is-capistrano/index.markdown @@ -90,7 +90,7 @@ me@localhost $ cap staging deploy There's lots of cool stuff in the Capistrano toy box: -* Interchangable output formatters (progress, pretty, html, etc) +* Interchangeable output formatters (progress, pretty, html, etc) * Easy to add support for other source control management software. * A rudimentary multi-console for running Capistrano interactively. * Host and Role filters for partial deploys, or partial-cluster maintenance. From 572bc56bccccd864707a60ac195460e2b93c1c8b Mon Sep 17 00:00:00 2001 From: William Johnston Date: Thu, 4 Feb 2016 12:59:24 -0600 Subject: [PATCH 227/256] Add example of host filtering using a regex. --- .../advanced-features/host-filtering/index.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/documentation/advanced-features/host-filtering/index.markdown b/documentation/advanced-features/host-filtering/index.markdown index f3d8f7b0..966319bd 100644 --- a/documentation/advanced-features/host-filtering/index.markdown +++ b/documentation/advanced-features/host-filtering/index.markdown @@ -63,3 +63,9 @@ them with a comma. If the host name in a filter doesn't match the set of valid characters for a DNS name (Given by the regular expression `/^[-A-Za-z0-9.]+$/`) then it's assumed to be a regular expression in standard Ruby syntax. + +For example, if you had three servers named localrubyserver1, localrubyserver2, and amazonrubyserver1, but only wanted to deploy to localrubyserver*, you call Capistrano with a regex: + +```bash +cap --hosts=^localrubyserver production deploy +``` From de939c2b1ecf8dd3c3be05db4116a56f245e7342 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Thu, 4 Feb 2016 13:04:35 -0600 Subject: [PATCH 228/256] Simple typo fix --- .../advanced-features/validation-of-variables/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/advanced-features/validation-of-variables/index.markdown b/documentation/advanced-features/validation-of-variables/index.markdown index 497e6d56..94a718c9 100644 --- a/documentation/advanced-features/validation-of-variables/index.markdown +++ b/documentation/advanced-features/validation-of-variables/index.markdown @@ -13,4 +13,4 @@ validate :some_key do |key, value| end ``` -Multiple validation can be assigned to a single key. Validations will be executed in the order of registration. +Multiple validations can be assigned to a single key. Validations will be executed in the order of registration. From 2c3f6e563c5d85489803d7bcc473301eb26ec645 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Fri, 5 Feb 2016 16:13:30 -0800 Subject: [PATCH 229/256] =?UTF-8?q?Update=20gems,=20including=20jekyll=202?= =?UTF-8?q?.4.0=20=E2=86=92=203.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Note that this upgrade is required in order to use `rouge` highlighter. activesupport 4.2.0 → 4.2.5.1 addressable (new) → 2.3.8 blankslate 2.1.2.4 → (removed) celluloid 0.16.0 → (removed) classifier-reborn 2.0.3 → (removed) coffee-script 2.3.0 → 2.4.1 coffee-script-source 1.8.0 → 1.10.0 ethon (new) → 0.8.1 execjs 2.2.2 → 2.6.0 faraday (new) → 0.9.2 fast-stemmer 1.0.2 → (removed) ffi 1.9.6 → 1.9.10 github-pages 32 → 45 github-pages-health-check 0.2.1 → 0.6.0 hitimes 1.2.2 → (removed) html-pipeline 1.9.0 → 2.3.0 jekyll 2.4.0 → 3.0.2 jekyll-feed (new) → 0.3.1 jekyll-gist 1.1.0 → 1.4.0 jekyll-mentions 0.2.1 → 1.0.0 jekyll-redirect-from 0.6.2 → 0.9.1 jekyll-sass-converter 1.2.0 → 1.3.0 jekyll-seo-tag (new) → 0.1.4 jekyll-sitemap 0.6.3 → 0.10.0 jekyll-textile-converter (new) → 0.1.0 jekyll-watch 1.2.0 → 1.3.1 jemoji 0.4.0 → 0.5.1 json 1.8.2 → 1.8.3 kramdown 1.5.0 → 1.9.0 liquid 2.6.1 → 3.0.6 listen 2.8.5 → 3.0.5 maruku 0.7.0 → (removed) mini_portile 0.6.2 → (removed) mini_portile2 (new) → 2.0.0 minitest 5.5.1 → 5.8.4 multipart-post (new) → 2.0.0 nokogiri 1.6.5 → 1.6.7.2 octokit (new) → 4.2.0 parslet 1.5.0 → (removed) posix-spawn 0.3.9 → (removed) public_suffix 1.4.6 → 1.5.3 pygments.rb 0.6.0 → (removed) rb-fsevent 0.9.4 → 0.9.7 rb-inotify 0.9.5 → 0.9.6 rdiscount 2.1.7 → 2.1.8 redcarpet 3.1.2 → 3.3.3 rouge (new) → 1.10.1 sass 3.4.10 → 3.4.21 sawyer (new) → 0.6.0 terminal-table 1.4.5 → 1.5.2 thread_safe 0.3.4 → 0.3.5 timers 4.0.1 → (removed) toml 0.1.2 → (removed) typhoeus (new) → 0.8.0 yajl-ruby 1.1.0 → (removed) --- Gemfile.lock | 166 +++++++++++++++++++++++++-------------------------- 1 file changed, 83 insertions(+), 83 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e9d2b093..989f9189 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,122 +2,122 @@ GEM remote: https://rubygems.org/ specs: RedCloth (4.2.9) - activesupport (4.2.0) + activesupport (4.2.5.1) i18n (~> 0.7) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) - blankslate (2.1.2.4) - celluloid (0.16.0) - timers (~> 4.0.0) - classifier-reborn (2.0.3) - fast-stemmer (~> 1.0) - coffee-script (2.3.0) + addressable (2.3.8) + coffee-script (2.4.1) coffee-script-source execjs - coffee-script-source (1.8.0) + coffee-script-source (1.10.0) colorator (0.1) - execjs (2.2.2) - fast-stemmer (1.0.2) - ffi (1.9.6) + ethon (0.8.1) + ffi (>= 1.3.0) + execjs (2.6.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + ffi (1.9.10) gemoji (2.1.0) - github-pages (32) + github-pages (45) RedCloth (= 4.2.9) - github-pages-health-check (~> 0.2) - jekyll (= 2.4.0) + github-pages-health-check (= 0.6.0) + jekyll (= 3.0.2) jekyll-coffeescript (= 1.0.1) - jekyll-mentions (= 0.2.1) - jekyll-redirect-from (= 0.6.2) - jekyll-sass-converter (= 1.2.0) - jekyll-sitemap (= 0.6.3) - jemoji (= 0.4.0) - kramdown (= 1.5.0) - liquid (= 2.6.1) - maruku (= 0.7.0) + jekyll-feed (= 0.3.1) + jekyll-gist (= 1.4.0) + jekyll-mentions (= 1.0.0) + jekyll-paginate (= 1.1.0) + jekyll-redirect-from (= 0.9.1) + jekyll-sass-converter (= 1.3.0) + jekyll-seo-tag (= 0.1.4) + jekyll-sitemap (= 0.10.0) + jekyll-textile-converter (= 0.1.0) + jemoji (= 0.5.1) + kramdown (= 1.9.0) + liquid (= 3.0.6) mercenary (~> 0.3) - pygments.rb (= 0.6.0) - rdiscount (= 2.1.7) - redcarpet (= 3.1.2) + rdiscount (= 2.1.8) + redcarpet (= 3.3.3) + rouge (= 1.10.1) terminal-table (~> 1.4) - github-pages-health-check (0.2.1) - net-dns (~> 0.6) + github-pages-health-check (0.6.0) + addressable (~> 2.3) + net-dns (~> 0.8) public_suffix (~> 1.4) - hitimes (1.2.2) - html-pipeline (1.9.0) - activesupport (>= 2) - nokogiri (~> 1.4) + typhoeus (~> 0.7) + html-pipeline (2.3.0) + activesupport (>= 2, < 5) + nokogiri (>= 1.4) i18n (0.7.0) - jekyll (2.4.0) - classifier-reborn (~> 2.0) + jekyll (3.0.2) colorator (~> 0.1) - jekyll-coffeescript (~> 1.0) - jekyll-gist (~> 1.0) - jekyll-paginate (~> 1.0) jekyll-sass-converter (~> 1.0) jekyll-watch (~> 1.1) kramdown (~> 1.3) - liquid (~> 2.6.1) + liquid (~> 3.0) mercenary (~> 0.3.3) - pygments.rb (~> 0.6.0) - redcarpet (~> 3.1) + rouge (~> 1.7) safe_yaml (~> 1.0) - toml (~> 0.1.0) jekyll-coffeescript (1.0.1) coffee-script (~> 2.2) - jekyll-gist (1.1.0) - jekyll-mentions (0.2.1) - html-pipeline (~> 1.9.0) - jekyll (~> 2.0) + jekyll-feed (0.3.1) + jekyll-gist (1.4.0) + octokit (~> 4.2) + jekyll-mentions (1.0.0) + html-pipeline (~> 2.2) + jekyll (~> 3.0) jekyll-paginate (1.1.0) - jekyll-redirect-from (0.6.2) - jekyll (~> 2.0) - jekyll-sass-converter (1.2.0) + jekyll-redirect-from (0.9.1) + jekyll (>= 2.0) + jekyll-sass-converter (1.3.0) sass (~> 3.2) - jekyll-sitemap (0.6.3) - jekyll-watch (1.2.0) - listen (~> 2.7) - jemoji (0.4.0) + jekyll-seo-tag (0.1.4) + jekyll (>= 2.0) + jekyll-sitemap (0.10.0) + jekyll-textile-converter (0.1.0) + RedCloth (~> 4.0) + jekyll-watch (1.3.1) + listen (~> 3.0) + jemoji (0.5.1) gemoji (~> 2.0) - html-pipeline (~> 1.9) - jekyll (~> 2.0) - json (1.8.2) - kramdown (1.5.0) - liquid (2.6.1) - listen (2.8.5) - celluloid (>= 0.15.2) + html-pipeline (~> 2.2) + jekyll (>= 2.0) + json (1.8.3) + kramdown (1.9.0) + liquid (3.0.6) + listen (3.0.5) rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9) - maruku (0.7.0) mercenary (0.3.5) - mini_portile (0.6.2) - minitest (5.5.1) + mini_portile2 (2.0.0) + minitest (5.8.4) + multipart-post (2.0.0) net-dns (0.8.0) - nokogiri (1.6.5) - mini_portile (~> 0.6.0) - parslet (1.5.0) - blankslate (~> 2.0) - posix-spawn (0.3.9) - public_suffix (1.4.6) - pygments.rb (0.6.0) - posix-spawn (~> 0.3.6) - yajl-ruby (~> 1.1.0) - rb-fsevent (0.9.4) - rb-inotify (0.9.5) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + octokit (4.2.0) + sawyer (~> 0.6.0, >= 0.5.3) + public_suffix (1.5.3) + rb-fsevent (0.9.7) + rb-inotify (0.9.6) ffi (>= 0.5.0) - rdiscount (2.1.7) - redcarpet (3.1.2) + rdiscount (2.1.8) + redcarpet (3.3.3) + rouge (1.10.1) safe_yaml (1.0.4) - sass (3.4.10) - terminal-table (1.4.5) - thread_safe (0.3.4) - timers (4.0.1) - hitimes - toml (0.1.2) - parslet (~> 1.5.0) + sass (3.4.21) + sawyer (0.6.0) + addressable (~> 2.3.5) + faraday (~> 0.8, < 0.10) + terminal-table (1.5.2) + thread_safe (0.3.5) + typhoeus (0.8.0) + ethon (>= 0.8.0) tzinfo (1.2.2) thread_safe (~> 0.1) - yajl-ruby (1.1.0) PLATFORMS ruby @@ -126,4 +126,4 @@ DEPENDENCIES github-pages BUNDLED WITH - 1.10.3 + 1.11.2 From bcce9373e07b5d68f602b4ccf59eb06b07bcec75 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Fri, 5 Feb 2016 16:15:10 -0800 Subject: [PATCH 230/256] Replace pygments w/ rouge to fix GH Pages warning --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index dcf7a69c..9feaff46 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,5 @@ name: Capistrano -highlighter: pygments +highlighter: rouge safe: true lsi: false markdown: redcarpet From 5eb5c7f4140ba178d31cde24fcf7ae75ba0fb478 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Tue, 23 Feb 2016 17:57:19 -0800 Subject: [PATCH 231/256] Document the new append method --- documentation/getting-started/configuration/index.markdown | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 6d3e2fc6..be3636a3 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -23,7 +23,6 @@ set :application, 'MyLittleApplication' set :application, -> { "SomeThing_#{fetch :other_config}" } ``` - A value can be retrieved from the configuration at any time: ```ruby @@ -34,6 +33,12 @@ fetch(:special_thing, 'some_default_value') # will return the value if set, or the second argument as default value ``` +**New in Capistrano 3.5:** for a variable that holds an Array, easily add values to it using `append`. This comes in especially handy for `:linked_dirs` and `:linked_files` (see Variables reference below). + +```ruby +append :linked_dirs, ".bundle", "tmp" +``` + ## Variables The following variables are settable: From 48cfe165360ad09e3fd30d5b2446f2318c4c8175 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Wed, 24 Feb 2016 06:56:37 -0600 Subject: [PATCH 232/256] Document new remove method. --- documentation/getting-started/configuration/index.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index be3636a3..7efaae62 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -39,6 +39,12 @@ fetch(:special_thing, 'some_default_value') append :linked_dirs, ".bundle", "tmp" ``` +The inverse is also available: `remove` will strive to drop an entry from an array. This comes in handy if you have a shared configuration which sets an array but a specific config doesn't need one of the elements. + +```ruby +remove :linked_dirs, ".bundle", "tmp" +``` + ## Variables The following variables are settable: From f532072c49af8bb0522b9b800317cff7f5d19900 Mon Sep 17 00:00:00 2001 From: MarkMT Date: Thu, 25 Feb 2016 21:51:37 -0600 Subject: [PATCH 233/256] Add hint for non-standard ssh port to remote repo When accessing a self-hosted repository on a machine other than the deployment target, it's not uncommon as a security measure to use a port other than 22. The example added shows how to configure this. --- documentation/getting-started/configuration/index.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 7efaae62..8f3315c4 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -65,7 +65,9 @@ The following variables are settable: * `:repo_url` * URL to the repository. * Must be a valid URL for the used SCM. - * Hint: when using :svn and branches, declare the repo_url like this: `set :repo_url, -> { "svn://myhost/myrepo/#{fetch(:branch)}" }` + * Example: `set :repo_url, 'git@example.com:me/my_repo.git'` for a git repo located in /home/git/me + * Hint #1: when using :svn and branches, declare the repo_url like this: `set :repo_url, -> { "svn://myhost/myrepo/#{fetch(:branch)}" }` + * Hint #2: to access a repo on a machine using a non-standard ssh port: `set :repo_url, 'ssh://git@example.com:30000/~/me/my_repo.git'` * `:branch` * **default:** `'master'` From f9ad4481742f9c97d3789d379763f429990338db Mon Sep 17 00:00:00 2001 From: MarkMT Date: Fri, 26 Feb 2016 13:44:59 -0600 Subject: [PATCH 234/256] Reorder :repo_url configuration examples --- documentation/getting-started/configuration/index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 8f3315c4..80567585 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -66,8 +66,8 @@ The following variables are settable: * URL to the repository. * Must be a valid URL for the used SCM. * Example: `set :repo_url, 'git@example.com:me/my_repo.git'` for a git repo located in /home/git/me - * Hint #1: when using :svn and branches, declare the repo_url like this: `set :repo_url, -> { "svn://myhost/myrepo/#{fetch(:branch)}" }` - * Hint #2: to access a repo on a machine using a non-standard ssh port: `set :repo_url, 'ssh://git@example.com:30000/~/me/my_repo.git'` + * Hint #1: to access a repo on a machine using a non-standard ssh port: `set :repo_url, 'ssh://git@example.com:30000/~/me/my_repo.git'` + * Hint #2: when using :svn and branches, declare the repo_url like this: `set :repo_url, -> { "svn://myhost/myrepo/#{fetch(:branch)}" }` * `:branch` * **default:** `'master'` From de195ee3748ce32d3fe8ede618a2743f61dc57ab Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Mon, 29 Feb 2016 10:49:18 -0800 Subject: [PATCH 235/256] "No thanks" should apply to entire site This fixes a bug where dismissing the modal with "no thanks" would hide it for the current page, but the modal would then reappear when navigating to another page. --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 2e41a90f..b672bf2b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -49,7 +49,7 @@ ga('send', 'event', 'harrowBanner', 'clickthrough'); }); $(".harrowBanner__dismissLink").on('click', function (e) { - $.cookie('harrowBanner__dismissed', '1', { expires: 10}); + $.cookie('harrowBanner__dismissed', '1', { path: "/", expires: 10 }); $('.harrowBanner').hide(); ga('send', 'event', 'harrowBanner', 'dismiss'); }); From 16c284c25c8f51075ffeb60283a50350bebe1819 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sat, 12 Mar 2016 07:58:00 -0600 Subject: [PATCH 236/256] Add note to cold start in case of /tmp permission issues. --- documentation/getting-started/cold-start/index.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/getting-started/cold-start/index.markdown b/documentation/getting-started/cold-start/index.markdown index 5d5e3c74..97148879 100644 --- a/documentation/getting-started/cold-start/index.markdown +++ b/documentation/getting-started/cold-start/index.markdown @@ -207,3 +207,5 @@ DEBUG [f40edfbb] 3419812c9f146d9a84b44bcc2c3caef94da54758 refs/heads/master ``` ![Capistrano Git Check Colour Example](/images/successful-git-check-example-screenshot.png) + +*Note:* If you get an error like `scp: /tmp/git-ssh.sh: Permission denied`, you may need to set the `:tmp_dir` param. From b929635840f7579cc35bae27689f200df2b621e2 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sat, 12 Mar 2016 07:59:21 -0600 Subject: [PATCH 237/256] Update to new version of rb-inotify --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 989f9189..540a0c30 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -102,7 +102,7 @@ GEM sawyer (~> 0.6.0, >= 0.5.3) public_suffix (1.5.3) rb-fsevent (0.9.7) - rb-inotify (0.9.6) + rb-inotify (0.9.7) ffi (>= 0.5.0) rdiscount (2.1.8) redcarpet (3.3.3) From 9bd4525d0c7fe0fdecad2a7219395a2f337443d4 Mon Sep 17 00:00:00 2001 From: William Johnston Date: Sat, 12 Mar 2016 08:07:11 -0600 Subject: [PATCH 238/256] Fix markdown display --- .../index.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown b/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown index 62241d95..ee05528c 100644 --- a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown +++ b/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown @@ -4,6 +4,7 @@ layout: default --- Configuration variables are access with the fetch method, like so: + ```ruby local = fetch(:configuration_variable, _default_value_) ``` @@ -15,11 +16,13 @@ The deploy.rb configuration is executed first and then the stage file(s) from co For example, let's create a configuration variable in the production and staging files and access the current one from deploy.rb. config/deploy/production.rb + ```ruby set :app_domain, "www.my_application.com" ``` config/deploy/staging.rb + ```ruby set :app_domain, "stage.application_test.com" ``` @@ -27,6 +30,7 @@ set :app_domain, "stage.application_test.com" These variables are not available in deploy.rb using `fetch(:nginx_port)` or `fetch(:app_domain)` because they are not defined when deploy.rb is executed. They can, however, be lazily loaded using a lambda in deploy.rb like this: config/deploy.rb + ```ruby set :nginx_server_name, ->{ fetch(:app_domain) } set :puma_bind, ->{ "unix:/tmp/#{fetch(:app_domain)}.sock" } @@ -35,6 +39,7 @@ set :puma_bind, ->{ "unix:/tmp/#{fetch(:app_domain)}.sock" } Now the `:nginx_server_name` and `:puma_bind` variables will be lazily assigned the values set in which ever stage file was used to deploy. If you need to create nested hashes, you might find `do/end` syntax more readable: + ```ruby set :database_yml, -> do { From eef6885e6a45424296521429df04975878facf71 Mon Sep 17 00:00:00 2001 From: w1mvy Date: Wed, 20 Apr 2016 19:56:59 +0900 Subject: [PATCH 239/256] Change link page to capistrano2 documents --- _includes/navigation.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index 8f0d16bc..3bf94090 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,7 +1,7 @@
                • New Hosted Capistrano for Teams
                • - +
                  Search
                  @@ -70,7 +70,7 @@
                • Legacy
                  -
                • Capistrano 2 Documentation Wiki
                • +
                • Capistrano 2 Documentation Repository
                • Upgrading from Capistrano 2.x to 3
                • From a6fbafb9aacf8aa9484853563b39b0af8cda9244 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Mon, 25 Apr 2016 08:31:01 +0200 Subject: [PATCH 240/256] Change markdown renderer from redcarpet to default (kramdown) --- _config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/_config.yml b/_config.yml index 9feaff46..50ef1d93 100644 --- a/_config.yml +++ b/_config.yml @@ -2,7 +2,6 @@ name: Capistrano highlighter: rouge safe: true lsi: false -markdown: redcarpet redcarpet: extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"] exclude: ["Gemfile", "Gemfile.lock", "README.md", "vendor"] From c5d6b2c5ff53e186006c75d48d1f1b8ca2b72dcd Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Mon, 25 Apr 2016 08:23:59 +0200 Subject: [PATCH 241/256] Introduce Harrow explanation --- _includes/navigation.html | 4 +- documentation/harrow/index.markdown | 50 ++++++++++++++++++ ...logo-harrow-logo-c-primary-darker-w640.png | Bin 0 -> 28689 bytes 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 documentation/harrow/index.markdown create mode 100644 images/capistrano-logo-harrow-logo-c-primary-darker-w640.png diff --git a/_includes/navigation.html b/_includes/navigation.html index 3bf94090..a5dad5db 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,5 +1,7 @@
                    -
                  • New Hosted Capistrano for Teams
                  • +
                    Hosted Capistrano
                    +
                  • Try The New Cloud Capistrano
                  • +
                  • Learn more
                  • Search
                    diff --git a/documentation/harrow/index.markdown b/documentation/harrow/index.markdown new file mode 100644 index 00000000..95edd5fc --- /dev/null +++ b/documentation/harrow/index.markdown @@ -0,0 +1,50 @@ +--- +title: What is Harrow? +layout: default +--- + +### Harrow is a web-based platform for continuous integration and deployment built by the Capistrano team. + +There are many continuous integration tools in the world already, Harrow is +ours. It is designed to "feel" familiar to Capistrano users. + +![Harrow, web-based Capistrano](/images/capistrano-logo-harrow-logo-c-primary-darker-w640.png) + +Although Harrow is designed to work well for Capistrano-style use-cases, it is +by no means limited to only being used for Capistrano, or even for deployment. + +Some of the features which make Harrow ideal for automating tools such as +Capistrano; + +* A discrete concept of scripts and environments, allowing reuse of scripts in + different settings using different configurations. +* A pure JSON-HAL API allowing integrations and tools +* Powerful triggers and notifications allowing the construction of pipelines + starting with git changes + +Harrow, much like Capistrano can also be used to: + +* To automate common tasks in software teams. +* To drive infrastructure provisioning tools such as *chef-solo*, *Ansible* or similar. + +Again, like Capistrano; Harrow is also *very* scriptable, and can be integrated +with any other software to form part of a larger tool. + +#### How To Use Harrow + +1. Sign up for an account at +2. Connect your Git repository using our setup wizard +3. Choose "Capistrano" as the project template + +#### What does it cost, and how does that affect Capistrano + +Harrow has very low pricing (), for comparison with +other continuous integration tools we have customers who have cut their monthly +outgoing by a factor of 5 or more. + +For individual users it's feee to use for ever. To work with collaborators in +your projects paid plans start at just $29/mo. + +Capistrano is unaffected by Harrow. Capistrano will remain liberally licensed +(currently MIT) and will include discrete hooks offering Harrow to users +without being intrusive. diff --git a/images/capistrano-logo-harrow-logo-c-primary-darker-w640.png b/images/capistrano-logo-harrow-logo-c-primary-darker-w640.png new file mode 100644 index 0000000000000000000000000000000000000000..43ff6f0f182276efdb76cdbd83944249bb239565 GIT binary patch literal 28689 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 Date: Mon, 25 Apr 2016 09:06:40 +0200 Subject: [PATCH 242/256] Fix indentation of
                  • s --- css/capistrano.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/css/capistrano.css b/css/capistrano.css index 2f3f44e6..25164a0e 100644 --- a/css/capistrano.css +++ b/css/capistrano.css @@ -115,6 +115,10 @@ footer ul.social.icons { list-style-type: none; } +li { + margin-left: 2em; +} + footer ul.social.icons li { float: left; margin-left: 10px; From ca121636133821be405aa4714b7bd2942c366164 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Mon, 25 Apr 2016 09:08:41 +0200 Subject: [PATCH 243/256] Correct typo in Harrow page --- documentation/harrow/index.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/harrow/index.markdown b/documentation/harrow/index.markdown index 95edd5fc..2e547a9f 100644 --- a/documentation/harrow/index.markdown +++ b/documentation/harrow/index.markdown @@ -38,11 +38,11 @@ with any other software to form part of a larger tool. #### What does it cost, and how does that affect Capistrano -Harrow has very low pricing (), for comparison with -other continuous integration tools we have customers who have cut their monthly -outgoing by a factor of 5 or more. +Harrow has very reasonable pricing (), for +comparison with other continuous integration tools we have customers who have +cut their monthly outgoing by a factor of 5 or more. -For individual users it's feee to use for ever. To work with collaborators in +For individual users it's free to use for ever. To work with collaborators in your projects paid plans start at just $29/mo. Capistrano is unaffected by Harrow. Capistrano will remain liberally licensed From 6d1a2ef48df74e5ce6a810af4bd3a57b9bd88379 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Mon, 25 Apr 2016 09:09:07 +0200 Subject: [PATCH 244/256] Replace 'what does it look like?' section with an airbrussh screenshot --- .../what-is-capistrano/index.markdown | 63 +----------------- images/airbrussh-screenshot.png | Bin 0 -> 183932 bytes 2 files changed, 1 insertion(+), 62 deletions(-) create mode 100644 images/airbrussh-screenshot.png diff --git a/documentation/overview/what-is-capistrano/index.markdown b/documentation/overview/what-is-capistrano/index.markdown index 1bf85a10..0546dff4 100644 --- a/documentation/overview/what-is-capistrano/index.markdown +++ b/documentation/overview/what-is-capistrano/index.markdown @@ -22,69 +22,8 @@ Ruby software to form part of a larger tool. #### What does it look like? -```bash -me@localhost $ cap staging deploy -``` +![Capistrano 3.5 / Airbrussh formatter screenshot](/images/airbrussh-screenshot.png) -
                    -
                    DEBUG Uploading /tmp/git-ssh.sh 0%
                    - INFO Uploading /tmp/git-ssh.sh 100%
                    - INFO [649ae05d] Running /usr/bin/env chmod +x /tmp/git-ssh.sh on example.com
                    -DEBUG [649ae05d] Command: /usr/bin/env chmod +x /tmp/git-ssh.sh
                    - INFO [649ae05d] Finished in 0.048 seconds command successful.
                    - INFO [6a86a816] Running /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git on example.com
                    -DEBUG [6a86a816] Command: ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git ls-remote git@github.com:capistrano/rails3-bootstrap-devise-cancan.git )
                    -DEBUG [6a86a816]     3419812c9f146d9a84b44bcc2c3caef94da54758	HEAD
                    -DEBUG [6a86a816]     3419812c9f146d9a84b44bcc2c3caef94da54758	refs/heads/master
                    - INFO [6a86a816] Finished in 2.526 seconds command successful.
                    - INFO [26c22cce] Running /usr/bin/env mkdir -pv /var/www/my-application/shared /var/www/my-application/releases on example.com
                    -DEBUG [26c22cce] Command: /usr/bin/env mkdir -pv /var/www/my-application/shared /var/www/my-application/releases
                    - INFO [26c22cce] Finished in 0.439 seconds command successful.
                    -DEBUG [682cbb14] Running /usr/bin/env [ -f /var/www/my-application/repo/HEAD ] on example.com
                    -DEBUG [682cbb14] Command: [ -f /var/www/my-application/repo/HEAD ]
                    -DEBUG [682cbb14] Finished in 0.448 seconds command failed.
                    -DEBUG [902d6fe6] Running /usr/bin/env if test ! -d /var/www/my-application; then echo "Directory does not exist '/var/www/my-application'" 1>&2; false; fi on example.com
                    -DEBUG [902d6fe6] Command: if test ! -d /var/www/my-application; then echo "Directory does not exist '/var/www/my-application'" 1>&2; false; fi
                    -DEBUG [902d6fe6] Finished in 0.047 seconds command successful.
                    - INFO [70365162] Running /usr/bin/env git clone --mirror git@github.com:capistrano/rails3-bootstrap-devise-cancan.git /var/www/my-application/repo on example.com
                    -DEBUG [70365162] Command: cd /var/www/my-application && ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git clone --mirror git@github.com:capistrano/rails3-bootstrap-devise-cancan.git /var/www/my-application/repo )
                    -DEBUG [70365162]     Cloning into bare repository '/var/www/my-application/repo'...
                    -DEBUG [70365162]     remote: Counting objects: 598, done.
                    - INFO [70365162] Finished in 3.053 seconds command successful.
                    -DEBUG [4d3ef555] Running /usr/bin/env if test ! -d /var/www/my-application/repo; then echo "Directory does not exist '/var/www/my-application/repo'" 1>&2; false; fi on example.com
                    -DEBUG [4d3ef555] Command: if test ! -d /var/www/my-application/repo; then echo "Directory does not exist '/var/www/my-application/repo'" 1>&2; false; fi
                    -DEBUG [4d3ef555] Finished in 0.445 seconds command successful.
                    - INFO [90a42e63] Running /usr/bin/env git remote update on example.com
                    -DEBUG [90a42e63] Command: cd /var/www/my-application/repo && /usr/bin/env git remote update
                    -DEBUG [90a42e63] 	Fetching origin
                    - INFO [90a42e63] Finished in 2.078 seconds command successful.
                    -DEBUG [39a7244f] Running /usr/bin/env if test ! -d /var/www/my-application/repo; then echo "Directory does not exist '/var/www/my-application/repo'" 1>&2; false; fi on example.com
                    -DEBUG [39a7244f] Command: if test ! -d /var/www/my-application/repo; then echo "Directory does not exist '/var/www/my-application/repo'" 1>&2; false; fi
                    -DEBUG [39a7244f] Finished in 0.455 seconds command successful.
                    - INFO [8665f0f1] Running /usr/bin/env git clone --branch master --depth 1 --recursive --no-hardlinks /var/www/my-application/repo /var/www/my-application/releases/20130625064744 on example.com
                    -DEBUG [8665f0f1] Command: cd /var/www/my-application/repo && ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/git-ssh.sh /usr/bin/env git clone --branch master --depth 1 --recursive --no-hardlinks /var/www/my-application/repo /var/www/my-application/releases/20130625064744 )
                    -DEBUG [8665f0f1]     warning: --depth is ignored in local clones; use file:// instead.
                    -DEBUG [8665f0f1]     Cloning into '/var/www/my-application/releases/20130625064744'...
                    -DEBUG [8665f0f1]     done.
                    - INFO [8665f0f1] Finished in 0.141 seconds command successful.
                    - INFO [bfd2d6bd] Running /usr/bin/env rm -rf /var/www/my-application/current on example.com
                    -DEBUG [bfd2d6bd] Command: /usr/bin/env rm -rf /var/www/my-application/current
                    - INFO [bfd2d6bd] Finished in 0.474 seconds command successful.
                    - INFO [54ea9e57] Running /usr/bin/env ln -s /var/www/my-application/releases/20130625064744 /var/www/my-application/current on example.com
                    -DEBUG [54ea9e57] Command: /usr/bin/env ln -s /var/www/my-application/releases/20130625064744 /var/www/my-application/current
                    - INFO [54ea9e57] Finished in 0.054 seconds command successful.
                    -DEBUG [b5af33fb] Running /usr/bin/env ls -xt /var/www/my-application/releases on example.com
                    -DEBUG [b5af33fb] Command: /usr/bin/env ls -xt /var/www/my-application/releases
                    -DEBUG [b5af33fb]     20130625064744
                    -DEBUG [b5af33fb] Finished in 0.445 seconds command successful.
                    -DEBUG [10b6e05d] Running /usr/bin/env if test ! -d /var/www/my-application/releases; then echo "Directory does not exist '/var/www/my-application/releases'" 1>&2; false; fi on example.com
                    -DEBUG [10b6e05d] Command: if test ! -d /var/www/my-application/releases; then echo "Directory does not exist '/var/www/my-application/releases'" 1>&2; false; fi
                    -DEBUG [10b6e05d] Finished in 0.452 seconds command successful.
                    - INFO [dd6ef5b4] Running /usr/bin/env echo "Branch master deployed as release 20130625064744 by leehambley; " >> /var/www/my-application/revisions.log on example.com
                    -DEBUG [dd6ef5b4] Command: echo "Branch master deployed as release 20130625064744 by leehambley; " >> /var/www/my-application/revisions.log
                    - INFO [dd6ef5b4] Finished in 0.046 seconds command successful.
                    -
                    -
                    #### What else is in the box? diff --git a/images/airbrussh-screenshot.png b/images/airbrussh-screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..f2fd7d09510fb0c05147f895f807cfc89231ae8f GIT binary patch literal 183932 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 <Q?AHS~53Pp%YPIjg!RPMSsjfs$*0;NlN&-Dd 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≷__%4t*<1?bi5}C#}}G#nY8; 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 VjQHjCAB@j~dk^n^x&8Fz{|8mS1gii5 literal 0 HcmV?d00001 From 3a15754e1265d67798662c9ccb27abb93739c2e8 Mon Sep 17 00:00:00 2001 From: Lee Hambley Date: Mon, 25 Apr 2016 09:12:25 +0200 Subject: [PATCH 245/256] Set a fair presedence in nav sidebar --- _includes/navigation.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index a5dad5db..62a13de3 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -1,8 +1,4 @@
                      -
                      Hosted Capistrano
                      -
                    • Try The New Cloud Capistrano
                    • -
                    • Learn more
                    • -
                    • Search
                      @@ -11,6 +7,11 @@
                    • +
                      Hosted Capistrano
                      +
                    • Try The New Cloud Capistrano
                    • +
                    • Learn more
                    • +
                    • +
                      Overview
                    • What is Capistrano?
                    • From 5fbe1b13d619c4f55d9a18996a574819820aa640 Mon Sep 17 00:00:00 2001 From: RKushnir Date: Tue, 17 May 2016 14:47:18 +0200 Subject: [PATCH 246/256] Fix misleading code example You are not allowed to use a lambda for `:application` value, because the `:application` validator expects a string only. See https://github.com/capistrano/capistrano/blob/848301718570b168ef491974e3ba5b5055d63648/lib/capistrano/defaults.rb#L2 --- documentation/getting-started/configuration/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 1ecab1c4..3b306431 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -20,7 +20,7 @@ Each variable can be set to a specific value: set :application, 'MyLittleApplication' # use a lambda to delay evaluation -set :application, -> { "SomeThing_#{fetch :other_config}" } +set :special_thing, -> { "SomeThing_#{fetch :other_config}" } ``` A value can be retrieved from the configuration at any time: From 56f6ec74e401c8ee703d3c78a538cc2916dfce1d Mon Sep 17 00:00:00 2001 From: Aidi Stan Date: Wed, 18 May 2016 05:19:23 -0500 Subject: [PATCH 247/256] Update third-party-plugins --- documentation/third-party-plugins/index.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/third-party-plugins/index.markdown b/documentation/third-party-plugins/index.markdown index 21b5ab06..82c0defc 100644 --- a/documentation/third-party-plugins/index.markdown +++ b/documentation/third-party-plugins/index.markdown @@ -40,3 +40,4 @@ This list is neither complete nor audited in any way.
                      +
                      From b302c1a131f2c7acf5e28d5fa644fc59f2d1893e Mon Sep 17 00:00:00 2001 From: Alex Kitchens Date: Mon, 23 May 2016 11:30:06 -0500 Subject: [PATCH 248/256] Fix links in Navigation & in Installation page --- _includes/navigation.html | 6 +++--- documentation/getting-started/installation/index.markdown | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index 62a13de3..32b215ae 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -43,9 +43,9 @@
                    • Role Filtering
                    • Overriding Capistrano Tasks
                    • Remote File Task
                    • -
                    • Remote Commands with SSHKit
                    • -
                    • Preventing file deployment with gitattributes
                    • -
                    • Validation of variables
                    • +
                    • Remote Commands with SSHKit
                    • +
                    • Preventing file deployment with gitattributes
                    • +
                    • Validation of variables
                    • Plugins
                      diff --git a/documentation/getting-started/installation/index.markdown b/documentation/getting-started/installation/index.markdown index 201a0852..0847c7b8 100644 --- a/documentation/getting-started/installation/index.markdown +++ b/documentation/getting-started/installation/index.markdown @@ -99,7 +99,6 @@ install `2.15.4`, and any other point-release in the `2.15.x` family without the risk of accidentally upgrading to `v3`. --- [rubygems]: http://rubygems.org/ [rubygems-pessimistic-operator]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint [capistrano-rails-asset-pipeline-readme]: https://github.com/capistrano/rails/blob/master/README.md From a6a73648ad4bbcbce39d42cbfc6a00577c86b4c2 Mon Sep 17 00:00:00 2001 From: Alex Kitchens Date: Tue, 24 May 2016 08:15:36 -0500 Subject: [PATCH 249/256] Add minor changes on the Harrow page --- documentation/harrow/index.markdown | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/documentation/harrow/index.markdown b/documentation/harrow/index.markdown index 2e547a9f..a73d6f2c 100644 --- a/documentation/harrow/index.markdown +++ b/documentation/harrow/index.markdown @@ -14,36 +14,36 @@ Although Harrow is designed to work well for Capistrano-style use-cases, it is by no means limited to only being used for Capistrano, or even for deployment. Some of the features which make Harrow ideal for automating tools such as -Capistrano; +Capistrano: * A discrete concept of scripts and environments, allowing reuse of scripts in - different settings using different configurations. + different settings using different configurations * A pure JSON-HAL API allowing integrations and tools * Powerful triggers and notifications allowing the construction of pipelines starting with git changes Harrow, much like Capistrano can also be used to: -* To automate common tasks in software teams. -* To drive infrastructure provisioning tools such as *chef-solo*, *Ansible* or similar. +* To automate common tasks in software teams +* To drive infrastructure provisioning tools such as *chef-solo*, *Ansible* or similar -Again, like Capistrano; Harrow is also *very* scriptable, and can be integrated +Again, like Capistrano, Harrow is also *very* scriptable, and can be integrated with any other software to form part of a larger tool. #### How To Use Harrow -1. Sign up for an account at +1. Sign up for a Harrow [account](https://www.app.harrow.io/#/a/signin) 2. Connect your Git repository using our setup wizard 3. Choose "Capistrano" as the project template #### What does it cost, and how does that affect Capistrano -Harrow has very reasonable pricing (), for -comparison with other continuous integration tools we have customers who have +Harrow has very reasonable [pricing](https://harrow.io/pricing/). As a +comparison with other continuous integration tools, some of our customers have cut their monthly outgoing by a factor of 5 or more. -For individual users it's free to use for ever. To work with collaborators in -your projects paid plans start at just $29/mo. +For individual users, it's free to use forever. To work with collaborators in +your projects, paid plans start at just $29/mo. Capistrano is unaffected by Harrow. Capistrano will remain liberally licensed (currently MIT) and will include discrete hooks offering Harrow to users From a69617a90827977ffc5e61bcd22b447c40bea733 Mon Sep 17 00:00:00 2001 From: Yury Lebedev Date: Mon, 20 Jun 2016 17:23:54 +0200 Subject: [PATCH 250/256] Add information about deprecating `remote_file` (#193) --- documentation/advanced-features/remote-file/index.markdown | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/advanced-features/remote-file/index.markdown b/documentation/advanced-features/remote-file/index.markdown index cab8b16e..11f484ac 100644 --- a/documentation/advanced-features/remote-file/index.markdown +++ b/documentation/advanced-features/remote-file/index.markdown @@ -3,6 +3,8 @@ title: Remote file task layout: default --- +**Warning: `remote_file` is deprecated and will be removed in Capistrano 3.7.0** + The `remote_file` task is allowing the existence of a remote file to be set as a prerequisite. These tasks can in turn depend on local files if required. In this implementation, the fact that we're dealing with a file in the shared path is assumed. As an example, this task can be used to ensure that files to be linked exist From d7c2a11d3b3137601a4447c80a3c172ef7dc042d Mon Sep 17 00:00:00 2001 From: Paulo Leonardo Vieira Rodrigues Date: Mon, 20 Jun 2016 17:24:09 -0300 Subject: [PATCH 251/256] Add Windows ssh-gen key instructions for at Authentication & Authorisation section (#194) --- .../index.markdown | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/documentation/getting-started/authentication-and-authorisation/index.markdown index 5b673ee9..505c9031 100644 --- a/documentation/getting-started/authentication-and-authorisation/index.markdown +++ b/documentation/getting-started/authentication-and-authorisation/index.markdown @@ -39,21 +39,27 @@ There are two places that we need automated, promptless authentication: #### 1.1 SSH keys from workstation to servers -**Note:** If you are on Windows, all bets are off. I'd love it if someone -could contribute a Windows guide to this, so we can include it here. - An SSH key is a mechanism that allows a *public* half one key to be placed on a server, when we want to authenticate with that server, our SSH client uses the **private** part of that key to negotiate with the server, if the keys are correct, we are allowed to login. -Then we need to create the key. +**Note:** If you are on Windows, you can use Git for Windows to generate ssh keys. To do this, follow this steps: + + 1. Install [Git for Windows](https://git-scm.com/download/win). + 2. Open "Git Bash" and follow next instructions always inside Git Bash prompt. + 3. Activate ssh-agent: ```$ eval "$(ssh-agent -s)" ``` + +**Note:** If you want to use [Putty tool](http://www.putty.org/) to connect to remote server (from Windows) with ssh keys, then you need to generate ppk file, through puttygen tool. + **Hint:** If you have more than one developer in your team, they should all add their public key to the `deploy` user's `authorized_keys` file, that way if someone quits or gets fired, you can remove their key from that file, and the rest of you can keep on shipping! +Then we need to create the key. + ```bash me@localhost $ ssh-keygen -t rsa -C 'me@my_email_address.com' ``` From c47431fb4d81ebe308d7a83e109f5c0b52b5ae2e Mon Sep 17 00:00:00 2001 From: lanrion Date: Wed, 27 Jul 2016 08:06:21 +0800 Subject: [PATCH 252/256] Add documentation for deploy:rollback specify directory name for rollback (#195) --- .../getting-started/rollbacks/index.markdown | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/documentation/getting-started/rollbacks/index.markdown b/documentation/getting-started/rollbacks/index.markdown index f6dc5006..780111ef 100644 --- a/documentation/getting-started/rollbacks/index.markdown +++ b/documentation/getting-started/rollbacks/index.markdown @@ -13,17 +13,17 @@ If the error occurs during a deployment task which is prior to the final cutover Per http://capistranorb.com/documentation/getting-started/flow/, the standard deployment and rollback processes are nearly identical. The difference is that in a deploy, the `deploy:updating` and `deploy:updated` tasks are executed, while in a rollback, the `deploy:reverting` and `deploy:reverted` (a hook task) tasks are run. Also, instead of `deploy:finishing`, `deploy:finishing_rollback` is run, as cleanup can sometimes be different. -## `deploy:reverting` +### `deploy:reverting` This starts by setting the release_path to the last known good release path. It does this by obtaining a list of folders in the releases folder and if there are at least two, sets the second to last release as the release_path. It also sets the `rollback_timestamp` to this same release which it uses for the log entry. Once this has been set, the remaining standard deployment tasks flip the symlink accordingly. -## `deploy:finishing_rollback` +### `deploy:finishing_rollback` To finish the rollback, Capistrano creates a tarball of the failed release in the deploy path, and then deletes the release folder. -## `deploy:failed` +### `deploy:failed` In a situation where `cap [stage] deploy` fails, the `deploy:failed` hook is invoked. You can add custom rollback tasks to this hook: @@ -34,3 +34,9 @@ end ``` This is different from a specifically invoked rollback, and is application specific. *For reasons stated above, it can be dangerous to use this hook without careful testing.* + +### `deploy:rollback ROLLBACK_RELEASE=release` + +Rollback to a specific release using the `ROLLBACK_RELEASE` environment variable. + +e.g. `cap staging deploy:rollback ROLLBACK_RELEASE=20160614133327` From 581e4e165aae480f9905f49b7c57be12bc9a88fa Mon Sep 17 00:00:00 2001 From: Keenan Thompson Date: Wed, 27 Jul 2016 16:45:36 -0500 Subject: [PATCH 253/256] Fix invalid characters in application name example --- .../getting-started/preparing-your-application/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index 20901e32..e1578c11 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -156,7 +156,7 @@ self-documenting, commented-out configuration options, feel free to play with them a little: ```ruby - set :application, 'my app name' + set :application, 'my_app_name' set :repo_url, 'git@example.com:me/my_repo.git' ask :branch, proc { `git rev-parse --abbrev-ref HEAD`.chomp } ``` From 7d4ff971f5ab6d3006f91285b6b7350cd3810700 Mon Sep 17 00:00:00 2001 From: Alex Kitchens Date: Thu, 28 Jul 2016 09:39:11 -0500 Subject: [PATCH 254/256] Update 'Preparing Your Application' for reading ease. --- .../preparing-your-application/index.markdown | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/documentation/getting-started/preparing-your-application/index.markdown index e1578c11..652f77cd 100644 --- a/documentation/getting-started/preparing-your-application/index.markdown +++ b/documentation/getting-started/preparing-your-application/index.markdown @@ -26,8 +26,8 @@ to erase them from the repository history for all time. Ideally one should remove `config/database.yml` to something like -`config/database.yml.example`, you and your team should copy the example file -into place on their development machines, under Capistrano this leaves the +`config/database.yml.example`. You and your team should copy the example file +into place on their development machines, under Capistrano. This leaves the `database.yml` filename unused so that we can symlink the production database configuration into place at deploy time. @@ -77,13 +77,13 @@ Capistrano breaks down common tasks into a notion of *roles*, that is, taking a typical Rails application that we have roughly speaking three roles, `web`, `app`, and `db`. -It can be confusing, as the boundary of web and app servers is a bit blurry if -using [Passenger]() with Apache, which in effect embeds your app server in the -web server (embeds Passenger in the Apache process itself), confusingly +The three roles can be confusing, as the boundary of web and app servers is a bit blurry if, for example, +using [Passenger](https://www.phusionpassenger.com/) with Apache, which in effect embeds your app server in the +web server (embeds Passenger in the Apache process itself). Confusingly, Passenger can also be used in modes where this isn't true, so we'll ignore -that for the time being, and if you know the difference (i.e you are using +that for the time being. If you know the difference (i.e you are using nginx as your web server, and puma/unicorn, or similar for your app server, -that should be fine) we can assume that they're the same, which is pretty +that should be fine), then we can assume that they're the same, which is pretty common. The example file generated will look something like this: @@ -123,7 +123,7 @@ etc.) and also arbitrary custom properties. They are there in case people want server list more comprehensively from something like the *EC2* command line tools, and want to use the extended properties for something that makes sense in their environment. -The following shows defining two servers, one where we set the +The following shows defining two servers: one where we set the username, and another where we set the port. These host strings are parsed and expanded out in to the equivalent of the server line after the comment: @@ -141,8 +141,8 @@ properties will be merged. See the Properties Documentation for details
                      If you define servers with either the simple or the extended -syntax and explicitly specify a user or a port number the last definition will win. This -is identical behaviour to scalar custom properties. In older versions of Capistrano +syntax and explicitly specify a user or a port number, the last definition will win. This +is identical behaviour to scalar custom properties. In older versions of Capistrano, multiple servers were created and the merging was ill-defined.
                      ### 5. Set the shared information in `deploy.rb`. @@ -164,13 +164,13 @@ them a little: Here we'd set the name of the application, ideally in a way that's safe for filenames on your target operating system. -Second we set the repository URL, this *MUST* be somewhere that the server we +Second we set the repository URL, and this *MUST* be somewhere that the server we are deploying to can reach. -Here's how this might look in a typical example, note that we'll cover -authentication in the next chapter, for now we'll assume this repository is -open source, we'll take an example application from the [Rails Examples and -Tutorials](http://railsapps.github.io/) site; there we'll find maintained a +Here's how this might look in a typical example: note that we'll cover +authentication in the next chapter, but for now we'll assume this repository is +open source, taking an example application from the [Rails Examples and +Tutorials](http://railsapps.github.io/) site. There we'll find maintained a handful of typical Rails apps with typical dependencies. The Rails application they host, which uses Devise (for authentication) and @@ -184,7 +184,7 @@ forked to the Capistrano repository, but you can find the (unchanged) original set :branch, 'master' ``` -I've simplified the `:branch` variable to simply be a `set` variable, not a +I've simplified the `:branch` variable to simply be a `set` variable, and not a question prompt, as this repository only has a master branch. ## Roundup From 75d39184b29dfe57b28a6ef41c7378da2f728701 Mon Sep 17 00:00:00 2001 From: Thomas Millward Wright Date: Mon, 22 Aug 2016 12:39:48 +0100 Subject: [PATCH 255/256] swap requires in flow docs to ensure parity with requires in capistrano/rails plugin, see: https://github.com/capistrano/rails/issues/180 --- documentation/getting-started/flow/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/getting-started/flow/index.markdown b/documentation/getting-started/flow/index.markdown index bc1e2dfe..6748d670 100644 --- a/documentation/getting-started/flow/index.markdown +++ b/documentation/getting-started/flow/index.markdown @@ -53,8 +53,8 @@ Assume you require the following files in `Capfile`, require 'capistrano/setup' require 'capistrano/deploy' require 'capistrano/bundler' -require 'capistrano/rails/migrations' require 'capistrano/rails/assets' +require 'capistrano/rails/migrations' ``` When you run `cap production deploy`, it runs these tasks: From 9d62e3d7b646a9b5474f69e387ac45095269b18f Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Tue, 23 Aug 2016 18:04:57 -0700 Subject: [PATCH 256/256] Move gh-pages site to the docs/ folder --- CNAME => docs/CNAME | 0 Gemfile => docs/Gemfile | 0 Gemfile.lock => docs/Gemfile.lock | 0 README.md => docs/README.md | 0 _config.yml => docs/_config.yml | 0 {_includes => docs/_includes}/carbon.html | 0 {_includes => docs/_includes}/footer.html | 0 .../_includes}/google_tag_manager.html | 0 {_includes => docs/_includes}/header.html | 0 {_includes => docs/_includes}/metrics.html | 0 {_includes => docs/_includes}/navigation.html | 0 {_layouts => docs/_layouts}/default.html | 0 {_layouts => docs/_layouts}/post.html | 0 .../2013-06-01-release-announcement.markdown | 0 {css => docs/css}/capistrano.css | 0 {css => docs/css}/dreamweaver.css | 0 {css => docs/css}/foundation.css | 0 {css => docs/css}/foundation.min.css | 0 {css => docs/css}/github.css | 0 {css => docs/css}/normalize.css | 0 {css => docs/css}/okaidia.css | 0 {css => docs/css}/prism.css | 0 {css => docs/css}/social_foundicons.css | 0 {css => docs/css}/social_foundicons_ie7.css | 0 {css => docs/css}/syntax.css | 0 .../advanced-features/console/index.markdown | 0 .../filtering/index.markdown | 0 .../host-filtering/index.markdown | 0 .../advanced-features/ignoring/index.markdown | 0 .../index.markdown | 0 .../properties/index.markdown | 0 .../property-filtering/index.markdown | 0 .../advanced-features/ptys/index.markdown | 0 .../remote-file/index.markdown | 0 .../role-filtering/index.markdown | 0 .../advanced-features/ssh-kit/index.markdown | 0 .../validation-of-variables/index.markdown | 0 .../index.markdown | 0 .../index.markdown | 0 .../index.markdown | 0 .../index.markdown | 0 .../index.markdown | 0 .../index.markdown | 0 .../before-after/index.markdown | 0 .../getting-started/cold-start/index.markdown | 0 .../configuration/index.markdown | 0 .../getting-started/flow/index.markdown | 0 .../installation/index.markdown | 0 .../local-tasks/index.markdown | 0 .../preparing-your-application/index.markdown | 0 .../getting-started/rollbacks/index.markdown | 0 .../getting-started/structure/index.markdown | 0 .../getting-started/tasks/index.markdown | 0 .../getting-started/user-input/index.markdown | 0 .../documentation}/harrow/index.markdown | 0 .../what-is-capistrano/index.markdown | 0 .../third-party-plugins/index.markdown | 0 .../documentation}/upgrading/index.markdown | 0 favicon.ico => docs/favicon.ico | Bin {fonts => docs/fonts}/social_foundicons.eot | Bin {fonts => docs/fonts}/social_foundicons.svg | 0 {fonts => docs/fonts}/social_foundicons.ttf | Bin {fonts => docs/fonts}/social_foundicons.woff | Bin {images => docs/images}/BashStartupFiles1.png | Bin {images => docs/images}/CapistranoAvatar.png | Bin {images => docs/images}/CapistranoGraphic.png | Bin .../images}/CapistranoGraphicWireframe.png | Bin {images => docs/images}/CapistranoLogo.png | Bin .../images}/airbrussh-screenshot.png | Bin ...logo-harrow-logo-c-primary-darker-w640.png | Bin .../images}/git-check-example-screenshot.png | Bin .../github-personal-api-token-page.png | Bin ...uccessful-git-check-example-screenshot.png | Bin index.markdown => docs/index.markdown | 0 {js => docs/js}/foundation.min.js | 0 .../js}/foundation/foundation.alerts.js | 0 .../js}/foundation/foundation.clearing.js | 0 .../js}/foundation/foundation.cookie.js | 0 .../js}/foundation/foundation.dropdown.js | 0 .../js}/foundation/foundation.forms.js | 0 .../js}/foundation/foundation.interchange.js | 0 .../js}/foundation/foundation.joyride.js | 0 {js => docs/js}/foundation/foundation.js | 0 .../js}/foundation/foundation.magellan.js | 0 .../js}/foundation/foundation.orbit.js | 0 .../js}/foundation/foundation.placeholder.js | 0 .../js}/foundation/foundation.reveal.js | 0 .../js}/foundation/foundation.section.js | 0 .../js}/foundation/foundation.tooltips.js | 0 .../js}/foundation/foundation.topbar.js | 0 {js => docs/js}/jquery-1.7.min.js | 0 {js => docs/js}/jquery.cookie.js | 0 .../js}/jquery.githubRepoWidget.min.js | 0 {js => docs/js}/prism-ruby-language.js | 0 {js => docs/js}/prism.js | 0 {js => docs/js}/prism.ruby.js | 0 {js => docs/js}/rainbow-custom.min.js | 0 fonts/.DS_Store | Bin 6148 -> 0 bytes js/vendor/custom.modernizr.js | 4 - js/vendor/jquery.js | 9807 ----------------- js/vendor/zepto.js | 2000 ---- 101 files changed, 11811 deletions(-) rename CNAME => docs/CNAME (100%) rename Gemfile => docs/Gemfile (100%) rename Gemfile.lock => docs/Gemfile.lock (100%) rename README.md => docs/README.md (100%) rename _config.yml => docs/_config.yml (100%) rename {_includes => docs/_includes}/carbon.html (100%) rename {_includes => docs/_includes}/footer.html (100%) rename {_includes => docs/_includes}/google_tag_manager.html (100%) rename {_includes => docs/_includes}/header.html (100%) rename {_includes => docs/_includes}/metrics.html (100%) rename {_includes => docs/_includes}/navigation.html (100%) rename {_layouts => docs/_layouts}/default.html (100%) rename {_layouts => docs/_layouts}/post.html (100%) rename {_posts => docs/_posts}/2013-06-01-release-announcement.markdown (100%) rename {css => docs/css}/capistrano.css (100%) rename {css => docs/css}/dreamweaver.css (100%) rename {css => docs/css}/foundation.css (100%) rename {css => docs/css}/foundation.min.css (100%) rename {css => docs/css}/github.css (100%) rename {css => docs/css}/normalize.css (100%) rename {css => docs/css}/okaidia.css (100%) rename {css => docs/css}/prism.css (100%) rename {css => docs/css}/social_foundicons.css (100%) rename {css => docs/css}/social_foundicons_ie7.css (100%) rename {css => docs/css}/syntax.css (100%) rename {documentation => docs/documentation}/advanced-features/console/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/filtering/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/host-filtering/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/ignoring/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/overriding-capistrano-tasks/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/properties/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/property-filtering/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/ptys/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/remote-file/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/role-filtering/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/ssh-kit/index.markdown (100%) rename {documentation => docs/documentation}/advanced-features/validation-of-variables/index.markdown (100%) rename {documentation => docs/documentation}/faq/how-can-i-access-stage-configuration-variables/index.markdown (100%) rename {documentation => docs/documentation}/faq/how-can-i-check-for-existing-remote-file/index.markdown (100%) rename {documentation => docs/documentation}/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown (100%) rename {documentation => docs/documentation}/faq/how-can-i-set-capistrano-configuration-paths/index.markdown (100%) rename {documentation => docs/documentation}/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/authentication-and-authorisation/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/before-after/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/cold-start/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/configuration/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/flow/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/installation/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/local-tasks/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/preparing-your-application/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/rollbacks/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/structure/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/tasks/index.markdown (100%) rename {documentation => docs/documentation}/getting-started/user-input/index.markdown (100%) rename {documentation => docs/documentation}/harrow/index.markdown (100%) rename {documentation => docs/documentation}/overview/what-is-capistrano/index.markdown (100%) rename {documentation => docs/documentation}/third-party-plugins/index.markdown (100%) rename {documentation => docs/documentation}/upgrading/index.markdown (100%) rename favicon.ico => docs/favicon.ico (100%) rename {fonts => docs/fonts}/social_foundicons.eot (100%) rename {fonts => docs/fonts}/social_foundicons.svg (100%) rename {fonts => docs/fonts}/social_foundicons.ttf (100%) rename {fonts => docs/fonts}/social_foundicons.woff (100%) rename {images => docs/images}/BashStartupFiles1.png (100%) rename {images => docs/images}/CapistranoAvatar.png (100%) rename {images => docs/images}/CapistranoGraphic.png (100%) rename {images => docs/images}/CapistranoGraphicWireframe.png (100%) rename {images => docs/images}/CapistranoLogo.png (100%) rename {images => docs/images}/airbrussh-screenshot.png (100%) rename {images => docs/images}/capistrano-logo-harrow-logo-c-primary-darker-w640.png (100%) rename {images => docs/images}/git-check-example-screenshot.png (100%) rename {images => docs/images}/github-personal-api-token-page.png (100%) rename {images => docs/images}/successful-git-check-example-screenshot.png (100%) rename index.markdown => docs/index.markdown (100%) rename {js => docs/js}/foundation.min.js (100%) rename {js => docs/js}/foundation/foundation.alerts.js (100%) rename {js => docs/js}/foundation/foundation.clearing.js (100%) rename {js => docs/js}/foundation/foundation.cookie.js (100%) rename {js => docs/js}/foundation/foundation.dropdown.js (100%) rename {js => docs/js}/foundation/foundation.forms.js (100%) rename {js => docs/js}/foundation/foundation.interchange.js (100%) rename {js => docs/js}/foundation/foundation.joyride.js (100%) rename {js => docs/js}/foundation/foundation.js (100%) rename {js => docs/js}/foundation/foundation.magellan.js (100%) rename {js => docs/js}/foundation/foundation.orbit.js (100%) rename {js => docs/js}/foundation/foundation.placeholder.js (100%) rename {js => docs/js}/foundation/foundation.reveal.js (100%) rename {js => docs/js}/foundation/foundation.section.js (100%) rename {js => docs/js}/foundation/foundation.tooltips.js (100%) rename {js => docs/js}/foundation/foundation.topbar.js (100%) rename {js => docs/js}/jquery-1.7.min.js (100%) rename {js => docs/js}/jquery.cookie.js (100%) rename {js => docs/js}/jquery.githubRepoWidget.min.js (100%) rename {js => docs/js}/prism-ruby-language.js (100%) rename {js => docs/js}/prism.js (100%) rename {js => docs/js}/prism.ruby.js (100%) rename {js => docs/js}/rainbow-custom.min.js (100%) delete mode 100644 fonts/.DS_Store delete mode 100644 js/vendor/custom.modernizr.js delete mode 100644 js/vendor/jquery.js delete mode 100644 js/vendor/zepto.js diff --git a/CNAME b/docs/CNAME similarity index 100% rename from CNAME rename to docs/CNAME diff --git a/Gemfile b/docs/Gemfile similarity index 100% rename from Gemfile rename to docs/Gemfile diff --git a/Gemfile.lock b/docs/Gemfile.lock similarity index 100% rename from Gemfile.lock rename to docs/Gemfile.lock diff --git a/README.md b/docs/README.md similarity index 100% rename from README.md rename to docs/README.md diff --git a/_config.yml b/docs/_config.yml similarity index 100% rename from _config.yml rename to docs/_config.yml diff --git a/_includes/carbon.html b/docs/_includes/carbon.html similarity index 100% rename from _includes/carbon.html rename to docs/_includes/carbon.html diff --git a/_includes/footer.html b/docs/_includes/footer.html similarity index 100% rename from _includes/footer.html rename to docs/_includes/footer.html diff --git a/_includes/google_tag_manager.html b/docs/_includes/google_tag_manager.html similarity index 100% rename from _includes/google_tag_manager.html rename to docs/_includes/google_tag_manager.html diff --git a/_includes/header.html b/docs/_includes/header.html similarity index 100% rename from _includes/header.html rename to docs/_includes/header.html diff --git a/_includes/metrics.html b/docs/_includes/metrics.html similarity index 100% rename from _includes/metrics.html rename to docs/_includes/metrics.html diff --git a/_includes/navigation.html b/docs/_includes/navigation.html similarity index 100% rename from _includes/navigation.html rename to docs/_includes/navigation.html diff --git a/_layouts/default.html b/docs/_layouts/default.html similarity index 100% rename from _layouts/default.html rename to docs/_layouts/default.html diff --git a/_layouts/post.html b/docs/_layouts/post.html similarity index 100% rename from _layouts/post.html rename to docs/_layouts/post.html diff --git a/_posts/2013-06-01-release-announcement.markdown b/docs/_posts/2013-06-01-release-announcement.markdown similarity index 100% rename from _posts/2013-06-01-release-announcement.markdown rename to docs/_posts/2013-06-01-release-announcement.markdown diff --git a/css/capistrano.css b/docs/css/capistrano.css similarity index 100% rename from css/capistrano.css rename to docs/css/capistrano.css diff --git a/css/dreamweaver.css b/docs/css/dreamweaver.css similarity index 100% rename from css/dreamweaver.css rename to docs/css/dreamweaver.css diff --git a/css/foundation.css b/docs/css/foundation.css similarity index 100% rename from css/foundation.css rename to docs/css/foundation.css diff --git a/css/foundation.min.css b/docs/css/foundation.min.css similarity index 100% rename from css/foundation.min.css rename to docs/css/foundation.min.css diff --git a/css/github.css b/docs/css/github.css similarity index 100% rename from css/github.css rename to docs/css/github.css diff --git a/css/normalize.css b/docs/css/normalize.css similarity index 100% rename from css/normalize.css rename to docs/css/normalize.css diff --git a/css/okaidia.css b/docs/css/okaidia.css similarity index 100% rename from css/okaidia.css rename to docs/css/okaidia.css diff --git a/css/prism.css b/docs/css/prism.css similarity index 100% rename from css/prism.css rename to docs/css/prism.css diff --git a/css/social_foundicons.css b/docs/css/social_foundicons.css similarity index 100% rename from css/social_foundicons.css rename to docs/css/social_foundicons.css diff --git a/css/social_foundicons_ie7.css b/docs/css/social_foundicons_ie7.css similarity index 100% rename from css/social_foundicons_ie7.css rename to docs/css/social_foundicons_ie7.css diff --git a/css/syntax.css b/docs/css/syntax.css similarity index 100% rename from css/syntax.css rename to docs/css/syntax.css diff --git a/documentation/advanced-features/console/index.markdown b/docs/documentation/advanced-features/console/index.markdown similarity index 100% rename from documentation/advanced-features/console/index.markdown rename to docs/documentation/advanced-features/console/index.markdown diff --git a/documentation/advanced-features/filtering/index.markdown b/docs/documentation/advanced-features/filtering/index.markdown similarity index 100% rename from documentation/advanced-features/filtering/index.markdown rename to docs/documentation/advanced-features/filtering/index.markdown diff --git a/documentation/advanced-features/host-filtering/index.markdown b/docs/documentation/advanced-features/host-filtering/index.markdown similarity index 100% rename from documentation/advanced-features/host-filtering/index.markdown rename to docs/documentation/advanced-features/host-filtering/index.markdown diff --git a/documentation/advanced-features/ignoring/index.markdown b/docs/documentation/advanced-features/ignoring/index.markdown similarity index 100% rename from documentation/advanced-features/ignoring/index.markdown rename to docs/documentation/advanced-features/ignoring/index.markdown diff --git a/documentation/advanced-features/overriding-capistrano-tasks/index.markdown b/docs/documentation/advanced-features/overriding-capistrano-tasks/index.markdown similarity index 100% rename from documentation/advanced-features/overriding-capistrano-tasks/index.markdown rename to docs/documentation/advanced-features/overriding-capistrano-tasks/index.markdown diff --git a/documentation/advanced-features/properties/index.markdown b/docs/documentation/advanced-features/properties/index.markdown similarity index 100% rename from documentation/advanced-features/properties/index.markdown rename to docs/documentation/advanced-features/properties/index.markdown diff --git a/documentation/advanced-features/property-filtering/index.markdown b/docs/documentation/advanced-features/property-filtering/index.markdown similarity index 100% rename from documentation/advanced-features/property-filtering/index.markdown rename to docs/documentation/advanced-features/property-filtering/index.markdown diff --git a/documentation/advanced-features/ptys/index.markdown b/docs/documentation/advanced-features/ptys/index.markdown similarity index 100% rename from documentation/advanced-features/ptys/index.markdown rename to docs/documentation/advanced-features/ptys/index.markdown diff --git a/documentation/advanced-features/remote-file/index.markdown b/docs/documentation/advanced-features/remote-file/index.markdown similarity index 100% rename from documentation/advanced-features/remote-file/index.markdown rename to docs/documentation/advanced-features/remote-file/index.markdown diff --git a/documentation/advanced-features/role-filtering/index.markdown b/docs/documentation/advanced-features/role-filtering/index.markdown similarity index 100% rename from documentation/advanced-features/role-filtering/index.markdown rename to docs/documentation/advanced-features/role-filtering/index.markdown diff --git a/documentation/advanced-features/ssh-kit/index.markdown b/docs/documentation/advanced-features/ssh-kit/index.markdown similarity index 100% rename from documentation/advanced-features/ssh-kit/index.markdown rename to docs/documentation/advanced-features/ssh-kit/index.markdown diff --git a/documentation/advanced-features/validation-of-variables/index.markdown b/docs/documentation/advanced-features/validation-of-variables/index.markdown similarity index 100% rename from documentation/advanced-features/validation-of-variables/index.markdown rename to docs/documentation/advanced-features/validation-of-variables/index.markdown diff --git a/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown b/docs/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown similarity index 100% rename from documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown rename to docs/documentation/faq/how-can-i-access-stage-configuration-variables/index.markdown diff --git a/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown b/docs/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown similarity index 100% rename from documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown rename to docs/documentation/faq/how-can-i-check-for-existing-remote-file/index.markdown diff --git a/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown b/docs/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown similarity index 100% rename from documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown rename to docs/documentation/faq/how-can-i-get-capistrano-to-prompt-for-a-password/index.markdown diff --git a/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown b/docs/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown similarity index 100% rename from documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown rename to docs/documentation/faq/how-can-i-set-capistrano-configuration-paths/index.markdown diff --git a/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown b/docs/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown similarity index 100% rename from documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown rename to docs/documentation/faq/why-does-something-work-in-my-ssh-session-but-not-in-capistrano/index.markdown diff --git a/documentation/getting-started/authentication-and-authorisation/index.markdown b/docs/documentation/getting-started/authentication-and-authorisation/index.markdown similarity index 100% rename from documentation/getting-started/authentication-and-authorisation/index.markdown rename to docs/documentation/getting-started/authentication-and-authorisation/index.markdown diff --git a/documentation/getting-started/before-after/index.markdown b/docs/documentation/getting-started/before-after/index.markdown similarity index 100% rename from documentation/getting-started/before-after/index.markdown rename to docs/documentation/getting-started/before-after/index.markdown diff --git a/documentation/getting-started/cold-start/index.markdown b/docs/documentation/getting-started/cold-start/index.markdown similarity index 100% rename from documentation/getting-started/cold-start/index.markdown rename to docs/documentation/getting-started/cold-start/index.markdown diff --git a/documentation/getting-started/configuration/index.markdown b/docs/documentation/getting-started/configuration/index.markdown similarity index 100% rename from documentation/getting-started/configuration/index.markdown rename to docs/documentation/getting-started/configuration/index.markdown diff --git a/documentation/getting-started/flow/index.markdown b/docs/documentation/getting-started/flow/index.markdown similarity index 100% rename from documentation/getting-started/flow/index.markdown rename to docs/documentation/getting-started/flow/index.markdown diff --git a/documentation/getting-started/installation/index.markdown b/docs/documentation/getting-started/installation/index.markdown similarity index 100% rename from documentation/getting-started/installation/index.markdown rename to docs/documentation/getting-started/installation/index.markdown diff --git a/documentation/getting-started/local-tasks/index.markdown b/docs/documentation/getting-started/local-tasks/index.markdown similarity index 100% rename from documentation/getting-started/local-tasks/index.markdown rename to docs/documentation/getting-started/local-tasks/index.markdown diff --git a/documentation/getting-started/preparing-your-application/index.markdown b/docs/documentation/getting-started/preparing-your-application/index.markdown similarity index 100% rename from documentation/getting-started/preparing-your-application/index.markdown rename to docs/documentation/getting-started/preparing-your-application/index.markdown diff --git a/documentation/getting-started/rollbacks/index.markdown b/docs/documentation/getting-started/rollbacks/index.markdown similarity index 100% rename from documentation/getting-started/rollbacks/index.markdown rename to docs/documentation/getting-started/rollbacks/index.markdown diff --git a/documentation/getting-started/structure/index.markdown b/docs/documentation/getting-started/structure/index.markdown similarity index 100% rename from documentation/getting-started/structure/index.markdown rename to docs/documentation/getting-started/structure/index.markdown diff --git a/documentation/getting-started/tasks/index.markdown b/docs/documentation/getting-started/tasks/index.markdown similarity index 100% rename from documentation/getting-started/tasks/index.markdown rename to docs/documentation/getting-started/tasks/index.markdown diff --git a/documentation/getting-started/user-input/index.markdown b/docs/documentation/getting-started/user-input/index.markdown similarity index 100% rename from documentation/getting-started/user-input/index.markdown rename to docs/documentation/getting-started/user-input/index.markdown diff --git a/documentation/harrow/index.markdown b/docs/documentation/harrow/index.markdown similarity index 100% rename from documentation/harrow/index.markdown rename to docs/documentation/harrow/index.markdown diff --git a/documentation/overview/what-is-capistrano/index.markdown b/docs/documentation/overview/what-is-capistrano/index.markdown similarity index 100% rename from documentation/overview/what-is-capistrano/index.markdown rename to docs/documentation/overview/what-is-capistrano/index.markdown diff --git a/documentation/third-party-plugins/index.markdown b/docs/documentation/third-party-plugins/index.markdown similarity index 100% rename from documentation/third-party-plugins/index.markdown rename to docs/documentation/third-party-plugins/index.markdown diff --git a/documentation/upgrading/index.markdown b/docs/documentation/upgrading/index.markdown similarity index 100% rename from documentation/upgrading/index.markdown rename to docs/documentation/upgrading/index.markdown diff --git a/favicon.ico b/docs/favicon.ico similarity index 100% rename from favicon.ico rename to docs/favicon.ico diff --git a/fonts/social_foundicons.eot b/docs/fonts/social_foundicons.eot similarity index 100% rename from fonts/social_foundicons.eot rename to docs/fonts/social_foundicons.eot diff --git a/fonts/social_foundicons.svg b/docs/fonts/social_foundicons.svg similarity index 100% rename from fonts/social_foundicons.svg rename to docs/fonts/social_foundicons.svg diff --git a/fonts/social_foundicons.ttf b/docs/fonts/social_foundicons.ttf similarity index 100% rename from fonts/social_foundicons.ttf rename to docs/fonts/social_foundicons.ttf diff --git a/fonts/social_foundicons.woff b/docs/fonts/social_foundicons.woff similarity index 100% rename from fonts/social_foundicons.woff rename to docs/fonts/social_foundicons.woff diff --git a/images/BashStartupFiles1.png b/docs/images/BashStartupFiles1.png similarity index 100% rename from images/BashStartupFiles1.png rename to docs/images/BashStartupFiles1.png diff --git a/images/CapistranoAvatar.png b/docs/images/CapistranoAvatar.png similarity index 100% rename from images/CapistranoAvatar.png rename to docs/images/CapistranoAvatar.png diff --git a/images/CapistranoGraphic.png b/docs/images/CapistranoGraphic.png similarity index 100% rename from images/CapistranoGraphic.png rename to docs/images/CapistranoGraphic.png diff --git a/images/CapistranoGraphicWireframe.png b/docs/images/CapistranoGraphicWireframe.png similarity index 100% rename from images/CapistranoGraphicWireframe.png rename to docs/images/CapistranoGraphicWireframe.png diff --git a/images/CapistranoLogo.png b/docs/images/CapistranoLogo.png similarity index 100% rename from images/CapistranoLogo.png rename to docs/images/CapistranoLogo.png diff --git a/images/airbrussh-screenshot.png b/docs/images/airbrussh-screenshot.png similarity index 100% rename from images/airbrussh-screenshot.png rename to docs/images/airbrussh-screenshot.png diff --git a/images/capistrano-logo-harrow-logo-c-primary-darker-w640.png b/docs/images/capistrano-logo-harrow-logo-c-primary-darker-w640.png similarity index 100% rename from images/capistrano-logo-harrow-logo-c-primary-darker-w640.png rename to docs/images/capistrano-logo-harrow-logo-c-primary-darker-w640.png diff --git a/images/git-check-example-screenshot.png b/docs/images/git-check-example-screenshot.png similarity index 100% rename from images/git-check-example-screenshot.png rename to docs/images/git-check-example-screenshot.png diff --git a/images/github-personal-api-token-page.png b/docs/images/github-personal-api-token-page.png similarity index 100% rename from images/github-personal-api-token-page.png rename to docs/images/github-personal-api-token-page.png diff --git a/images/successful-git-check-example-screenshot.png b/docs/images/successful-git-check-example-screenshot.png similarity index 100% rename from images/successful-git-check-example-screenshot.png rename to docs/images/successful-git-check-example-screenshot.png diff --git a/index.markdown b/docs/index.markdown similarity index 100% rename from index.markdown rename to docs/index.markdown diff --git a/js/foundation.min.js b/docs/js/foundation.min.js similarity index 100% rename from js/foundation.min.js rename to docs/js/foundation.min.js diff --git a/js/foundation/foundation.alerts.js b/docs/js/foundation/foundation.alerts.js similarity index 100% rename from js/foundation/foundation.alerts.js rename to docs/js/foundation/foundation.alerts.js diff --git a/js/foundation/foundation.clearing.js b/docs/js/foundation/foundation.clearing.js similarity index 100% rename from js/foundation/foundation.clearing.js rename to docs/js/foundation/foundation.clearing.js diff --git a/js/foundation/foundation.cookie.js b/docs/js/foundation/foundation.cookie.js similarity index 100% rename from js/foundation/foundation.cookie.js rename to docs/js/foundation/foundation.cookie.js diff --git a/js/foundation/foundation.dropdown.js b/docs/js/foundation/foundation.dropdown.js similarity index 100% rename from js/foundation/foundation.dropdown.js rename to docs/js/foundation/foundation.dropdown.js diff --git a/js/foundation/foundation.forms.js b/docs/js/foundation/foundation.forms.js similarity index 100% rename from js/foundation/foundation.forms.js rename to docs/js/foundation/foundation.forms.js diff --git a/js/foundation/foundation.interchange.js b/docs/js/foundation/foundation.interchange.js similarity index 100% rename from js/foundation/foundation.interchange.js rename to docs/js/foundation/foundation.interchange.js diff --git a/js/foundation/foundation.joyride.js b/docs/js/foundation/foundation.joyride.js similarity index 100% rename from js/foundation/foundation.joyride.js rename to docs/js/foundation/foundation.joyride.js diff --git a/js/foundation/foundation.js b/docs/js/foundation/foundation.js similarity index 100% rename from js/foundation/foundation.js rename to docs/js/foundation/foundation.js diff --git a/js/foundation/foundation.magellan.js b/docs/js/foundation/foundation.magellan.js similarity index 100% rename from js/foundation/foundation.magellan.js rename to docs/js/foundation/foundation.magellan.js diff --git a/js/foundation/foundation.orbit.js b/docs/js/foundation/foundation.orbit.js similarity index 100% rename from js/foundation/foundation.orbit.js rename to docs/js/foundation/foundation.orbit.js diff --git a/js/foundation/foundation.placeholder.js b/docs/js/foundation/foundation.placeholder.js similarity index 100% rename from js/foundation/foundation.placeholder.js rename to docs/js/foundation/foundation.placeholder.js diff --git a/js/foundation/foundation.reveal.js b/docs/js/foundation/foundation.reveal.js similarity index 100% rename from js/foundation/foundation.reveal.js rename to docs/js/foundation/foundation.reveal.js diff --git a/js/foundation/foundation.section.js b/docs/js/foundation/foundation.section.js similarity index 100% rename from js/foundation/foundation.section.js rename to docs/js/foundation/foundation.section.js diff --git a/js/foundation/foundation.tooltips.js b/docs/js/foundation/foundation.tooltips.js similarity index 100% rename from js/foundation/foundation.tooltips.js rename to docs/js/foundation/foundation.tooltips.js diff --git a/js/foundation/foundation.topbar.js b/docs/js/foundation/foundation.topbar.js similarity index 100% rename from js/foundation/foundation.topbar.js rename to docs/js/foundation/foundation.topbar.js diff --git a/js/jquery-1.7.min.js b/docs/js/jquery-1.7.min.js similarity index 100% rename from js/jquery-1.7.min.js rename to docs/js/jquery-1.7.min.js diff --git a/js/jquery.cookie.js b/docs/js/jquery.cookie.js similarity index 100% rename from js/jquery.cookie.js rename to docs/js/jquery.cookie.js diff --git a/js/jquery.githubRepoWidget.min.js b/docs/js/jquery.githubRepoWidget.min.js similarity index 100% rename from js/jquery.githubRepoWidget.min.js rename to docs/js/jquery.githubRepoWidget.min.js diff --git a/js/prism-ruby-language.js b/docs/js/prism-ruby-language.js similarity index 100% rename from js/prism-ruby-language.js rename to docs/js/prism-ruby-language.js diff --git a/js/prism.js b/docs/js/prism.js similarity index 100% rename from js/prism.js rename to docs/js/prism.js diff --git a/js/prism.ruby.js b/docs/js/prism.ruby.js similarity index 100% rename from js/prism.ruby.js rename to docs/js/prism.ruby.js diff --git a/js/rainbow-custom.min.js b/docs/js/rainbow-custom.min.js similarity index 100% rename from js/rainbow-custom.min.js rename to docs/js/rainbow-custom.min.js diff --git a/fonts/.DS_Store b/fonts/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0',a,""].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},v=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return u("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},w={}.hasOwnProperty,x;!A(w,"undefined")&&!A(w.call,"undefined")?x=function(a,b){return w.call(a,b)}:x=function(a,b){return b in a&&A(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=s.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(s.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(s.call(arguments)))};return e}),o.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:u(["@media (",m.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},o.svg=function(){return!!b.createElementNS&&!!b.createElementNS(n.svg,"svg").createSVGRect},o.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="",(a.firstChild&&a.firstChild.namespaceURI)==n.svg},o.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(l.call(b.createElementNS(n.svg,"clipPath")))};for(var D in o)x(o,D)&&(t=D.toLowerCase(),e[t]=o[D](),r.push((e[t]?"":"no-")+t));return e.addTest=function(a,b){if(typeof a=="object")for(var d in a)x(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},y(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=m,e.mq=v,e.testStyles=u,g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+r.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f type pairs - class2type = {}, - - // List of deleted data cache ids, so we can reuse them - core_deletedIds = [], - - core_version = "1.10.1", - - // Save a reference to some core methods - core_concat = core_deletedIds.concat, - core_push = core_deletedIds.push, - core_slice = core_deletedIds.slice, - core_indexOf = core_deletedIds.indexOf, - core_toString = class2type.toString, - core_hasOwn = class2type.hasOwnProperty, - core_trim = core_version.trim, - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Used for matching numbers - core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, - - // Used for splitting on whitespace - core_rnotwhite = /\S+/g, - - // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // 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-]*))$/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, - rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([\da-z])/gi, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }, - - // The ready event handler - completed = function( event ) { - - // 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(); - } - }, - // Clean-up method for dom ready events - detach = function() { - if ( document.addEventListener ) { - document.removeEventListener( "DOMContentLoaded", completed, false ); - window.removeEventListener( "load", completed, false ); - - } else { - document.detachEvent( "onreadystatechange", completed ); - window.detachEvent( "onload", completed ); - } - }; - -jQuery.fn = jQuery.prototype = { - // The current version of jQuery being used - jquery: core_version, - - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - 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 - 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 rootjQuery.ready( selector ); - } - - if ( selector.selector !== undefined ) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return core_slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - ret.context = this.context; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Add the callback - jQuery.ready.promise().done( fn ); - - return this; - }, - - slice: function() { - return this.pushStack( core_slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: core_push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -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; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // 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 ( length === i ) { - 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 - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), - - noConflict: function( deep ) { - if ( window.$ === jQuery ) { - window.$ = _$; - } - - if ( deep && window.jQuery === jQuery ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // 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"); - } - }, - - // 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 ) { - return !isNaN( parseFloat(obj) ) && isFinite( obj ); - }, - - type: function( obj ) { - if ( obj == null ) { - return String( obj ); - } - return typeof obj === "object" || typeof obj === "function" ? - class2type[ core_toString.call(obj) ] || "object" : - typeof obj; - }, - - 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 && - !core_hasOwn.call(obj, "constructor") && - !core_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 ( jQuery.support.ownLast ) { - for ( key in obj ) { - return core_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 || core_hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - var name; - for ( name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw new Error( msg ); - }, - - // data: string of html - // context (optional): If specified, the fragment will be created in this context, defaults to document - // keepScripts (optional): If true, will include scripts passed in the html string - parseHTML: function( data, context, keepScripts ) { - if ( !data || typeof data !== "string" ) { - return null; - } - if ( typeof context === "boolean" ) { - keepScripts = context; - context = false; - } - context = context || document; - - var parsed = rsingleTag.exec( data ), - scripts = !keepScripts && []; - - // Single tag - if ( parsed ) { - return [ context.createElement( parsed[1] ) ]; - } - - parsed = jQuery.buildFragment( [ data ], context, scripts ); - if ( scripts ) { - jQuery( scripts ).remove(); - } - return jQuery.merge( [], parsed.childNodes ); - }, - - parseJSON: function( data ) { - // Attempt to parse using the native JSON parser first - if ( window.JSON && window.JSON.parse ) { - return window.JSON.parse( data ); - } - - if ( data === null ) { - return data; - } - - if ( typeof data === "string" ) { - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - if ( data ) { - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test( data.replace( rvalidescape, "@" ) - .replace( rvalidtokens, "]" ) - .replace( rvalidbraces, "")) ) { - - return ( new Function( "return " + data ) )(); - } - } - } - - jQuery.error( "Invalid JSON: " + data ); - }, - - // Cross-browser xml parsing - parseXML: function( data ) { - var xml, tmp; - if ( !data || typeof data !== "string" ) { - return null; - } - try { - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - } catch( e ) { - xml = undefined; - } - if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; - }, - - noop: function() {}, - - // 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: core_trim && !core_trim.call("\uFEFF\xA0") ? - function( text ) { - return text == null ? - "" : - core_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 { - core_push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - var len; - - if ( arr ) { - if ( core_indexOf ) { - return core_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 l = second.length, - i = first.length, - j = 0; - - if ( typeof l === "number" ) { - for ( ; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var retVal, - ret = [], - i = 0, - length = elems.length; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // 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 - if ( isArray ) { - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - } - - // Flatten any nested arrays - return core_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 = core_slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( core_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; - }, - - // Multifunctional method to get and set values of a collection - // The value/s can optionally be executed if it's a function - 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; - }, - - now: function() { - return ( new Date() ).getTime(); - }, - - // A method for quickly swapping in/out CSS properties to get correct calculations. - // Note: this method belongs to the css module but it's needed here for the support module. - // If support gets modularized, this method should be moved back to the css module. - swap: function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; - } -}); - -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 ); -}; - -// 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 ( jQuery.isWindow( obj ) ) { - return false; - } - - if ( obj.nodeType === 1 && length ) { - return true; - } - - return type === "array" || type !== "function" && - ( length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj ); -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); -/*! - * Sizzle CSS Selector Engine v1.9.4-pre - * http://sizzlejs.com/ - * - * Copyright 2013 jQuery Foundation, Inc. and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2013-05-27 - */ -(function( window, undefined ) { - -var i, - support, - cachedruns, - Expr, - getText, - isXML, - compile, - outermostContext, - sortInput, - - // 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(), - hasDuplicate = false, - sortOrder = function() { 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 + "*" ), - - rsibling = new RegExp( 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" ) - }, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - 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 : - // BMP codepoint - high < 0 ? - 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 #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 ) && 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 ); -} - -/** - * For feature detection - * @param {Function} fn The function to test for native support - */ -function isNative( fn ) { - return rnative.test( fn + "" ); -} - -/** - * 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 if the test fails - * @param {Boolean} test The result of a test. If true, null will be set as the handler in leiu of the specified handler - */ -function addHandle( attrs, handler, test ) { - attrs = attrs.split("|"); - var current, - i = attrs.length, - setHandle = test ? null : handler; - - while ( i-- ) { - // Don't override a user's handler - if ( !(current = Expr.attrHandle[ attrs[i] ]) || current === handler ) { - Expr.attrHandle[ attrs[i] ] = setHandle; - } - } -} - -/** - * Fetches boolean attributes by node - * @param {Element} elem - * @param {String} name - */ -function boolHandler( elem, name ) { - // XML does not need to be checked as this will not be assigned for XML documents - var val = elem.getAttributeNode( name ); - return val && val.specified ? - val.value : - elem[ name ] === true ? name.toLowerCase() : null; -} - -/** - * Fetches attributes without interpolation - * http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx - * @param {Element} elem - * @param {String} name - */ -function interpolationHandler( elem, name ) { - // XML does not need to be checked as this will not be assigned for XML documents - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); -} - -/** - * Uses defaultValue to retrieve value in IE6/7 - * @param {Element} elem - * @param {String} name - */ -function valueHandler( elem ) { - // Ignore the value *property* on inputs by using defaultValue - // Fallback to Sizzle.attr by returning undefined where appropriate - // XML does not need to be checked as this will not be assigned for XML documents - if ( elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns Returns -1 if a precedes b, 1 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]); - } - } - }); - }); -} - -/** - * Detect xml - * @param {Element|Object} elem An element or a document - */ -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; -}; - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * 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 doc = node ? node.ownerDocument || node : preferredDoc, - parent = doc.parentWindow; - - // 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 - if ( parent && parent.frameElement ) { - parent.attachEvent( "onbeforeunload", function() { - setDocument(); - }); - } - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties (excepting IE8 booleans) - support.attributes = assert(function( div ) { - - // Support: IE<8 - // Prevent attribute/property "interpolation" - div.innerHTML = ""; - addHandle( "type|href|height|width", interpolationHandler, div.firstChild.getAttribute("href") === "#" ); - - // Support: IE<9 - // Use getAttributeNode to fetch booleans when getAttribute lies - addHandle( booleans, boolHandler, div.getAttribute("disabled") == null ); - - div.className = "i"; - return !div.getAttribute("className"); - }); - - // Support: IE<9 - // Retrieving value should defer to defaultValue - support.input = assert(function( div ) { - div.innerHTML = ""; - div.firstChild.setAttribute( "value", "" ); - return div.firstChild.getAttribute( "value" ) === ""; - }); - - // IE6/7 still return empty string for value, - // but are actually retrieving the property - addHandle( "value", valueHandler, support.attributes && support.input ); - - /* 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 = 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 = isNative(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 - // 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: Opera 10-12/IE8 - // ^= $= *= and empty values - // Should not select anything - // Support: Windows 8 Native Apps - // The type attribute is restricted during .innerHTML assignment - var input = doc.createElement("input"); - input.setAttribute( "type", "hidden" ); - div.appendChild( input ).setAttribute( "t", "" ); - - if ( div.querySelectorAll("[t^='']").length ) { - rbuggyQSA.push( "[*^$]=" + 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 = isNative( (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 - ---------------------------------------------------------------------- */ - - // Element contains another - // Purposefully does not implement inclusive descendent - // As in, an element does not contain itself - contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? - 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 - ---------------------------------------------------------------------- */ - - // 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( doc.createElement("div") ) & 1; - }); - - // Document order sorting - sortOrder = docElem.compareDocumentPosition ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b ); - - if ( compare ) { - // 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 || contains(preferredDoc, a) ) { - return -1; - } - if ( b === doc || contains(preferredDoc, b) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf.call( sortInput, a ) - indexOf.call( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } - - // Not directly comparable, sort on existence of method - return a.compareDocumentPosition ? -1 : 1; - } : - function( a, b ) { - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - - // Parentless nodes are either documents or disconnected - } else 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 ? - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - (val = elem.getAttributeNode(name)) && val.specified ? - val.value : - null : - val; -}; - -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 ); - } - } - - 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 - for ( ; (node = elem[i]); 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 (see #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 only affected by element nodes and content nodes(including text(3), cdata(4)), - // not comment, processing instructions, or others - // Thanks to Diego Perini for the nodeName shortcut - // Greater than "@" means alpha characters (specifically not starting with "#" or "?") - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { - 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; - // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) - // use getAttribute instead to test this case - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); - }, - - // 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; - }) - } -}; - -// 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 ); -} - -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 data, cache, outerCache, - dirkey = 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 ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { - if ( (data = cache[1]) === true || data === cachedruns ) { - return data === true; - } - } else { - cache = outerCache[ dir ] = [ dirkey ]; - cache[1] = matcher( elem, context, xml ) || cachedruns; - if ( cache[1] === true ) { - 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 ) { - // A counter to specify which element is currently being matched - var matcherCachedRuns = 0, - bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, expandContext ) { - var elem, j, matcher, - setMatched = [], - matchedCount = 0, - i = "0", - unmatched = seed && [], - outermost = expandContext != null, - contextBackup = outermostContext, - // We must always have either seed elements or context - elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); - - if ( outermost ) { - outermostContext = context !== document && context; - cachedruns = matcherCachedRuns; - } - - // Add elements passing elementMatchers directly to results - // Keep `i` a string if there are no elements so `matchedCount` will be "00" below - for ( ; (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; - cachedruns = ++matcherCachedRuns; - } - } - - // 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 ) && 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 ) - ); - return results; -} - -// Deprecated -Expr.pseudos["nth"] = Expr.pseudos["eq"]; - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -// One-time assignments - -// Sort stability -support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; - -// Initialize against the default document -setDocument(); - -// Support: Chrome<<14 -// Always assume duplicates if they aren't passed to the comparison function -[0, 0].sort( sortOrder ); -support.detectDuplicates = hasDuplicate; - -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; - - -})( window ); -// 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( core_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 ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - if ( list && ( !fired || stack ) ) { - 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 action = tuple[ 0 ], - 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[ action + "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 = core_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 ? core_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(); - } -}); -jQuery.support = (function( support ) { - - var all, a, input, select, fragment, opt, eventName, isSupported, i, - div = document.createElement("div"); - - // Setup - div.setAttribute( "className", "t" ); - div.innerHTML = "
            a"; - - // Finish early in limited (non-browser) environments - all = div.getElementsByTagName("*") || []; - a = div.getElementsByTagName("a")[ 0 ]; - if ( !a || !a.style || !all.length ) { - return support; - } - - // First batch of tests - select = document.createElement("select"); - opt = select.appendChild( document.createElement("option") ); - input = div.getElementsByTagName("input")[ 0 ]; - - a.style.cssText = "top:1px;float:left;opacity:.5"; - - // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) - support.getSetAttribute = div.className !== "t"; - - // 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; - - // Get the style information from getAttribute - // (IE uses .cssText instead) - support.style = /top/.test( a.getAttribute("style") ); - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - support.hrefNormalized = a.getAttribute("href") === "/a"; - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - support.opacity = /^0.5/.test( a.style.opacity ); - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - support.cssFloat = !!a.style.cssFloat; - - // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) - support.checkOn = !!input.value; - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - support.optSelected = opt.selected; - - // Tests for enctype support on a form (#6743) - support.enctype = !!document.createElement("form").enctype; - - // 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>"; - - // Will be defined later - support.inlineBlockNeedsLayout = false; - support.shrinkWrapBlocks = false; - support.pixelPosition = false; - support.deleteExpando = true; - support.noCloneEvent = true; - support.reliableMarginRight = true; - support.boxSizingReliable = true; - - // Make sure checked status is properly cloned - input.checked = true; - support.noCloneChecked = input.cloneNode( true ).checked; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as disabled) - select.disabled = true; - support.optDisabled = !opt.disabled; - - // Support: IE<9 - try { - delete div.test; - } catch( e ) { - support.deleteExpando = false; - } - - // Check if we can trust getAttribute("value") - input = document.createElement("input"); - input.setAttribute( "value", "" ); - support.input = input.getAttribute( "value" ) === ""; - - // Check if an input maintains its value after becoming a radio - input.value = "t"; - input.setAttribute( "type", "radio" ); - support.radioValue = input.value === "t"; - - // #11217 - WebKit loses check when the name is after the checked attribute - input.setAttribute( "checked", "t" ); - input.setAttribute( "name", "t" ); - - fragment = document.createDocumentFragment(); - fragment.appendChild( input ); - - // Check if a disconnected checkbox will retain its checked - // value of true after appended to the DOM (IE6/7) - support.appendChecked = input.checked; - - // WebKit doesn't clone checked state correctly in fragments - support.checkClone = fragment.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() - if ( div.attachEvent ) { - div.attachEvent( "onclick", function() { - support.noCloneEvent = false; - }); - - div.cloneNode( true ).click(); - } - - // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) - // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP) - for ( i in { submit: true, change: true, focusin: true }) { - div.setAttribute( eventName = "on" + i, "t" ); - - support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; - } - - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - // Support: IE<9 - // Iteration over object's inherited properties before its own. - for ( i in jQuery( support ) ) { - break; - } - support.ownLast = i !== "0"; - - // Run tests that need a body at doc ready - jQuery(function() { - var container, marginDiv, tds, - divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", - body = document.getElementsByTagName("body")[0]; - - if ( !body ) { - // Return for frameset docs that don't have a body - return; - } - - container = document.createElement("div"); - container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; - - body.appendChild( container ).appendChild( div ); - - // Support: IE8 - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - div.innerHTML = "
            t
            "; - tds = div.getElementsByTagName("td"); - tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; - isSupported = ( tds[ 0 ].offsetHeight === 0 ); - - tds[ 0 ].style.display = ""; - tds[ 1 ].style.display = "none"; - - // Support: IE8 - // Check if empty table cells still have offsetWidth/Height - support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); - - // Check box-sizing and margin behavior. - div.innerHTML = ""; - div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; - - // Workaround failing boxSizing test due to offsetWidth returning wrong value - // with some non-1 values of body zoom, ticket #13543 - jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() { - support.boxSizing = div.offsetWidth === 4; - }); - - // Use window.getComputedStyle because jsdom on node.js will break without it. - if ( window.getComputedStyle ) { - support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; - support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; - - // Check if div with explicit width and no margin-right incorrectly - // gets computed margin-right based on width of container. (#3333) - // Fails in WebKit before Feb 2011 nightlies - // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right - marginDiv = div.appendChild( document.createElement("div") ); - marginDiv.style.cssText = div.style.cssText = divReset; - marginDiv.style.marginRight = marginDiv.style.width = "0"; - div.style.width = "1px"; - - support.reliableMarginRight = - !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); - } - - if ( typeof div.style.zoom !== core_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.innerHTML = ""; - div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; - support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); - - // Support: IE6 - // Check if elements with layout shrink-wrap their children - div.style.display = "block"; - div.innerHTML = "
            "; - div.firstChild.style.width = "5px"; - support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - - if ( support.inlineBlockNeedsLayout ) { - // 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 = tds = marginDiv = null; - }); - - // Null elements to avoid leaks in IE - all = select = fragment = opt = a = input = null; - - return support; -})({}); - -var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, - rmultiDash = /([A-Z])/g; - -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 ] = core_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 ( jQuery.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 throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "applet": true, - "embed": true, - // Ban all objects except for Flash (which 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 ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - // Do not set data on non-element because it will not be cleared (#8335). - if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { - return false; - } - - var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; - - // nodes accept data unless otherwise specified; rejection can be conditional - return !noData || noData !== true && elem.getAttribute("classid") === noData; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var attrs, name, - data = null, - i = 0, - elem = this[0]; - - // 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" ) ) { - attrs = elem.attributes; - for ( ; i < attrs.length; 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 ) ) : null; - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -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; -} -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 ); - }); - }, - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = setTimeout( next, time ); - hooks.stop = function() { - clearTimeout( timeout ); - }; - }); - }, - 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 nodeHook, boolHook, - rclass = /[\t\r\n\f]/g, - rreturn = /\r/g, - rfocusable = /^(?:input|select|textarea|button|object)$/i, - rclickable = /^(?:a|area)$/i, - ruseDefault = /^(?:checked|selected)$/i, - getSetAttribute = jQuery.support.getSetAttribute, - getSetInput = jQuery.support.input; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each(function() { - jQuery.removeAttr( this, name ); - }); - }, - - prop: function( name, value ) { - return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - name = jQuery.propFix[ name ] || name; - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, - - addClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).addClass( value.call( this, j, this.className ) ); - }); - } - - if ( proceed ) { - // The disjunction here is for better compressibility (see removeClass) - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - " " - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - elem.className = jQuery.trim( cur ); - - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, clazz, j, - i = 0, - len = this.length, - proceed = arguments.length === 0 || typeof value === "string" && value; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( j ) { - jQuery( this ).removeClass( value.call( this, j, this.className ) ); - }); - } - if ( proceed ) { - classes = ( value || "" ).match( core_rnotwhite ) || []; - - for ( ; i < len; i++ ) { - elem = this[ i ]; - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( elem.className ? - ( " " + elem.className + " " ).replace( rclass, " " ) : - "" - ); - - if ( cur ) { - j = 0; - while ( (clazz = classes[j++]) ) { - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - elem.className = value ? jQuery.trim( cur ) : ""; - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function( i ) { - jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.match( core_rnotwhite ) || []; - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space separated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - // Toggle whole class name - } else if ( type === core_strundefined || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // If the element has a class name or if we're passed "false", - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " ", - i = 0, - l = this.length; - for ( ; i < l; i++ ) { - if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - var ret, hooks, isFunction, - elem = this[0]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { - return ret; - } - - ret = elem.value; - - return typeof ret === "string" ? - // handle most common string cases - ret.replace(rreturn, "") : - // handle cases where value is null/undef or number - ret == null ? "" : ret; - } - - return; - } - - isFunction = jQuery.isFunction( value ); - - return this.each(function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray( val ) ) { - val = jQuery.map(val, function ( value ) { - return value == null ? "" : value + ""; - }); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - valHooks: { - option: { - get: function( elem ) { - // Use proper attribute retrieval(#6932, #12072) - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - elem.text; - } - }, - select: { - get: function( elem ) { - var value, option, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one" || index < 0, - values = one ? null : [], - max = one ? index + 1 : options.length, - i = index < 0 ? - max : - one ? index : 0; - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // oldIE doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - // Don't return options that are disabled or in a disabled optgroup - ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && - ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - if ( (option.selected = jQuery.inArray( jQuery(option).val(), values ) >= 0) ) { - optionSet = true; - } - } - - // force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - }, - - attr: function( elem, name, value ) { - var hooks, ret, - nType = elem.nodeType; - - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === core_strundefined ) { - return jQuery.prop( elem, name, value ); - } - - // All attributes are lowercase - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - name = name.toLowerCase(); - hooks = jQuery.attrHooks[ name ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); - } - - if ( value !== undefined ) { - - if ( value === null ) { - jQuery.removeAttr( elem, name ); - - } else if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { - return ret; - - } else { - elem.setAttribute( name, value + "" ); - return value; - } - - } else if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { - return ret; - - } else { - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? - undefined : - ret; - } - }, - - removeAttr: function( elem, value ) { - var name, propName, - i = 0, - attrNames = value && value.match( core_rnotwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( (name = attrNames[i++]) ) { - propName = jQuery.propFix[ name ] || name; - - // Boolean attributes get special treatment (#10870) - if ( jQuery.expr.match.bool.test( name ) ) { - // Set corresponding property to false - if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - elem[ propName ] = false; - // Support: IE<9 - // Also clear defaultChecked/defaultSelected (if appropriate) - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = - elem[ propName ] = false; - } - - // See #9699 for explanation of this approach (setting first, then removal) - } else { - jQuery.attr( elem, name, "" ); - } - - elem.removeAttribute( getSetAttribute ? name : propName ); - } - } - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { - // Setting the type on a radio button after the value resets the value in IE6-9 - // Reset value to default in case type is set after value during creation - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - }, - - prop: function( elem, name, value ) { - var ret, hooks, notxml, - nType = elem.nodeType; - - // don't get/set properties on text, comment and attribute nodes - if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); - - if ( notxml ) { - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - return hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ? - ret : - ( elem[ name ] = value ); - - } else { - return hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ? - ret : - elem[ name ]; - } - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - return tabindex ? - parseInt( tabindex, 10 ) : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - -1; - } - } - } -}); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { - // IE<8 needs the *property* name - elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); - - // Use defaultChecked and defaultSelected for oldIE - } else { - elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; - } - - return name; - } -}; -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { - var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; - - jQuery.expr.attrHandle[ name ] = getSetInput && getSetAttribute || !ruseDefault.test( name ) ? - function( elem, name, isXML ) { - var fn = jQuery.expr.attrHandle[ name ], - ret = isXML ? - undefined : - /* jshint eqeqeq: false */ - (jQuery.expr.attrHandle[ name ] = undefined) != - getter( elem, name, isXML ) ? - - name.toLowerCase() : - null; - jQuery.expr.attrHandle[ name ] = fn; - return ret; - } : - function( elem, name, isXML ) { - return isXML ? - undefined : - elem[ jQuery.camelCase( "default-" + name ) ] ? - name.toLowerCase() : - null; - }; -}); - -// fix oldIE attroperties -if ( !getSetInput || !getSetAttribute ) { - jQuery.attrHooks.value = { - set: function( elem, value, name ) { - if ( jQuery.nodeName( elem, "input" ) ) { - // Does not return so that setAttribute is also used - elem.defaultValue = value; - } else { - // Use nodeHook if defined (#1954); otherwise setAttribute is fine - return nodeHook && nodeHook.set( elem, value, name ); - } - } - }; -} - -// IE6/7 do not support getting/setting some attributes with get/setAttribute -if ( !getSetAttribute ) { - - // Use this for any attribute in IE6/7 - // This fixes almost every IE6/7 issue - nodeHook = { - set: function( elem, value, name ) { - // Set the existing or create a new attribute node - var ret = elem.getAttributeNode( name ); - if ( !ret ) { - elem.setAttributeNode( - (ret = elem.ownerDocument.createAttribute( name )) - ); - } - - ret.value = value += ""; - - // Break association with cloned elements by also using setAttribute (#9646) - return name === "value" || value === elem.getAttribute( name ) ? - value : - undefined; - } - }; - jQuery.expr.attrHandle.id = jQuery.expr.attrHandle.name = jQuery.expr.attrHandle.coords = - // Some attributes are constructed with empty-string values when not defined - function( elem, name, isXML ) { - var ret; - return isXML ? - undefined : - (ret = elem.getAttributeNode( name )) && ret.value !== "" ? - ret.value : - null; - }; - jQuery.valHooks.button = { - get: function( elem, name ) { - var ret = elem.getAttributeNode( name ); - return ret && ret.specified ? - ret.value : - undefined; - }, - set: nodeHook.set - }; - - // Set contenteditable to false on removals(#10429) - // Setting to empty string throws an error as an invalid value - jQuery.attrHooks.contenteditable = { - set: function( elem, value, name ) { - nodeHook.set( elem, value === "" ? false : value, name ); - } - }; - - // Set width and height to auto instead of 0 on empty string( Bug #8150 ) - // This is for removals - jQuery.each([ "width", "height" ], function( i, name ) { - jQuery.attrHooks[ name ] = { - set: function( elem, value ) { - if ( value === "" ) { - elem.setAttribute( name, "auto" ); - return value; - } - } - }; - }); -} - - -// Some attributes require a special call on IE -// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !jQuery.support.hrefNormalized ) { - // href/src property should get the full normalized URL (#10299/#12915) - jQuery.each([ "href", "src" ], function( i, name ) { - jQuery.propHooks[ name ] = { - get: function( elem ) { - return elem.getAttribute( name, 4 ); - } - }; - }); -} - -if ( !jQuery.support.style ) { - jQuery.attrHooks.style = { - get: function( elem ) { - // Return undefined in the case of empty string - // Note: IE uppercases css property names, but if we were to .toLowerCase() - // .cssText, that would destroy case senstitivity in URL's, like in "background" - return elem.style.cssText || undefined; - }, - set: function( elem, value ) { - return ( elem.style.cssText = value + "" ); - } - }; -} - -// Safari mis-reports the default selected property of an option -// Accessing the parent's selectedIndex property fixes it -if ( !jQuery.support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - var parent = elem.parentNode; - - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - return null; - } - }; -} - -jQuery.each([ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -}); - -// IE6/7 call enctype encoding -if ( !jQuery.support.enctype ) { - jQuery.propFix.enctype = "encoding"; -} - -// Radios and checkboxes getter/setter -jQuery.each([ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( jQuery.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); - } - } - }; - if ( !jQuery.support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - // Support: Webkit - // "" is returned instead of "on" if a value isn't specified - return elem.getAttribute("value") === null ? "on" : elem.value; - }; - } -}); -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 !== core_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( core_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( core_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 = core_hasOwn.call( event, "type" ) ? event.type : event, - namespaces = core_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 && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === 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 = core_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 ] === core_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.returnValue === false || - 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 ( !jQuery.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 ( !jQuery.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 ( !jQuery.support.focusinBubbles ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler while someone wants focusin/focusout - var attaches = 0, - handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - if ( attaches++ === 0 ) { - document.addEventListener( orig, handler, true ); - } - }, - teardown: function() { - if ( --attaches === 0 ) { - document.removeEventListener( orig, handler, true ); - } - } - }; - }); -} - -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 ); - } - } -}); -var isSimple = /^.[^:#\[\.,]*$/, - rparentsprev = /^(?:parents|prev(?:Until|All))/, - rneedsContext = jQuery.expr.match.needsContext, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -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; - }, - - 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; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector || [], true) ); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector || [], false) ); - }, - - 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; - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - ret = [], - 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)) ) { - - cur = ret.push( cur ); - break; - } - } - } - - return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); - }, - - // 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 ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( jQuery.unique(all) ); - }, - - 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 ); - }; -}); - -jQuery.extend({ - 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; - })); - }, - - 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; - } -}); - -// 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 ( isSimple.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; - }); -} -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: jQuery.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; - -jQuery.fn.extend({ - text: function( value ) { - return jQuery.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 ); - } - }); - }, - - // keepData is for internal use only--do not document - remove: function( selector, keepData ) { - 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 jQuery.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 ) && - ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && - ( jQuery.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 - // Snapshot the DOM in case .domManip sweeps something relevant into its fragment - args = jQuery.map( this, function( elem ) { - return [ elem.nextSibling, elem.parentNode ]; - }), - i = 0; - - // Make the changes, replacing each context element with the new content - this.domManip( arguments, function( elem ) { - var next = args[ i++ ], - parent = args[ i++ ]; - - if ( parent ) { - // Don't use the snapshot next if it has moved (#13810) - if ( next && next.parentNode !== parent ) { - next = this.nextSibling; - } - jQuery( this ).remove(); - parent.insertBefore( elem, next ); - } - // Allow new content to include elements from the context set - }, true ); - - // Force removal if there was no new content (e.g., from empty arguments) - return i ? this : this.remove(); - }, - - detach: function( selector ) { - return this.remove( selector, true ); - }, - - domManip: function( args, callback, allowIntersection ) { - - // Flatten any nested arrays - args = core_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" || jQuery.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, allowIntersection ); - }); - } - - if ( l ) { - fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, !allowIntersection && 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 ) { - // Hope ajax is available... - 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; - } -}); - -// Support: IE<8 -// Manipulating tables requires a tbody -function manipulationTarget( elem, content ) { - return jQuery.nodeName( elem, "table" ) && - jQuery.nodeName( content.nodeType === 1 ? 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 ( !jQuery.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 ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { - dest.innerHTML = src.innerHTML; - } - - } else if ( nodeName === "input" && manipulation_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.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() - core_push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -}); - -function getAll( context, tag ) { - var elems, elem, - i = 0, - found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : - typeof context.querySelectorAll !== core_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 ( manipulation_rcheckableType.test( elem.type ) ) { - elem.defaultChecked = elem.checked; - } -} - -jQuery.extend({ - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var destElements, node, clone, i, srcElements, - inPage = jQuery.contains( elem.ownerDocument, elem ); - - if ( jQuery.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 ( (!jQuery.support.noCloneEvent || !jQuery.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 ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { - nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); - } - - // Remove IE's autoinserted from table fragments - if ( !jQuery.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 ( !jQuery.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 = jQuery.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 !== core_strundefined ) { - elem.removeAttribute( internalKey ); - - } else { - elem[ internalKey ] = null; - } - - core_deletedIds.push( id ); - } - } - } - } - }, - - _evalUrl: function( url ) { - return jQuery.ajax({ - url: url, - type: "GET", - dataType: "script", - async: false, - global: false, - "throws": true - }); - } -}); -jQuery.fn.extend({ - wrapAll: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapAll( html.call(this, i) ); - }); - } - - if ( this[0] ) { - // The elements to wrap the target around - var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); - - if ( this[0].parentNode ) { - wrap.insertBefore( this[0] ); - } - - wrap.map(function() { - var elem = this; - - while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { - elem = elem.firstChild; - } - - return elem; - }).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( jQuery.isFunction( html ) ) { - return this.each(function(i) { - jQuery(this).wrapInner( html.call(this, i) ); - }); - } - - return this.each(function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - }); - }, - - wrap: function( html ) { - var isFunction = jQuery.isFunction( html ); - - return this.each(function(i) { - jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); - }); - }, - - unwrap: function() { - return this.parent().each(function() { - if ( !jQuery.nodeName( this, "body" ) ) { - jQuery( this ).replaceWith( this.childNodes ); - } - }).end(); - } -}); -var iframe, getStyles, curCSS, - ralpha = /alpha\([^)]*\)/i, - ropacity = /opacity\s*=\s*([^)]*)/, - rposition = /^(top|right|bottom|left)$/, - // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" - // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rmargin = /^margin/, - rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), - rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), - rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), - elemdisplay = { BODY: "block" }, - - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: 0, - fontWeight: 400 - }, - - cssExpand = [ "Top", "Right", "Bottom", "Left" ], - cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; - -// return a css property mapped to a potentially vendor prefixed property -function vendorPropName( style, name ) { - - // shortcut for names that are not vendor prefixed - if ( name in style ) { - return name; - } - - // check for vendor prefixed names - var capName = name.charAt(0).toUpperCase() + name.slice(1), - origName = name, - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in style ) { - return name; - } - } - - return origName; -} - -function isHidden( 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 ); -} - -function showHide( elements, show ) { - var display, elem, hidden, - values = [], - index = 0, - length = elements.length; - - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - values[ index ] = jQuery._data( elem, "olddisplay" ); - display = elem.style.display; - if ( show ) { - // Reset the inline display of this element to learn if it is - // being hidden by cascaded rules or not - if ( !values[ index ] && display === "none" ) { - elem.style.display = ""; - } - - // Set elements which have been overridden with display: none - // in a stylesheet to whatever the default browser style is - // for such an element - if ( elem.style.display === "" && isHidden( elem ) ) { - values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); - } - } else { - - if ( !values[ index ] ) { - hidden = isHidden( elem ); - - if ( display && display !== "none" || !hidden ) { - jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); - } - } - } - } - - // Set the display of most of the elements in a second loop - // to avoid the constant reflow - for ( index = 0; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - if ( !show || elem.style.display === "none" || elem.style.display === "" ) { - elem.style.display = show ? values[ index ] || "" : "none"; - } - } - - return elements; -} - -jQuery.fn.extend({ - css: function( name, value ) { - return jQuery.access( this, function( elem, name, value ) { - var len, styles, - map = {}, - i = 0; - - if ( jQuery.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - }, - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - var bool = typeof state === "boolean"; - - return this.each(function() { - if ( bool ? state : isHidden( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - }); - } -}); - -jQuery.extend({ - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "columnCount": true, - "fillOpacity": true, - "fontWeight": true, - "lineHeight": true, - "opacity": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: { - // normalize float css property - "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" - }, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = jQuery.camelCase( name ), - style = elem.style; - - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // convert relative number strings (+= or -=) to relative numbers. #7345 - if ( type === "string" && (ret = rrelNum.exec( value )) ) { - value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); - // Fixes bug #9237 - type = "number"; - } - - // Make sure that NaN and null values aren't set. See: #7116 - if ( value == null || type === "number" && isNaN( value ) ) { - return; - } - - // If a number was passed in, add 'px' to the (except for certain CSS properties) - if ( type === "number" && !jQuery.cssNumber[ origName ] ) { - value += "px"; - } - - // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, - // but it would mean to define eight (for every problematic property) identical functions - if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { - - // Wrapped to prevent IE from throwing errors when 'invalid' values are provided - // Fixes bug #5509 - try { - style[ name ] = value; - } catch(e) {} - } - - } else { - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var num, val, hooks, - origName = jQuery.camelCase( name ); - - // Make sure that we're working with the right name - name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); - - // gets hook for the prefixed version - // followed by the unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - //convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Return, converting to number if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; - } - return val; - } -}); - -// NOTE: we've included the "window" in window.getComputedStyle -// because jsdom on node.js will break without it. -if ( window.getComputedStyle ) { - getStyles = function( elem ) { - return window.getComputedStyle( elem, null ); - }; - - curCSS = function( elem, name, _computed ) { - var width, minWidth, maxWidth, - computed = _computed || getStyles( elem ), - - // getPropertyValue is only needed for .css('filter') in IE9, see #12537 - ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, - style = elem.style; - - if ( computed ) { - - if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right - // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels - // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values - if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret; - }; -} else if ( document.documentElement.currentStyle ) { - getStyles = function( elem ) { - return elem.currentStyle; - }; - - curCSS = function( elem, name, _computed ) { - var left, rs, rsLeft, - computed = _computed || getStyles( elem ), - ret = computed ? computed[ name ] : undefined, - style = elem.style; - - // Avoid setting ret to empty string here - // so we don't default to auto - if ( ret == null && style && style[ name ] ) { - ret = style[ name ]; - } - - // From the awesome hack by Dean Edwards - // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 - - // If we're not dealing with a regular pixel number - // but a number that has a weird ending, we need to convert it to pixels - // but not position css attributes, as those are proportional to the parent element instead - // and we can't measure the parent instead because it might trigger a "stacking dolls" problem - if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { - - // Remember the original values - left = style.left; - rs = elem.runtimeStyle; - rsLeft = rs && rs.left; - - // Put in the new values to get a computed value out - if ( rsLeft ) { - rs.left = elem.currentStyle.left; - } - style.left = name === "fontSize" ? "1em" : ret; - ret = style.pixelLeft + "px"; - - // Revert the changed values - style.left = left; - if ( rsLeft ) { - rs.left = rsLeft; - } - } - - return ret === "" ? "auto" : ret; - }; -} - -function setPositiveNumber( elem, value, subtract ) { - var matches = rnumsplit.exec( value ); - return matches ? - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : - value; -} - -function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { - var i = extra === ( isBorderBox ? "border" : "content" ) ? - // If we already have the right measurement, avoid augmentation - 4 : - // Otherwise initialize for horizontal or vertical properties - name === "width" ? 1 : 0, - - val = 0; - - for ( ; i < 4; i += 2 ) { - // both box models exclude margin, so add it if we want it - if ( extra === "margin" ) { - val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); - } - - if ( isBorderBox ) { - // border-box includes padding, so remove it if we want content - if ( extra === "content" ) { - val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // at this point, extra isn't border nor margin, so remove border - if ( extra !== "margin" ) { - val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } else { - // at this point, extra isn't content, so add padding - val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // at this point, extra isn't content nor padding, so add border - if ( extra !== "padding" ) { - val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - return val; -} - -function getWidthOrHeight( elem, name, extra ) { - - // Start with offset property, which is equivalent to the border-box value - var valueIsBorderBox = true, - val = name === "width" ? elem.offsetWidth : elem.offsetHeight, - styles = getStyles( elem ), - isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // some non-html elements return undefined for offsetWidth, so check for null/undefined - // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 - // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 - if ( val <= 0 || val == null ) { - // Fall back to computed then uncomputed css if necessary - val = curCSS( elem, name, styles ); - if ( val < 0 || val == null ) { - val = elem.style[ name ]; - } - - // Computed unit is not pixels. Stop here and return. - if ( rnumnonpx.test(val) ) { - return val; - } - - // we need the check for style in case a browser which returns unreliable values - // for getComputedStyle silently falls back to the reliable elem.style - valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); - - // Normalize "", auto, and prepare for extra - val = parseFloat( val ) || 0; - } - - // use the active box-sizing model to add/subtract irrelevant styles - return ( val + - augmentWidthOrHeight( - elem, - name, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles - ) - ) + "px"; -} - -// Try to determine the default display value of an element -function css_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("