From 7c2e7cfb09c97423836ea2509bb8ca84c60b5fee Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 23 Mar 2012 19:42:56 -0500 Subject: [PATCH] save point (see note) Added Pyramid 1.3 scaffold, more fleshing out of edbob.pyramid generally, improved commands and initialization. --- edbob/commands.py | 83 +- edbob/configuration.py | 11 +- edbob/core.py | 9 +- edbob/pyramid/__init__.py | 33 + edbob/pyramid/handlers/base.py | 8 +- .../__init__.py | 10 +- .../edbob/+package+/__init__.py_tmpl | 52 + .../scaffolds/edbob/+package+/_version.py | 1 + .../edbob/+package+/static/favicon.ico | Bin 0 -> 1406 bytes .../edbob/+package+/templates/base.mako_tmpl | 3 + .../edbob/+package+/templates/home.mako_tmpl | 11 + edbob/pyramid/scaffolds/edbob/CHANGES.txt | 4 + .../pyramid/scaffolds/edbob/MANIFEST.in_tmpl | 2 + edbob/pyramid/scaffolds/edbob/README.txt_tmpl | 13 + .../scaffolds/edbob/development.ini_tmpl | 66 ++ .../scaffolds/edbob/production.ini_tmpl | 111 ++ edbob/pyramid/scaffolds/edbob/setup.cfg_tmpl | 30 + edbob/pyramid/scaffolds/edbob/setup.py_tmpl | 85 ++ edbob/pyramid/static/__init__.py | 31 + edbob/pyramid/static/css/edbob.css | 415 +++++++ edbob/pyramid/static/css/login.css | 34 + edbob/pyramid/static/img/logo.jpg | Bin 0 -> 107339 bytes edbob/pyramid/static/js/edbob.js | 335 ++++++ .../pyramid/static/js/jquery.autocomplete.js | 392 +++++++ edbob/pyramid/static/js/jquery.js | 154 +++ edbob/pyramid/static/js/jquery.loading.js | 13 + edbob/pyramid/static/js/jquery.ui.js | 1012 +++++++++++++++++ edbob/pyramid/subscribers.py | 31 +- edbob/pyramid/templates/edbob/base.mako | 63 + edbob/pyramid/templates/login.mako | 64 ++ edbob/pyramid/views/__init__.py | 45 + setup.py | 50 +- 32 files changed, 3073 insertions(+), 98 deletions(-) rename edbob/pyramid/{paster_templates => scaffolds}/__init__.py (74%) create mode 100644 edbob/pyramid/scaffolds/edbob/+package+/__init__.py_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/+package+/_version.py create mode 100644 edbob/pyramid/scaffolds/edbob/+package+/static/favicon.ico create mode 100644 edbob/pyramid/scaffolds/edbob/+package+/templates/base.mako_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/+package+/templates/home.mako_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/CHANGES.txt create mode 100644 edbob/pyramid/scaffolds/edbob/MANIFEST.in_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/README.txt_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/development.ini_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/production.ini_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/setup.cfg_tmpl create mode 100644 edbob/pyramid/scaffolds/edbob/setup.py_tmpl create mode 100644 edbob/pyramid/static/__init__.py create mode 100644 edbob/pyramid/static/css/edbob.css create mode 100644 edbob/pyramid/static/css/login.css create mode 100644 edbob/pyramid/static/img/logo.jpg create mode 100644 edbob/pyramid/static/js/edbob.js create mode 100644 edbob/pyramid/static/js/jquery.autocomplete.js create mode 100644 edbob/pyramid/static/js/jquery.js create mode 100644 edbob/pyramid/static/js/jquery.loading.js create mode 100644 edbob/pyramid/static/js/jquery.ui.js create mode 100644 edbob/pyramid/templates/edbob/base.mako create mode 100644 edbob/pyramid/templates/login.mako create mode 100644 edbob/pyramid/views/__init__.py diff --git a/edbob/commands.py b/edbob/commands.py index ff7ff87..900adb1 100644 --- a/edbob/commands.py +++ b/edbob/commands.py @@ -26,6 +26,8 @@ ``edbob.commands`` -- Console Commands """ +from __future__ import absolute_import + import sys import argparse import subprocess @@ -35,20 +37,6 @@ import edbob from edbob.util import requires_impl -class ArgumentParser(argparse.ArgumentParser): - """ - Customized version of ``argparse.ArgumentParser``, which overrides some of - the argument parsing logic. This is necessary for the application's - primary command (:class:`Command` class); but is not used with - :class:`Subcommand` derivatives. - """ - - def parse_args(self, args=None, namespace=None): - args, argv = self.parse_known_args(args, namespace) - args.argv = argv - return args - - class Command(edbob.Object): """ The primary command for the application. @@ -95,16 +83,23 @@ See the file COPYING.txt for more information. print """%(description)s -Usage: %(name)s [options] [command-options] +Usage: %(name)s [options] [command-options] Options: - -v, --verbose Increase logging level to INFO - -V, --version Display program version and exit + -c PATH, --config=PATH + Config path (may be specified more than once) + -n, --no-init Don't load config before executing command + -d, --debug Increase logging level to DEBUG + -v, --verbose Increase logging level to INFO + -V, --version Display program version and exit -Subcommands:""" % self +Commands:""" % self for cmd in self.iter_subcommands(): - print " %-12s %s" % (cmd.name, cmd.description) + print " %-16s %s" % (cmd.name, cmd.description) + + print """ +Try '%(name)s help ' for more help.""" % self def run(self, *args): """ @@ -112,28 +107,34 @@ Subcommands:""" % self accordingly (or displays help text). """ - parser = ArgumentParser( + parser = argparse.ArgumentParser( prog=self.name, description=self.description, add_help=False, ) + parser.add_argument('-c', '--config', action='append', dest='config_paths', + metavar='PATH') + parser.add_argument('-d', '--debug', action='store_true', dest='debug') + parser.add_argument('-n', '--no-init', action='store_true', default=False) parser.add_argument('-v', '--verbose', action='store_true', dest='verbose') parser.add_argument('-V', '--version', action='version', version="%%(prog)s %s" % self.version) - parser.add_argument('subcommand', nargs='*') + parser.add_argument('command', nargs='*') + # Parse args and determind subcommand. args = parser.parse_args(list(args)) - if not args or not args.subcommand: + if not args or not args.command: self.print_help() return - cmd = args.subcommand.pop(0) + # Show (sub)command help if so instructed, or unknown subcommand. + cmd = args.command.pop(0) if cmd == 'help': - if len(args.subcommand) != 1: + if len(args.command) != 1: self.print_help() return - cmd = args.subcommand[0] + cmd = args.command[0] if cmd not in self.subcommands: self.print_help() return @@ -144,11 +145,29 @@ Subcommands:""" % self self.print_help() return - if args.verbose: - logging.getLogger().setLevel(logging.INFO) + # Use root logger if setting logging flags. + log = logging.getLogger() + # Basic logging should be established before init()ing. + edbob.basic_logging() + if args.verbose: + log.setLevel(logging.INFO) + if args.debug: + log.setLevel(logging.DEBUG) + + # Initialize everything... + if not args.no_init: + edbob.init(*(args.config_paths or [])) + + # Command line logging flags should override config. + if args.verbose: + log.setLevel(logging.INFO) + if args.debug: + log.setLevel(logging.DEBUG) + + # And finally, do something of real value... cmd = self.subcommands[cmd](parent=self) - cmd._run(*args.argv) + cmd._run(*args.command) class Subcommand(edbob.Object): @@ -171,9 +190,9 @@ class Subcommand(edbob.Object): def add_parser_args(self, parser): """ If your subcommand accepts optional (or positional) arguments, you - should override this and add the possible arguments directly to parser - (which is a :class:`argparse.ArgumentParser` instance) via its - :meth:`add_argument()` method. + should override this and add the possible arguments directly to + ``parser`` (which is a :class:`argparse.ArgumentParser` instance) via + its ``add_argument()`` method. """ pass @@ -293,7 +312,5 @@ def main(*args): else: args = sys.argv[1:] - edbob.init() - cmd = Command() cmd.run(*args) diff --git a/edbob/configuration.py b/edbob/configuration.py index c3ad593..e65b31e 100644 --- a/edbob/configuration.py +++ b/edbob/configuration.py @@ -232,19 +232,20 @@ class AppConfigParser(ConfigParser.SafeConfigParser): if not os.path.exists(path): log.debug("File doesn't exist") return - config = ConfigParser.SafeConfigParser() + config = ConfigParser.SafeConfigParser(dict( + here=os.path.abspath(os.path.dirname(path)))) if not config.read(path): log.debug("Read failed") return include = None if recurse: - if (config.has_section(self.appname) and - config.has_option(self.appname, 'include_config')): - include = config.get(self.appname, 'include_config') + if (config.has_section('edbob') and + config.has_option('edbob', 'include_config')): + include = config.get('edbob', 'include_config') if include: log.debug("Including config: %s" % include) for p in eval(include): - self.read_path(p) + self.read_path(os.path.abspath(p)) ConfigParser.SafeConfigParser.read(self, path) if include: self.remove_option(self.appname, 'include_config') diff --git a/edbob/core.py b/edbob/core.py index adb2a39..6335c91 100644 --- a/edbob/core.py +++ b/edbob/core.py @@ -59,9 +59,9 @@ class Object(object): return getattr(self, key) -def basic_logging(appname): +def basic_logging(): """ - Does some basic configuration on the logger qualified by ``appname``. + Does some basic configuration on the root logger. .. note:: This only enables console output at this point; it is assumed that if @@ -70,8 +70,9 @@ def basic_logging(appname): """ handler = logging.StreamHandler() - handler.setFormatter(logging.Formatter('%(name)s: %(levelname)s: %(message)s')) - logging.getLogger(appname).addHandler(handler) + handler.setFormatter(logging.Formatter( + '%(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s')) + logging.getLogger().addHandler(handler) def entry_point_map(key): diff --git a/edbob/pyramid/__init__.py b/edbob/pyramid/__init__.py index e69de29..390fab7 100644 --- a/edbob/pyramid/__init__.py +++ b/edbob/pyramid/__init__.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +################################################################################ +# +# edbob -- Pythonic Software Framework +# Copyright © 2010-2012 Lance Edgar +# +# This file is part of edbob. +# +# edbob is free software: you can redistribute it and/or modify it under the +# terms of the GNU Affero General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# edbob is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for +# more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with edbob. If not, see . +# +################################################################################ + +""" +``edbob.pyramid`` -- Pyramid Framework +""" + + +def includeme(config): + config.include('edbob.pyramid.static') + config.include('edbob.pyramid.subscribers') + config.include('edbob.pyramid.views') diff --git a/edbob/pyramid/handlers/base.py b/edbob/pyramid/handlers/base.py index a62f9e4..bf2eac2 100644 --- a/edbob/pyramid/handlers/base.py +++ b/edbob/pyramid/handlers/base.py @@ -29,11 +29,11 @@ from pyramid.renderers import render_to_response from pyramid.httpexceptions import HTTPException, HTTPFound, HTTPOk, HTTPUnauthorized -import sqlahelper +# import sqlahelper -# import rattail.pyramid.forms.util as util -from rattail.db.perms import has_permission -from rattail.pyramid.forms.formalchemy import Grid +# # import rattail.pyramid.forms.util as util +# from rattail.db.perms import has_permission +# from rattail.pyramid.forms.formalchemy import Grid class needs_perm(object): diff --git a/edbob/pyramid/paster_templates/__init__.py b/edbob/pyramid/scaffolds/__init__.py similarity index 74% rename from edbob/pyramid/paster_templates/__init__.py rename to edbob/pyramid/scaffolds/__init__.py index 7da2140..6072e14 100644 --- a/edbob/pyramid/paster_templates/__init__.py +++ b/edbob/pyramid/scaffolds/__init__.py @@ -23,15 +23,13 @@ ################################################################################ """ -``edbob.pyramid.paster_templates`` -- Paster Templates +``edbob.pyramid.scaffolds`` -- App Scaffolding """ -from paste.util.template import paste_script_template_renderer -from pyramid.paster import PyramidTemplate +from pyramid.scaffolds import PyramidTemplate -class EdbobPyramidTemplate(PyramidTemplate): +class Template(PyramidTemplate): _template_dir = 'edbob' - summary = "edbob/pyramid project" - template_renderer = staticmethod(paste_script_template_renderer) + summary = "Pyramid edbob project" diff --git a/edbob/pyramid/scaffolds/edbob/+package+/__init__.py_tmpl b/edbob/pyramid/scaffolds/edbob/+package+/__init__.py_tmpl new file mode 100644 index 0000000..fb5d03d --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/+package+/__init__.py_tmpl @@ -0,0 +1,52 @@ +#!/usr/bin/env python + +""" +``{{package}}`` -- {{project}} application +""" + +import os.path +import edbob +import pyramid_beaker +from pyramid.config import Configurator + + +def main(global_config, **settings): + """ + This function returns a Pyramid WSGI application. + """ + + # Here you can insert any code to modify the ``settings`` dict. + # You can: + # * Add additional keys to serve as constants or "global variables" in the + # application. + # * Set default values for settings that may have been omitted. + # * Override settings that you don't want the user to change. + # * Raise an exception if a setting is missing or invalid. + # * Convert values from strings to their intended type. + + settings['mako.directories'] = [ + '{{package}}:templates', + 'edbob.pyramid:templates', + ] + + # Configure Pyramid + config = Configurator(settings=settings) + config.include('edbob.pyramid') + config.scan() + + # Configure Beaker + session_factory = pyramid_beaker.session_factory_from_settings(settings) + config.set_session_factory(session_factory) + pyramid_beaker.set_cache_regions_from_settings(settings) + + # Initialize edbob + edbob.basic_logging() + edbob.init('{{package}}', os.path.abspath(settings['edbob.config'])) + + # Add static views + config.add_static_view('favicon.ico', 'static/favicon.ico') + # config.add_static_view('css', 'static/css', cache_max_age=3600) + # config.add_static_view('img', 'static/img', cache_max_age=3600) + # config.add_static_view('js', 'static/js', cache_max_age=3600) + + return config.make_wsgi_app() diff --git a/edbob/pyramid/scaffolds/edbob/+package+/_version.py b/edbob/pyramid/scaffolds/edbob/+package+/_version.py new file mode 100644 index 0000000..b586b61 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/+package+/_version.py @@ -0,0 +1 @@ +__version__ = '0.1a1' diff --git a/edbob/pyramid/scaffolds/edbob/+package+/static/favicon.ico b/edbob/pyramid/scaffolds/edbob/+package+/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..71f837c9e27a57cc290a775b8260241d456582e9 GIT binary patch literal 1406 zcmZQzU<5(|0R}M0U}azs1F|%L7$l?s#Ec9aKoZP=&}eKW1$hQXJ8K3_byWuK^4)pUzxN(#<8UmvsK;IDHKmiOqXh0GT$f5y8Mn(lr zPEIj#Ai)ddFf%g)`Eo2Q!azQdBPb}Sz$wKF1QMLQK#sJuG@G&_7$~s=Ib0wh3I<>% w6A18w0hlQO2J+n8d=Qop8c;z43^FJH7?vVPfPvuvGXp~dBk4g5(gV^90E$0CbN~PV literal 0 HcmV?d00001 diff --git a/edbob/pyramid/scaffolds/edbob/+package+/templates/base.mako_tmpl b/edbob/pyramid/scaffolds/edbob/+package+/templates/base.mako_tmpl new file mode 100644 index 0000000..8afc611 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/+package+/templates/base.mako_tmpl @@ -0,0 +1,3 @@ +<%inherit file="edbob/base.mako" /> +<%def name="global_title()">{{project}} +${parent.body()} diff --git a/edbob/pyramid/scaffolds/edbob/+package+/templates/home.mako_tmpl b/edbob/pyramid/scaffolds/edbob/+package+/templates/home.mako_tmpl new file mode 100644 index 0000000..4965fa8 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/+package+/templates/home.mako_tmpl @@ -0,0 +1,11 @@ +<%inherit file="base.mako" /> + +

Welcome to {{project}} !

+ +

You must choose, but choose wisely:

+
+ +
    +
  • links should...
  • +
  • ...go here
  • +
diff --git a/edbob/pyramid/scaffolds/edbob/CHANGES.txt b/edbob/pyramid/scaffolds/edbob/CHANGES.txt new file mode 100644 index 0000000..93dae39 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/CHANGES.txt @@ -0,0 +1,4 @@ +0.1a1 +----- + +- Initial version diff --git a/edbob/pyramid/scaffolds/edbob/MANIFEST.in_tmpl b/edbob/pyramid/scaffolds/edbob/MANIFEST.in_tmpl new file mode 100644 index 0000000..0ff6eb7 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/MANIFEST.in_tmpl @@ -0,0 +1,2 @@ +include *.txt *.ini *.cfg *.rst +recursive-include {{package}} *.ico *.png *.css *.gif *.jpg *.pt *.txt *.mak *.mako *.js *.html *.xml diff --git a/edbob/pyramid/scaffolds/edbob/README.txt_tmpl b/edbob/pyramid/scaffolds/edbob/README.txt_tmpl new file mode 100644 index 0000000..f777d91 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/README.txt_tmpl @@ -0,0 +1,13 @@ + +{{project}} +=========== + +Welcome to the {{project}} project. + + +Installation +------------ + +Install the project with:: + + $ pip install {{package}} diff --git a/edbob/pyramid/scaffolds/edbob/development.ini_tmpl b/edbob/pyramid/scaffolds/edbob/development.ini_tmpl new file mode 100644 index 0000000..79f1858 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/development.ini_tmpl @@ -0,0 +1,66 @@ + +############################################################ +# +# {{project}} configuration (development) +# +# This file is meant to be used as a sample only. Please +# copy it to a location of your choice and edit for your +# development needs. +# +# This file is meant to inherit from the production.ini +# found in the same directory. However note that edbob's +# configuration inheritance mechanism does NOT (yet) work +# for Pyramid (I think), so you'll have to be sure to +# specify everything required for it here. +# +############################################################ + +[{{package}}] +whatever = you like + + +#################### +# Pyramid +#################### + +[app:main] +use = egg:{{package}} + +pyramid.reload_templates = true +pyramid.debug_authorization = false +pyramid.debug_notfound = false +pyramid.debug_routematch = false +pyramid.debug_templates = true +pyramid.default_locale_name = en +pyramid.includes = + pyramid_debugtoolbar + +# Hack so edbob can find this file from within WSGI app. +edbob.config = %(here)s/development.ini + +[server:main] +use = egg:waitress#main +host = 0.0.0.0 +port = 6543 + + +#################### +# edbob +#################### + +[edbob] +include_config = ['%(here)s/production.ini'] + + +#################### +# logging +#################### + +[logger_root] +level = INFO + +[logger_edbob] +level = INFO + +[logger_{{package_logger}}] +level = DEBUG diff --git a/edbob/pyramid/scaffolds/edbob/production.ini_tmpl b/edbob/pyramid/scaffolds/edbob/production.ini_tmpl new file mode 100644 index 0000000..82f6c91 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/production.ini_tmpl @@ -0,0 +1,111 @@ + +############################################################ +# +# {{project}} configuration (production) +# +# This file is meant to be used as a sample only. Please +# copy it to a location of your choice and edit for your +# production needs. +# +############################################################ + +[{{package}}] +whatever = you like + + +#################### +# Pyramid +#################### + +[app:main] +use = egg:{{package}} + +pyramid.reload_templates = false +pyramid.debug_authorization = false +pyramid.debug_notfound = false +pyramid.debug_routematch = false +pyramid.debug_templates = false +pyramid.default_locale_name = en + +# Hack so edbob can find this file from within WSGI app. +edbob.config = %(here)s/production.ini + +[server:main] +use = egg:waitress#main +host = 0.0.0.0 +port = 6543 + + +#################### +# edbob +#################### + +[edbob] +timezone = US/Central +# shell.python = ipython + +[edbob.mail] +smtp.server = localhost +# smtp.username = user +# smtp.password = pass +sender.default = {{package}}@example.com +recipients.default = [ + 'Joe Blow ', + 'managers@example.com', + 'support@example.com', + ] +subject.default = Message from {{project}} + + +#################### +# logging +#################### + +[loggers] +keys = root, edbob, {{package_logger}} + +[handlers] +keys = file, console, email + +[formatters] +keys = generic, console + +[logger_root] +# handlers = file, console, email +handlers = file, console +level = WARNING + +[logger_edbob] +qualname = edbob +handlers = +# level = INFO + +[logger_{{package_logger}}] +qualname = {{package}} +handlers = +level = WARNING + +[handler_file] +class = FileHandler +args = ('{{package}}.log', 'a') +formatter = generic + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +formatter = console +# level = NOTSET + +[handler_email] +class = handlers.SMTPHandler +args = ('mail.example.com', '{{package}}@example.com', ['support@example.com'], '[{{project}} error]', + ('user', 'pass')) +level = ERROR +formatter = generic + +[formatter_generic] +format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s +datefmt = %Y-%m-%d %H:%M:%S + +[formatter_console] +format = %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s diff --git a/edbob/pyramid/scaffolds/edbob/setup.cfg_tmpl b/edbob/pyramid/scaffolds/edbob/setup.cfg_tmpl new file mode 100644 index 0000000..56f7d70 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/setup.cfg_tmpl @@ -0,0 +1,30 @@ +[egg_info] +tag_build = .dev + +[nosetests] +match = ^test +nocapture = 1 +cover-package = {{package}} +with-coverage = 1 +cover-erase = 1 + +[compile_catalog] +directory = {{package}}/locale +domain = {{project}} +statistics = true + +[extract_messages] +add_comments = TRANSLATORS: +output_file = {{package}}/locale/{{project}}.pot +width = 80 + +[init_catalog] +domain = {{project}} +input_file = {{package}}/locale/{{project}}.pot +output_dir = {{package}}/locale + +[update_catalog] +domain = {{project}} +input_file = {{package}}/locale/{{project}}.pot +output_dir = {{package}}/locale +previous = true diff --git a/edbob/pyramid/scaffolds/edbob/setup.py_tmpl b/edbob/pyramid/scaffolds/edbob/setup.py_tmpl new file mode 100644 index 0000000..fd15f27 --- /dev/null +++ b/edbob/pyramid/scaffolds/edbob/setup.py_tmpl @@ -0,0 +1,85 @@ +#!/usr/bin/env python + +import os.path +from setuptools import setup, find_packages + + +here = os.path.abspath(os.path.dirname(__file__)) +execfile(os.path.join(here, '{{package}}', '_version.py')) +README = open(os.path.join(here, 'README.txt')).read() +CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() + + +requires = [ + # + # Version numbers within comments below have specific meanings. + # Basically the 'low' value is a "soft low," and 'high' a "soft high." + # In other words: + # + # If either a 'low' or 'high' value exists, the primary point to be + # made about the value is that it represents the most current (stable) + # version available for the package (assuming typical public access + # methods) whenever this project was started and/or documented. + # Therefore: + # + # If a 'low' version is present, you should know that attempts to use + # versions of the package significantly older than the 'low' version + # may not yield happy results. (A "hard" high limit may or may not be + # indicated by a true version requirement.) + # + # Similarly, if a 'high' version is present, and especially if this + # project has laid dormant for a while, you may need to refactor a bit + # when attempting to support a more recent version of the package. (A + # "hard" low limit should be indicated by a true version requirement + # when a 'high' version is present.) + # + # In any case, developers and other users are encouraged to play + # outside the lines with regard to these soft limits. If bugs are + # encountered then they should be filed as such. + # + # package # low high + + 'edbob', # 0.1a1 + 'Mako', # 0.6.2 + 'pyramid', # 1.3b2 + 'pyramid_debugtoolbar', # 1.0 + 'waitress', # 0.8.1 + 'WebHelpers', # 1.3 + ] + + +setup( + name = '{{package}}', + version = __version__, + description = "{{project}}", + long_description = README + '\n\n' + CHANGES, + + author = "", + author_email = '', + url = '', + # license = "GNU Affero GPL v3", + + classifiers = [ + 'Development Status :: 3 - Alpha', + 'Environment :: Web Environment', + 'Framework :: Pylons', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', + ], + + install_requires = requires, + tests_require = requires, + + packages = find_packages(), + include_package_data = True, + zip_safe = False, + test_suite = '{{package}}', + entry_points = """ + +[paste.app_factory] +main = {{package}}:main + +""", + ) diff --git a/edbob/pyramid/static/__init__.py b/edbob/pyramid/static/__init__.py new file mode 100644 index 0000000..0fc349d --- /dev/null +++ b/edbob/pyramid/static/__init__.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +################################################################################ +# +# edbob -- Pythonic Software Framework +# Copyright © 2010-2012 Lance Edgar +# +# This file is part of edbob. +# +# edbob is free software: you can redistribute it and/or modify it under the +# terms of the GNU Affero General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# edbob is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for +# more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with edbob. If not, see . +# +################################################################################ + +""" +``edbob.pyramid.static`` -- Static Assets +""" + + +def includeme(config): + config.add_static_view('edbob', 'edbob.pyramid:static', cache_max_age=3600) diff --git a/edbob/pyramid/static/css/edbob.css b/edbob/pyramid/static/css/edbob.css new file mode 100644 index 0000000..8fde0c6 --- /dev/null +++ b/edbob/pyramid/static/css/edbob.css @@ -0,0 +1,415 @@ + +/****************************** + * General + ******************************/ + +* { + margin: 0px; +} + +html, body { + font-family: sans-serif; + font-size: .9em; +} + +a { + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +li { + line-height: 2em; +} + +.left { + float: left; + text-align: left; +} + +.right { + float: right; + text-align: right; +} + +/****************************** + * Main Layout + ******************************/ + +#main-wrapper { + padding: 5px; + text-align: center; +} + +#main { + margin: auto; + text-align: left; + width: 800px; +} + +#header { + border-bottom: 1px solid #000000; + overflow: auto; +} + +#header h1 { + margin: 0px 5px 10px 5px; +} + +#login { + margin: 8px auto auto 20px; +} + +#user-menu { + float: left; +} + +#home-link { + font-weight: bold; +} + +#header-links { + float: right; + text-align: right; +} + +#main-menu { + border-top: 1px solid black; + clear: both; + font-weight: bold; +} + +#main-menu li { + display: inline; + margin-right: 15px; +} + +ul.sub-menu { + border-top: 1px solid black; +} + +ul.sub-menu li { + display: inline; + margin-right: 15px; +} + +#body { + padding-top: 15px; +} + +h1 { + margin-bottom: 15px; +} + +h2 { + margin-bottom: 10px; +} + +p { + margin-bottom: 5px; +} + +div.flash-message { + background-color: #dddddd; + margin-bottom: 8px; + padding: 3px; +} + +div.error { + color: #dd6666; + font-weight: bold; + margin-bottom: 10px; +} + +div.buttons { + clear: both; + margin-top: 10px; +} + +div.controls { + font-weight: bold; + margin: 10px auto; +} + +div.controls div { + margin: 5px; +} + +div.controls label { + display: block; + float: left; + width: 120px; +} + +/****************************** + * Dialogs + ******************************/ + +div.dialog { + display: none; +} + +#feedback-dialog textarea { + height: 180px; + width: 500px; +} + +/****************************** + * Filters + ******************************/ + +div.filters { + /* margin-bottom: 10px; */ +} + +div.filter { + margin-bottom: 10px; +} + +div.filter label { + margin-right: 8px; +} + +div.filter select.filter-type { + margin-right: 8px; +} + +div.filters div.buttons * { + margin-right: 8px; +} + +/****************************** + * "Grid Management" + ******************************/ + +/* div.grid-mgmt { */ +/* float: right; */ +/* } */ + +table.search-wrapper { + border-collapse: collapse; + margin-bottom: 10px; + width: 100%; +} + +table.search-wrapper td { + /* border: 1px solid black; */ + padding: 0px; +} + +table.search-wrapper td.grid-mgmt { + text-align: right; + vertical-align: bottom; +} + +/****************************** + * Grids + ******************************/ + +a.add-object { + display: block; + float: right; +} + +ul.grid-menu { + display: block; + float: right; + list-style-type: none; + margin-bottom: 5px; +} + +div.grid { + clear: both; +} + +table.grid { + border-top: 1px solid black; + border-left: 1px solid black; + border-collapse: collapse; + font-size: 90%; + white-space: nowrap; + width: 100%; +} + +table.grid th, +table.grid td { + border-right: 1px solid black; + border-bottom: 1px solid black; + padding: 2px 3px; +} + +table.grid th.sortable a { + display: block; + padding-right: 18px; +} + +table.grid th.sorted { + background-position: right center; + background-repeat: no-repeat; +} + +table.grid th.sorted.asc { + background-image: url(../img/sort_arrow_up.png); +} + +table.grid th.sorted.desc { + background-image: url(../img/sort_arrow_down.png); +} + +table.grid tr.even { + background-color: #e0e0e0; +} + +table.grid thead th.checkbox, +table.grid tbody td.checkbox { + text-align: center; + vertical-align: middle; + width: 15px; +} + +table.grid td.action { + cursor: default; +} + +table.grid td.delete { + text-align: center; + width: 18px; + background-image: url(../img/delete.png); + background-repeat: no-repeat; + background-position: center; + cursor: pointer; +} + +table.grid tbody tr.hovering { + background-color: #bbbbbb; +} + +table.grid.hoverable tbody tr { + cursor: default; +} + +table.grid.clickable tbody tr { + cursor: pointer; +} + +table.grid.selectable tbody tr, +table.grid.checkable tbody tr { + cursor: pointer; +} + +table.grid.selectable tbody tr.selected, +table.grid.checkable tbody tr.selected { + background-color: #666666; + color: white; +} + +div.pager { + margin-top: 3px; +} + +div.pager p.showing { + float: left; +} + +#grid-page-count { + font-size: 85%; +} + +div.pager p.page-links { + float: right; +} + +/****************************** + * Fieldsets + ******************************/ + +div.field-couple { + clear: both; + margin-bottom: 10px; +} + +div.field-couple div.label, +div.field-couple label { + display: block; + float: left; + width: 135px; + font-weight: bold; + margin-top: 2px; + white-space: nowrap; +} + +div.field-couple div.field-error { + clear: both; + color: #dd6666; + font-weight: bold; +} + +div.field-couple div.field { + display: block; + float: left; + margin-bottom: 5px; + line-height: 25px; +} + +div.field-couple div.field input[type=text], +div.field-couple div.field select { + width: 180px; +} + +div.checkbox { + margin: 15px 0px; +} + +table.fieldset tr { + vertical-align: top; +} + +table.fieldset td { + padding: 2px; +} + +table.fieldset td.label { + font-weight: bold; + width: 120px; +} + +/****************************** + * Sub-Grids + ******************************/ + +div.subgrid { + margin-top: 20px; +} + +div.subgrid label { + font-weight: bold; + display: block; + float: left; + margin-bottom: 5px; +} + +/****************************** + * Autocomplete + ******************************/ + +div.autocomplete { + border: 1px solid #000000; + margin-top: 5px; +} + +div.autocomplete div { + background-color: #dddddd; + margin: 0px; + padding: 2px 5px; +} + +div.autocomplete strong { + margin: 0px 1px; +} + +div.autocomplete .selected { + cursor: pointer; + background-color: #aaaaaa; +} diff --git a/edbob/pyramid/static/css/login.css b/edbob/pyramid/static/css/login.css new file mode 100644 index 0000000..0e85284 --- /dev/null +++ b/edbob/pyramid/static/css/login.css @@ -0,0 +1,34 @@ + +/****************************** + * login.css + ******************************/ + +img { + display: block; + margin: 10px auto 25px auto; + padding-left: 50px; + width: 500px; +} + +div.fieldset { + text-align: center; +} + +div.field-couple { + margin: 10px auto; + width: 300px; +} + +div.field-couple label { + margin: 0px; + text-align: right; + width: 100px; +} + +div.field-couple input { + width: 150px; +} + +div.buttons input { + margin: auto 5px; +} diff --git a/edbob/pyramid/static/img/logo.jpg b/edbob/pyramid/static/img/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..45b3d3077f5f8d61f4fce718b4855ac4ec1f84cb GIT binary patch literal 107339 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 literal 0 HcmV?d00001 diff --git a/edbob/pyramid/static/js/edbob.js b/edbob/pyramid/static/js/edbob.js new file mode 100644 index 0000000..08b4525 --- /dev/null +++ b/edbob/pyramid/static/js/edbob.js @@ -0,0 +1,335 @@ + +/************************************************************ +* +* edbob.js +* +* This library contains all of Javascript functionality +* provided directly by edbob. +* +* It also attaches some jQuery event handlers for certain +* design patterns. +* +************************************************************/ + + +var filters_to_disable = []; + + +function disable_button(button, text) { + $(button).html(text + ", please wait..."); + $(button).attr('disabled', 'disabled'); +} + + +function disable_filter_options() { + for (var i = 0; i <= filters_to_disable.length; ++i) { + var filter = filters_to_disable.pop(); + var option = $('#add-filter option[value='+filter+']').attr('disabled', true); + } +} + + +/* + * get_dialog(id, callback) + * + * Returns a
element suitable for use as a jQuery dialog. + * + * ``id`` is used to construct a proper ID for the element and allows the + * dialog to be resused if possible. + * + * ``callback``, if specified, should be a callback function for the dialog. + * This function will be called whenever the dialog has been closed + * "successfully" (i.e. data submitted) by the user, and should accept a single + * ``data`` object which is the JSON response returned by the server. + */ + +function get_dialog(id, callback) { + var dialog = $('#'+id+'-dialog'); + if (! dialog.length) { + dialog = $('
'); + } + if (callback) { + dialog.attr('callback', callback); + } + return dialog; +} + + +/* + * get_lookup_dialog(id, callback, textcol) + * + * TODO: Document this. + */ + +function get_lookup_dialog(id, callback, textcol) { + var dialog = get_dialog('lookup-'+id, callback); + dialog.addClass('lookup'); + dialog.attr('textcol', textcol || 0); + return dialog; +} + + +/* + * get_uuid(obj) + * + * Returns the UUID associated with ``obj``, if any can be found. The object + * itself is checked, as well its most immediate parent. + */ + +function get_uuid(obj) { + + obj = $(obj); + if (obj.attr('uuid')) { + return obj.attr('uuid'); + } + var tr = obj.parents('tr:first'); + if (tr.attr('uuid')) { + return tr.attr('uuid'); + } + return undefined; +} + + +/* + * json_success(data) + * + * Returns a boolean indicating whether ``data`` represents a successful + * response from the server, or not. + */ + +function json_success(data) { + return typeof(data) == 'object' && data.ok == 'success'; +} + + +/* + * loading(element) + * + * Used to indicate that data is being retrieved from the server. ``element`` + * is typically a
element, though it can be anything. + */ + +function loading(element) { + element.loading(true, {mask: true, text: ''}); +} + + +/* + * reload_grid_div(div) + * + * Reloads a grid's contents. ``div``, if provied, is assumed to be an element + * of type
, or else contain such an element. + */ + +function reload_grid_div(div) { + if (! div) { + div = $('div.grid'); + } else if (! div.hasClass('grid')) { + div = div.find('div.grid'); + } + if (! div.length) { + alert('assert: div should have length'); + return; + } + loading(div); + div.load(div.attr('url')); +} + + +$(function() { + + $('div.filter label').live('click', function() { + var checkbox = $(this).prev(); + if (checkbox.attr('checked')) { + checkbox.attr('checked', false); + return false; + } + checkbox.attr('checked', true); + return true; + }); + + $('#add-filter').live('change', function() { + var div = $(this).parents('div.filters:first'); + var filter = div.find('#filter-'+$(this).val()); + filter.find(':first-child').attr('checked', true); + filter.show(); + var field = filter.find(':last-child'); + field.select(); + field.focus(); + $(this).find('option:selected').attr('disabled', true); + $(this).val('add a filter'); + if ($(this).find('option[disabled=false]').length == 1) { + $(this).hide(); + } + div.find('input[type=submit]').show(); + div.find('button[type=reset]').show(); + }); + + $('div.filters form').live('submit', function() { + var div = $(this).parents('table.search-wrapper').next(); + loading(div); + $.post(div.attr('url'), $(this).serialize(), function(data) { + div.replaceWith(data); + }); + return false; + }); + + $('table.grid th.sortable a').live('click', function() { + var div = $(this).parents('div.grid:first'); + var th = $(this).parents('th:first'); + var dir = 'asc'; + if (th.hasClass('sorted') && th.hasClass('asc')) { + dir = 'desc'; + } + loading(div); + var url = div.attr('url'); + url += url.match(/\?/) ? '&' : '?'; + url += 'sort=' + th.attr('field') + '&dir=' + dir; + div.load(url); + return false; + }); + + $('table.grid.hoverable tbody tr').live('mouseenter', function() { + $(this).addClass('hovering'); + }); + + $('table.grid.hoverable tbody tr').live('mouseleave', function() { + $(this).removeClass('hovering'); + }); + + $('table.grid.clickable tbody tr').live('mouseenter', function() { + $(this).addClass('hovering'); + }); + + $('table.grid.clickable tbody tr').live('mouseleave', function() { + $(this).removeClass('hovering'); + }); + + $('table.grid.selectable tbody tr').live('mouseenter', function() { + $(this).addClass('hovering'); + }); + + $('table.grid.selectable tbody tr').live('mouseleave', function() { + $(this).removeClass('hovering'); + }); + + $('table.grid.checkable tbody tr').live('mouseenter', function() { + $(this).addClass('hovering'); + }); + + $('table.grid.checkable tbody tr').live('mouseleave', function() { + $(this).removeClass('hovering'); + }); + + $('table.grid.clickable tbody tr').live('click', function() { + var div = $(this).parents('div.grid:first'); + if (div.attr('usedlg') == 'True') { + var dlg = get_dialog('grid-object'); + var data = { + 'uuid': get_uuid(this), + 'partial': true, + }; + dlg.load(div.attr('objurl'), data, function() { + dlg.dialog({ + width: 500, + height: 450, + }); + }); + } else { + location.href = div.attr('objurl') + '?uuid=' + get_uuid(this); + } + }); + + $('table.grid.checkable thead th.checkbox input[type=checkbox]').live('click', function() { + var checked = $(this).is(':checked'); + var table = $(this).parents('table.grid:first'); + table.find('tbody tr').each(function() { + $(this).find('td.checkbox input[type=checkbox]').attr('checked', checked); + if (checked) { + $(this).addClass('selected'); + } else { + $(this).removeClass('selected'); + } + }); + }); + + $('table.grid.selectable tbody tr').live('click', function() { + var table = $(this).parents('table:first'); + if (! table.hasClass('multiple')) { + table.find('tbody tr').removeClass('selected'); + } + $(this).addClass('selected'); + }); + + $('table.grid.checkable tbody tr').live('click', function() { + var checkbox = $(this).find('td:first input[type=checkbox]'); + checkbox.attr('checked', !checkbox.is(':checked')); + $(this).toggleClass('selected'); + }); + + $('#grid-page-count').live('change', function() { + var div = $(this).parents('div.grid:first'); + loading(div); + div.load(div.attr('url') + '&per_page=' + $(this).val()); + }); + + $('button.autocomplete-change').live('click', function() { + var container = $(this).parents('div.autocomplete-container:first'); + container.find('div.autocomplete-display').hide(); + var textbox = container.find('input.autocomplete-textbox'); + textbox.show(); + textbox.select(); + textbox.focus(); + }); + + $('div.dialog form').live('submit', function() { + var form = $(this); + var dialog = form.parents('div.dialog:first'); + $.ajax({ + type: 'POST', + url: form.attr('action'), + data: form.serialize(), + success: function(data) { + if (json_success(data)) { + if (dialog.attr('callback')) { + eval(dialog.attr('callback'))(data); + } + dialog.dialog('close'); + } else if (typeof(data) == 'object') { + alert(data.message); + } else { + dialog.html(data); + } + }, + error: function() { + alert("Sorry, something went wrong...try again?"); + }, + }); + return false; + }); + + $('div.dialog button.close').live('click', function() { + var dialog = $(this).parents('div.dialog:first'); + dialog.dialog('close'); + }); + + $('div.dialog button.cancel').live('click', function() { + var dialog = $(this).parents('div.dialog:first'); + dialog.dialog('close'); + }); + + $('div.dialog.lookup button.ok').live('click', function() { + var dialog = $(this).parents('div.dialog.lookup:first'); + var tr = dialog.find('table.grid tbody tr.selected'); + if (! tr.length) { + alert("You haven't selected anything."); + return false; + } + var uuid = get_uuid(tr); + var col = parseInt(dialog.attr('textcol')); + var text = tr.find('td:eq('+col+')').html(); + eval(dialog.attr('callback'))(uuid, text); + dialog.dialog('close'); + }); + +}); diff --git a/edbob/pyramid/static/js/jquery.autocomplete.js b/edbob/pyramid/static/js/jquery.autocomplete.js new file mode 100644 index 0000000..3cae311 --- /dev/null +++ b/edbob/pyramid/static/js/jquery.autocomplete.js @@ -0,0 +1,392 @@ +/** +* Ajax Autocomplete for jQuery, version 1.1.3 +* (c) 2010 Tomas Kirda +* +* Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license. +* For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/ +* +* Last Review: 04/19/2010 +*/ + +/*jslint onevar: true, evil: true, nomen: true, eqeqeq: true, bitwise: true, regexp: true, newcap: true, immed: true */ +/*global window: true, document: true, clearInterval: true, setInterval: true, jQuery: true */ + +(function($) { + + var reEscape = new RegExp('(\\' + ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'].join('|\\') + ')', 'g'); + + function fnFormatResult(value, data, currentValue) { + var pattern = '(' + currentValue.replace(reEscape, '\\$1') + ')'; + return value.replace(new RegExp(pattern, 'gi'), '$1<\/strong>'); + } + + function Autocomplete(el, options) { + this.el = $(el); + this.el.attr('autocomplete', 'off'); + this.suggestions = []; + this.data = []; + this.badQueries = []; + this.selectedIndex = -1; + this.currentValue = this.el.val(); + this.intervalId = 0; + this.cachedResponse = []; + this.onChangeInterval = null; + this.ignoreValueChange = false; + this.serviceUrl = options.serviceUrl; + this.isLocal = false; + this.options = { + autoSubmit: false, + minChars: 1, + maxHeight: 300, + deferRequestBy: 0, + width: 0, + highlight: true, + params: {}, + fnFormatResult: fnFormatResult, + delimiter: null, + zIndex: 9999 + }; + this.initialize(); + this.setOptions(options); + } + + $.fn.autocomplete = function(options) { + return new Autocomplete(this.get(0)||$(''), options); + }; + + + Autocomplete.prototype = { + + killerFn: null, + + initialize: function() { + + var me, uid, autocompleteElId; + me = this; + uid = Math.floor(Math.random()*0x100000).toString(16); + autocompleteElId = 'Autocomplete_' + uid; + + this.killerFn = function(e) { + if ($(e.target).parents('.autocomplete').size() === 0) { + me.killSuggestions(); + me.disableKillerFn(); + } + }; + + if (!this.options.width) { this.options.width = this.el.width(); } + this.mainContainerId = 'AutocompleteContainter_' + uid; + + $('
').appendTo('body'); + + this.container = $('#' + autocompleteElId); + this.fixPosition(); + if (window.opera) { + this.el.keypress(function(e) { me.onKeyPress(e); }); + } else { + this.el.keydown(function(e) { me.onKeyPress(e); }); + } + this.el.keyup(function(e) { me.onKeyUp(e); }); + this.el.blur(function() { me.enableKillerFn(); }); + this.el.focus(function() { me.fixPosition(); }); + }, + + setOptions: function(options){ + var o = this.options; + $.extend(o, options); + if(o.lookup){ + this.isLocal = true; + if($.isArray(o.lookup)){ o.lookup = { suggestions:o.lookup, data:[] }; } + } + $('#'+this.mainContainerId).css({ zIndex:o.zIndex }); + this.container.css({ maxHeight: o.maxHeight + 'px', width:o.width }); + }, + + clearCache: function(){ + this.cachedResponse = []; + this.badQueries = []; + }, + + disable: function(){ + this.disabled = true; + }, + + enable: function(){ + this.disabled = false; + }, + + fixPosition: function() { + var offset = this.el.offset(); + $('#' + this.mainContainerId).css({ top: (offset.top + this.el.innerHeight()) + 'px', left: offset.left + 'px' }); + }, + + enableKillerFn: function() { + var me = this; + $(document).bind('click', me.killerFn); + }, + + disableKillerFn: function() { + var me = this; + $(document).unbind('click', me.killerFn); + }, + + killSuggestions: function() { + var me = this; + this.stopKillSuggestions(); + this.intervalId = window.setInterval(function() { me.hide(); me.stopKillSuggestions(); }, 300); + }, + + stopKillSuggestions: function() { + window.clearInterval(this.intervalId); + }, + + onKeyPress: function(e) { + if (this.disabled || !this.enabled) { return; } + // return will exit the function + // and event will not be prevented + switch (e.keyCode) { + case 27: //KEY_ESC: + this.el.val(this.currentValue); + this.hide(); + break; + case 9: //KEY_TAB: + case 13: //KEY_RETURN: + if (this.selectedIndex === -1) { + this.hide(); + return; + } + this.select(this.selectedIndex); + if(e.keyCode === 9){ return; } + break; + case 38: //KEY_UP: + this.moveUp(); + break; + case 40: //KEY_DOWN: + this.moveDown(); + break; + default: + return; + } + e.stopImmediatePropagation(); + e.preventDefault(); + }, + + onKeyUp: function(e) { + if(this.disabled){ return; } + switch (e.keyCode) { + case 38: //KEY_UP: + case 40: //KEY_DOWN: + return; + } + clearInterval(this.onChangeInterval); + if (this.currentValue !== this.el.val()) { + if (this.options.deferRequestBy > 0) { + // Defer lookup in case when value changes very quickly: + var me = this; + this.onChangeInterval = setInterval(function() { me.onValueChange(); }, this.options.deferRequestBy); + } else { + this.onValueChange(); + } + } + }, + + onValueChange: function() { + clearInterval(this.onChangeInterval); + this.currentValue = this.el.val(); + var q = this.getQuery(this.currentValue); + this.selectedIndex = -1; + if (this.ignoreValueChange) { + this.ignoreValueChange = false; + return; + } + if (q === '' || q.length < this.options.minChars) { + this.hide(); + } else { + this.getSuggestions(q); + } + }, + + getQuery: function(val) { + var d, arr; + d = this.options.delimiter; + if (!d) { return $.trim(val); } + arr = val.split(d); + return $.trim(arr[arr.length - 1]); + }, + + getSuggestionsLocal: function(q) { + var ret, arr, len, val, i; + arr = this.options.lookup; + len = arr.suggestions.length; + ret = { suggestions:[], data:[] }; + q = q.toLowerCase(); + for(i=0; i< len; i++){ + val = arr.suggestions[i]; + if(val.toLowerCase().indexOf(q) === 0){ + ret.suggestions.push(val); + ret.data.push(arr.data[i]); + } + } + return ret; + }, + + getSuggestions: function(q) { + var cr, me; + cr = this.isLocal ? this.getSuggestionsLocal(q) : this.cachedResponse[q]; + if (cr && $.isArray(cr.suggestions)) { + this.suggestions = cr.suggestions; + this.data = cr.data; + this.suggest(); + } else if (!this.isBadQuery(q)) { + me = this; + me.options.params.query = q; + $.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text'); + } + }, + + isBadQuery: function(q) { + var i = this.badQueries.length; + while (i--) { + if (q.indexOf(this.badQueries[i]) === 0) { return true; } + } + return false; + }, + + hide: function() { + this.enabled = false; + this.selectedIndex = -1; + this.container.hide(); + }, + + suggest: function() { + if (this.suggestions.length === 0) { + this.hide(); + return; + } + + var me, len, div, f, v, i, s, mOver, mClick; + me = this; + len = this.suggestions.length; + f = this.options.fnFormatResult; + v = this.getQuery(this.currentValue); + mOver = function(xi) { return function() { me.activate(xi); }; }; + mClick = function(xi) { return function() { me.select(xi); }; }; + this.container.hide().empty(); + for (i = 0; i < len; i++) { + s = this.suggestions[i]; + div = $((me.selectedIndex === i ? '
' + f(s, this.data[i], v) + '
'); + div.mouseover(mOver(i)); + div.click(mClick(i)); + this.container.append(div); + } + this.enabled = true; + this.container.show(); + if (len) { + this.adjustScroll(0); + } + }, + + processResponse: function(text) { + var response; + try { + response = eval('(' + text + ')'); + } catch (err) { return; } + if (!$.isArray(response.data)) { response.data = []; } + if(!this.options.noCache){ + this.cachedResponse[response.query] = response; + if (response.suggestions.length === 0) { this.badQueries.push(response.query); } + } + if (response.query === this.getQuery(this.currentValue)) { + this.suggestions = response.suggestions; + this.data = response.data; + this.suggest(); + } + }, + + activate: function(index) { + var divs, activeItem; + divs = this.container.children(); + // Clear previous selection: + if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) { + $(divs.get(this.selectedIndex)).removeClass(); + } + this.selectedIndex = index; + if (this.selectedIndex !== -1 && divs.length > this.selectedIndex) { + activeItem = divs.get(this.selectedIndex); + $(activeItem).addClass('selected'); + } + return activeItem; + }, + + deactivate: function(div, index) { + div.className = ''; + if (this.selectedIndex === index) { this.selectedIndex = -1; } + }, + + select: function(i) { + var selectedValue, f; + selectedValue = this.suggestions[i]; + if (selectedValue) { + this.el.val(selectedValue); + if (this.options.autoSubmit) { + f = this.el.parents('form'); + if (f.length > 0) { f.get(0).submit(); } + } + this.ignoreValueChange = true; + this.hide(); + this.onSelect(i); + } + }, + + moveUp: function() { + if (this.selectedIndex === -1) { return; } + if (this.selectedIndex === 0) { + this.container.children().get(0).className = ''; + this.selectedIndex = -1; + this.el.val(this.currentValue); + return; + } + this.adjustScroll(this.selectedIndex - 1); + }, + + moveDown: function() { + if (this.selectedIndex === (this.suggestions.length - 1)) { return; } + this.adjustScroll(this.selectedIndex + 1); + }, + + adjustScroll: function(i) { + var activeItem, offsetTop, upperBound, lowerBound; + activeItem = this.activate(i); + offsetTop = activeItem.offsetTop; + upperBound = this.container.scrollTop(); + lowerBound = upperBound + this.options.maxHeight - 25; + if (offsetTop < upperBound) { + this.container.scrollTop(offsetTop); + } else if (offsetTop > lowerBound) { + this.container.scrollTop(offsetTop - this.options.maxHeight + 25); + } + }, + + onSelect: function(i) { + var me, fn, s, d; + me = this; + fn = me.options.onSelect; + s = me.suggestions[i]; + d = me.data[i]; + me.el.val(me.getValue(s)); + if ($.isFunction(fn)) { fn(s, d, me.el); } + }, + + getValue: function(value){ + var del, currVal, arr, me; + me = this; + del = me.options.delimiter; + if (!del) { return value; } + currVal = me.currentValue; + arr = currVal.split(del); + if (arr.length === 1) { return value; } + return currVal.substr(0, currVal.length - arr[arr.length - 1].length) + value; + } + + }; + +}(jQuery)); diff --git a/edbob/pyramid/static/js/jquery.js b/edbob/pyramid/static/js/jquery.js new file mode 100644 index 0000000..7c24308 --- /dev/null +++ b/edbob/pyramid/static/js/jquery.js @@ -0,0 +1,154 @@ +/*! + * jQuery JavaScript Library v1.4.2 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Sat Feb 13 22:33:48 2010 -0500 + */ +(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, +Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& +(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, +a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== +"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, +function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b
a"; +var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, +parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= +false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= +s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, +applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; +else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, +a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== +w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, +cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= +c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); +a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, +function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); +k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), +C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B=0){a.type= +e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& +f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; +if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", +e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, +"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, +d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, +e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); +t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| +g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return hl[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML=""; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="

";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="
";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f0)for(var j=d;j0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/"},F={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div
","
"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]===""&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=//gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== +"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("
").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, +serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), +function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, +global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& +e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? +"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== +false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= +false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", +c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| +d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); +g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== +1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== +"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; +if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== +"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| +c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; +this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= +this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, +e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b
"; +a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); +c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, +d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- +f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": +"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in +e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/edbob/pyramid/static/js/jquery.loading.js b/edbob/pyramid/static/js/jquery.loading.js new file mode 100644 index 0000000..04591ab --- /dev/null +++ b/edbob/pyramid/static/js/jquery.loading.js @@ -0,0 +1,13 @@ +;(function($){var L=$.loading=function(show,opts){return $('body').loading(show,opts,true);};$.fn.loading=function(show,opts,page){opts=toOpts(show,opts);var base=page?$.extend(true,{},L,L.pageOptions):L;return this.each(function(){var $el=$(this),l=$.extend(true,{},base,$.metadata?$el.metadata():null,opts);if(typeof l.onAjax=="boolean"){L.setAjax.call($el,l);}else{L.toggle.call($el,l);}});};var fixed={position:$.browser.msie?'absolute':'fixed'};$.extend(L,{version:"1.6.4",align:'top-left',pulse:'working error',mask:false,img:null,element:null,text:'Loading...',onAjax:undefined,delay:0,max:0,classname:'loading',imgClass:'loading-img',elementClass:'loading-element',maskClass:'loading-mask',css:{position:'absolute',whiteSpace:'nowrap',zIndex:1001},maskCss:{position:'absolute',opacity:.15,background:'#333',zIndex:101,display:'block',cursor:'wait'},cloneEvents:true,pageOptions:{page:true,align:'top-center',css:fixed,maskCss:fixed},html:'
',maskHtml:'
',maskedClass:'loading-masked',maskEvents:'mousedown mouseup keydown keypress',resizeEvents:'resize',working:{time:10000,text:'Still working...',run:function(l){var w=l.working,self=this;w.timeout=setTimeout(function(){self.height('auto').width('auto').text(l.text=w.text);l.place.call(self,l);},w.time);}},error:{time:100000,text:'Task may have failed...',classname:'loading-error',run:function(l){var e=l.error,self=this;e.timeout=setTimeout(function(){self.height('auto').width('auto').text(l.text=e.text).addClass(e.classname);l.place.call(self,l);},e.time);}},fade:{time:800,speed:'slow',run:function(l){var f=l.fade,s=f.speed,self=this;f.interval=setInterval(function(){self.fadeOut(s).fadeIn(s);},f.time);}},ellipsis:{time:300,run:function(l){var e=l.ellipsis,self=this;e.interval=setInterval(function(){var et=self.text(),t=l.text,i=dotIndex(t);self.text((et.length-i)<3?et+'.':t.substring(0,i));},e.time);function dotIndex(t){var x=t.indexOf('.');return x<0?t.length:x;}}},type:{time:100,run:function(l){var t=l.type,self=this;t.interval=setInterval(function(){var e=self.text(),el=e.length,txt=l.text;self.text(el==txt.length?txt.charAt(0):txt.substring(0,el+1));},t.time);}},toggle:function(l){var old=this.data('loading');if(old){if(l.show!==true)old.off.call(this,old,l);}else{if(l.show!==false)l.on.call(this,l);}},setAjax:function(l){if(l.onAjax){var self=this,count=0,A=l.ajax={start:function(){if(!count++)l.on.call(self,l);},stop:function(){if(!--count)l.off.call(self,l,l);}};this.bind('ajaxStart.loading',A.start).bind('ajaxStop.loading',A.stop);}else{this.unbind('ajaxStart.loading ajaxStop.loading');}},on:function(l,force){var p=l.parent=this.data('loading',l);if(l.max)l.maxout=setTimeout(function(){l.off.call(p,l,l);},l.max);if(l.delay&&!force){return l.timeout=setTimeout(function(){delete l.timeout;l.on.call(p,l,true);},l.delay);} +if(l.mask)l.mask=l.createMask.call(p,l);l.display=l.create.call(p,l);if(l.img){l.initImg.call(p,l);}else if(l.element){l.initElement.call(p,l);}else{l.init.call(p,l);} +p.trigger('loadingStart',[l]);},initImg:function(l){var self=this;l.imgElement=$('').bind('load',function(){l.init.call(self,l);});l.display.addClass(l.imgClass).append(l.imgElement);},initElement:function(l){l.element=$(l.element).clone(l.cloneEvents).show();l.display.addClass(l.elementClass).append(l.element);l.init.call(this,l);},init:function(l){l.place.call(l.display,l);if(l.pulse)l.initPulse.call(this,l);},initPulse:function(l){$.each(l.pulse.split(' '),function(){l[this].run.call(l.display,l);});},create:function(l){var el=$(l.html).addClass(l.classname).css(l.css).appendTo(this);if(l.text&&!l.img&&!l.element)el.text(l.originalText=l.text);$(window).bind(l.resizeEvents,l.resizer=function(){l.resize(l);});return el;},resize:function(l){l.parent.box=null;if(l.mask)l.mask.hide();l.place.call(l.display.hide(),l);if(l.mask)l.mask.show().css(l.parent.box);},createMask:function(l){var box=l.measure.call(this.addClass(l.maskedClass),l);l.handler=function(e){return l.maskHandler(e,l);};$(document).bind(l.maskEvents,l.handler);return $(l.maskHtml).addClass(l.maskClass).css(box).css(l.maskCss).appendTo(this);},maskHandler:function(e,l){var $els=$(e.target).parents().andSelf();if($els.filter('.'+l.classname).length!=0)return true;return!l.page&&$els.filter('.'+l.maskedClass).length==0;},place:function(l){var box=l.align,v='top',h='left';if(typeof box=="object"){box=$.extend(l.calc.call(this,v,h,l),box);}else{if(box!='top-left'){var s=box.split('-');if(s.length==1){v=h=s[0];}else{v=s[0];h=s[1];}} +if(!this.hasClass(v))this.addClass(v);if(!this.hasClass(h))this.addClass(h);box=l.calc.call(this,v,h,l);} +this.show().css(l.box=box);},calc:function(v,h,l){var box=$.extend({},l.measure.call(l.parent,l)),H=$.boxModel?this.height():this.innerHeight(),W=$.boxModel?this.width():this.innerWidth();if(v!='top'){var d=box.height-H;if(v=='center'){d/=2;}else if(v!='bottom'){d=0;}else if($.boxModel){d-=css(this,'paddingTop')+css(this,'paddingBottom');} +box.top+=d;} +if(h!='left'){var d=box.width-W;if(h=='center'){d/=2;}else if(h!='right'){d=0;}else if($.boxModel){d-=css(this,'paddingLeft')+css(this,'paddingRight');} +box.left+=d;} +box.height=H;box.width=W;return box;},measure:function(l){return this.box||(this.box=l.page?l.pageBox(l):l.elementBox(this,l));},elementBox:function(e,l){if(e.css('position')=='absolute'){var box={top:0,left:0};}else{var box=e.position();box.top+=css(e,'marginTop');box.left+=css(e,'marginLeft');} +box.height=e.outerHeight();box.width=e.outerWidth();return box;},pageBox:function(l){var full=$.boxModel&&l.css.position!='fixed';return{top:0,left:0,height:get(full,'Height'),width:get(full,'Width')};function get(full,side){var doc=document;if(full){var s=side.toLowerCase(),d=$(doc)[s](),w=$(window)[s]();return d-css($(doc.body),'marginTop')>w?d:w;} +var c='client'+side;return Math.max(doc.documentElement[c],doc.body[c]);}},off:function(old,l){this.data('loading',null);if(old.maxout)clearTimeout(old.maxout);if(old.timeout)return clearTimeout(old.timeout);if(old.pulse)old.stopPulse.call(this,old,l);if(old.originalText)old.text=old.originalText;if(old.mask)old.stopMask.call(this,old,l);$(window).unbind(old.resizeEvents,old.resizer);if(old.display)old.display.remove();if(old.parent)old.parent.trigger('loadingEnd',[old]);},stopPulse:function(old,l){$.each(old.pulse.split(' '),function(){var p=old[this];if(p.end)p.end.call(l.display,old,l);if(p.interval)clearInterval(p.interval);if(p.timeout)clearTimeout(p.timeout);});},stopMask:function(old,l){this.removeClass(l.maskedClass);$(document).unbind(old.maskEvents,old.handler);old.mask.remove();}});function toOpts(s,l){if(l===undefined){l=(typeof s=="boolean")?{show:s}:s;}else{l.show=s;} +if(l&&(l.img||l.element)&&!l.pulse)l.pulse=false;if(l&&l.onAjax!==undefined&&l.show===undefined)l.show=false;return l;} +function css(el,prop){var val=el.css(prop);return val=='auto'?0:parseFloat(val,10);}})(jQuery); \ No newline at end of file diff --git a/edbob/pyramid/static/js/jquery.ui.js b/edbob/pyramid/static/js/jquery.ui.js new file mode 100644 index 0000000..1c96e68 --- /dev/null +++ b/edbob/pyramid/static/js/jquery.ui.js @@ -0,0 +1,1012 @@ +/*! + * jQuery UI 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI + */ +(function(c){c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.2",plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a=0)&&c(a).is(":focusable")}})}})(jQuery); +;/*! + * jQuery UI Widget 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Widget + */ +(function(b){var j=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add(this).each(function(){b(this).triggerHandler("remove")});return j.call(b(this),a,c)})};b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend({},c.options);b[e][a].prototype= +b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.substring(0,1)==="_")return h;e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==undefined){h=i;return false}}):this.each(function(){var g= +b.data(this,a);if(g){d&&g.option(d);g._init()}else b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){this.element=b(c).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(c)[this.widgetName],a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create(); +this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(a,c){var d=a,e=this;if(arguments.length===0)return b.extend({},e.options);if(typeof a==="string"){if(c===undefined)return this.options[a];d={};d[a]=c}b.each(d,function(f, +h){e._setOption(f,h)});return e},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a= +b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery); +;/*! + * jQuery UI Mouse 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Mouse + * + * Depends: + * jquery.ui.widget.js + */ +(function(c){c.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(b){return a._mouseDown(b)}).bind("click."+this.widgetName,function(b){if(a._preventClickEvent){a._preventClickEvent=false;b.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(a){a.originalEvent=a.originalEvent||{};if(!a.originalEvent.mouseHandled){this._mouseStarted&& +this._mouseUp(a);this._mouseDownEvent=a;var b=this,e=a.which==1,f=typeof this.options.cancel=="string"?c(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!e||f||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){b.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault(); +return true}}this._mouseMoveDelegate=function(d){return b._mouseMove(d)};this._mouseUpDelegate=function(d){return b._mouseUp(d)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);c.browser.safari||a.preventDefault();return a.originalEvent.mouseHandled=true}},_mouseMove:function(a){if(c.browser.msie&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&& +this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=a.target==this._mouseDownEvent.target;this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX- +a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery); +;/* + * jQuery UI Position 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Position + */ +(function(c){c.ui=c.ui||{};var m=/left|center|right/,n=/top|center|bottom/,p=c.fn.position,q=c.fn.offset;c.fn.position=function(a){if(!a||!a.of)return p.apply(this,arguments);a=c.extend({},a);var b=c(a.of),d=(a.collision||"flip").split(" "),e=a.offset?a.offset.split(" "):[0,0],g,h,i;if(a.of.nodeType===9){g=b.width();h=b.height();i={top:0,left:0}}else if(a.of.scrollTo&&a.of.document){g=b.width();h=b.height();i={top:b.scrollTop(),left:b.scrollLeft()}}else if(a.of.preventDefault){a.at="left top";g=h= +0;i={top:a.of.pageY,left:a.of.pageX}}else{g=b.outerWidth();h=b.outerHeight();i=b.offset()}c.each(["my","at"],function(){var f=(a[this]||"").split(" ");if(f.length===1)f=m.test(f[0])?f.concat(["center"]):n.test(f[0])?["center"].concat(f):["center","center"];f[0]=m.test(f[0])?f[0]:"center";f[1]=n.test(f[1])?f[1]:"center";a[this]=f});if(d.length===1)d[1]=d[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(a.at[0]==="right")i.left+=g;else if(a.at[0]==="center")i.left+= +g/2;if(a.at[1]==="bottom")i.top+=h;else if(a.at[1]==="center")i.top+=h/2;i.left+=e[0];i.top+=e[1];return this.each(function(){var f=c(this),k=f.outerWidth(),l=f.outerHeight(),j=c.extend({},i);if(a.my[0]==="right")j.left-=k;else if(a.my[0]==="center")j.left-=k/2;if(a.my[1]==="bottom")j.top-=l;else if(a.my[1]==="center")j.top-=l/2;j.left=parseInt(j.left);j.top=parseInt(j.top);c.each(["left","top"],function(o,r){c.ui.position[d[o]]&&c.ui.position[d[o]][r](j,{targetWidth:g,targetHeight:h,elemWidth:k, +elemHeight:l,offset:e,my:a.my,at:a.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(j,{using:a.using}))})};c.ui.position={fit:{left:function(a,b){var d=c(window);b=a.left+b.elemWidth-d.width()-d.scrollLeft();a.left=b>0?a.left-b:Math.max(0,a.left)},top:function(a,b){var d=c(window);b=a.top+b.elemHeight-d.height()-d.scrollTop();a.top=b>0?a.top-b:Math.max(0,a.top)}},flip:{left:function(a,b){if(b.at[0]!=="center"){var d=c(window);d=a.left+b.elemWidth-d.width()-d.scrollLeft();var e=b.my[0]==="left"? +-b.elemWidth:b.my[0]==="right"?b.elemWidth:0,g=-2*b.offset[0];a.left+=a.left<0?e+b.targetWidth+g:d>0?e-b.targetWidth+g:0}},top:function(a,b){if(b.at[1]!=="center"){var d=c(window);d=a.top+b.elemHeight-d.height()-d.scrollTop();var e=b.my[1]==="top"?-b.elemHeight:b.my[1]==="bottom"?b.elemHeight:0,g=b.at[1]==="top"?b.targetHeight:-b.targetHeight,h=-2*b.offset[1];a.top+=a.top<0?e+b.targetHeight+h:d>0?e+g+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(a,b){if(/static/.test(c.curCSS(a,"position")))a.style.position= +"relative";var d=c(a),e=d.offset(),g=parseInt(c.curCSS(a,"top",true),10)||0,h=parseInt(c.curCSS(a,"left",true),10)||0;e={top:b.top-e.top+g,left:b.left-e.left+h};"using"in b?b.using.call(a,e):d.css(e)};c.fn.offset=function(a){var b=this[0];if(!b||!b.ownerDocument)return null;if(a)return this.each(function(){c.offset.setOffset(this,a)});return q.call(this)}}})(jQuery); +;/* + * jQuery UI Draggable 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Draggables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){if(this.options.helper== +"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){if(this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){var b= +this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;return true},_mouseStart:function(a){var b=this.options;this.helper=this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={top:this.offset.top- +this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){this._clear();return false}this._cacheHelperProportions(); +d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!b){b=this._uiHash();if(this._trigger("drag",a,b)===false){this._mouseUp({});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis|| +this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=d.ui.ddmanager.drop(this,a);if(this.dropped){b=this.dropped;this.dropped=false}if(!this.element[0]||!this.element[0].parentNode)return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&&this.options.revert.call(this.element, +b)){var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",a)!==false&&this._clear();return false},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(a){var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){if(this== +a.target)b=true});return b},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone():this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]|| +0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0], +this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top- +(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment== +"parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&& +a.containment.constructor!=Array){var b=d(a.containment)[0];if(b){a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"), +10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}}else if(a.containment.constructor==Array)this.containment=a.containment},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0], +this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft(): +f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,g=a.pageY;if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.leftthis.containment[2])e=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.topthis.containment[3])?g:!(g-this.offset.click.topthis.containment[2])?e:!(e-this.offset.click.left
').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")})},stop:function(){d("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});d.ui.plugin.add("draggable","opacity",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options; +if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","scroll",{start:function(){var a=d(this).data("draggable");if(a.scrollParent[0]!=document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!= +"HTML"){if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY=0;h--){var i=c.snapElements[h].left,k=i+c.snapElements[h].width,j=c.snapElements[h].top,l=j+c.snapElements[h].height;if(i-e=j&&f<=l||h>=j&&h<=l||fl)&&(e>=i&& +e<=k||g>=i&&g<=k||ek);default:return false}};d.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(a,b){var c=d.ui.ddmanager.droppables[a.options.scope]||[],e=b?b.type:null,g=(a.currentItem||a.element).find(":data(droppable)").andSelf(),f=0;a:for(;f
').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(), +top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle= +this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!d(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne", +nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var e=0;e
');/sw|se|ne|nw/.test(g)&&f.css({zIndex:++a.zIndex});"se"==g&&f.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[g]=".ui-resizable-"+g;this.element.append(f)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor== +String)this.handles[i]=d(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=d(this.handles[i],this.element),l=0;l=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,l);this._proportionallyResize()}d(this.handles[i])}};this._renderAxis(this.element);this._handles=d(".ui-resizable-handle",this.element).disableSelection(); +this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();d(this.element).addClass("ui-resizable-autohide").hover(function(){d(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){d(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){d(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()}; +if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(d(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(), +e=this.element;this.resizing=true;this.documentScroll={top:d(document).scrollTop(),left:d(document).scrollLeft()};if(e.is(".ui-draggable")||/absolute/.test(e.css("position")))e.css({position:"absolute",top:c.top,left:c.left});d.browser.opera&&/relative/.test(e.css("position"))&&e.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var g=m(this.helper.css("top"));if(a.containment){c+=d(a.containment).scrollLeft()||0;g+=d(a.containment).scrollTop()||0}this.offset= +this.helper.offset();this.position={left:c,top:g};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:c,top:g};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio: +this.originalSize.width/this.originalSize.height||1;a=d(".ui-resizable-"+this.axis).css("cursor");d("body").css("cursor",a=="auto"?this.axis+"-resize":a);e.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,e=this._change[this.axis];if(!e)return false;c=e.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize", +b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var e=this._proportionallyResizeElements,g=e.length&&/textarea/i.test(e[0].nodeName);e=g&&d.ui.hasScroll(e[0],"left")?0:c.sizeDiff.height; +g={width:c.size.width-(g?0:c.sizeDiff.width),height:c.size.height-e};e=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var f=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(d.extend(g,{top:f,left:e}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}d("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop", +b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(k(b.left))this.position.left=b.left;if(k(b.top))this.position.top=b.top;if(k(b.height))this.size.height=b.height;if(k(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,e=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(e=="sw"){b.left=a.left+(c.width-b.width);b.top=null}if(e=="nw"){b.top= +a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,e=k(b.width)&&a.maxWidth&&a.maxWidthb.width,h=k(b.height)&&a.minHeight&&a.minHeight>b.height;if(f)b.width=a.minWidth;if(h)b.height=a.minHeight;if(e)b.width=a.maxWidth;if(g)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+this.size.height, +l=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(f&&l)b.left=i-a.minWidth;if(e&&l)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(g&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a');var a=d.browser.msie&&d.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b,a){return{width:this.originalSize.width+ +a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return d.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return d.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,c]))},ne:function(b,a,c){return d.extend(this._change.n.apply(this, +arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return d.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){d.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});d.extend(d.ui.resizable, +{version:"1.8.2"});d.ui.plugin.add("resizable","alsoResize",{start:function(){var b=d(this).data("resizable").options,a=function(c){d(c).each(function(){d(this).data("resizable-alsoresize",{width:parseInt(d(this).width(),10),height:parseInt(d(this).height(),10),left:parseInt(d(this).css("left"),10),top:parseInt(d(this).css("top"),10)})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize=b.alsoResize[0];a(b.alsoResize)}else d.each(b.alsoResize,function(c){a(c)}); +else a(b.alsoResize)},resize:function(){var b=d(this).data("resizable"),a=b.options,c=b.originalSize,e=b.originalPosition,g={height:b.size.height-c.height||0,width:b.size.width-c.width||0,top:b.position.top-e.top||0,left:b.position.left-e.left||0},f=function(h,i){d(h).each(function(){var j=d(this),l=d(this).data("resizable-alsoresize"),p={};d.each((i&&i.length?i:["width","height","top","left"])||["width","height","top","left"],function(n,o){if((n=(l[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(/relative/.test(j.css("position"))&& +d.browser.opera){b._revertToRelativePosition=true;j.css({position:"absolute",top:"auto",left:"auto"})}j.css(p)})};typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?d.each(a.alsoResize,function(h,i){f(h,i)}):f(a.alsoResize)},stop:function(){var b=d(this).data("resizable");if(b._revertToRelativePosition&&d.browser.opera){b._revertToRelativePosition=false;el.css({position:"relative"})}d(this).removeData("resizable-alsoresize-start")}});d.ui.plugin.add("resizable","animate",{stop:function(b){var a= +d(this).data("resizable"),c=a.options,e=a._proportionallyResizeElements,g=e.length&&/textarea/i.test(e[0].nodeName),f=g&&d.ui.hasScroll(e[0],"left")?0:a.sizeDiff.height;g={width:a.size.width-(g?0:a.sizeDiff.width),height:a.size.height-f};f=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(d.extend(g,h&&f?{top:h,left:f}:{}),{duration:c.animateDuration,easing:c.animateEasing, +step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};e&&e.length&&d(e[0]).css({width:i.width,height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});d.ui.plugin.add("resizable","containment",{start:function(){var b=d(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof d?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement= +d(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:d(document),left:0,top:0,width:d(document).width(),height:d(document).height()||document.body.parentNode.scrollHeight}}else{var e=d(a),g=[];d(["Top","Right","Left","Bottom"]).each(function(i,j){g[i]=m(e.css("padding"+j))});b.containerOffset=e.offset();b.containerPosition=e.position();b.containerSize={height:e.innerHeight()-g[3],width:e.innerWidth()-g[1]};c=b.containerOffset; +var f=b.containerSize.height,h=b.containerSize.width;h=d.ui.hasScroll(a,"left")?a.scrollWidth:h;f=d.ui.hasScroll(a)?a.scrollHeight:f;b.parentData={element:a,left:c.left,top:c.top,width:h,height:f}}}},resize:function(b){var a=d(this).data("resizable"),c=a.options,e=a.containerOffset,g=a.position;b=a._aspectRatio||b.shiftKey;var f={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))f=e;if(g.left<(a._helper?e.left:0)){a.size.width+=a._helper?a.position.left-e.left: +a.position.left-f.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?e.left:0}if(g.top<(a._helper?e.top:0)){a.size.height+=a._helper?a.position.top-e.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?e.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-f.left:a.offset.left-f.left)+a.sizeDiff.width);e=Math.abs((a._helper?a.offset.top-f.top:a.offset.top- +e.top)+a.sizeDiff.height);g=a.containerElement.get(0)==a.element.parent().get(0);f=/relative|absolute/.test(a.containerElement.css("position"));if(g&&f)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height=a.size.width/a.aspectRatio}if(e+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-e;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=d(this).data("resizable"),a=b.options,c=b.containerOffset,e=b.containerPosition, +g=b.containerElement,f=d(b.helper),h=f.offset(),i=f.outerWidth()-b.sizeDiff.width;f=f.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(g.css("position"))&&d(this).css({left:h.left-e.left-c.left,width:i,height:f});b._helper&&!a.animate&&/static/.test(g.css("position"))&&d(this).css({left:h.left-e.left-c.left,width:i,height:f})}});d.ui.plugin.add("resizable","ghost",{start:function(){var b=d(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25, +display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=d(this).data("resizable");b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=d(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});d.ui.plugin.add("resizable","grid",{resize:function(){var b= +d(this).data("resizable"),a=b.options,c=b.size,e=b.originalSize,g=b.originalPosition,f=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-e.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-e.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(f)){b.size.width=e.width+h;b.size.height=e.height+a}else if(/^(ne)$/.test(f)){b.size.width=e.width+h;b.size.height=e.height+a;b.position.top=g.top-a}else{if(/^(sw)$/.test(f)){b.size.width=e.width+h;b.size.height= +e.height+a}else{b.size.width=e.width+h;b.size.height=e.height+a;b.position.top=g.top-a}b.position.left=g.left-h}}});var m=function(b){return parseInt(b,10)||0},k=function(b){return!isNaN(parseInt(b,10))}})(jQuery); +; +/* + * jQuery UI Selectable 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Selectables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function($) { + +$.widget("ui.selectable", $.ui.mouse, { + options: { + appendTo: 'body', + autoRefresh: true, + distance: 0, + filter: '*', + tolerance: 'touch' + }, + _create: function() { + var self = this; + + this.element.addClass("ui-selectable"); + + this.dragged = false; + + // cache selectee children based on filter + var selectees; + this.refresh = function() { + selectees = $(self.options.filter, self.element[0]); + selectees.each(function() { + var $this = $(this); + var pos = $this.offset(); + $.data(this, "selectable-item", { + element: this, + $element: $this, + left: pos.left, + top: pos.top, + right: pos.left + $this.outerWidth(), + bottom: pos.top + $this.outerHeight(), + startselected: false, + selected: $this.hasClass('ui-selected'), + selecting: $this.hasClass('ui-selecting'), + unselecting: $this.hasClass('ui-unselecting') + }); + }); + }; + this.refresh(); + + this.selectees = selectees.addClass("ui-selectee"); + + this._mouseInit(); + + this.helper = $("
"); + }, + + destroy: function() { + this.selectees + .removeClass("ui-selectee") + .removeData("selectable-item"); + this.element + .removeClass("ui-selectable ui-selectable-disabled") + .removeData("selectable") + .unbind(".selectable"); + this._mouseDestroy(); + + return this; + }, + + _mouseStart: function(event) { + var self = this; + + this.opos = [event.pageX, event.pageY]; + + if (this.options.disabled) + return; + + var options = this.options; + + this.selectees = $(options.filter, this.element[0]); + + this._trigger("start", event); + + $(options.appendTo).append(this.helper); + // position helper (lasso) + this.helper.css({ + "z-index": 100, + "position": "absolute", + "left": event.clientX, + "top": event.clientY, + "width": 0, + "height": 0 + }); + + if (options.autoRefresh) { + this.refresh(); + } + + this.selectees.filter('.ui-selected').each(function() { + var selectee = $.data(this, "selectable-item"); + selectee.startselected = true; + if (!event.metaKey) { + selectee.$element.removeClass('ui-selected'); + selectee.selected = false; + selectee.$element.addClass('ui-unselecting'); + selectee.unselecting = true; + // selectable UNSELECTING callback + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + }); + + $(event.target).parents().andSelf().each(function() { + var selectee = $.data(this, "selectable-item"); + if (selectee) { + var doSelect = !event.metaKey || !selectee.$element.hasClass('ui-selected'); + selectee.$element + .removeClass(doSelect ? "ui-unselecting" : "ui-selected") + .addClass(doSelect ? "ui-selecting" : "ui-unselecting"); + selectee.unselecting = !doSelect; + selectee.selecting = doSelect; + selectee.selected = doSelect; + // selectable (UN)SELECTING callback + if (doSelect) { + self._trigger("selecting", event, { + selecting: selectee.element + }); + } else { + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + return false; + } + }); + + }, + + _mouseDrag: function(event) { + var self = this; + this.dragged = true; + + if (this.options.disabled) + return; + + var options = this.options; + + var x1 = this.opos[0], y1 = this.opos[1], x2 = event.pageX, y2 = event.pageY; + if (x1 > x2) { var tmp = x2; x2 = x1; x1 = tmp; } + if (y1 > y2) { var tmp = y2; y2 = y1; y1 = tmp; } + this.helper.css({left: x1, top: y1, width: x2-x1, height: y2-y1}); + + this.selectees.each(function() { + var selectee = $.data(this, "selectable-item"); + //prevent helper from being selected if appendTo: selectable + if (!selectee || selectee.element == self.element[0]) + return; + var hit = false; + if (options.tolerance == 'touch') { + hit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) ); + } else if (options.tolerance == 'fit') { + hit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2); + } + + if (hit) { + // SELECT + if (selectee.selected) { + selectee.$element.removeClass('ui-selected'); + selectee.selected = false; + } + if (selectee.unselecting) { + selectee.$element.removeClass('ui-unselecting'); + selectee.unselecting = false; + } + if (!selectee.selecting) { + selectee.$element.addClass('ui-selecting'); + selectee.selecting = true; + // selectable SELECTING callback + self._trigger("selecting", event, { + selecting: selectee.element + }); + } + } else { + // UNSELECT + if (selectee.selecting) { + if (event.metaKey && selectee.startselected) { + selectee.$element.removeClass('ui-selecting'); + selectee.selecting = false; + selectee.$element.addClass('ui-selected'); + selectee.selected = true; + } else { + selectee.$element.removeClass('ui-selecting'); + selectee.selecting = false; + if (selectee.startselected) { + selectee.$element.addClass('ui-unselecting'); + selectee.unselecting = true; + } + // selectable UNSELECTING callback + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + } + if (selectee.selected) { + if (!event.metaKey && !selectee.startselected) { + selectee.$element.removeClass('ui-selected'); + selectee.selected = false; + + selectee.$element.addClass('ui-unselecting'); + selectee.unselecting = true; + // selectable UNSELECTING callback + self._trigger("unselecting", event, { + unselecting: selectee.element + }); + } + } + } + }); + + return false; + }, + + _mouseStop: function(event) { + var self = this; + + this.dragged = false; + + var options = this.options; + + $('.ui-unselecting', this.element[0]).each(function() { + var selectee = $.data(this, "selectable-item"); + selectee.$element.removeClass('ui-unselecting'); + selectee.unselecting = false; + selectee.startselected = false; + self._trigger("unselected", event, { + unselected: selectee.element + }); + }); + $('.ui-selecting', this.element[0]).each(function() { + var selectee = $.data(this, "selectable-item"); + selectee.$element.removeClass('ui-selecting').addClass('ui-selected'); + selectee.selecting = false; + selectee.selected = true; + selectee.startselected = true; + self._trigger("selected", event, { + selected: selectee.element + }); + }); + this._trigger("stop", event); + + this.helper.remove(); + + return false; + } + +}); + +$.extend($.ui.selectable, { + version: "1.8.2" +}); + +})(jQuery); +(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){f=e(c.options.filter,c.element[0]);f.each(function(){var d=e(this),b=d.offset();e.data(this,"selectable-item",{element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"), +selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("
")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX, +c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting"); +b.unselecting=true;f._trigger("unselecting",c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f= +this;this.dragged=true;if(!this.options.disabled){var d=this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.righti||a.bottomb&&a.rightg&&a.bottom *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1E3},_create:function(){this.containerCache={};this.element.addClass("ui-sortable"); +this.refresh();this.floating=this.items.length?/left|right/.test(this.items[0].item.css("float")):false;this.offset=this.element.offset();this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var a=this.items.length-1;a>=0;a--)this.items[a].item.removeData("sortable-item");return this},_setOption:function(a,b){if(a==="disabled"){this.options[a]=b;this.widget()[b?"addClass":"removeClass"]("ui-sortable-disabled")}else d.Widget.prototype._setOption.apply(this, +arguments)},_mouseCapture:function(a,b){if(this.reverting)return false;if(this.options.disabled||this.options.type=="static")return false;this._refreshItems(a);var c=null,e=this;d(a.target).parents().each(function(){if(d.data(this,"sortable-item")==e){c=d(this);return false}});if(d.data(a.target,"sortable-item")==e)c=d(a.target);if(!c)return false;if(this.options.handle&&!b){var f=false;d(this.options.handle,c).find("*").andSelf().each(function(){if(this==a.target)f=true});if(!f)return false}this.currentItem= +c;this._removeCurrentsFromItems();return true},_mouseStart:function(a,b,c){b=this.options;var e=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(a);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");d.extend(this.offset, +{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};this.helper[0]!=this.currentItem[0]&&this.currentItem.hide();this._createPlaceholder();b.containment&&this._setContainment(); +if(b.cursor){if(d("body").css("cursor"))this._storedCursor=d("body").css("cursor");d("body").css("cursor",b.cursor)}if(b.opacity){if(this.helper.css("opacity"))this._storedOpacity=this.helper.css("opacity");this.helper.css("opacity",b.opacity)}if(b.zIndex){if(this.helper.css("zIndex"))this._storedZIndex=this.helper.css("zIndex");this.helper.css("zIndex",b.zIndex)}if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML")this.overflowOffset=this.scrollParent.offset();this._trigger("start", +a,this._uiHash());this._preserveHelperProportions||this._cacheHelperProportions();if(!c)for(c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("activate",a,e._uiHash(this));if(d.ui.ddmanager)d.ui.ddmanager.current=this;d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(a);return true},_mouseDrag:function(a){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute"); +if(!this.lastPositionAbs)this.lastPositionAbs=this.positionAbs;if(this.options.scroll){var b=this.options,c=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if(this.overflowOffset.top+this.scrollParent[0].offsetHeight-a.pageY=0;b--){c=this.items[b];var e=c.item[0],f=this._intersectsWithPointer(c);if(f)if(e!=this.currentItem[0]&&this.placeholder[f==1?"next":"prev"]()[0]!=e&&!d.ui.contains(this.placeholder[0],e)&&(this.options.type=="semi-dynamic"?!d.ui.contains(this.element[0],e):true)){this.direction=f==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(c))this._rearrange(a, +c);else break;this._trigger("change",a,this._uiHash());break}}this._contactContainers(a);d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);this._trigger("sort",a,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(a,b){if(a){d.ui.ddmanager&&!this.options.dropBehaviour&&d.ui.ddmanager.drop(this,a);if(this.options.revert){var c=this;b=c.placeholder.offset();c.reverting=true;d(this.helper).animate({left:b.left-this.offset.parent.left-c.margins.left+(this.offsetParent[0]== +document.body?0:this.offsetParent[0].scrollLeft),top:b.top-this.offset.parent.top-c.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){c._clear(a)})}else this._clear(a,b);return false}},cancel:function(){var a=this;if(this.dragging){this._mouseUp();this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):this.currentItem.show();for(var b=this.containers.length-1;b>=0;b--){this.containers[b]._trigger("deactivate", +null,a._uiHash(this));if(this.containers[b].containerCache.over){this.containers[b]._trigger("out",null,a._uiHash(this));this.containers[b].containerCache.over=0}}}this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove();d.extend(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});this.domPosition.prev?d(this.domPosition.prev).after(this.currentItem): +d(this.domPosition.parent).prepend(this.currentItem);return this},serialize:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};d(b).each(function(){var e=(d(a.item||this).attr(a.attribute||"id")||"").match(a.expression||/(.+)[-=_](.+)/);if(e)c.push((a.key||e[1]+"[]")+"="+(a.key&&a.expression?e[1]:e[2]))});return c.join("&")},toArray:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};b.each(function(){c.push(d(a.item||this).attr(a.attribute||"id")||"")});return c}, +_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,e=this.positionAbs.top,f=e+this.helperProportions.height,g=a.left,h=g+a.width,i=a.top,k=i+a.height,j=this.offset.click.top,l=this.offset.click.left;j=e+j>i&&e+jg&&b+la[this.floating?"width":"height"]?j:g0?"down":"up")},_getDragHorizontalDirection:function(){var a= +this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a);this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(a){var b=[],c=[],e=this._connectWith();if(e&&a)for(a=e.length-1;a>=0;a--)for(var f=d(e[a]),g=f.length-1;g>=0;g--){var h=d.data(f[g],"sortable");if(h&&h!=this&&!h.options.disabled)c.push([d.isFunction(h.options.items)? +h.options.items.call(h.element):d(h.options.items,h.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),h])}c.push([d.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):d(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),this]);for(a=c.length-1;a>=0;a--)c[a][0].each(function(){b.push(this)});return d(b)},_removeCurrentsFromItems:function(){for(var a=this.currentItem.find(":data(sortable-item)"), +b=0;b=0;f--)for(var g=d(e[f]),h=g.length-1;h>=0;h--){var i=d.data(g[h],"sortable");if(i&&i!=this&&!i.options.disabled){c.push([d.isFunction(i.options.items)? +i.options.items.call(i.element[0],a,{item:this.currentItem}):d(i.options.items,i.element),i]);this.containers.push(i)}}for(f=c.length-1;f>=0;f--){a=c[f][1];e=c[f][0];h=0;for(g=e.length;h=0;b--){var c=this.items[b],e=this.options.toleranceElement?d(this.options.toleranceElement, +c.item):c.item;if(!a){c.width=e.outerWidth();c.height=e.outerHeight()}e=e.offset();c.left=e.left;c.top=e.top}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(b=this.containers.length-1;b>=0;b--){e=this.containers[b].element.offset();this.containers[b].containerCache.left=e.left;this.containers[b].containerCache.top=e.top;this.containers[b].containerCache.width=this.containers[b].element.outerWidth();this.containers[b].containerCache.height= +this.containers[b].element.outerHeight()}return this},_createPlaceholder:function(a){var b=a||this,c=b.options;if(!c.placeholder||c.placeholder.constructor==String){var e=c.placeholder;c.placeholder={element:function(){var f=d(document.createElement(b.currentItem[0].nodeName)).addClass(e||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!e)f.style.visibility="hidden";return f},update:function(f,g){if(!(e&&!c.forcePlaceholderSize)){g.height()||g.height(b.currentItem.innerHeight()- +parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10));g.width()||g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholder=d(c.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);c.placeholder.update(b,b.placeholder)},_contactContainers:function(a){for(var b=null,c=null,e=this.containers.length-1;e>=0;e--)if(!d.ui.contains(this.currentItem[0], +this.containers[e].element[0]))if(this._intersectsWith(this.containers[e].containerCache)){if(!(b&&d.ui.contains(this.containers[e].element[0],b.element[0]))){b=this.containers[e];c=e}}else if(this.containers[e].containerCache.over){this.containers[e]._trigger("out",a,this._uiHash(this));this.containers[e].containerCache.over=0}if(b)if(this.containers.length===1){this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}else if(this.currentContainer!=this.containers[c]){b= +1E4;e=null;for(var f=this.positionAbs[this.containers[c].floating?"left":"top"],g=this.items.length-1;g>=0;g--)if(d.ui.contains(this.containers[c].element[0],this.items[g].item[0])){var h=this.items[g][this.containers[c].floating?"left":"top"];if(Math.abs(h-f)this.containment[2])f=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.topthis.containment[3])?g:!(g-this.offset.click.topthis.containment[2])?f:!(f-this.offset.click.left=0;e--)if(d.ui.contains(this.containers[e].element[0],this.currentItem[0])&&!b){c.push(function(f){return function(g){f._trigger("receive",g,this._uiHash(this))}}.call(this,this.containers[e]));c.push(function(f){return function(g){f._trigger("update", +g,this._uiHash(this))}}.call(this,this.containers[e]))}}for(e=this.containers.length-1;e>=0;e--){b||c.push(function(f){return function(g){f._trigger("deactivate",g,this._uiHash(this))}}.call(this,this.containers[e]));if(this.containers[e].containerCache.over){c.push(function(f){return function(g){f._trigger("out",g,this._uiHash(this))}}.call(this,this.containers[e]));this.containers[e].containerCache.over=0}}this._storedCursor&&d("body").css("cursor",this._storedCursor);this._storedOpacity&&this.helper.css("opacity", +this._storedOpacity);if(this._storedZIndex)this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex);this.dragging=false;if(this.cancelHelperRemoval){if(!b){this._trigger("beforeStop",a,this._uiHash());for(e=0;e li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},_create:function(){var a=this.options,b=this;this.running=0;this.element.addClass("ui-accordion ui-widget ui-helper-reset"); +this.element.children("li").addClass("ui-accordion-li-fix");this.headers=this.element.find(a.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){c(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){c(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){c(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){c(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom"); +if(a.navigation){var d=this.element.find("a").filter(a.navigationFilter);if(d.length){var f=d.closest(".ui-accordion-header");this.active=f.length?f:d.closest(".ui-accordion-content").prev()}}this.active=this._findActive(this.active||a.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");this._createIcons();this.resize();this.element.attr("role","tablist");this.headers.attr("role", +"tab").bind("keydown",function(g){return b._keydown(g)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();this.active.length?this.active.attr("aria-expanded","true").attr("tabIndex","0"):this.headers.eq(0).attr("tabIndex","0");c.browser.safari||this.headers.find("a").attr("tabIndex","-1");a.event&&this.headers.bind(a.event+".accordion",function(g){b._clickHandler.call(b,g,this);g.preventDefault()})},_createIcons:function(){var a= +this.options;if(a.icons){c("").addClass("ui-icon "+a.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(a.icons.header).toggleClass(a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){var a=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion"); +this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabIndex");this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(a.autoHeight||a.fillHeight)b.css("height", +"");return this},_setOption:function(a,b){c.Widget.prototype._setOption.apply(this,arguments);a=="active"&&this.activate(b);if(a=="icons"){this._destroyIcons();b&&this._createIcons()}},_keydown:function(a){var b=c.ui.keyCode;if(!(this.options.disabled||a.altKey||a.ctrlKey)){var d=this.headers.length,f=this.headers.index(a.target),g=false;switch(a.keyCode){case b.RIGHT:case b.DOWN:g=this.headers[(f+1)%d];break;case b.LEFT:case b.UP:g=this.headers[(f-1+d)%d];break;case b.SPACE:case b.ENTER:this._clickHandler({target:a.target}, +a.target);a.preventDefault()}if(g){c(a.target).attr("tabIndex","-1");c(g).attr("tabIndex","0");g.focus();return false}return true}},resize:function(){var a=this.options,b;if(a.fillSpace){if(c.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}b=this.element.parent().height();c.browser.msie&&this.element.parent().css("overflow",d);this.headers.each(function(){b-=c(this).outerHeight(true)});this.headers.next().each(function(){c(this).height(Math.max(0, +b-c(this).innerHeight()+c(this).height()))}).css("overflow","auto")}else if(a.autoHeight){b=0;this.headers.next().each(function(){b=Math.max(b,c(this).height())}).height(b)}return this},activate:function(a){this.options.active=a;a=this._findActive(a)[0];this._clickHandler({target:a},a);return this},_findActive:function(a){return a?typeof a=="number"?this.headers.filter(":eq("+a+")"):this.headers.not(this.headers.not(a)):a===false?c([]):this.headers.filter(":eq(0)")},_clickHandler:function(a,b){var d= +this.options;if(!d.disabled)if(a.target){a=c(a.currentTarget||b);b=a[0]==this.active[0];d.active=d.collapsible&&b?false:c(".ui-accordion-header",this.element).index(a);if(!(this.running||!d.collapsible&&b)){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);if(!b){a.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected); +a.next().addClass("ui-accordion-content-active")}e=a.next();f=this.active.next();g={options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:this.active,newContent:b&&d.collapsible?c([]):e,oldContent:f};d=this.headers.index(this.active[0])>this.headers.index(a[0]);this.active=b?c([]):a;this._toggle(e,f,g,b,d)}}else if(d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header); +this.active.next().addClass("ui-accordion-content-active");var f=this.active.next(),g={options:d,newHeader:c([]),oldHeader:d.active,newContent:c([]),oldContent:f},e=this.active=c([]);this._toggle(e,f,g)}},_toggle:function(a,b,d,f,g){var e=this.options,k=this;this.toShow=a;this.toHide=b;this.data=d;var i=function(){if(k)return k._completed.apply(k,arguments)};this._trigger("changestart",null,this.data);this.running=b.size()===0?a.size():b.size();if(e.animated){d={};d=e.collapsible&&f?{toShow:c([]), +toHide:b,complete:i,down:g,autoHeight:e.autoHeight||e.fillSpace}:{toShow:a,toHide:b,complete:i,down:g,autoHeight:e.autoHeight||e.fillSpace};if(!e.proxied)e.proxied=e.animated;if(!e.proxiedDuration)e.proxiedDuration=e.duration;e.animated=c.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=c.isFunction(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;f=c.ui.accordion.animations;var h=e.duration,j=e.animated;if(j&&!f[j]&&!c.easing[j])j="slide";f[j]||(f[j]=function(l){this.slide(l,{easing:j, +duration:h||700})});f[j](d)}else{if(e.collapsible&&f)a.toggle();else{b.hide();a.show()}i(true)}b.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();a.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(a){var b=this.options;this.running=a?0:--this.running;if(!this.running){b.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""});this.toHide.removeClass("ui-accordion-content-active");this._trigger("change",null,this.data)}}});c.extend(c.ui.accordion, +{version:"1.8.2",animations:{slide:function(a,b){a=c.extend({easing:"swing",duration:300},a,b);if(a.toHide.size())if(a.toShow.size()){var d=a.toShow.css("overflow"),f=0,g={},e={},k;b=a.toShow;k=b[0].style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddingLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLeftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["height","paddingTop","paddingBottom"],function(i,h){e[h]="hide";i=(""+c.css(a.toShow[0], +h)).match(/^([\d+-.]+)(.*)$/);g[h]={value:i[1],unit:i[2]||"px"}});a.toShow.css({height:0,overflow:"hidden"}).show();a.toHide.filter(":hidden").each(a.complete).end().filter(":visible").animate(e,{step:function(i,h){if(h.prop=="height")f=h.end-h.start===0?0:(h.now-h.start)/(h.end-h.start);a.toShow[0].style[h.prop]=f*g[h.prop].value+g[h.prop].unit},duration:a.duration,easing:a.easing,complete:function(){a.autoHeight||a.toShow.css("height","");a.toShow.css("width",k);a.toShow.css({overflow:d});a.complete()}})}else a.toHide.animate({height:"hide"}, +a);else a.toShow.animate({height:"show"},a)},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1E3:200})}}})})(jQuery); +;/* + * jQuery UI Autocomplete 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Autocomplete + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + * jquery.ui.position.js + */ +(function(e){e.widget("ui.autocomplete",{options:{minLength:1,delay:300},_create:function(){var a=this,c=this.element[0].ownerDocument;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(d){var b=e.ui.keyCode;switch(d.keyCode){case b.PAGE_UP:a._move("previousPage",d);break;case b.PAGE_DOWN:a._move("nextPage",d);break;case b.UP:a._move("previous",d);d.preventDefault(); +break;case b.DOWN:a._move("next",d);d.preventDefault();break;case b.ENTER:case b.NUMPAD_ENTER:a.menu.active&&d.preventDefault();case b.TAB:if(!a.menu.active)return;a.menu.select(d);break;case b.ESCAPE:a.element.val(a.term);a.close(d);break;case b.LEFT:case b.RIGHT:case b.SHIFT:case b.CONTROL:case b.ALT:case b.COMMAND:case b.COMMAND_RIGHT:case b.INSERT:case b.CAPS_LOCK:case b.END:case b.HOME:break;default:clearTimeout(a.searching);a.searching=setTimeout(function(){a.search(null,d)},a.options.delay); +break}}).bind("focus.autocomplete",function(){a.selectedItem=null;a.previous=a.element.val()}).bind("blur.autocomplete",function(d){clearTimeout(a.searching);a.closing=setTimeout(function(){a.close(d);a._change(d)},150)});this._initSource();this.response=function(){return a._response.apply(a,arguments)};this.menu=e("
    ").addClass("ui-autocomplete").appendTo("body",c).mousedown(function(){setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(d,b){b=b.item.data("item.autocomplete"); +false!==a._trigger("focus",null,{item:b})&&/^key/.test(d.originalEvent.type)&&a.element.val(b.value)},selected:function(d,b){b=b.item.data("item.autocomplete");false!==a._trigger("select",d,{item:b})&&a.element.val(b.value);a.close(d);d=a.previous;if(a.element[0]!==c.activeElement){a.element.focus();a.previous=d}a.selectedItem=b},blur:function(){a.menu.element.is(":visible")&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");e.fn.bgiframe&&this.menu.element.bgiframe()}, +destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");this.menu.element.remove();e.Widget.prototype.destroy.call(this)},_setOption:function(a){e.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource()},_initSource:function(){var a,c;if(e.isArray(this.options.source)){a=this.options.source;this.source=function(d,b){b(e.ui.autocomplete.filter(a,d.term))}}else if(typeof this.options.source=== +"string"){c=this.options.source;this.source=function(d,b){e.getJSON(c,d,b)}}else this.source=this.options.source},search:function(a,c){a=a!=null?a:this.element.val();if(a.length").data("item.autocomplete", +c).append(""+c.label+"").appendTo(a)},_move:function(a,c){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](c);else this.search(null,c)},widget:function(){return this.menu.element}});e.extend(e.ui.autocomplete,{escapeRegex:function(a){return a.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi,"\\$1")},filter:function(a,c){var d=new RegExp(e.ui.autocomplete.escapeRegex(c), +"i");return e.grep(a,function(b){return d.test(b.label||b.value||b)})}})})(jQuery); +(function(e){e.widget("ui.menu",{_create:function(){var a=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(c){if(e(c.target).closest(".ui-menu-item a").length){c.preventDefault();a.select(c)}});this.refresh()},refresh:function(){var a=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex", +-1).mouseenter(function(c){a.activate(c,e(this).parent())}).mouseleave(function(){a.deactivate()})},activate:function(a,c){this.deactivate();if(this.hasScroll()){var d=c.offset().top-this.element.offset().top,b=this.element.attr("scrollTop"),f=this.element.height();if(d<0)this.element.attr("scrollTop",b+d);else d>f&&this.element.attr("scrollTop",b+d-f+c.height())}this.active=c.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",a,{item:c})},deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id"); +this._trigger("blur");this.active=null}},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prev().length},last:function(){return this.active&&!this.active.next().length},move:function(a,c,d){if(this.active){a=this.active[a+"All"](".ui-menu-item").eq(0);a.length?this.activate(d,a):this.activate(d,this.element.children(c))}else this.activate(d,this.element.children(c))},nextPage:function(a){if(this.hasScroll())if(!this.active|| +this.last())this.activate(a,this.element.children(":first"));else{var c=this.active.offset().top,d=this.element.height(),b=this.element.children("li").filter(function(){var f=e(this).offset().top-c-d+e(this).height();return f<10&&f>-10});b.length||(b=this.element.children(":last"));this.activate(a,b)}else this.activate(a,this.element.children(!this.active||this.last()?":first":":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(":last")); +else{var c=this.active.offset().top,d=this.element.height();result=this.element.children("li").filter(function(){var b=e(this).offset().top-c+d-e(this).height();return b<10&&b>-10});result.length||(result=this.element.children(":first"));this.activate(a,result)}else this.activate(a,this.element.children(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()
    ").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,e=d.primary&&d.secondary;if(d.primary||d.secondary){b.addClass("ui-button-text-icon"+(e?"s":""));d.primary&&b.prepend("");d.secondary&&b.append("");if(!this.options.text){b.addClass(e?"ui-button-icons-only":"ui-button-icon-only").removeClass("ui-button-text-icons ui-button-text-icon"); +this.hasTitle||b.attr("title",c)}}else b.addClass("ui-button-text-only")}}});a.widget("ui.buttonset",{_create:function(){this.element.addClass("ui-buttonset");this._init()},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){this.buttons=this.element.find(":button, :submit, :reset, :checkbox, :radio, a, :data(button)").filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end()}, +destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery); +;/* + * jQuery UI Dialog 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + * jquery.ui.button.js + * jquery.ui.draggable.js + * jquery.ui.mouse.js + * jquery.ui.position.js + * jquery.ui.resizable.js + */ +(function(c){c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");var a=this,b=a.options,d=b.title||a.originalTitle||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("
    ")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+ +b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("
    ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g), +h=c('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("").addClass("ui-dialog-title").attr("id", +e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"); +a.uiDialog.remove();a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!== +b.uiDialog[0])d=Math.max(d,c(this).css("z-index"))});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index", +c.ui.dialog.maxZ);d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;d.next().length&&d.appendTo("body");a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target=== +f[0]&&e.shiftKey){g.focus(1);return false}}});c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();a._trigger("open");a._isOpen=true;return a}},_createButtons:function(a){var b=this,d=false,e=c("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a, +function(g,f){g=c('').text(g).click(function(){f.apply(b.element[0],arguments)}).appendTo(e);c.fn.button&&g.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g=d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging"); +b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,originalSize:f.originalSize,position:f.position,size:f.size}}a=a===undefined?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position"); +a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",f,b(h))},stop:function(f,h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop", +f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0];a=a||c.ui.dialog.prototype.options.position;if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length===1)b[1]=b[0];c.each(["left","top"],function(e,g){if(+b[e]===b[e]){d[e]=b[e];b[e]= +g}})}else if(typeof a==="object"){if("left"in a){b[0]="left";d[0]=a.left}else if("right"in a){b[0]="right";d[0]=-a.right}if("top"in a){b[1]="top";d[1]=a.top}else if("bottom"in a){b[1]="bottom";d[1]=-a.bottom}}(a=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position({my:b.join(" "),at:b.join(" "),offset:d.join(" "),of:window,collision:"fit",using:function(e){var g=c(this).css(e).offset().top;g<0&&c(this).css("top",e.top-g)}});a||this.uiDialog.hide()},_setOption:function(a, +b){var d=this,e=d.uiDialog,g=e.is(":data(resizable)"),f=false;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):e.removeClass("ui-dialog-disabled");break;case "draggable":b?d._makeDraggable():e.draggable("destroy");break; +case "height":f=true;break;case "maxHeight":g&&e.resizable("option","maxHeight",b);f=true;break;case "maxWidth":g&&e.resizable("option","maxWidth",b);f=true;break;case "minHeight":g&&e.resizable("option","minHeight",b);f=true;break;case "minWidth":g&&e.resizable("option","minWidth",b);f=true;break;case "position":d._position(b);break;case "resizable":g&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title", +d.uiDialogTitlebar).html(""+(b||" "));break;case "width":f=true;break}c.Widget.prototype._setOption.apply(d,arguments);f&&d._size()},_size:function(){var a=this.options,b;this.element.css({width:"auto",minHeight:0,height:0});b=this.uiDialog.css({height:"auto",width:a.width}).height();this.element.css(a.height==="auto"?{minHeight:Math.max(a.minHeight-b,0),height:"auto"}:{minHeight:0,height:Math.max(a.height-b,0)}).show();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight", +this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.2",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length===0){setTimeout(function(){c.ui.dialog.overlay.instances.length&& +c(document).bind(c.ui.dialog.overlay.events,function(d){return c(d.target).zIndex()>=c.ui.dialog.overlay.maxZ})},1);c(document).bind("keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=(this.oldInstances.pop()||c("
    ").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),height:this.height()});c.fn.bgiframe&& +b.bgiframe();this.instances.push(b);return b},destroy:function(a){this.oldInstances.push(this.instances.splice(c.inArray(a,this.instances),1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var b=0;c.each(this.instances,function(){b=Math.max(b,this.css("z-index"))});this.maxZ=b},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);b=Math.max(document.documentElement.offsetHeight, +document.body.offsetHeight);return a");if(!b.values)b.values=[this._valueMin(),this._valueMin()];if(b.values.length&&b.values.length!==2)b.values=[b.values[0],b.values[0]]}else this.range=d("
    ");this.range.appendTo(this.element).addClass("ui-slider-range");if(b.range==="min"||b.range==="max")this.range.addClass("ui-slider-range-"+b.range);this.range.addClass("ui-widget-header")}d(".ui-slider-handle",this.element).length===0&&d("").appendTo(this.element).addClass("ui-slider-handle"); +if(b.values&&b.values.length)for(;d(".ui-slider-handle",this.element).length").appendTo(this.element).addClass("ui-slider-handle");this.handles=d(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(c){c.preventDefault()}).hover(function(){b.disabled||d(this).addClass("ui-state-hover")},function(){d(this).removeClass("ui-state-hover")}).focus(function(){if(b.disabled)d(this).blur(); +else{d(".ui-slider .ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-state-focus")}}).blur(function(){d(this).removeClass("ui-state-focus")});this.handles.each(function(c){d(this).data("index.ui-slider-handle",c)});this.handles.keydown(function(c){var e=true,f=d(this).data("index.ui-slider-handle"),g,h,i;if(!a.options.disabled){switch(c.keyCode){case d.ui.keyCode.HOME:case d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:e= +false;if(!a._keySliding){a._keySliding=true;d(this).addClass("ui-state-active");g=a._start(c,f);if(g===false)return}break}i=a.options.step;g=a.options.values&&a.options.values.length?(h=a.values(f)):(h=a.value());switch(c.keyCode){case d.ui.keyCode.HOME:h=a._valueMin();break;case d.ui.keyCode.END:h=a._valueMax();break;case d.ui.keyCode.PAGE_UP:h=a._trimAlignValue(g+(a._valueMax()-a._valueMin())/5);break;case d.ui.keyCode.PAGE_DOWN:h=a._trimAlignValue(g-(a._valueMax()-a._valueMin())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(g=== +a._valueMax())return;h=a._trimAlignValue(g+i);break;case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:if(g===a._valueMin())return;h=a._trimAlignValue(g-i);break}a._slide(c,f,h);return e}}).keyup(function(c){var e=d(this).data("index.ui-slider-handle");if(a._keySliding){a._keySliding=false;a._stop(c,e);a._change(c,e);d(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider"); +this._mouseDestroy();return this},_mouseCapture:function(a){var b=this.options,c,e,f,g,h,i;if(b.disabled)return false;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();c={x:a.pageX,y:a.pageY};e=this._normValueFromMouse(c);f=this._valueMax()-this._valueMin()+1;h=this;this.handles.each(function(j){var k=Math.abs(e-h.values(j));if(f>k){f=k;g=d(this);i=j}});if(b.range===true&&this.values(1)===b.min){i+=1;g=d(this.handles[i])}if(this._start(a, +i)===false)return false;this._mouseSliding=true;h._handleIndex=i;g.addClass("ui-state-active").focus();b=g.offset();this._clickOffset=!d(a.target).parents().andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:a.pageX-b.left-g.width()/2,top:a.pageY-b.top-g.height()/2-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)};e=this._normValueFromMouse(c);this._slide(a,i,e);return this._animateOff=true},_mouseStart:function(){return true}, +_mouseDrag:function(a){var b=this._normValueFromMouse({x:a.pageX,y:a.pageY});this._slide(a,this._handleIndex,b);return false},_mouseStop:function(a){this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(a,this._handleIndex);this._change(a,this._handleIndex);this._clickOffset=this._handleIndex=null;return this._animateOff=false},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(a){var b; +if(this.orientation==="horizontal"){b=this.elementSize.width;a=a.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{b=this.elementSize.height;a=a.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}b=a/b;if(b>1)b=1;if(b<0)b=0;if(this.orientation==="vertical")b=1-b;a=this._valueMax()-this._valueMin();return this._trimAlignValue(this._valueMin()+b*a)},_start:function(a,b){var c={handle:this.handles[b],value:this.value()};if(this.options.values&&this.options.values.length){c.value= +this.values(b);c.values=this.values()}return this._trigger("start",a,c)},_slide:function(a,b,c){var e;if(this.options.values&&this.options.values.length){e=this.values(b?0:1);if(this.options.values.length===2&&this.options.range===true&&(b===0&&c>e||b===1&&c1){this.options.values[a]=this._trimAlignValue(b);this._refreshValue();this._change(null,a)}if(arguments.length)if(d.isArray(arguments[0])){c=this.options.values;e=arguments[0];for(f=0;fthis._valueMax())return this._valueMax();var b=this.options.step>0?this.options.step:1,c=a%b;a=a-c;if(Math.abs(c)*2>=b)a+=c>0?b:-b;return parseFloat(a.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},_refreshValue:function(){var a= +this.options.range,b=this.options,c=this,e=!this._animateOff?b.animate:false,f,g={},h,i,j,k;if(this.options.values&&this.options.values.length)this.handles.each(function(l){f=(c.values(l)-c._valueMin())/(c._valueMax()-c._valueMin())*100;g[c.orientation==="horizontal"?"left":"bottom"]=f+"%";d(this).stop(1,1)[e?"animate":"css"](g,b.animate);if(c.options.range===true)if(c.orientation==="horizontal"){if(l===0)c.range.stop(1,1)[e?"animate":"css"]({left:f+"%"},b.animate);if(l===1)c.range[e?"animate":"css"]({width:f- +h+"%"},{queue:false,duration:b.animate})}else{if(l===0)c.range.stop(1,1)[e?"animate":"css"]({bottom:f+"%"},b.animate);if(l===1)c.range[e?"animate":"css"]({height:f-h+"%"},{queue:false,duration:b.animate})}h=f});else{i=this.value();j=this._valueMin();k=this._valueMax();f=k!==j?(i-j)/(k-j)*100:0;g[c.orientation==="horizontal"?"left":"bottom"]=f+"%";this.handle.stop(1,1)[e?"animate":"css"](g,b.animate);if(a==="min"&&this.orientation==="horizontal")this.range.stop(1,1)[e?"animate":"css"]({width:f+"%"}, +b.animate);if(a==="max"&&this.orientation==="horizontal")this.range[e?"animate":"css"]({width:100-f+"%"},{queue:false,duration:b.animate});if(a==="min"&&this.orientation==="vertical")this.range.stop(1,1)[e?"animate":"css"]({height:f+"%"},b.animate);if(a==="max"&&this.orientation==="vertical")this.range[e?"animate":"css"]({height:100-f+"%"},{queue:false,duration:b.animate})}}});d.extend(d.ui.slider,{version:"1.8.2"})})(jQuery); +;/* + * jQuery UI Tabs 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Tabs + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + */ +(function(d){function s(){return++u}function v(){return++w}var u=0,w=0;d.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"
    ",remove:null,select:null,show:null,spinner:"Loading…",tabTemplate:'
  • #{label}
  • '},_create:function(){this._tabify(true)},_setOption:function(c,e){if(c=="selected")this.options.collapsible&& +e==this.options.selected||this.select(e);else{this.options[c]=e;this._tabify()}},_tabId:function(c){return c.title&&c.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+s()},_sanitizeSelector:function(c){return c.replace(/:/g,"\\:")},_cookie:function(){var c=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+v());return d.cookie.apply(null,[c].concat(d.makeArray(arguments)))},_ui:function(c,e){return{tab:c,panel:e,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var c= +d(this);c.html(c.data("label.tabs")).removeData("label.tabs")})},_tabify:function(c){function e(g,f){g.css({display:""});!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}this.list=this.element.find("ol,ul").eq(0);this.lis=d("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);var a=this,b=this.options,h=/^#.+/;this.anchors.each(function(g,f){var j=d(f).attr("href"),l=j.split("#")[0],p;if(l&&(l===location.toString().split("#")[0]|| +(p=d("base")[0])&&l===p.href)){j=f.hash;f.href=j}if(h.test(j))a.panels=a.panels.add(a._sanitizeSelector(j));else if(j!="#"){d.data(f,"href.tabs",j);d.data(f,"load.tabs",j.replace(/#.*$/,""));j=a._tabId(f);f.href="#"+j;f=d("#"+j);if(!f.length){f=d(b.panelTemplate).attr("id",j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else b.disabled.push(g)});if(c){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"); +this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(b.selected===undefined){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){b.selected=g;return false}});if(typeof b.selected!="number"&&b.cookie)b.selected=parseInt(a._cookie(),10);if(typeof b.selected!="number"&&this.lis.filter(".ui-tabs-selected").length)b.selected= +this.lis.index(this.lis.filter(".ui-tabs-selected"));b.selected=b.selected||(this.lis.length?0:-1)}else if(b.selected===null)b.selected=-1;b.selected=b.selected>=0&&this.anchors[b.selected]||b.selected<0?b.selected:0;b.disabled=d.unique(b.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(b.selected,b.disabled)!=-1&&b.disabled.splice(d.inArray(b.selected,b.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active"); +if(b.selected>=0&&this.anchors.length){this.panels.eq(b.selected).removeClass("ui-tabs-hide");this.lis.eq(b.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[b.selected],a.panels[b.selected]))});this.load(b.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else b.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));this.element[b.collapsible?"addClass": +"removeClass"]("ui-tabs-collapsible");b.cookie&&this._cookie(b.selected,b.cookie);c=0;for(var i;i=this.lis[c];c++)d(i)[d.inArray(c,b.disabled)!=-1&&!d(i).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");b.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(b.event!="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+g)};this.lis.bind("mouseover.tabs", +function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(b.fx)if(d.isArray(b.fx)){m=b.fx[0];o=b.fx[1]}else m=o=b.fx;var q=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",function(){e(f,o);a._trigger("show", +null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},r=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};this.anchors.bind(b.event+".tabs", +function(){var g=this,f=d(this).closest("li"),j=a.panels.filter(":not(.ui-tabs-hide)"),l=d(a._sanitizeSelector(this.hash));if(f.hasClass("ui-tabs-selected")&&!b.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}b.selected=a.anchors.index(this);a.abort();if(b.collapsible)if(f.hasClass("ui-tabs-selected")){b.selected=-1;b.cookie&&a._cookie(b.selected,b.cookie);a.element.queue("tabs",function(){r(g, +j)}).dequeue("tabs");this.blur();return false}else if(!j.length){b.cookie&&a._cookie(b.selected,b.cookie);a.element.queue("tabs",function(){q(g,l)});a.load(a.anchors.index(this));this.blur();return false}b.cookie&&a._cookie(b.selected,b.cookie);if(l.length){j.length&&a.element.queue("tabs",function(){r(g,j)});a.element.queue("tabs",function(){q(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";d.browser.msie&&this.blur()});this.anchors.bind("click.tabs", +function(){return false})},destroy:function(){var c=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(b,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this, +"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});c.cookie&&this._cookie(null,c.cookie);return this},add:function(c,e,a){if(a===undefined)a=this.anchors.length;var b=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,c).replace(/#\{label\}/g,e));c=!c.indexOf("#")?c.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs", +true);var i=d("#"+c);i.length||(i=d(h.panelTemplate).attr("id",c).data("destroy.tabs",true));i.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);i.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]);i.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");i.removeClass("ui-tabs-hide"); +this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(c){var e=this.options,a=this.lis.eq(c).remove(),b=this.panels.eq(c).remove();if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(c+(c+1=c?--h:h});this._tabify();this._trigger("remove", +null,this._ui(a.find("a")[0],b[0]));return this},enable:function(c){var e=this.options;if(d.inArray(c,e.disabled)!=-1){this.lis.eq(c).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=c});this._trigger("enable",null,this._ui(this.anchors[c],this.panels[c]));return this}},disable:function(c){var e=this.options;if(c!=e.selected){this.lis.eq(c).addClass("ui-state-disabled");e.disabled.push(c);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}return this}, +select:function(c){if(typeof c=="string")c=this.anchors.index(this.anchors.filter("[href$="+c+"]"));else if(c===null)c=-1;if(c==-1&&this.options.collapsible)c=this.options.selected;this.anchors.eq(c).trigger(this.options.event+".tabs");return this},load:function(c){var e=this,a=this.options,b=this.anchors.eq(c)[0],h=d.data(b,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(b,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(c).addClass("ui-state-processing"); +if(a.spinner){var i=d("span",b);i.data("label.tabs",i.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){d(e._sanitizeSelector(b.hash)).html(k);e._cleanup();a.cache&&d.data(b,"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[c],e.panels[c]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[c],e.panels[c]));try{a.ajaxOptions.error(k,n,c,b)}catch(m){}}}));e.element.dequeue("tabs");return this}}, +abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},url:function(c,e){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.2"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(c,e){var a=this,b=this.options,h=a._rotate||(a._rotate= +function(i){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=b.selected;a.select(++k')}function E(a,b){d.extend(a, +b);for(var c in b)if(b[c]==null||b[c]==undefined)a[c]=b[c];return a}d.extend(d.ui,{datepicker:{version:"1.8.2"}});var y=(new Date).getTime();d.extend(J.prototype,{markerClassName:"hasDatepicker",log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){E(this._defaults,a||{});return this},_attachDatepicker:function(a,b){var c=null;for(var e in this._defaults){var f=a.getAttribute("date:"+e);if(f){c=c||{};try{c[e]=eval(f)}catch(h){c[e]= +f}}}e=a.nodeName.toLowerCase();f=e=="div"||e=="span";if(!a.id){this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({},b||{},c||{});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,b){return{id:a[0].id.replace(/([^A-Za-z0-9_])/g,"\\\\$1"),input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:d('
    ')}}, +_connectDatepicker:function(a,b){var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachments:function(a,b){var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&& +b.append.remove();if(c){b.append=d(''+c+"");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c=="focus"||c=="both")a.focus(this._showDatepicker);if(c=="button"||c=="both"){c=this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d('').addClass(this._triggerClass).html(f== +""?c:d("").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(a[0]);return false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;gh){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a, +c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=d(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b), +true);this._updateDatepicker(b);this._updateAlternate(b)}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+=1;this._dialogInput=d('');this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}E(a.settings,e||{});b=b&&b.constructor== +Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]); +d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}}, +_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span")b.children("."+this._inlineClass).children().removeClass("ui-state-disabled");this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b= +d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span")b.children("."+this._inlineClass).children().addClass("ui-state-disabled");this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false; +for(var b=0;b-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target|| +a;if(a.nodeName.toLowerCase()!="input")a=d("input",a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);d.datepicker._curInst&&d.datepicker._curInst!=b&&d.datepicker._curInst.dpDiv.stop(true,true);var c=d.datepicker._get(b,"beforeShow");E(b.settings,c?c.apply(a,[a,b]):{});b.lastVal=null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){d.datepicker._pos=d.datepicker._findPos(a); +d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=null;b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&& +d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){d.datepicker._datepickerShowing=true;var i=d.datepicker._getBorders(b.dpDiv);b.dpDiv.find("iframe.ui-datepicker-cover").css({left:-i[0],top:-i[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})};b.dpDiv.zIndex(d(a).zIndex()+1);d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f, +h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}},_updateDatepicker:function(a){var b=this,c=d.datepicker._getBorders(a.dpDiv);a.dpDiv.empty().append(this._generateHTML(a)).find("iframe.ui-datepicker-cover").css({left:-c[0],top:-c[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){d(this).removeClass("ui-state-hover"); +this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).removeClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).removeClass("ui-datepicker-next-hover")}).bind("mouseover",function(){if(!b._isDisabledDatepicker(a.inline?a.dpDiv.parent()[0]:a.input[0])){d(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");d(this).addClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).addClass("ui-datepicker-prev-hover"); +this.className.indexOf("ui-datepicker-next")!=-1&&d(this).addClass("ui-datepicker-next-hover")}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();c=this._getNumberOfMonths(a);var e=c[1];e>1?a.dpDiv.addClass("ui-datepicker-multi-"+e).css("width",17*e+"em"):a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");a.dpDiv[(c[0]!=1||c[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"); +a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input.focus()},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(), +k=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-g):0);b.top-=Math.min(b.top,b.top+f>k&&k>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b=this._get(this._getInst(a),"isRTL");a&&(a.type=="hidden"||a.nodeType!=1);)a=a[b?"previousSibling":"nextSibling"]; +a=d(a).offset();return[a.left,a.top]},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b);this._curInst=null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();if(a=this._get(b,"onClose"))a.apply(b.input?b.input[0]:null,[b.input?b.input.val(): +"",b]);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(d.datepicker._curInst){a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&& +!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth; +b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e._selectingMonthYear=false;e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_clickMonthYear:function(a){a=this._getInst(d(a)[0]); +a.input&&a._selectingMonthYear&&!d.browser.msie&&a.input.focus();a._selectingMonthYear=!a._selectingMonthYear},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=d(a);this._getInst(a[0]);this._selectDate(a, +"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);else{this._hideDatepicker();this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")|| +this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null; +for(var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff,f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,k=c=-1,l=-1,u=-1,j=false,o=function(p){(p=z+1-1){k=1;l=u;do{e=this._getDaysInMonth(c,k-1);if(l<=e)break;k++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c, +k-1,l));if(v.getFullYear()!=c||v.getMonth()+1!=k||v.getDate()!=l)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c? +c.dayNames:null)||this._defaults.dayNames,h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){(o=j+112?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a))},_getDate:function(a){return!a.currentYear|| +a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),k=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay? +new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),j=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=j&&nn;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-k,1)),this._getFormatConfig(a)); +n=this._canAdjustMonth(a,-1,m,g)?''+n+"":f?"":''+n+"";var r=this._get(a,"nextText");r=!h?r:this.formatDate(r,this._daylightSavingAdjust(new Date(m, +g+k,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?''+r+"":f?"":''+r+"";k=this._get(a,"currentText");r=this._get(a,"gotoCurrent")&& +a.currentDay?u:b;k=!h?k:this.formatDate(k,r,this._getFormatConfig(a));h=!a.inline?'":"";e=e?'
    '+(c?h:"")+(this._isInRange(a,r)?'":"")+(c?"":h)+"
    ":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;k=this._get(a,"showWeek");r=this._get(a,"dayNames");this._get(a,"dayNamesShort");var s=this._get(a,"dayNamesMin"),z=this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),w=this._get(a,"showOtherMonths"),G=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var K=this._getDefaultDate(a),H="",C=0;C1)switch(D){case 0:x+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-1:x+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:x+=" ui-datepicker-group-middle";t="";break}x+='">'}x+='
    '+(/all|left/.test(t)&&C==0?c? +f:n:"")+(/all|right/.test(t)&&C==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,j,o,C>0||D>0,z,v)+'
    ';var A=k?'":"";for(t=0;t<7;t++){var q=(t+h)%7;A+="=5?' class="ui-datepicker-week-end"':"")+'>'+s[q]+""}x+=A+"";A=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay, +A);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;A=l?6:Math.ceil((t+A)/7);q=this._daylightSavingAdjust(new Date(m,g,1-t));for(var N=0;N";var O=!k?"":'";for(t=0;t<7;t++){var F=p?p.apply(a.input?a.input[0]:null,[q]):[true,""],B=q.getMonth()!=g,I=B&&!G||!F[0]||j&&qo;O+='";q.setDate(q.getDate()+1);q=this._daylightSavingAdjust(q)}x+=O+""}g++;if(g>11){g=0;m++}x+="
    '+this._get(a,"weekHeader")+"
    '+this._get(a,"calculateWeek")(q)+""+(B&&!w?" ":I?''+q.getDate()+ +"":''+q.getDate()+"")+"
    "+(l?""+(i[0]>0&&D==i[1]-1?'
    ':""):"");L+=x}H+=L}H+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'': + "");a._keyEvent=false;return H},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var k=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),j='
    ',o="";if(h||!k)o+=''+i[b]+"";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='"}u||(j+=o+(h||!(k&&l)?" ":""));if(h||!l)j+=''+c+"";else{g=this._get(a,"yearRange").split(":");var r=(new Date).getFullYear();i=function(s){s=s.match(/c[+-].*/)?c+parseInt(s.substring(1),10):s.match(/[+-].*/)?r+parseInt(s,10):parseInt(s,10);return isNaN(s)?r:s};b=i(g[0]);g=Math.max(b, +i(g[1]||""));b=e?Math.max(b,e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(j+='"}j+=this._get(a,"yearSuffix");if(u)j+=(h||!(k&&l)?" ":"")+o;j+="
    ";return j},_adjustInstDate:function(a,b,c){var e= +a.drawYear+(c=="Y"?b:0),f=a.drawMonth+(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");b=c&&ba?a:b},_notifyChange:function(a){var b=this._get(a, +"onChangeMonthYear");if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a); +c=this._daylightSavingAdjust(new Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a, +"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker= +function(a){if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b)); +return this.each(function(){typeof a=="string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new J;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.2";window["DP_jQuery_"+y]=d})(jQuery); +;/* + * jQuery UI Progressbar 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Progressbar + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + */ +(function(b){b.widget("ui.progressbar",{options:{value:0},_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this._valueMin(),"aria-valuemax":this._valueMax(),"aria-valuenow":this._value()});this.valueDiv=b("
    ").appendTo(this.element);this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"); +this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===undefined)return this._value();this._setOption("value",a);return this},_setOption:function(a,c){switch(a){case "value":this.options.value=c;this._refreshValue();this._trigger("change");break}b.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;if(typeof a!=="number")a=0;if(athis._valueMax())a=this._valueMax();return a}, +_valueMin:function(){return 0},_valueMax:function(){return 100},_refreshValue:function(){var a=this.value();this.valueDiv[a===this._valueMax()?"addClass":"removeClass"]("ui-corner-right").width(a+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{version:"1.8.2"})})(jQuery); +;/* + * jQuery UI Effects 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/ + */ +jQuery.effects||function(f){function k(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1], +16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return l.transparent;return l[f.trim(c).toLowerCase()]}function q(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return k(b)}function m(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle, +a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function n(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in r||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function s(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function j(c,a,b,d){if(typeof c=="object"){d= +a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(f.isFunction(b)){d=b;b=null}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:f.fx.speeds[b]||f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=q(b.elem,a);b.end=k(b.end);b.colorInit= +true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var l={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189, +183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255, +165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},o=["add","remove","toggle"],r={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,d){if(f.isFunction(b)){d=b;b=null}return this.each(function(){var e=f(this),g=e.attr("style")||" ",h=n(m.call(this)),p,t=e.attr("className");f.each(o,function(u, +i){c[i]&&e[i+"Class"](c[i])});p=n(m.call(this));e.attr("className",t);e.animate(s(h,p),a,b,function(){f.each(o,function(u,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments)})})};f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a? +f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===undefined?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this,[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.2",save:function(c,a){for(var b=0;b").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"}); +c.css({position:"relative",top:0,left:0})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=j.apply(this,arguments);a={options:a[1],duration:a[2],callback:a[3]};var b=f.effects[c];return b&&!f.fx.off?b.call(this,a):this},_show:f.fn.show,show:function(c){if(!c|| +typeof c=="number"||f.fx.speeds[c])return this._show.apply(this,arguments);else{var a=j.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(!c||typeof c=="number"||f.fx.speeds[c])return this._hide.apply(this,arguments);else{var a=j.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(!c||typeof c=="number"||f.fx.speeds[c]||typeof c=="boolean"||f.isFunction(c))return this.__toggle.apply(this, +arguments);else{var a=j.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c, +a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+ +b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2, +10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)* +a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h").css({position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+ +e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){a.options.mode=="show"?b.css({visibility:"visible"}):b.css({visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery); +;/* + * jQuery UI Effects Fold 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Fold + * + * Depends: + * jquery.effects.core.js + */ +(function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","left"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1],10)/100* +f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery); +;/* + * jQuery UI Effects Highlight 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Highlight + * + * Depends: + * jquery.effects.core.js + */ +(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&& +this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); +;/* + * jQuery UI Effects Pulsate 1.8.2 + * + * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT (MIT-LICENSE.txt) + * and GPL (GPL-LICENSE.txt) licenses. + * + * http://docs.jquery.com/UI/Effects/Pulsate + * + * Depends: + * jquery.effects.core.js + */ +(function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments); +b.dequeue()})})}})(jQuery); +; \ No newline at end of file diff --git a/edbob/pyramid/subscribers.py b/edbob/pyramid/subscribers.py index 2f899f8..1b46c45 100644 --- a/edbob/pyramid/subscribers.py +++ b/edbob/pyramid/subscribers.py @@ -26,27 +26,10 @@ ``edbob.pyramid.subscribers`` -- Subscribers """ -# import pyramid.threadlocal as threadlocal -from pyramid import threadlocal -from pyramid.exceptions import ConfigurationError - -from akhet.urlgenerator import URLGenerator - import edbob from edbob.pyramid import helpers -def add_request_attributes(event): - """ - Adds goodies to the ``request`` object. - """ - - request = event.request - context = request.context - url_generator = URLGenerator(context, request, qualified=True) - request.url_generator = url_generator - - def add_renderer_globals(event): """ Adds goodies to the global template renderer context. @@ -54,13 +37,9 @@ def add_renderer_globals(event): renderer_globals = event renderer_globals['h'] = helpers - request = event.get('request') or threadlocal.get_current_request() - if not request: - return - tmpl_context = request.tmpl_context - try: - renderer_globals['session'] = request.session - except ConfigurationError: - pass - renderer_globals['url'] = request.url_generator renderer_globals['edbob'] = edbob + + +def includeme(config): + config.add_subscriber('edbob.pyramid.subscribers:add_renderer_globals', + 'pyramid.events.BeforeRender') diff --git a/edbob/pyramid/templates/edbob/base.mako b/edbob/pyramid/templates/edbob/base.mako new file mode 100644 index 0000000..9c02fc8 --- /dev/null +++ b/edbob/pyramid/templates/edbob/base.mako @@ -0,0 +1,63 @@ +<%def name="global_title()">edbob +<%def name="title()"> +<%def name="head_tags()"> + + + + + ${self.global_title()}${' : ' + capture(self.title) if capture(self.title) else ''} + + ${h.javascript_link('edbob/js/jquery.js')} + ${h.javascript_link('edbob/js/jquery.ui.js')} + ${h.javascript_link('edbob/js/jquery.loading.js')} + ${h.javascript_link('edbob/js/jquery.autocomplete.js')} + ${h.javascript_link('edbob/js/edbob.js')} + + ${h.stylesheet_link('edbob/css/smoothness/jquery-ui-1.8.2.custom.css')} + ${h.stylesheet_link('edbob/css/edbob.css')} + + ${self.head_tags()} + + + +
    +
    + + + +
    +## % if request.session.peek_flash('error'): +##
    +## % for error in request.session.pop_flash('error'): +##
    ${error}
    +## % endfor +##
    +## % endif +##
    +## %for message in request.session.pop_flash(): +##
    ${message}
    +## %endfor +##
    + ${self.body()} +
    + + + +
    +
    + + diff --git a/edbob/pyramid/templates/login.mako b/edbob/pyramid/templates/login.mako new file mode 100644 index 0000000..b6aab11 --- /dev/null +++ b/edbob/pyramid/templates/login.mako @@ -0,0 +1,64 @@ +<%inherit file="base.mako" /> + +<%def name="title()">Login + +<%def name="head_tags()"> + ${h.stylesheet_link('edbob/css/login.css')} + + +${h.image('edbob/img/logo.jpg', "edbob logo")} + +
    + ${h.form('')} +## +## + + % if error: +
    ${error}
    + % endif + +
    + + +
    + +
    + + +
    + +
    + ${h.submit('submit', "Login")} + +
    + + ${h.end_form()} +
    + + diff --git a/edbob/pyramid/views/__init__.py b/edbob/pyramid/views/__init__.py new file mode 100644 index 0000000..ca13780 --- /dev/null +++ b/edbob/pyramid/views/__init__.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +################################################################################ +# +# edbob -- Pythonic Software Framework +# Copyright © 2010-2012 Lance Edgar +# +# This file is part of edbob. +# +# edbob is free software: you can redistribute it and/or modify it under the +# terms of the GNU Affero General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# edbob is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for +# more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with edbob. If not, see . +# +################################################################################ + +""" +``edbob.pyramid.views`` -- Views +""" + +from pyramid.view import view_config + + +@view_config(route_name='home', renderer='home.mako') +def home(request): + return {} + + +@view_config(route_name='login', renderer='login.mako') +def login(request): + return {} + + +def includeme(config): + config.add_route('home', '/') + config.add_route('login', '/login') + config.scan() diff --git a/setup.py b/setup.py index 30046d3..636b07d 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ import os.path from setuptools import setup, find_packages -here = os.path.dirname(__file__) +here = os.path.abspath(os.path.dirname(__file__)) execfile(os.path.join(here, 'edbob', '_version.py')) readme = open(os.path.join(here, 'README.txt')).read() @@ -97,28 +97,35 @@ setup( 'pytz', # 2012b ], - # extras_require = { - # # - # # Same guidelines apply to the extra dependencies: + extras_require = { + # + # Same guidelines apply to the extra dependencies: - # 'db': [ - # # - # # package # low high - # # - # 'SQLAlchemy', # 0.6.7 - # 'sqlalchemy-migrate', # 0.6.1 - # ], + # 'db': [ + # # + # # package # low high + # # + # 'SQLAlchemy', # 0.6.7 + # 'sqlalchemy-migrate', # 0.6.1 + # ], - # 'pyramid': [ - # # - # # package # low high - # # + 'docs': [ + # + # package # low high + # + 'Sphinx', # 1.1.3 + ], + + 'pyramid': [ + # + # package # low high + # - # # Pyramid 1.3 introduced 'pcreate' command (and friends) to replace - # # deprecated 'paster create' (and friends). - # 'pyramid>=1.3a1', # 1.3b2 - # ], - # }, + # Pyramid 1.3 introduced 'pcreate' command (and friends) to replace + # deprecated 'paster create' (and friends). + 'pyramid>=1.3a1', # 1.3b2 + ], + }, packages = find_packages(), include_package_data = True, @@ -132,6 +139,9 @@ edbob = edbob.commands:main [gui_scripts] edbobw = edbob.commands:main +[pyramid.scaffold] +edbob = edbob.pyramid.scaffolds:Template + [edbob.commands] shell = edbob.commands:ShellCommand uuid = edbob.commands:UuidCommand